ETH Price: $3,309.85 (+2.15%)
Gas: 4 Gwei

Token

Simpson Inu (♾️)
 

Overview

Max Total Supply

884,338.042932 ♾️

Holders

69

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
1,921.575745 ♾️

Value
$0.00
0x7ce7121714feb4e8cbd1ea4812746668a91c3d55
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SimpInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-15
*/

// SPDX-License-Identifier: MIT                                                                               

pragma solidity 0.8.9;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

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

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

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

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

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

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

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

pragma solidity 0.8.9;

contract SimpInu is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;
        
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public supply;

    address public devWallet;
    
    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;

    bool public transferDelayEnabled = true;

    uint256 public buyBurnFee;
    uint256 public buyDevFee;
    uint256 public buyTotalFees;

    uint256 public sellBurnFee;
    uint256 public sellDevFee;
    uint256 public sellTotalFees;   
    
    uint256 public tokensForBurn;
    uint256 public tokensForDev;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public delayDigit;
    
    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Simpson Inu", unicode"♾️") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyBurnFee = 5;
        uint256 _buyDevFee = 25;

        uint256 _sellBurnFee = 0;
        uint256 _sellDevFee = 30;
        
        uint256 totalSupply = 1 * 1e6 * 1e6;
        supply += totalSupply;
        
        walletDigit = 2;
        transDigit = 2;
        delayDigit = 0;

        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;

        buyBurnFee = _buyBurnFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        
        sellBurnFee = _sellBurnFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        
        devWallet = 0xa345E2dd68D16Ef4DB93e1A300E1baEf43F1Cfb8;

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

        _approve(owner(), address(uniswapV2Router), totalSupply);
        _mint(msg.sender, totalSupply);

    }

    receive() external payable {

  	}

    function taxRollBack() external onlyOwner {
        buyBurnFee = 3;
        buyDevFee = 5;
        buyTotalFees = buyBurnFee + buyDevFee;

        sellBurnFee = 3;
        sellDevFee = 5;
        sellTotalFees = sellBurnFee + sellDevFee;
    }
    
    function updateTransDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        transDigit = newNum;
        updateLimits();
    }

    function updateWalletDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        walletDigit = newNum;
        updateLimits();
    }

    function updateDelayDigit(uint256 newNum) external onlyOwner{
        delayDigit = newNum;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    function updateBuyFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        buyBurnFee = _burnFee;
        buyDevFee = _devFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        require(buyTotalFees <= 30, "Must keep fees at 30% or less");
    }
    
    function updateSellFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        sellBurnFee = _burnFee;
        sellDevFee = _devFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        require(sellTotalFees <= 30, "Must keep fees at 30% or less");
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateLimits() private {
        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number + delayDigit;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            !swapping &&
            swapEnabled &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            
            swapBack();

            swapping = false;
        }
        
        bool takeFee = !swapping;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;

        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForBurn += fees * sellBurnFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {

        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForBurn += fees * buyBurnFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
                if (tokensForBurn > 0) {
                    _burn(address(this), tokensForBurn);
                    supply = totalSupply();
                    updateLimits();
                    tokensForBurn = 0;
                }
            }
        	
        	amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        
        if(contractBalance == 0) {return;}

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

        swapTokensForEth(contractBalance); 
        
        tokensForDev = 0;

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"delayDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRollBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateDelayDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateTransDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f53696d70736f6e20496e750000000000000000000000000000000000000000008152506040518060400160405280600681526020017fe299beefb88f000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000d61565b5080600490805190602001906200011b92919062000d61565b5050506000620001306200065a60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200066260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e7b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000e7b565b6040518363ffffffff1660e01b81526004016200036e92919062000ebe565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000e7b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200066260201b60201c565b6200042160a05160016200075f60201b60201c565b600060059050600060199050600080601e9050600064e8d4a510009050806009600082825462000452919062000f24565b92505081905550600260158190555060026016819055506000601781905550606460165460095462000485919062000f81565b62000491919062001011565b6006819055506127106005600954620004ab919062000f81565b620004b7919062001011565b6007819055506064601554600954620004d1919062000f81565b620004dd919062001011565b60088190555084600d8190555083600e81905550600e54600d5462000503919062000f24565b600f81905550826010819055508160118190555060115460105462000529919062000f24565b60128190555073a345e2dd68d16ef4db93e1a300e1baef43f1cfb8600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005a6620005986200080060201b60201c565b60016200082a60201b60201c565b620005b93060016200082a60201b60201c565b620005ce61dead60016200082a60201b60201c565b620005f0620005e26200080060201b60201c565b60016200066260201b60201c565b620006033060016200066260201b60201c565b6200061861dead60016200066260201b60201c565b6200063c6200062c6200080060201b60201c565b608051836200097760201b60201c565b6200064e338262000b4a60201b60201c565b505050505050620013ad565b600033905090565b620006726200065a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000704576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fb90620010aa565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200083a6200065a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c390620010aa565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200096b9190620010e9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e1906200117c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a549062001214565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b3d919062001247565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000bbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bb490620012b4565b60405180910390fd5b62000bd16000838362000cf960201b60201c565b62000bed8160025462000cfe60201b62001e8a1790919060201c565b60028190555062000c4b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000cfe60201b62001e8a1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ced919062001247565b60405180910390a35050565b505050565b600080828462000d0f919062000f24565b90508381101562000d57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d4e9062001326565b60405180910390fd5b8091505092915050565b82805462000d6f9062001377565b90600052602060002090601f01602090048101928262000d93576000855562000ddf565b82601f1062000dae57805160ff191683800117855562000ddf565b8280016001018555821562000ddf579182015b8281111562000dde57825182559160200191906001019062000dc1565b5b50905062000dee919062000df2565b5090565b5b8082111562000e0d57600081600090555060010162000df3565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e438262000e16565b9050919050565b62000e558162000e36565b811462000e6157600080fd5b50565b60008151905062000e758162000e4a565b92915050565b60006020828403121562000e945762000e9362000e11565b5b600062000ea48482850162000e64565b91505092915050565b62000eb88162000e36565b82525050565b600060408201905062000ed5600083018562000ead565b62000ee4602083018462000ead565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f318262000eeb565b915062000f3e8362000eeb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f765762000f7562000ef5565b5b828201905092915050565b600062000f8e8262000eeb565b915062000f9b8362000eeb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fd75762000fd662000ef5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200101e8262000eeb565b91506200102b8362000eeb565b9250826200103e576200103d62000fe2565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200109260208362001049565b91506200109f826200105a565b602082019050919050565b60006020820190508181036000830152620010c58162001083565b9050919050565b60008115159050919050565b620010e381620010cc565b82525050565b6000602082019050620011006000830184620010d8565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116460248362001049565b9150620011718262001106565b604082019050919050565b60006020820190508181036000830152620011978162001155565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011fc60228362001049565b915062001209826200119e565b604082019050919050565b600060208201905081810360008301526200122f81620011ed565b9050919050565b620012418162000eeb565b82525050565b60006020820190506200125e600083018462001236565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200129c601f8362001049565b9150620012a98262001264565b602082019050919050565b60006020820190508181036000830152620012cf816200128d565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200130e601b8362001049565b91506200131b82620012d6565b602082019050919050565b600060208201905081810360008301526200134181620012ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200139057607f821691505b60208210811415620013a757620013a662001348565b5b50919050565b60805160a051614957620013fd600039600081816111ac0152818161185301526124db015260008181610e4b015281816124830152818161353501528181613625015261364c01526149576000f3fe6080604052600436106102cd5760003560e01c80638da5cb5b11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638da5cb5b146107585780638ea5220f14610783578063900716bd146107ae57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137ca565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613819565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138cd565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061394d565b610d54565b60405161038c91906139a8565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139c3565b610d72565b6040516103c991906139a8565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f0565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a7c565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613819565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139c3565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613819565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f0565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a97565b61100f565b60405161050291906139a8565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613af9565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b30565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061394d565b6110f7565b60405161059591906139a8565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613af9565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139a8565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139c3565b6111e1565b60405161062891906139a8565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137ca565b611237565b005b34801561066657600080fd5b5061066f61133c565b60405161067c9190613819565b60405180910390f35b34801561069157600080fd5b5061069a611342565b6040516106a791906139a8565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139c3565b611355565b6040516106e49190613819565b60405180910390f35b3480156106f957600080fd5b5061070261139d565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b77565b6114f5565b005b34801561073957600080fd5b506107426115e7565b60405161074f9190613819565b60405180910390f35b34801561076457600080fd5b5061076d6115ed565b60405161077a9190613af9565b60405180910390f35b34801561078f57600080fd5b50610798611617565b6040516107a59190613af9565b60405180910390f35b3480156107ba57600080fd5b506107c361163d565b005b3480156107d157600080fd5b506107da611722565b6040516107e791906138cd565b60405180910390f35b3480156107fc57600080fd5b506108056117b4565b6040516108129190613819565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b77565b6117ba565b005b34801561085057600080fd5b506108596118ee565b6040516108669190613819565b60405180910390f35b34801561087b57600080fd5b506108846118f4565b6040516108919190613819565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f0565b6118fa565b005b3480156108cf57600080fd5b506108d861199b565b6040516108e59190613819565b60405180910390f35b3480156108fa57600080fd5b506109156004803603810190610910919061394d565b6119a1565b60405161092291906139a8565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d919061394d565b611a6e565b60405161095f91906139a8565b60405180910390f35b34801561097457600080fd5b5061097d611a8c565b60405161098a9190613819565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139c3565b611a92565b6040516109c791906139a8565b60405180910390f35b3480156109dc57600080fd5b506109e5611ab2565b6040516109f291906139a8565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b77565b611ac5565b005b348015610a3057600080fd5b50610a39611c05565b604051610a4691906139a8565b60405180910390f35b348015610a5b57600080fd5b50610a64611c18565b604051610a719190613819565b60405180910390f35b348015610a8657600080fd5b50610a8f611c1e565b604051610a9c9190613819565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bb7565b611c24565b604051610ad99190613819565b60405180910390f35b348015610aee57600080fd5b50610af7611cab565b604051610b049190613819565b60405180910390f35b348015610b1957600080fd5b50610b22611cb1565b604051610b2f9190613819565b60405180910390f35b348015610b4457600080fd5b50610b4d611cb7565b604051610b5a9190613819565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139c3565b611cbd565b005b348015610b9857600080fd5b50610ba1611e84565b604051610bae9190613819565b60405180910390f35b610bbf611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c43565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c92565b601281905550601e6012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d34565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d83565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d83565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611ee8565b8484611ef0565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c43565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120bb565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e7f611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c43565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c43565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120bb565b50565b600061101c848484612123565b6110dd84611028611ee8565b6110d8856040518060600160405280602881526020016148d560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d9a9092919063ffffffff16565b611ef0565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611ee8565b8461119b8560016000611115611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b611ef0565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c43565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c92565b600f81905550601e600f541115611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d34565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613c43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fd611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613c43565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611645611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90613c43565b60405180910390fd5b6003600d819055506005600e81905550600e54600d546116f49190613c92565b600f819055506003601081905550600560118190555060115460105461171a9190613c92565b601281905550565b60606004805461173190613d83565b80601f016020809104026020016040519081016040528092919081815260200182805461175d90613d83565b80156117aa5780601f1061177f576101008083540402835291602001916117aa565b820191906000526020600020905b81548152906001019060200180831161178d57829003601f168201915b5050505050905090565b60165481565b6117c2611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613c43565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613e27565b60405180910390fd5b6118ea8282612dfe565b5050565b600e5481565b60145481565b611902611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890613c43565b60405180910390fd5b8060178190555050565b60115481565b6000611a646119ae611ee8565b84611a5f856040518060600160405280602581526020016148fd60259139600160006119d8611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d9a9092919063ffffffff16565b611ef0565b6001905092915050565b6000611a82611a7b611ee8565b8484612123565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611acd611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613c43565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bf991906139a8565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611cc5611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613c43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613eb9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611e999190613c92565b905083811015611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed590613f25565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790613fb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790614049565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120ae9190613819565b60405180910390a3505050565b60646016546009546120cd9190614069565b6120d791906140f2565b60068190555061271060056009546120ef9190614069565b6120f991906140f2565b60078190555060646015546009546121119190614069565b61211b91906140f2565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614195565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa90614227565b60405180910390fd5b600081141561221d5761221883836000612e9f565b612d95565b600a60149054906101000a900460ff16156128ed5761223a6115ed565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122a857506122786115ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561231b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123345750600560149054906101000a900460ff16155b156128ec57600a60159054906101000a900460ff1661242e57601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123ee5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61242d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242490614293565b60405180910390fd5b5b600c60009054906101000a900460ff16156126035761244b6115ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124d257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561252a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126025743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a79061434b565b60405180910390fd5b601754436125be9190613c92565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126a65750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561274d576006548111156126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e7906143dd565b60405180910390fd5b6008546126fc83611355565b826127079190613c92565b1115612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90614449565b60405180910390fd5b6128eb565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f05750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561283f5760065481111561283a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612831906144db565b60405180910390fd5b6128ea565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128e95760085461289c83611355565b826128a79190613c92565b11156128e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128df90614449565b60405180910390fd5b5b5b5b5b5b60006128f830611355565b90506000600754821015905080801561291e5750600560149054906101000a900460ff16155b80156129365750600a60169054906101000a900460ff165b801561298c5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e25750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a385750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a7c576001600560146101000a81548160ff021916908315150217905550612a60613134565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b325750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b3c57600090505b60008115612d8557601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b9f57506000601254115b15612c3957612bcc6064612bbe6012548861321e90919063ffffffff16565b61329990919063ffffffff16565b905060125460105482612bdf9190614069565b612be991906140f2565b60136000828254612bfa9190613c92565b9250508190555060125460115482612c129190614069565b612c1c91906140f2565b60146000828254612c2d9190613c92565b92505081905550612d2b565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9457506000600f54115b15612d2a57612cc16064612cb3600f548861321e90919063ffffffff16565b61329990919063ffffffff16565b9050600f54600d5482612cd49190614069565b612cde91906140f2565b60136000828254612cef9190613c92565b92505081905550600f54600e5482612d079190614069565b612d1191906140f2565b60146000828254612d229190613c92565b925050819055505b5b6000811115612d7657612d3f873083612e9f565b60006013541115612d7557612d56306013546132e3565b612d5e610e6d565b600981905550612d6c6120bb565b60006013819055505b5b8085612d8291906144fb565b94505b612d90878787612e9f565b505050505b505050565b6000838311158290612de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd991906138cd565b60405180910390fd5b5060008385612df191906144fb565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690614195565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7690614227565b60405180910390fd5b612f8a838383613491565b612ff5816040518060600160405280602681526020016148af602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d9a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613088816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516131279190613819565b60405180910390a3505050565b600061313f30611355565b905060008082141561315257505061321c565b60146007546131619190614069565b82111561317a5760146007546131779190614069565b91505b61318382613496565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d190614560565b60006040518083038185875af1925050503d806000811461320e576040519150601f19603f3d011682016040523d82523d6000602084013e613213565b606091505b50508091505050505b565b6000808314156132315760009050613293565b6000828461323f9190614069565b905082848261324e91906140f2565b1461328e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613285906145e7565b60405180910390fd5b809150505b92915050565b60006132db83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a90614679565b60405180910390fd5b61335f82600083613491565b6133ca8160405180606001604052806022815260200161488d602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d9a9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134218160025461374590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134859190613819565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134b3576134b2614699565b5b6040519080825280602002602001820160405280156134e15781602001602082028036833780820191505090505b50905030816000815181106134f9576134f86146c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561359957600080fd5b505afa1580156135ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d1919061470c565b816001815181106135e5576135e46146c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061364a307f000000000000000000000000000000000000000000000000000000000000000084611ef0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136ac959493929190614832565b600060405180830381600087803b1580156136c657600080fd5b505af11580156136da573d6000803e3d6000fd5b505050505050565b60008083118290613729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372091906138cd565b60405180910390fd5b506000838561373891906140f2565b9050809150509392505050565b600061378783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d9a565b905092915050565b600080fd5b6000819050919050565b6137a781613794565b81146137b257600080fd5b50565b6000813590506137c48161379e565b92915050565b600080604083850312156137e1576137e061378f565b5b60006137ef858286016137b5565b9250506020613800858286016137b5565b9150509250929050565b61381381613794565b82525050565b600060208201905061382e600083018461380a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561386e578082015181840152602081019050613853565b8381111561387d576000848401525b50505050565b6000601f19601f8301169050919050565b600061389f82613834565b6138a9818561383f565b93506138b9818560208601613850565b6138c281613883565b840191505092915050565b600060208201905081810360008301526138e78184613894565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061391a826138ef565b9050919050565b61392a8161390f565b811461393557600080fd5b50565b60008135905061394781613921565b92915050565b600080604083850312156139645761396361378f565b5b600061397285828601613938565b9250506020613983858286016137b5565b9150509250929050565b60008115159050919050565b6139a28161398d565b82525050565b60006020820190506139bd6000830184613999565b92915050565b6000602082840312156139d9576139d861378f565b5b60006139e784828501613938565b91505092915050565b600060208284031215613a0657613a0561378f565b5b6000613a14848285016137b5565b91505092915050565b6000819050919050565b6000613a42613a3d613a38846138ef565b613a1d565b6138ef565b9050919050565b6000613a5482613a27565b9050919050565b6000613a6682613a49565b9050919050565b613a7681613a5b565b82525050565b6000602082019050613a916000830184613a6d565b92915050565b600080600060608486031215613ab057613aaf61378f565b5b6000613abe86828701613938565b9350506020613acf86828701613938565b9250506040613ae0868287016137b5565b9150509250925092565b613af38161390f565b82525050565b6000602082019050613b0e6000830184613aea565b92915050565b600060ff82169050919050565b613b2a81613b14565b82525050565b6000602082019050613b456000830184613b21565b92915050565b613b548161398d565b8114613b5f57600080fd5b50565b600081359050613b7181613b4b565b92915050565b60008060408385031215613b8e57613b8d61378f565b5b6000613b9c85828601613938565b9250506020613bad85828601613b62565b9150509250929050565b60008060408385031215613bce57613bcd61378f565b5b6000613bdc85828601613938565b9250506020613bed85828601613938565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c2d60208361383f565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c9d82613794565b9150613ca883613794565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cdd57613cdc613c63565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613d1e601d8361383f565b9150613d2982613ce8565b602082019050919050565b60006020820190508181036000830152613d4d81613d11565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d9b57607f821691505b60208210811415613daf57613dae613d54565b5b50919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e1160398361383f565b9150613e1c82613db5565b604082019050919050565b60006020820190508181036000830152613e4081613e04565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ea360268361383f565b9150613eae82613e47565b604082019050919050565b60006020820190508181036000830152613ed281613e96565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f0f601b8361383f565b9150613f1a82613ed9565b602082019050919050565b60006020820190508181036000830152613f3e81613f02565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fa160248361383f565b9150613fac82613f45565b604082019050919050565b60006020820190508181036000830152613fd081613f94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061403360228361383f565b915061403e82613fd7565b604082019050919050565b6000602082019050818103600083015261406281614026565b9050919050565b600061407482613794565b915061407f83613794565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140b8576140b7613c63565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140fd82613794565b915061410883613794565b925082614118576141176140c3565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061417f60258361383f565b915061418a82614123565b604082019050919050565b600060208201905081810360008301526141ae81614172565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061421160238361383f565b915061421c826141b5565b604082019050919050565b6000602082019050818103600083015261424081614204565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061427d60168361383f565b915061428882614247565b602082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061433560498361383f565b9150614340826142b3565b606082019050919050565b6000602082019050818103600083015261436481614328565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143c760358361383f565b91506143d28261436b565b604082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061443360138361383f565b915061443e826143fd565b602082019050919050565b6000602082019050818103600083015261446281614426565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144c560368361383f565b91506144d082614469565b604082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b600061450682613794565b915061451183613794565b92508282101561452457614523613c63565b5b828203905092915050565b600081905092915050565b50565b600061454a60008361452f565b91506145558261453a565b600082019050919050565b600061456b8261453d565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145d160218361383f565b91506145dc82614575565b604082019050919050565b60006020820190508181036000830152614600816145c4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061466360218361383f565b915061466e82614607565b604082019050919050565b6000602082019050818103600083015261469281614656565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061470681613921565b92915050565b6000602082840312156147225761472161378f565b5b6000614730848285016146f7565b91505092915050565b6000819050919050565b600061475e61475961475484614739565b613a1d565b613794565b9050919050565b61476e81614743565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147a98161390f565b82525050565b60006147bb83836147a0565b60208301905092915050565b6000602082019050919050565b60006147df82614774565b6147e9818561477f565b93506147f483614790565b8060005b8381101561482557815161480c88826147af565b9750614817836147c7565b9250506001810190506147f8565b5085935050505092915050565b600060a082019050614847600083018861380a565b6148546020830187614765565b818103604083015261486681866147d4565b90506148756060830185613aea565b614882608083018461380a565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122003ea34ee61cbb4ea0e8161cfb4cb1556497e978fec191155b87488955e7703b564736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638da5cb5b11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638da5cb5b146107585780638ea5220f14610783578063900716bd146107ae57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137ca565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613819565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138cd565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061394d565b610d54565b60405161038c91906139a8565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139c3565b610d72565b6040516103c991906139a8565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f0565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a7c565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613819565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139c3565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613819565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f0565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a97565b61100f565b60405161050291906139a8565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613af9565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b30565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061394d565b6110f7565b60405161059591906139a8565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613af9565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139a8565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139c3565b6111e1565b60405161062891906139a8565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137ca565b611237565b005b34801561066657600080fd5b5061066f61133c565b60405161067c9190613819565b60405180910390f35b34801561069157600080fd5b5061069a611342565b6040516106a791906139a8565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139c3565b611355565b6040516106e49190613819565b60405180910390f35b3480156106f957600080fd5b5061070261139d565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b77565b6114f5565b005b34801561073957600080fd5b506107426115e7565b60405161074f9190613819565b60405180910390f35b34801561076457600080fd5b5061076d6115ed565b60405161077a9190613af9565b60405180910390f35b34801561078f57600080fd5b50610798611617565b6040516107a59190613af9565b60405180910390f35b3480156107ba57600080fd5b506107c361163d565b005b3480156107d157600080fd5b506107da611722565b6040516107e791906138cd565b60405180910390f35b3480156107fc57600080fd5b506108056117b4565b6040516108129190613819565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b77565b6117ba565b005b34801561085057600080fd5b506108596118ee565b6040516108669190613819565b60405180910390f35b34801561087b57600080fd5b506108846118f4565b6040516108919190613819565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f0565b6118fa565b005b3480156108cf57600080fd5b506108d861199b565b6040516108e59190613819565b60405180910390f35b3480156108fa57600080fd5b506109156004803603810190610910919061394d565b6119a1565b60405161092291906139a8565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d919061394d565b611a6e565b60405161095f91906139a8565b60405180910390f35b34801561097457600080fd5b5061097d611a8c565b60405161098a9190613819565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139c3565b611a92565b6040516109c791906139a8565b60405180910390f35b3480156109dc57600080fd5b506109e5611ab2565b6040516109f291906139a8565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b77565b611ac5565b005b348015610a3057600080fd5b50610a39611c05565b604051610a4691906139a8565b60405180910390f35b348015610a5b57600080fd5b50610a64611c18565b604051610a719190613819565b60405180910390f35b348015610a8657600080fd5b50610a8f611c1e565b604051610a9c9190613819565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bb7565b611c24565b604051610ad99190613819565b60405180910390f35b348015610aee57600080fd5b50610af7611cab565b604051610b049190613819565b60405180910390f35b348015610b1957600080fd5b50610b22611cb1565b604051610b2f9190613819565b60405180910390f35b348015610b4457600080fd5b50610b4d611cb7565b604051610b5a9190613819565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139c3565b611cbd565b005b348015610b9857600080fd5b50610ba1611e84565b604051610bae9190613819565b60405180910390f35b610bbf611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c43565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c92565b601281905550601e6012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d34565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d83565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d83565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611ee8565b8484611ef0565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c43565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120bb565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e7f611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c43565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c43565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120bb565b50565b600061101c848484612123565b6110dd84611028611ee8565b6110d8856040518060600160405280602881526020016148d560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d9a9092919063ffffffff16565b611ef0565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611ee8565b8461119b8560016000611115611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b611ef0565b6001905092915050565b7f000000000000000000000000b23f5f45e22a707f53f05d70e82435d4bf86e74781565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c43565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c92565b600f81905550601e600f541115611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d34565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613c43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fd611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613c43565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611645611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90613c43565b60405180910390fd5b6003600d819055506005600e81905550600e54600d546116f49190613c92565b600f819055506003601081905550600560118190555060115460105461171a9190613c92565b601281905550565b60606004805461173190613d83565b80601f016020809104026020016040519081016040528092919081815260200182805461175d90613d83565b80156117aa5780601f1061177f576101008083540402835291602001916117aa565b820191906000526020600020905b81548152906001019060200180831161178d57829003601f168201915b5050505050905090565b60165481565b6117c2611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613c43565b60405180910390fd5b7f000000000000000000000000b23f5f45e22a707f53f05d70e82435d4bf86e74773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613e27565b60405180910390fd5b6118ea8282612dfe565b5050565b600e5481565b60145481565b611902611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890613c43565b60405180910390fd5b8060178190555050565b60115481565b6000611a646119ae611ee8565b84611a5f856040518060600160405280602581526020016148fd60259139600160006119d8611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d9a9092919063ffffffff16565b611ef0565b6001905092915050565b6000611a82611a7b611ee8565b8484612123565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611acd611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613c43565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bf991906139a8565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611cc5611ee8565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613c43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613eb9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611e999190613c92565b905083811015611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed590613f25565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790613fb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790614049565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120ae9190613819565b60405180910390a3505050565b60646016546009546120cd9190614069565b6120d791906140f2565b60068190555061271060056009546120ef9190614069565b6120f991906140f2565b60078190555060646015546009546121119190614069565b61211b91906140f2565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614195565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa90614227565b60405180910390fd5b600081141561221d5761221883836000612e9f565b612d95565b600a60149054906101000a900460ff16156128ed5761223a6115ed565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122a857506122786115ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561231b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123345750600560149054906101000a900460ff16155b156128ec57600a60159054906101000a900460ff1661242e57601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123ee5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61242d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242490614293565b60405180910390fd5b5b600c60009054906101000a900460ff16156126035761244b6115ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124d257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561252a57507f000000000000000000000000b23f5f45e22a707f53f05d70e82435d4bf86e74773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126025743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a79061434b565b60405180910390fd5b601754436125be9190613c92565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126a65750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561274d576006548111156126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e7906143dd565b60405180910390fd5b6008546126fc83611355565b826127079190613c92565b1115612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90614449565b60405180910390fd5b6128eb565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f05750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561283f5760065481111561283a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612831906144db565b60405180910390fd5b6128ea565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128e95760085461289c83611355565b826128a79190613c92565b11156128e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128df90614449565b60405180910390fd5b5b5b5b5b5b60006128f830611355565b90506000600754821015905080801561291e5750600560149054906101000a900460ff16155b80156129365750600a60169054906101000a900460ff165b801561298c5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e25750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a385750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a7c576001600560146101000a81548160ff021916908315150217905550612a60613134565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b325750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b3c57600090505b60008115612d8557601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b9f57506000601254115b15612c3957612bcc6064612bbe6012548861321e90919063ffffffff16565b61329990919063ffffffff16565b905060125460105482612bdf9190614069565b612be991906140f2565b60136000828254612bfa9190613c92565b9250508190555060125460115482612c129190614069565b612c1c91906140f2565b60146000828254612c2d9190613c92565b92505081905550612d2b565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9457506000600f54115b15612d2a57612cc16064612cb3600f548861321e90919063ffffffff16565b61329990919063ffffffff16565b9050600f54600d5482612cd49190614069565b612cde91906140f2565b60136000828254612cef9190613c92565b92505081905550600f54600e5482612d079190614069565b612d1191906140f2565b60146000828254612d229190613c92565b925050819055505b5b6000811115612d7657612d3f873083612e9f565b60006013541115612d7557612d56306013546132e3565b612d5e610e6d565b600981905550612d6c6120bb565b60006013819055505b5b8085612d8291906144fb565b94505b612d90878787612e9f565b505050505b505050565b6000838311158290612de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd991906138cd565b60405180910390fd5b5060008385612df191906144fb565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690614195565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7690614227565b60405180910390fd5b612f8a838383613491565b612ff5816040518060600160405280602681526020016148af602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d9a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613088816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516131279190613819565b60405180910390a3505050565b600061313f30611355565b905060008082141561315257505061321c565b60146007546131619190614069565b82111561317a5760146007546131779190614069565b91505b61318382613496565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d190614560565b60006040518083038185875af1925050503d806000811461320e576040519150601f19603f3d011682016040523d82523d6000602084013e613213565b606091505b50508091505050505b565b6000808314156132315760009050613293565b6000828461323f9190614069565b905082848261324e91906140f2565b1461328e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613285906145e7565b60405180910390fd5b809150505b92915050565b60006132db83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a90614679565b60405180910390fd5b61335f82600083613491565b6133ca8160405180606001604052806022815260200161488d602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d9a9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134218160025461374590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134859190613819565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134b3576134b2614699565b5b6040519080825280602002602001820160405280156134e15781602001602082028036833780820191505090505b50905030816000815181106134f9576134f86146c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561359957600080fd5b505afa1580156135ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d1919061470c565b816001815181106135e5576135e46146c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061364a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ef0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136ac959493929190614832565b600060405180830381600087803b1580156136c657600080fd5b505af11580156136da573d6000803e3d6000fd5b505050505050565b60008083118290613729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372091906138cd565b60405180910390fd5b506000838561373891906140f2565b9050809150509392505050565b600061378783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d9a565b905092915050565b600080fd5b6000819050919050565b6137a781613794565b81146137b257600080fd5b50565b6000813590506137c48161379e565b92915050565b600080604083850312156137e1576137e061378f565b5b60006137ef858286016137b5565b9250506020613800858286016137b5565b9150509250929050565b61381381613794565b82525050565b600060208201905061382e600083018461380a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561386e578082015181840152602081019050613853565b8381111561387d576000848401525b50505050565b6000601f19601f8301169050919050565b600061389f82613834565b6138a9818561383f565b93506138b9818560208601613850565b6138c281613883565b840191505092915050565b600060208201905081810360008301526138e78184613894565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061391a826138ef565b9050919050565b61392a8161390f565b811461393557600080fd5b50565b60008135905061394781613921565b92915050565b600080604083850312156139645761396361378f565b5b600061397285828601613938565b9250506020613983858286016137b5565b9150509250929050565b60008115159050919050565b6139a28161398d565b82525050565b60006020820190506139bd6000830184613999565b92915050565b6000602082840312156139d9576139d861378f565b5b60006139e784828501613938565b91505092915050565b600060208284031215613a0657613a0561378f565b5b6000613a14848285016137b5565b91505092915050565b6000819050919050565b6000613a42613a3d613a38846138ef565b613a1d565b6138ef565b9050919050565b6000613a5482613a27565b9050919050565b6000613a6682613a49565b9050919050565b613a7681613a5b565b82525050565b6000602082019050613a916000830184613a6d565b92915050565b600080600060608486031215613ab057613aaf61378f565b5b6000613abe86828701613938565b9350506020613acf86828701613938565b9250506040613ae0868287016137b5565b9150509250925092565b613af38161390f565b82525050565b6000602082019050613b0e6000830184613aea565b92915050565b600060ff82169050919050565b613b2a81613b14565b82525050565b6000602082019050613b456000830184613b21565b92915050565b613b548161398d565b8114613b5f57600080fd5b50565b600081359050613b7181613b4b565b92915050565b60008060408385031215613b8e57613b8d61378f565b5b6000613b9c85828601613938565b9250506020613bad85828601613b62565b9150509250929050565b60008060408385031215613bce57613bcd61378f565b5b6000613bdc85828601613938565b9250506020613bed85828601613938565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c2d60208361383f565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c9d82613794565b9150613ca883613794565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cdd57613cdc613c63565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613d1e601d8361383f565b9150613d2982613ce8565b602082019050919050565b60006020820190508181036000830152613d4d81613d11565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d9b57607f821691505b60208210811415613daf57613dae613d54565b5b50919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e1160398361383f565b9150613e1c82613db5565b604082019050919050565b60006020820190508181036000830152613e4081613e04565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ea360268361383f565b9150613eae82613e47565b604082019050919050565b60006020820190508181036000830152613ed281613e96565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f0f601b8361383f565b9150613f1a82613ed9565b602082019050919050565b60006020820190508181036000830152613f3e81613f02565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fa160248361383f565b9150613fac82613f45565b604082019050919050565b60006020820190508181036000830152613fd081613f94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061403360228361383f565b915061403e82613fd7565b604082019050919050565b6000602082019050818103600083015261406281614026565b9050919050565b600061407482613794565b915061407f83613794565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140b8576140b7613c63565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140fd82613794565b915061410883613794565b925082614118576141176140c3565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061417f60258361383f565b915061418a82614123565b604082019050919050565b600060208201905081810360008301526141ae81614172565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061421160238361383f565b915061421c826141b5565b604082019050919050565b6000602082019050818103600083015261424081614204565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061427d60168361383f565b915061428882614247565b602082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061433560498361383f565b9150614340826142b3565b606082019050919050565b6000602082019050818103600083015261436481614328565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143c760358361383f565b91506143d28261436b565b604082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061443360138361383f565b915061443e826143fd565b602082019050919050565b6000602082019050818103600083015261446281614426565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144c560368361383f565b91506144d082614469565b604082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b600061450682613794565b915061451183613794565b92508282101561452457614523613c63565b5b828203905092915050565b600081905092915050565b50565b600061454a60008361452f565b91506145558261453a565b600082019050919050565b600061456b8261453d565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145d160218361383f565b91506145dc82614575565b604082019050919050565b60006020820190508181036000830152614600816145c4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061466360218361383f565b915061466e82614607565b604082019050919050565b6000602082019050818103600083015261469281614656565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061470681613921565b92915050565b6000602082840312156147225761472161378f565b5b6000614730848285016146f7565b91505092915050565b6000819050919050565b600061475e61475961475484614739565b613a1d565b613794565b9050919050565b61476e81614743565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147a98161390f565b82525050565b60006147bb83836147a0565b60208301905092915050565b6000602082019050919050565b60006147df82614774565b6147e9818561477f565b93506147f483614790565b8060005b8381101561482557815161480c88826147af565b9750614817836147c7565b9250506001810190506147f8565b5085935050505092915050565b600060a082019050614847600083018861380a565b6148546020830187614765565b818103604083015261486681866147d4565b90506148756060830185613aea565b614882608083018461380a565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122003ea34ee61cbb4ea0e8161cfb4cb1556497e978fec191155b87488955e7703b564736f6c63430008090033

Deployed Bytecode Sourcemap

29406:11311:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34191:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29805:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7537:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9703:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30634:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33482:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29483:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8656:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34472:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30319:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33319:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10354:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29586:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8499:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11118:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29541:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29872:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35449:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33913:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30275:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29951:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8827:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22001:148;;;;;;;;;;;;;:::i;:::-;;33757:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30390:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21359:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29835:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33056:251;;;;;;;;;;;;;:::i;:::-;;7756:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30423:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35001:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30143:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30354:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33647:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30243:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11839:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9167:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30210:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30856:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29912:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34583:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30063:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29686:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30174:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9405:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29728:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30111:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30455;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22304:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29768:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34191:273;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34294:8:::1;34280:11;:22;;;;34326:7;34313:10;:20;;;;34374:10;;34360:11;;:24;;;;:::i;:::-;34344:13;:40;;;;34420:2;34403:13;;:19;;34395:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34191:273:::0;;:::o;29805:21::-;;;;:::o;7537:100::-;7591:13;7624:5;7617:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7537:100;:::o;9703:169::-;9786:4;9803:39;9812:12;:10;:12::i;:::-;9826:7;9835:6;9803:8;:39::i;:::-;9860:4;9853:11;;9703:169;;;;:::o;30634:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;33482:157::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33573:1:::1;33563:6;:11;;33555:20;;;::::0;::::1;;33600:6;33586:11;:20;;;;33617:14;:12;:14::i;:::-;33482:157:::0;:::o;29483:51::-;;;:::o;8656:108::-;8717:7;8744:12;;8737:19;;8656:108;:::o;34472:103::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34558:9:::1;34546;;:21;;;;;;;;;;;;;;;;;;34472:103:::0;:::o;30319:28::-;;;;:::o;33319:155::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33409:1:::1;33399:6;:11;;33391:20;;;::::0;::::1;;33435:6;33422:10;:19;;;;33452:14;:12;:14::i;:::-;33319:155:::0;:::o;10354:355::-;10494:4;10511:36;10521:6;10529:9;10540:6;10511:9;:36::i;:::-;10558:121;10567:6;10575:12;:10;:12::i;:::-;10589:89;10627:6;10589:89;;;;;;;;;;;;;;;;;:11;:19;10601:6;10589:19;;;;;;;;;;;;;;;:33;10609:12;:10;:12::i;:::-;10589:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10558:8;:121::i;:::-;10697:4;10690:11;;10354:355;;;;;:::o;29586:53::-;29632:6;29586:53;:::o;8499:92::-;8557:5;8582:1;8575:8;;8499:92;:::o;11118:218::-;11206:4;11223:83;11232:12;:10;:12::i;:::-;11246:7;11255:50;11294:10;11255:11;:25;11267:12;:10;:12::i;:::-;11255:25;;;;;;;;;;;;;;;:34;11281:7;11255:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11223:8;:83::i;:::-;11324:4;11317:11;;11118:218;;;;:::o;29541:38::-;;;:::o;29872:33::-;;;;;;;;;;;;;:::o;35449:125::-;35514:4;35538:19;:28;35558:7;35538:28;;;;;;;;;;;;;;;;;;;;;;;;;35531:35;;35449:125;;;:::o;33913:266::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34014:8:::1;34001:10;:21;;;;34045:7;34033:9;:19;;;;34091:9;;34078:10;;:22;;;;:::i;:::-;34063:12;:37;;;;34135:2;34119:12;;:18;;34111:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33913:266:::0;;:::o;30275:28::-;;;;:::o;29951:30::-;;;;;;;;;;;;;:::o;8827:127::-;8901:7;8928:9;:18;8938:7;8928:18;;;;;;;;;;;;;;;;8921:25;;8827:127;;;:::o;22001:148::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22108:1:::1;22071:40;;22092:6;;;;;;;;;;;22071:40;;;;;;;;;;;;22139:1;22122:6;;:19;;;;;;;;;;;;;;;;;;22001:148::o:0;33757:144::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33889:4:::1;33847:31;:39;33879:6;33847:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33757:144:::0;;:::o;30390:26::-;;;;:::o;21359:79::-;21397:7;21424:6;;;;;;;;;;;21417:13;;21359:79;:::o;29835:24::-;;;;;;;;;;;;;:::o;33056:251::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33122:1:::1;33109:10;:14;;;;33146:1;33134:9;:13;;;;33186:9;;33173:10;;:22;;;;:::i;:::-;33158:12;:37;;;;33222:1;33208:11;:15;;;;33247:1;33234:10;:14;;;;33289:10;;33275:11;;:24;;;;:::i;:::-;33259:13;:40;;;;33056:251::o:0;7756:104::-;7812:13;7845:7;7838:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7756:104;:::o;30423:25::-;;;;:::o;35001:244::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35108:13:::1;35100:21;;:4;:21;;;;35092:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;35196:41;35225:4;35231:5;35196:28;:41::i;:::-;35001:244:::0;;:::o;30143:24::-;;;;:::o;30354:27::-;;;;:::o;33647:98::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33731:6:::1;33718:10;:19;;;;33647:98:::0;:::o;30243:25::-;;;;:::o;11839:269::-;11932:4;11949:129;11958:12;:10;:12::i;:::-;11972:7;11981:96;12020:15;11981:96;;;;;;;;;;;;;;;;;:11;:25;11993:12;:10;:12::i;:::-;11981:25;;;;;;;;;;;;;;;:34;12007:7;11981:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11949:8;:129::i;:::-;12096:4;12089:11;;11839:269;;;;:::o;9167:175::-;9253:4;9270:42;9280:12;:10;:12::i;:::-;9294:9;9305:6;9270:9;:42::i;:::-;9330:4;9323:11;;9167:175;;;;:::o;30210:26::-;;;;:::o;30856:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29912:32::-;;;;;;;;;;;;;:::o;34583:182::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34699:8:::1;34668:19;:28;34688:7;34668:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34739:7;34723:34;;;34748:8;34723:34;;;;;;:::i;:::-;;;;;;;;34583:182:::0;;:::o;30063:39::-;;;;;;;;;;;;;:::o;29686:35::-;;;;:::o;30174:27::-;;;;:::o;9405:151::-;9494:7;9521:11;:18;9533:5;9521:18;;;;;;;;;;;;;;;:27;9540:7;9521:27;;;;;;;;;;;;;;;;9514:34;;9405:151;;;;:::o;29728:33::-;;;;:::o;30111:25::-;;;;:::o;30455:::-;;;;:::o;22304:244::-;21581:12;:10;:12::i;:::-;21571:22;;:6;;;;;;;;;;;:22;;;21563:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22413:1:::1;22393:22;;:8;:22;;;;22385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22503:8;22474:38;;22495:6;;;;;;;;;;;22474:38;;;;;;;;;;;;22532:8;22523:6;;:17;;;;;;;;;;;;;;;;;;22304:244:::0;:::o;29768:24::-;;;;:::o;16403:181::-;16461:7;16481:9;16497:1;16493;:5;;;;:::i;:::-;16481:17;;16522:1;16517;:6;;16509:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16575:1;16568:8;;;16403:181;;;;:::o;173:98::-;226:7;253:10;246:17;;173:98;:::o;15025:380::-;15178:1;15161:19;;:5;:19;;;;15153:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15259:1;15240:21;;:7;:21;;;;15232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15343:6;15313:11;:18;15325:5;15313:18;;;;;;;;;;;;;;;:27;15332:7;15313:27;;;;;;;;;;;;;;;:36;;;;15381:7;15365:32;;15374:5;15365:32;;;15390:6;15365:32;;;;;;:::i;:::-;;;;;;;;15025:380;;;:::o;34773:220::-;34861:3;34848:10;;34839:6;;:19;;;;:::i;:::-;:25;;;;:::i;:::-;34816:20;:48;;;;34909:5;34905:1;34896:6;;:10;;;;:::i;:::-;:18;;;;:::i;:::-;34875;:39;;;;34982:3;34968:11;;34959:6;;:20;;;;:::i;:::-;:26;;;;:::i;:::-;34947:9;:38;;;;34773:220::o;35586:4041::-;35734:1;35718:18;;:4;:18;;;;35710:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35811:1;35797:16;;:2;:16;;;;35789:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35888:1;35878:6;:11;35875:92;;;35906:28;35922:4;35928:2;35932:1;35906:15;:28::i;:::-;35949:7;;35875:92;35990:14;;;;;;;;;;;35987:1854;;;36050:7;:5;:7::i;:::-;36042:15;;:4;:15;;;;:49;;;;;36084:7;:5;:7::i;:::-;36078:13;;:2;:13;;;;36042:49;:86;;;;;36126:1;36112:16;;:2;:16;;;;36042:86;:128;;;;;36163:6;36149:21;;:2;:21;;;;36042:128;:158;;;;;36192:8;;;;;;;;;;;36191:9;36042:158;36020:1810;;;36238:13;;;;;;;;;;;36234:148;;36283:19;:25;36303:4;36283:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;36312:19;:23;36332:2;36312:23;;;;;;;;;;;;;;;;;;;;;;;;;36283:52;36275:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36234:148;36540:20;;;;;;;;;;;36536:436;;;36594:7;:5;:7::i;:::-;36588:13;;:2;:13;;;;:47;;;;;36619:15;36605:30;;:2;:30;;;;36588:47;:79;;;;;36653:13;36639:28;;:2;:28;;;;36588:79;36584:369;;;36745:12;36703:28;:39;36732:9;36703:39;;;;;;;;;;;;;;;;:54;36695:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36919:10;;36904:12;:25;;;;:::i;:::-;36862:28;:39;36891:9;36862:39;;;;;;;;;;;;;;;:67;;;;36584:369;36536:436;37041:25;:31;37067:4;37041:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37077:31;:35;37109:2;37077:35;;;;;;;;;;;;;;;;;;;;;;;;;37076:36;37041:71;37037:778;;;37159:20;;37149:6;:30;;37141:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;37298:9;;37281:13;37291:2;37281:9;:13::i;:::-;37272:6;:22;;;;:::i;:::-;:35;;37264:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37037:778;;;37425:25;:29;37451:2;37425:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37459:31;:37;37491:4;37459:37;;;;;;;;;;;;;;;;;;;;;;;;;37458:38;37425:71;37421:394;;;37543:20;;37533:6;:30;;37525:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;37421:394;;;37669:31;:35;37701:2;37669:35;;;;;;;;;;;;;;;;;;;;;;;;;37665:150;;37762:9;;37745:13;37755:2;37745:9;:13::i;:::-;37736:6;:22;;;;:::i;:::-;:35;;37728:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37665:150;37421:394;37037:778;36020:1810;35987:1854;37851:28;37882:24;37900:4;37882:9;:24::i;:::-;37851:55;;37927:12;37966:18;;37942:20;:42;;37927:57;;38015:7;:33;;;;;38040:8;;;;;;;;;;;38039:9;38015:33;:61;;;;;38065:11;;;;;;;;;;;38015:61;:110;;;;;38094:25;:31;38120:4;38094:31;;;;;;;;;;;;;;;;;;;;;;;;;38093:32;38015:110;:153;;;;;38143:19;:25;38163:4;38143:25;;;;;;;;;;;;;;;;;;;;;;;;;38142:26;38015:153;:194;;;;;38186:19;:23;38206:2;38186:23;;;;;;;;;;;;;;;;;;;;;;;;;38185:24;38015:194;37997:338;;;38247:4;38236:8;;:15;;;;;;;;;;;;;;;;;;38280:10;:8;:10::i;:::-;38318:5;38307:8;;:16;;;;;;;;;;;;;;;;;;37997:338;38355:12;38371:8;;;;;;;;;;;38370:9;38355:24;;38395:19;:25;38415:4;38395:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38424:19;:23;38444:2;38424:23;;;;;;;;;;;;;;;;;;;;;;;;;38395:52;38392:99;;;38474:5;38464:15;;38392:99;38511:12;38543:7;38540:1034;;;38594:25;:29;38620:2;38594:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;38643:1;38627:13;;:17;38594:50;38590:574;;;38671:34;38701:3;38671:25;38682:13;;38671:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;38664:41;;38762:13;;38748:11;;38741:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;38724:13;;:51;;;;;;;:::i;:::-;;;;;;;;38830:13;;38817:10;;38810:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;38794:12;;:49;;;;;;;:::i;:::-;;;;;;;;38590:574;;;38906:25;:31;38932:4;38906:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;38956:1;38941:12;;:16;38906:51;38903:261;;;38984:33;39013:3;38984:24;38995:12;;38984:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;38977:40;;39070:12;;39057:10;;39050:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;39033:13;;:49;;;;;;;:::i;:::-;;;;;;;;39136:12;;39124:9;;39117:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;39101:12;;:47;;;;;;;:::i;:::-;;;;;;;;38903:261;38590:574;39202:1;39195:4;:8;39192:334;;;39227:42;39243:4;39257;39264;39227:15;:42::i;:::-;39308:1;39292:13;;:17;39288:223;;;39334:35;39348:4;39355:13;;39334:5;:35::i;:::-;39401:13;:11;:13::i;:::-;39392:6;:22;;;;39437:14;:12;:14::i;:::-;39490:1;39474:13;:17;;;;39288:223;39192:334;39558:4;39548:14;;;;;:::i;:::-;;;38540:1034;39586:33;39602:4;39608:2;39612:6;39586:15;:33::i;:::-;35699:3928;;;;35586:4041;;;;:::o;17306:192::-;17392:7;17425:1;17420;:6;;17428:12;17412:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17452:9;17468:1;17464;:5;;;;:::i;:::-;17452:17;;17489:1;17482:8;;;17306:192;;;;;:::o;35253:188::-;35370:5;35336:25;:31;35362:4;35336:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35427:5;35393:40;;35421:4;35393:40;;;;;;;;;;;;35253:188;;:::o;12598:573::-;12756:1;12738:20;;:6;:20;;;;12730:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12840:1;12819:23;;:9;:23;;;;12811:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12895:47;12916:6;12924:9;12935:6;12895:20;:47::i;:::-;12975:71;12997:6;12975:71;;;;;;;;;;;;;;;;;:9;:17;12985:6;12975:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12955:9;:17;12965:6;12955:17;;;;;;;;;;;;;;;:91;;;;13080:32;13105:6;13080:9;:20;13090:9;13080:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13057:9;:20;13067:9;13057:20;;;;;;;;;;;;;;;:55;;;;13145:9;13128:35;;13137:6;13128:35;;;13156:6;13128:35;;;;;;:::i;:::-;;;;;;;;12598:573;;;:::o;40248:464::-;40287:23;40313:24;40331:4;40313:9;:24::i;:::-;40287:50;;40348:12;40403:1;40384:15;:20;40381:34;;;40407:7;;;;40381:34;40469:2;40448:18;;:23;;;;:::i;:::-;40430:15;:41;40427:111;;;40524:2;40503:18;;:23;;;;:::i;:::-;40485:41;;40427:111;40550:33;40567:15;40550:16;:33::i;:::-;40620:1;40605:12;:16;;;;40655:9;;;;;;;;;;;40647:23;;40678:21;40647:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40634:70;;;;;40276:436;;40248:464;:::o;17757:471::-;17815:7;18065:1;18060;:6;18056:47;;;18090:1;18083:8;;;;18056:47;18115:9;18131:1;18127;:5;;;;:::i;:::-;18115:17;;18160:1;18155;18151;:5;;;;:::i;:::-;:10;18143:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18219:1;18212:8;;;17757:471;;;;;:::o;18704:132::-;18762:7;18789:39;18793:1;18796;18789:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18782:46;;18704:132;;;;:::o;14169:418::-;14272:1;14253:21;;:7;:21;;;;14245:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14325:49;14346:7;14363:1;14367:6;14325:20;:49::i;:::-;14408:68;14431:6;14408:68;;;;;;;;;;;;;;;;;:9;:18;14418:7;14408:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;14387:9;:18;14397:7;14387:18;;;;;;;;;;;;;;;:89;;;;14502:24;14519:6;14502:12;;:16;;:24;;;;:::i;:::-;14487:12;:39;;;;14568:1;14542:37;;14551:7;14542:37;;;14572:6;14542:37;;;;;;:::i;:::-;;;;;;;;14169:418;;:::o;16008:125::-;;;;:::o;39635:601::-;39763:21;39801:1;39787:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39763:40;;39832:4;39814;39819:1;39814:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;39858:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39848:4;39853:1;39848:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;39893:62;39910:4;39925:15;39943:11;39893:8;:62::i;:::-;39994:15;:66;;;40075:11;40101:1;40145:4;40172;40192:15;39994:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39690:546;39635:601;:::o;19332:278::-;19418:7;19450:1;19446;:5;19453:12;19438:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19477:9;19493:1;19489;:5;;;;:::i;:::-;19477:17;;19601:1;19594:8;;;19332:278;;;;;:::o;16867:136::-;16925:7;16952:43;16956:1;16959;16952:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16945:50;;16867:136;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:99::-;1574:6;1608:5;1602:12;1592:22;;1522:99;;;:::o;1627:169::-;1711:11;1745:6;1740:3;1733:19;1785:4;1780:3;1776:14;1761:29;;1627:169;;;;:::o;1802:307::-;1870:1;1880:113;1894:6;1891:1;1888:13;1880:113;;;1979:1;1974:3;1970:11;1964:18;1960:1;1955:3;1951:11;1944:39;1916:2;1913:1;1909:10;1904:15;;1880:113;;;2011:6;2008:1;2005:13;2002:101;;;2091:1;2082:6;2077:3;2073:16;2066:27;2002:101;1851:258;1802:307;;;:::o;2115:102::-;2156:6;2207:2;2203:7;2198:2;2191:5;2187:14;2183:28;2173:38;;2115:102;;;:::o;2223:364::-;2311:3;2339:39;2372:5;2339:39;:::i;:::-;2394:71;2458:6;2453:3;2394:71;:::i;:::-;2387:78;;2474:52;2519:6;2514:3;2507:4;2500:5;2496:16;2474:52;:::i;:::-;2551:29;2573:6;2551:29;:::i;:::-;2546:3;2542:39;2535:46;;2315:272;2223:364;;;;:::o;2593:313::-;2706:4;2744:2;2733:9;2729:18;2721:26;;2793:9;2787:4;2783:20;2779:1;2768:9;2764:17;2757:47;2821:78;2894:4;2885:6;2821:78;:::i;:::-;2813:86;;2593:313;;;;:::o;2912:126::-;2949:7;2989:42;2982:5;2978:54;2967:65;;2912:126;;;:::o;3044:96::-;3081:7;3110:24;3128:5;3110:24;:::i;:::-;3099:35;;3044:96;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:::-;4720:6;4769:2;4757:9;4748:7;4744:23;4740:32;4737:119;;;4775:79;;:::i;:::-;4737:119;4895:1;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4866:117;4661:329;;;;:::o;4996:60::-;5024:3;5045:5;5038:12;;4996:60;;;:::o;5062:142::-;5112:9;5145:53;5163:34;5172:24;5190:5;5172:24;:::i;:::-;5163:34;:::i;:::-;5145:53;:::i;:::-;5132:66;;5062:142;;;:::o;5210:126::-;5260:9;5293:37;5324:5;5293:37;:::i;:::-;5280:50;;5210:126;;;:::o;5342:153::-;5419:9;5452:37;5483:5;5452:37;:::i;:::-;5439:50;;5342:153;;;:::o;5501:185::-;5615:64;5673:5;5615:64;:::i;:::-;5610:3;5603:77;5501:185;;:::o;5692:276::-;5812:4;5850:2;5839:9;5835:18;5827:26;;5863:98;5958:1;5947:9;5943:17;5934:6;5863:98;:::i;:::-;5692:276;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:474::-;8184:6;8192;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:53;8437:7;8428:6;8417:9;8413:22;8392:53;:::i;:::-;8382:63;;8338:117;8494:2;8520:53;8565:7;8556:6;8545:9;8541:22;8520:53;:::i;:::-;8510:63;;8465:118;8116:474;;;;;:::o;8596:182::-;8736:34;8732:1;8724:6;8720:14;8713:58;8596:182;:::o;8784:366::-;8926:3;8947:67;9011:2;9006:3;8947:67;:::i;:::-;8940:74;;9023:93;9112:3;9023:93;:::i;:::-;9141:2;9136:3;9132:12;9125:19;;8784:366;;;:::o;9156:419::-;9322:4;9360:2;9349:9;9345:18;9337:26;;9409:9;9403:4;9399:20;9395:1;9384:9;9380:17;9373:47;9437:131;9563:4;9437:131;:::i;:::-;9429:139;;9156:419;;;:::o;9581:180::-;9629:77;9626:1;9619:88;9726:4;9723:1;9716:15;9750:4;9747:1;9740:15;9767:305;9807:3;9826:20;9844:1;9826:20;:::i;:::-;9821:25;;9860:20;9878:1;9860:20;:::i;:::-;9855:25;;10014:1;9946:66;9942:74;9939:1;9936:81;9933:107;;;10020:18;;:::i;:::-;9933:107;10064:1;10061;10057:9;10050:16;;9767:305;;;;:::o;10078:179::-;10218:31;10214:1;10206:6;10202:14;10195:55;10078:179;:::o;10263:366::-;10405:3;10426:67;10490:2;10485:3;10426:67;:::i;:::-;10419:74;;10502:93;10591:3;10502:93;:::i;:::-;10620:2;10615:3;10611:12;10604:19;;10263:366;;;:::o;10635:419::-;10801:4;10839:2;10828:9;10824:18;10816:26;;10888:9;10882:4;10878:20;10874:1;10863:9;10859:17;10852:47;10916:131;11042:4;10916:131;:::i;:::-;10908:139;;10635:419;;;:::o;11060:180::-;11108:77;11105:1;11098:88;11205:4;11202:1;11195:15;11229:4;11226:1;11219:15;11246:320;11290:6;11327:1;11321:4;11317:12;11307:22;;11374:1;11368:4;11364:12;11395:18;11385:81;;11451:4;11443:6;11439:17;11429:27;;11385:81;11513:2;11505:6;11502:14;11482:18;11479:38;11476:84;;;11532:18;;:::i;:::-;11476:84;11297:269;11246:320;;;:::o;11572:244::-;11712:34;11708:1;11700:6;11696:14;11689:58;11781:27;11776:2;11768:6;11764:15;11757:52;11572:244;:::o;11822:366::-;11964:3;11985:67;12049:2;12044:3;11985:67;:::i;:::-;11978:74;;12061:93;12150:3;12061:93;:::i;:::-;12179:2;12174:3;12170:12;12163:19;;11822:366;;;:::o;12194:419::-;12360:4;12398:2;12387:9;12383:18;12375:26;;12447:9;12441:4;12437:20;12433:1;12422:9;12418:17;12411:47;12475:131;12601:4;12475:131;:::i;:::-;12467:139;;12194:419;;;:::o;12619:225::-;12759:34;12755:1;12747:6;12743:14;12736:58;12828:8;12823:2;12815:6;12811:15;12804:33;12619:225;:::o;12850:366::-;12992:3;13013:67;13077:2;13072:3;13013:67;:::i;:::-;13006:74;;13089:93;13178:3;13089:93;:::i;:::-;13207:2;13202:3;13198:12;13191:19;;12850:366;;;:::o;13222:419::-;13388:4;13426:2;13415:9;13411:18;13403:26;;13475:9;13469:4;13465:20;13461:1;13450:9;13446:17;13439:47;13503:131;13629:4;13503:131;:::i;:::-;13495:139;;13222:419;;;:::o;13647:177::-;13787:29;13783:1;13775:6;13771:14;13764:53;13647:177;:::o;13830:366::-;13972:3;13993:67;14057:2;14052:3;13993:67;:::i;:::-;13986:74;;14069:93;14158:3;14069:93;:::i;:::-;14187:2;14182:3;14178:12;14171:19;;13830:366;;;:::o;14202:419::-;14368:4;14406:2;14395:9;14391:18;14383:26;;14455:9;14449:4;14445:20;14441:1;14430:9;14426:17;14419:47;14483:131;14609:4;14483:131;:::i;:::-;14475:139;;14202:419;;;:::o;14627:223::-;14767:34;14763:1;14755:6;14751:14;14744:58;14836:6;14831:2;14823:6;14819:15;14812:31;14627:223;:::o;14856:366::-;14998:3;15019:67;15083:2;15078:3;15019:67;:::i;:::-;15012:74;;15095:93;15184:3;15095:93;:::i;:::-;15213:2;15208:3;15204:12;15197:19;;14856:366;;;:::o;15228:419::-;15394:4;15432:2;15421:9;15417:18;15409:26;;15481:9;15475:4;15471:20;15467:1;15456:9;15452:17;15445:47;15509:131;15635:4;15509:131;:::i;:::-;15501:139;;15228:419;;;:::o;15653:221::-;15793:34;15789:1;15781:6;15777:14;15770:58;15862:4;15857:2;15849:6;15845:15;15838:29;15653:221;:::o;15880:366::-;16022:3;16043:67;16107:2;16102:3;16043:67;:::i;:::-;16036:74;;16119:93;16208:3;16119:93;:::i;:::-;16237:2;16232:3;16228:12;16221:19;;15880:366;;;:::o;16252:419::-;16418:4;16456:2;16445:9;16441:18;16433:26;;16505:9;16499:4;16495:20;16491:1;16480:9;16476:17;16469:47;16533:131;16659:4;16533:131;:::i;:::-;16525:139;;16252:419;;;:::o;16677:348::-;16717:7;16740:20;16758:1;16740:20;:::i;:::-;16735:25;;16774:20;16792:1;16774:20;:::i;:::-;16769:25;;16962:1;16894:66;16890:74;16887:1;16884:81;16879:1;16872:9;16865:17;16861:105;16858:131;;;16969:18;;:::i;:::-;16858:131;17017:1;17014;17010:9;16999:20;;16677:348;;;;:::o;17031:180::-;17079:77;17076:1;17069:88;17176:4;17173:1;17166:15;17200:4;17197:1;17190:15;17217:185;17257:1;17274:20;17292:1;17274:20;:::i;:::-;17269:25;;17308:20;17326:1;17308:20;:::i;:::-;17303:25;;17347:1;17337:35;;17352:18;;:::i;:::-;17337:35;17394:1;17391;17387:9;17382:14;;17217:185;;;;:::o;17408:224::-;17548:34;17544:1;17536:6;17532:14;17525:58;17617:7;17612:2;17604:6;17600:15;17593:32;17408:224;:::o;17638:366::-;17780:3;17801:67;17865:2;17860:3;17801:67;:::i;:::-;17794:74;;17877:93;17966:3;17877:93;:::i;:::-;17995:2;17990:3;17986:12;17979:19;;17638:366;;;:::o;18010:419::-;18176:4;18214:2;18203:9;18199:18;18191:26;;18263:9;18257:4;18253:20;18249:1;18238:9;18234:17;18227:47;18291:131;18417:4;18291:131;:::i;:::-;18283:139;;18010:419;;;:::o;18435:222::-;18575:34;18571:1;18563:6;18559:14;18552:58;18644:5;18639:2;18631:6;18627:15;18620:30;18435:222;:::o;18663:366::-;18805:3;18826:67;18890:2;18885:3;18826:67;:::i;:::-;18819:74;;18902:93;18991:3;18902:93;:::i;:::-;19020:2;19015:3;19011:12;19004:19;;18663:366;;;:::o;19035:419::-;19201:4;19239:2;19228:9;19224:18;19216:26;;19288:9;19282:4;19278:20;19274:1;19263:9;19259:17;19252:47;19316:131;19442:4;19316:131;:::i;:::-;19308:139;;19035:419;;;:::o;19460:172::-;19600:24;19596:1;19588:6;19584:14;19577:48;19460:172;:::o;19638:366::-;19780:3;19801:67;19865:2;19860:3;19801:67;:::i;:::-;19794:74;;19877:93;19966:3;19877:93;:::i;:::-;19995:2;19990:3;19986:12;19979:19;;19638:366;;;:::o;20010:419::-;20176:4;20214:2;20203:9;20199:18;20191:26;;20263:9;20257:4;20253:20;20249:1;20238:9;20234:17;20227:47;20291:131;20417:4;20291:131;:::i;:::-;20283:139;;20010:419;;;:::o;20435:297::-;20575:34;20571:1;20563:6;20559:14;20552:58;20644:34;20639:2;20631:6;20627:15;20620:59;20713:11;20708:2;20700:6;20696:15;20689:36;20435:297;:::o;20738:366::-;20880:3;20901:67;20965:2;20960:3;20901:67;:::i;:::-;20894:74;;20977:93;21066:3;20977:93;:::i;:::-;21095:2;21090:3;21086:12;21079:19;;20738:366;;;:::o;21110:419::-;21276:4;21314:2;21303:9;21299:18;21291:26;;21363:9;21357:4;21353:20;21349:1;21338:9;21334:17;21327:47;21391:131;21517:4;21391:131;:::i;:::-;21383:139;;21110:419;;;:::o;21535:240::-;21675:34;21671:1;21663:6;21659:14;21652:58;21744:23;21739:2;21731:6;21727:15;21720:48;21535:240;:::o;21781:366::-;21923:3;21944:67;22008:2;22003:3;21944:67;:::i;:::-;21937:74;;22020:93;22109:3;22020:93;:::i;:::-;22138:2;22133:3;22129:12;22122:19;;21781:366;;;:::o;22153:419::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:169::-;22718:21;22714:1;22706:6;22702:14;22695:45;22578:169;:::o;22753:366::-;22895:3;22916:67;22980:2;22975:3;22916:67;:::i;:::-;22909:74;;22992:93;23081:3;22992:93;:::i;:::-;23110:2;23105:3;23101:12;23094:19;;22753:366;;;:::o;23125:419::-;23291:4;23329:2;23318:9;23314:18;23306:26;;23378:9;23372:4;23368:20;23364:1;23353:9;23349:17;23342:47;23406:131;23532:4;23406:131;:::i;:::-;23398:139;;23125:419;;;:::o;23550:241::-;23690:34;23686:1;23678:6;23674:14;23667:58;23759:24;23754:2;23746:6;23742:15;23735:49;23550:241;:::o;23797:366::-;23939:3;23960:67;24024:2;24019:3;23960:67;:::i;:::-;23953:74;;24036:93;24125:3;24036:93;:::i;:::-;24154:2;24149:3;24145:12;24138:19;;23797:366;;;:::o;24169:419::-;24335:4;24373:2;24362:9;24358:18;24350:26;;24422:9;24416:4;24412:20;24408:1;24397:9;24393:17;24386:47;24450:131;24576:4;24450:131;:::i;:::-;24442:139;;24169:419;;;:::o;24594:191::-;24634:4;24654:20;24672:1;24654:20;:::i;:::-;24649:25;;24688:20;24706:1;24688:20;:::i;:::-;24683:25;;24727:1;24724;24721:8;24718:34;;;24732:18;;:::i;:::-;24718:34;24777:1;24774;24770:9;24762:17;;24594:191;;;;:::o;24791:147::-;24892:11;24929:3;24914:18;;24791:147;;;;:::o;24944:114::-;;:::o;25064:398::-;25223:3;25244:83;25325:1;25320:3;25244:83;:::i;:::-;25237:90;;25336:93;25425:3;25336:93;:::i;:::-;25454:1;25449:3;25445:11;25438:18;;25064:398;;;:::o;25468:379::-;25652:3;25674:147;25817:3;25674:147;:::i;:::-;25667:154;;25838:3;25831:10;;25468:379;;;:::o;25853:220::-;25993:34;25989:1;25981:6;25977:14;25970:58;26062:3;26057:2;26049:6;26045:15;26038:28;25853:220;:::o;26079:366::-;26221:3;26242:67;26306:2;26301:3;26242:67;:::i;:::-;26235:74;;26318:93;26407:3;26318:93;:::i;:::-;26436:2;26431:3;26427:12;26420:19;;26079:366;;;:::o;26451:419::-;26617:4;26655:2;26644:9;26640:18;26632:26;;26704:9;26698:4;26694:20;26690:1;26679:9;26675:17;26668:47;26732:131;26858:4;26732:131;:::i;:::-;26724:139;;26451:419;;;:::o;26876:220::-;27016:34;27012:1;27004:6;27000:14;26993:58;27085:3;27080:2;27072:6;27068:15;27061:28;26876:220;:::o;27102:366::-;27244:3;27265:67;27329:2;27324:3;27265:67;:::i;:::-;27258:74;;27341:93;27430:3;27341:93;:::i;:::-;27459:2;27454:3;27450:12;27443:19;;27102:366;;;:::o;27474:419::-;27640:4;27678:2;27667:9;27663:18;27655:26;;27727:9;27721:4;27717:20;27713:1;27702:9;27698:17;27691:47;27755:131;27881:4;27755:131;:::i;:::-;27747:139;;27474:419;;;:::o;27899:180::-;27947:77;27944:1;27937:88;28044:4;28041:1;28034:15;28068:4;28065:1;28058:15;28085:180;28133:77;28130:1;28123:88;28230:4;28227:1;28220:15;28254:4;28251:1;28244:15;28271:143;28328:5;28359:6;28353:13;28344:22;;28375:33;28402:5;28375:33;:::i;:::-;28271:143;;;;:::o;28420:351::-;28490:6;28539:2;28527:9;28518:7;28514:23;28510:32;28507:119;;;28545:79;;:::i;:::-;28507:119;28665:1;28690:64;28746:7;28737:6;28726:9;28722:22;28690:64;:::i;:::-;28680:74;;28636:128;28420:351;;;;:::o;28777:85::-;28822:7;28851:5;28840:16;;28777:85;;;:::o;28868:158::-;28926:9;28959:61;28977:42;28986:32;29012:5;28986:32;:::i;:::-;28977:42;:::i;:::-;28959:61;:::i;:::-;28946:74;;28868:158;;;:::o;29032:147::-;29127:45;29166:5;29127:45;:::i;:::-;29122:3;29115:58;29032:147;;:::o;29185:114::-;29252:6;29286:5;29280:12;29270:22;;29185:114;;;:::o;29305:184::-;29404:11;29438:6;29433:3;29426:19;29478:4;29473:3;29469:14;29454:29;;29305:184;;;;:::o;29495:132::-;29562:4;29585:3;29577:11;;29615:4;29610:3;29606:14;29598:22;;29495:132;;;:::o;29633:108::-;29710:24;29728:5;29710:24;:::i;:::-;29705:3;29698:37;29633:108;;:::o;29747:179::-;29816:10;29837:46;29879:3;29871:6;29837:46;:::i;:::-;29915:4;29910:3;29906:14;29892:28;;29747:179;;;;:::o;29932:113::-;30002:4;30034;30029:3;30025:14;30017:22;;29932:113;;;:::o;30081:732::-;30200:3;30229:54;30277:5;30229:54;:::i;:::-;30299:86;30378:6;30373:3;30299:86;:::i;:::-;30292:93;;30409:56;30459:5;30409:56;:::i;:::-;30488:7;30519:1;30504:284;30529:6;30526:1;30523:13;30504:284;;;30605:6;30599:13;30632:63;30691:3;30676:13;30632:63;:::i;:::-;30625:70;;30718:60;30771:6;30718:60;:::i;:::-;30708:70;;30564:224;30551:1;30548;30544:9;30539:14;;30504:284;;;30508:14;30804:3;30797:10;;30205:608;;;30081:732;;;;:::o;30819:831::-;31082:4;31120:3;31109:9;31105:19;31097:27;;31134:71;31202:1;31191:9;31187:17;31178:6;31134:71;:::i;:::-;31215:80;31291:2;31280:9;31276:18;31267:6;31215:80;:::i;:::-;31342:9;31336:4;31332:20;31327:2;31316:9;31312:18;31305:48;31370:108;31473:4;31464:6;31370:108;:::i;:::-;31362:116;;31488:72;31556:2;31545:9;31541:18;31532:6;31488:72;:::i;:::-;31570:73;31638:3;31627:9;31623:19;31614:6;31570:73;:::i;:::-;30819:831;;;;;;;;:::o

Swarm Source

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