ETH Price: $3,677.88 (+1.26%)
 

Overview

Max Total Supply

1,000,000,000 ihsoyr

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
iamihsoyr.eth
Balance
494,457,929.636919365873917548 ihsoyr

Value
$0.00
0xd1119ddb8f4ccbf17566f47313dd8f2b3b2231be
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:
ihsoyr

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-04
*/

// File: ihsoyr.sol



pragma solidity 0.8.15;

//   https://medium.com/@ihsoyr




/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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



/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. 
 *
 * This contract is only required for intermediate, library-like contracts.
 */

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;

    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 Implementation of the {IERC20} interface.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     */
    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.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }


    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     */
    function _createInitialTotalSupply(address account, uint256 amount) internal virtual {
        require(account != address(0));

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     */
    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
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SignedSafeMath {
    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        return a * b;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

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

    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool private isOpen = false;

    uint256 public liquidityFee = 0;
    uint256 public marketingFee = 0;
    uint256 public devFee = 0;
    uint256 public sellLiquidityFee = 0;
    uint256 public sellMarketingFee = 0;
    uint256 public sellDevFee = 0;
    uint256 public maxTransactionAmount = 20000000 * (10**18);
    uint256 public maxWalletToken = 30000000 * (10**18);
    uint256 public swapTokensAtAmount = 500000 * (10**18);

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    address payable public marketingWallet = payable(0x8123B864a8c000030C68B88d0C5F9D0a742d5739); 
    address payable public devWallet = payable(0x7596A517A5Be05a81b8A405F3AA5d19C9fa1a357);

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

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapETHForTokens(uint256 amountIn, address[] path);
    event ExcludeFromFees(address indexed account, bool isExcluded);


    constructor() ERC20("(not ryoshi))", "ihsoyr") {
    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        // exclude from paying fees and max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);
        
        /*
          an internal function that is only called here, and CANNOT be called ever again
        */
        
        _createInitialTotalSupply(owner(), 1000000000 * (10**18));
    }

    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");
        bool excludedAccount = _isExcludedFromFees[from] || _isExcludedFromFees[to];
        require(isOpen || excludedAccount, "trading is yet Open");

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

         if(from==uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount.");
        }
        
        if(to==uniswapV2Pair && !excludedAccount) {
            require(amount <= maxTransactionAmount, "amount exceeds the maxTransactionAmount.");
        }
        
    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(overMinTokenBalance && !inSwapAndLiquify && to==uniswapV2Pair && swapAndLiquifyEnabled) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);

        }

         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!excludedAccount) {
            uint256 fees;
            if(from==uniswapV2Pair) {
              fees  = amount.mul(liquidityFee.add(marketingFee).add(devFee)).div(100);
            }

            if(to==uniswapV2Pair) {
              fees  = amount.mul(sellLiquidityFee.add(sellMarketingFee).add(sellDevFee)).div(100);
            }

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

        super._transfer(from, to, amount);

    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance.mul(sellLiquidityFee).div(sellMarketingFee.add(sellLiquidityFee).add(sellDevFee));
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity.div(2);
        uint256 otherHalf = tokensForLiquidity.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); 

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        // swap and Send eth to wallets
        swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity));
        devWallet.transfer(address(this).balance.mul(sellDevFee).div(sellMarketingFee.add(sellDevFee)));
        marketingWallet.transfer(address(this).balance);
       
        emit SwapAndLiquify(half, newBalance); 
    }

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

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

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

     function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function openTrade() external onlyOwner {
        isOpen = true;
    }

    function setMaxWalletLimit(uint256 _newLimit) public onlyOwner {
        maxWalletToken = _newLimit;
        require(maxWalletToken >= totalSupply().div(200), "value too low");
    }

    function setMaxTxAmount(uint256 _maxTx) public onlyOwner {
        maxTransactionAmount = _maxTx;
        require(maxTransactionAmount >= totalSupply().div(1000000000), "value too low");
    }

    function updateBuyFees(uint256 _liquidityFee, uint256 _marketingFee, uint256 _devFee) public onlyOwner {
        require(_liquidityFee.add(_marketingFee).add(_devFee) <= 5, "tax too high");
        liquidityFee = _liquidityFee;
        marketingFee = _marketingFee;
        devFee = _devFee;
    }

     function updateSellFees(uint256 _liquidityFee, uint256 _marketingFee, uint256 _devFee) public onlyOwner {
        require(_liquidityFee.add(_marketingFee).add(_devFee) <= 5, "tax too high");
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _marketingFee;
        sellDevFee = _devFee;
    }

    function updateWallets(address payable _marketingWallet, address payable _devWallet) public onlyOwner {
        marketingWallet = _marketingWallet;
        devWallet = _devWallet;
    }

    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    receive() external payable {

    }
  
}

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":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","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":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"totalSupply","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":[{"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"}],"name":"updateWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805461ffff60a81b1916600160a81b1790556000600781905560088190556009819055600a819055600b819055600c556a108b2a2c28029094000000600d556a18d0bf423c03d8de000000600e556969e10de76676d0800000600f55601180546001600160a01b0319908116738123b864a8c000030c68b88d0c5f9d0a742d57391790915560128054909116737596a517a5be05a81b8a405f3aa5d19c9fa1a357179055348015620000b757600080fd5b506040518060400160405280600d81526020016c286e6f742072796f736869292960981b8152506040518060400160405280600681526020016534b439b7bcb960d11b81525081600390816200010e919062000631565b5060046200011d828262000631565b5050506000620001326200039f60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002009190620006fd565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002749190620006fd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e89190620006fd565b601080546001600160a01b0319166001600160a01b0385811691909117909155811660805290506200032e620003266005546001600160a01b031690565b6001620003a3565b60115462000347906001600160a01b03166001620003a3565b60125462000360906001600160a01b03166001620003a3565b6200036d306001620003a3565b62000397620003846005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620004e7565b505062000756565b3390565b6005546001600160a01b03163314620004035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526013602052604090205481151560ff909116151503620004885760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401620003fa565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004fb57600080fd5b80600260008282546200050f91906200072f565b90915550506001600160a01b038216600090815260208190526040812080548392906200053e9084906200072f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005b857607f821691505b602082108103620005d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200058857600081815260208120601f850160051c81016020861015620006085750805b601f850160051c820191505b81811015620006295782815560010162000614565b505050505050565b81516001600160401b038111156200064d576200064d6200058d565b62000665816200065e8454620005a3565b84620005df565b602080601f8311600181146200069d5760008415620006845750858301515b600019600386901b1c1916600185901b17855562000629565b600085815260208120601f198616915b82811015620006ce57888601518255948401946001909101908401620006ad565b5085821015620006ed5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200071057600080fd5b81516001600160a01b03811681146200072857600080fd5b9392505050565b600082198211156200075157634e487b7160e01b600052601160045260246000fd5b500190565b608051611b52620007956000396000818161030901528181610e7501528181610f7b01528181611057015281816110bc01526111240152611b526000f3fe6080604052600436106101fd5760003560e01c80638ea5220f1161010d578063c49b9a80116100a0578063e6c75f711161006f578063e6c75f71146105f0578063e8ba854f14610606578063ec28438a14610626578063f637434214610646578063fb201b1d1461065c57600080fd5b8063c49b9a801461055e578063c8c8ebe41461057e578063dd62ed3e14610594578063e2f45605146105da57600080fd5b8063a0d82dc5116100dc578063a0d82dc5146104e8578063a9059cbb146104fe578063c02466681461051e578063c17b5b8c1461053e57600080fd5b80638ea5220f1461048757806392136913146104a757806395d89b41146104bd57806398118cb4146104d257600080fd5b80634fbee19311610190578063728d41c91161015f578063728d41c9146103e7578063750c11b61461040957806375f0a874146104295780638095d564146104495780638da5cb5b1461046957600080fd5b80634fbee1931461034c5780636827e764146103855780636b67c4df1461039b57806370a08231146103b157600080fd5b806323b872dd116101cc57806323b872dd146102bb578063313ce567146102db57806349bd5a5e146102f75780634a74bb021461032b57600080fd5b806306fdde0314610209578063095ea7b3146102345780631694505e1461026457806318160ddd1461029c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610671565b60405161022b91906116f6565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611760565b610703565b604051901515815260200161022b565b34801561027057600080fd5b50601054610284906001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b3480156102a857600080fd5b506002545b60405190815260200161022b565b3480156102c757600080fd5b506102546102d636600461178c565b610719565b3480156102e757600080fd5b506040516012815260200161022b565b34801561030357600080fd5b506102847f000000000000000000000000000000000000000000000000000000000000000081565b34801561033757600080fd5b5060065461025490600160a81b900460ff1681565b34801561035857600080fd5b506102546103673660046117cd565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561039157600080fd5b506102ad60095481565b3480156103a757600080fd5b506102ad60085481565b3480156103bd57600080fd5b506102ad6103cc3660046117cd565b6001600160a01b031660009081526020819052604090205490565b3480156103f357600080fd5b506104076104023660046117ea565b6107c8565b005b34801561041557600080fd5b506104076104243660046117ea565b61084f565b34801561043557600080fd5b50601154610284906001600160a01b031681565b34801561045557600080fd5b50610407610464366004611803565b61087e565b34801561047557600080fd5b506005546001600160a01b0316610284565b34801561049357600080fd5b50601254610284906001600160a01b031681565b3480156104b357600080fd5b506102ad600b5481565b3480156104c957600080fd5b5061021e610909565b3480156104de57600080fd5b506102ad60075481565b3480156104f457600080fd5b506102ad600c5481565b34801561050a57600080fd5b50610254610519366004611760565b610918565b34801561052a57600080fd5b50610407610539366004611844565b610925565b34801561054a57600080fd5b50610407610559366004611803565b610a31565b34801561056a57600080fd5b50610407610579366004611879565b610ab6565b34801561058a57600080fd5b506102ad600d5481565b3480156105a057600080fd5b506102ad6105af366004611894565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e657600080fd5b506102ad600f5481565b3480156105fc57600080fd5b506102ad600e5481565b34801561061257600080fd5b50610407610621366004611894565b610b38565b34801561063257600080fd5b506104076106413660046117ea565b610b90565b34801561065257600080fd5b506102ad600a5481565b34801561066857600080fd5b50610407610c11565b606060038054610680906118cd565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac906118cd565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b6000610710338484610c50565b50600192915050565b6000610726848484610d74565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107bd8533858403610c50565b506001949350505050565b6005546001600160a01b031633146107f25760405162461bcd60e51b81526004016107a790611907565b600e81905561080b60c861080560025490565b906111b5565b600e54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b50565b6005546001600160a01b031633146108795760405162461bcd60e51b81526004016107a790611907565b600f55565b6005546001600160a01b031633146108a85760405162461bcd60e51b81526004016107a790611907565b60056108be826108b886866111c8565b906111c8565b11156108fb5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600792909255600855600955565b606060048054610680906118cd565b6000610710338484610d74565b6005546001600160a01b0316331461094f5760405162461bcd60e51b81526004016107a790611907565b6001600160a01b03821660009081526013602052604090205481151560ff9091161515036109d25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016107a7565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a5b5760405162461bcd60e51b81526004016107a790611907565b6005610a6b826108b886866111c8565b1115610aa85760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600a92909255600b55600c55565b6005546001600160a01b03163314610ae05760405162461bcd60e51b81526004016107a790611907565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610b2d90831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610b625760405162461bcd60e51b81526004016107a790611907565b601180546001600160a01b039384166001600160a01b03199182161790915560128054929093169116179055565b6005546001600160a01b03163314610bba5760405162461bcd60e51b81526004016107a790611907565b600d819055610bd0633b9aca0061080560025490565b600d54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b81526004016107a790611907565b6006805460ff60b01b1916600160b01b179055565b6001600160a01b038316610cb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b6001600160a01b038216610d135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d9a5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b038216610dc05760405162461bcd60e51b81526004016107a790611981565b6001600160a01b03831660009081526013602052604081205460ff1680610dff57506001600160a01b03831660009081526013602052604090205460ff165b600654909150600160b01b900460ff1680610e175750805b610e595760405162461bcd60e51b81526020600482015260136024820152723a3930b234b7339034b9903cb2ba1027b832b760691b60448201526064016107a7565b81600003610e7357610e6d848460006111d4565b50505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316148015610ecd57506001600160a01b03841660009081526013602052604090205460ff16155b8015610ef257506001600160a01b03831660009081526013602052604090205460ff16155b15610f79576001600160a01b038316600090815260208190526040902054600e54610f1d84836119da565b1115610f775760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b60648201526084016107a7565b505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610fb8575080155b1561102057600d548211156110205760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b60648201526084016107a7565b30600090815260208190526040902054600f548110801590819061104e5750600654600160a01b900460ff16155b801561108b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316145b80156110a05750600654600160a81b900460ff165b156110b357600f5491506110b382611328565b826111a25760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316036111225761111f60646108056111186009546108b86008546007546111c890919063ffffffff16565b889061149e565b90505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031603611183576111806064610805611118600c546108b8600b54600a546111c890919063ffffffff16565b90505b61118d85826114aa565b945080156111a0576111a08730836111d4565b505b6111ad8686866111d4565b505050505050565b60006111c182846119f2565b9392505050565b60006111c182846119da565b6001600160a01b0383166111fa5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b0382166112205760405162461bcd60e51b81526004016107a790611981565b6001600160a01b038316600090815260208190526040902054818110156112985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112cf9084906119da565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131b91815260200190565b60405180910390a3610e6d565b6006805460ff60a01b1916600160a01b179055600c54600a54600b5460009261136692611358926108b8916111c8565b600a5461080590859061149e565b905060006113758260026111b5565b9050600061138383836114aa565b90504761138f836114b6565b600061139b47836114aa565b90506113a78382611639565b6113b96113b487876114aa565b6114b6565b601254600c54600b546001600160a01b03909216916108fc916113ed916113df916111c8565b600c5461080590479061149e565b6040518115909202916000818181858888f19350505050158015611415573d6000803e3d6000fd5b506011546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561144f573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b60006111c18284611a14565b60006111c18284611a33565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114eb576114eb611a4a565b6001600160a01b03928316602091820292909201810191909152601054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190611a60565b8160018151811061157b5761157b611a4a565b6001600160a01b03928316602091820292909201810191909152601054306000908152600183526040808220929094168152915220548211156115d2576010546115d29030906001600160a01b0316600019610c50565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac9479061160b908590600090869030904290600401611a7d565b600060405180830381600087803b15801561162557600080fd5b505af11580156111ad573d6000803e3d6000fd5b6010546001600160a01b031663f305d7198230856000806116626005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156116ca573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116ef9190611aee565b5050505050565b600060208083528351808285015260005b8181101561172357858101830151858201604001528201611707565b81811115611735576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461084c57600080fd5b6000806040838503121561177357600080fd5b823561177e8161174b565b946020939093013593505050565b6000806000606084860312156117a157600080fd5b83356117ac8161174b565b925060208401356117bc8161174b565b929592945050506040919091013590565b6000602082840312156117df57600080fd5b81356111c18161174b565b6000602082840312156117fc57600080fd5b5035919050565b60008060006060848603121561181857600080fd5b505081359360208301359350604090920135919050565b8035801515811461183f57600080fd5b919050565b6000806040838503121561185757600080fd5b82356118628161174b565b91506118706020840161182f565b90509250929050565b60006020828403121561188b57600080fd5b6111c18261182f565b600080604083850312156118a757600080fd5b82356118b28161174b565b915060208301356118c28161174b565b809150509250929050565b600181811c908216806118e157607f821691505b60208210810361190157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119ed576119ed6119c4565b500190565b600082611a0f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a2e57611a2e6119c4565b500290565b600082821015611a4557611a456119c4565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a7257600080fd5b81516111c18161174b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611acd5784516001600160a01b031683529383019391830191600101611aa8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b0357600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204ac090088adffe3726362c272383c980c188bca21faba7de973290c102b48dfd64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80638ea5220f1161010d578063c49b9a80116100a0578063e6c75f711161006f578063e6c75f71146105f0578063e8ba854f14610606578063ec28438a14610626578063f637434214610646578063fb201b1d1461065c57600080fd5b8063c49b9a801461055e578063c8c8ebe41461057e578063dd62ed3e14610594578063e2f45605146105da57600080fd5b8063a0d82dc5116100dc578063a0d82dc5146104e8578063a9059cbb146104fe578063c02466681461051e578063c17b5b8c1461053e57600080fd5b80638ea5220f1461048757806392136913146104a757806395d89b41146104bd57806398118cb4146104d257600080fd5b80634fbee19311610190578063728d41c91161015f578063728d41c9146103e7578063750c11b61461040957806375f0a874146104295780638095d564146104495780638da5cb5b1461046957600080fd5b80634fbee1931461034c5780636827e764146103855780636b67c4df1461039b57806370a08231146103b157600080fd5b806323b872dd116101cc57806323b872dd146102bb578063313ce567146102db57806349bd5a5e146102f75780634a74bb021461032b57600080fd5b806306fdde0314610209578063095ea7b3146102345780631694505e1461026457806318160ddd1461029c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610671565b60405161022b91906116f6565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611760565b610703565b604051901515815260200161022b565b34801561027057600080fd5b50601054610284906001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b3480156102a857600080fd5b506002545b60405190815260200161022b565b3480156102c757600080fd5b506102546102d636600461178c565b610719565b3480156102e757600080fd5b506040516012815260200161022b565b34801561030357600080fd5b506102847f000000000000000000000000698e735406bd731bce954598d0dd7f6895c60c2181565b34801561033757600080fd5b5060065461025490600160a81b900460ff1681565b34801561035857600080fd5b506102546103673660046117cd565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561039157600080fd5b506102ad60095481565b3480156103a757600080fd5b506102ad60085481565b3480156103bd57600080fd5b506102ad6103cc3660046117cd565b6001600160a01b031660009081526020819052604090205490565b3480156103f357600080fd5b506104076104023660046117ea565b6107c8565b005b34801561041557600080fd5b506104076104243660046117ea565b61084f565b34801561043557600080fd5b50601154610284906001600160a01b031681565b34801561045557600080fd5b50610407610464366004611803565b61087e565b34801561047557600080fd5b506005546001600160a01b0316610284565b34801561049357600080fd5b50601254610284906001600160a01b031681565b3480156104b357600080fd5b506102ad600b5481565b3480156104c957600080fd5b5061021e610909565b3480156104de57600080fd5b506102ad60075481565b3480156104f457600080fd5b506102ad600c5481565b34801561050a57600080fd5b50610254610519366004611760565b610918565b34801561052a57600080fd5b50610407610539366004611844565b610925565b34801561054a57600080fd5b50610407610559366004611803565b610a31565b34801561056a57600080fd5b50610407610579366004611879565b610ab6565b34801561058a57600080fd5b506102ad600d5481565b3480156105a057600080fd5b506102ad6105af366004611894565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e657600080fd5b506102ad600f5481565b3480156105fc57600080fd5b506102ad600e5481565b34801561061257600080fd5b50610407610621366004611894565b610b38565b34801561063257600080fd5b506104076106413660046117ea565b610b90565b34801561065257600080fd5b506102ad600a5481565b34801561066857600080fd5b50610407610c11565b606060038054610680906118cd565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac906118cd565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b6000610710338484610c50565b50600192915050565b6000610726848484610d74565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107bd8533858403610c50565b506001949350505050565b6005546001600160a01b031633146107f25760405162461bcd60e51b81526004016107a790611907565b600e81905561080b60c861080560025490565b906111b5565b600e54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b50565b6005546001600160a01b031633146108795760405162461bcd60e51b81526004016107a790611907565b600f55565b6005546001600160a01b031633146108a85760405162461bcd60e51b81526004016107a790611907565b60056108be826108b886866111c8565b906111c8565b11156108fb5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600792909255600855600955565b606060048054610680906118cd565b6000610710338484610d74565b6005546001600160a01b0316331461094f5760405162461bcd60e51b81526004016107a790611907565b6001600160a01b03821660009081526013602052604090205481151560ff9091161515036109d25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016107a7565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a5b5760405162461bcd60e51b81526004016107a790611907565b6005610a6b826108b886866111c8565b1115610aa85760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600a92909255600b55600c55565b6005546001600160a01b03163314610ae05760405162461bcd60e51b81526004016107a790611907565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610b2d90831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610b625760405162461bcd60e51b81526004016107a790611907565b601180546001600160a01b039384166001600160a01b03199182161790915560128054929093169116179055565b6005546001600160a01b03163314610bba5760405162461bcd60e51b81526004016107a790611907565b600d819055610bd0633b9aca0061080560025490565b600d54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b81526004016107a790611907565b6006805460ff60b01b1916600160b01b179055565b6001600160a01b038316610cb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b6001600160a01b038216610d135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d9a5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b038216610dc05760405162461bcd60e51b81526004016107a790611981565b6001600160a01b03831660009081526013602052604081205460ff1680610dff57506001600160a01b03831660009081526013602052604090205460ff165b600654909150600160b01b900460ff1680610e175750805b610e595760405162461bcd60e51b81526020600482015260136024820152723a3930b234b7339034b9903cb2ba1027b832b760691b60448201526064016107a7565b81600003610e7357610e6d848460006111d4565b50505050565b7f000000000000000000000000698e735406bd731bce954598d0dd7f6895c60c216001600160a01b0316846001600160a01b0316148015610ecd57506001600160a01b03841660009081526013602052604090205460ff16155b8015610ef257506001600160a01b03831660009081526013602052604090205460ff16155b15610f79576001600160a01b038316600090815260208190526040902054600e54610f1d84836119da565b1115610f775760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b60648201526084016107a7565b505b7f000000000000000000000000698e735406bd731bce954598d0dd7f6895c60c216001600160a01b0316836001600160a01b0316148015610fb8575080155b1561102057600d548211156110205760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b60648201526084016107a7565b30600090815260208190526040902054600f548110801590819061104e5750600654600160a01b900460ff16155b801561108b57507f000000000000000000000000698e735406bd731bce954598d0dd7f6895c60c216001600160a01b0316856001600160a01b0316145b80156110a05750600654600160a81b900460ff165b156110b357600f5491506110b382611328565b826111a25760007f000000000000000000000000698e735406bd731bce954598d0dd7f6895c60c216001600160a01b0316876001600160a01b0316036111225761111f60646108056111186009546108b86008546007546111c890919063ffffffff16565b889061149e565b90505b7f000000000000000000000000698e735406bd731bce954598d0dd7f6895c60c216001600160a01b0316866001600160a01b031603611183576111806064610805611118600c546108b8600b54600a546111c890919063ffffffff16565b90505b61118d85826114aa565b945080156111a0576111a08730836111d4565b505b6111ad8686866111d4565b505050505050565b60006111c182846119f2565b9392505050565b60006111c182846119da565b6001600160a01b0383166111fa5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b0382166112205760405162461bcd60e51b81526004016107a790611981565b6001600160a01b038316600090815260208190526040902054818110156112985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112cf9084906119da565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131b91815260200190565b60405180910390a3610e6d565b6006805460ff60a01b1916600160a01b179055600c54600a54600b5460009261136692611358926108b8916111c8565b600a5461080590859061149e565b905060006113758260026111b5565b9050600061138383836114aa565b90504761138f836114b6565b600061139b47836114aa565b90506113a78382611639565b6113b96113b487876114aa565b6114b6565b601254600c54600b546001600160a01b03909216916108fc916113ed916113df916111c8565b600c5461080590479061149e565b6040518115909202916000818181858888f19350505050158015611415573d6000803e3d6000fd5b506011546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561144f573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b60006111c18284611a14565b60006111c18284611a33565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114eb576114eb611a4a565b6001600160a01b03928316602091820292909201810191909152601054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190611a60565b8160018151811061157b5761157b611a4a565b6001600160a01b03928316602091820292909201810191909152601054306000908152600183526040808220929094168152915220548211156115d2576010546115d29030906001600160a01b0316600019610c50565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac9479061160b908590600090869030904290600401611a7d565b600060405180830381600087803b15801561162557600080fd5b505af11580156111ad573d6000803e3d6000fd5b6010546001600160a01b031663f305d7198230856000806116626005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156116ca573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116ef9190611aee565b5050505050565b600060208083528351808285015260005b8181101561172357858101830151858201604001528201611707565b81811115611735576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461084c57600080fd5b6000806040838503121561177357600080fd5b823561177e8161174b565b946020939093013593505050565b6000806000606084860312156117a157600080fd5b83356117ac8161174b565b925060208401356117bc8161174b565b929592945050506040919091013590565b6000602082840312156117df57600080fd5b81356111c18161174b565b6000602082840312156117fc57600080fd5b5035919050565b60008060006060848603121561181857600080fd5b505081359360208301359350604090920135919050565b8035801515811461183f57600080fd5b919050565b6000806040838503121561185757600080fd5b82356118628161174b565b91506118706020840161182f565b90509250929050565b60006020828403121561188b57600080fd5b6111c18261182f565b600080604083850312156118a757600080fd5b82356118b28161174b565b915060208301356118c28161174b565b809150509250929050565b600181811c908216806118e157607f821691505b60208210810361190157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119ed576119ed6119c4565b500190565b600082611a0f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a2e57611a2e6119c4565b500290565b600082821015611a4557611a456119c4565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a7257600080fd5b81516111c18161174b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611acd5784516001600160a01b031683529383019391830191600101611aa8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b0357600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204ac090088adffe3726362c272383c980c188bca21faba7de973290c102b48dfd64736f6c634300080f0033

Deployed Bytecode Sourcemap

29457:8860:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3314:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4949:169;;;;;;;;;;-1:-1:-1;4949:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;4949:169:0;1072:187:1;30064:41:0;;;;;;;;;;-1:-1:-1;30064:41:0;;;;-1:-1:-1;;;;;30064:41:0;;;;;;-1:-1:-1;;;;;1454:32:1;;;1436:51;;1424:2;1409:18;30064:41:0;1264:229:1;3902:108:0;;;;;;;;;;-1:-1:-1;3990:12:0;;3902:108;;;1644:25:1;;;1632:2;1617:18;3902:108:0;1498:177:1;5343:492:0;;;;;;;;;;-1:-1:-1;5343:492:0;;;;;:::i;:::-;;:::i;3744:93::-;;;;;;;;;;-1:-1:-1;3744:93:0;;3827:2;2283:36:1;;2271:2;2256:18;3744:93:0;2141:184:1;30112:38:0;;;;;;;;;;;;;;;29569:40;;;;;;;;;;-1:-1:-1;29569:40:0;;;;-1:-1:-1;;;29569:40:0;;;;;;36528:125;;;;;;;;;;-1:-1:-1;36528:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;36617:28:0;36593:4;36617:28;;;:19;:28;;;;;;;;;36528:125;29728:25;;;;;;;;;;;;;;;;29690:31;;;;;;;;;;;;;;;;4073:127;;;;;;;;;;-1:-1:-1;4073:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;4174:18:0;4147:7;4174:18;;;;;;;;;;;;4073:127;36741:185;;;;;;;;;;-1:-1:-1;36741:185:0;;;;;:::i;:::-;;:::i;:::-;;37967:119;;;;;;;;;;-1:-1:-1;37967:119:0;;;;;:::i;:::-;;:::i;30159:92::-;;;;;;;;;;-1:-1:-1;30159:92:0;;;;-1:-1:-1;;;;;30159:92:0;;;37137:302;;;;;;;;;;-1:-1:-1;37137:302:0;;;;;:::i;:::-;;:::i;2413:79::-;;;;;;;;;;-1:-1:-1;2478:6:0;;-1:-1:-1;;;;;2478:6:0;2413:79;;30259:86;;;;;;;;;;-1:-1:-1;30259:86:0;;;;-1:-1:-1;;;;;30259:86:0;;;29802:35;;;;;;;;;;;;;;;;3533:104;;;;;;;;;;;;;:::i;29652:31::-;;;;;;;;;;;;;;;;29844:29;;;;;;;;;;;;;;;;4413:175;;;;;;;;;;-1:-1:-1;4413:175:0;;;;;:::i;:::-;;:::i;36228:288::-;;;;;;;;;;-1:-1:-1;36228:288:0;;;;;:::i;:::-;;:::i;37448:315::-;;;;;;;;;;-1:-1:-1;37448:315:0;;;;;:::i;:::-;;:::i;38094:171::-;;;;;;;;;;-1:-1:-1;38094:171:0;;;;;:::i;:::-;;:::i;29880:57::-;;;;;;;;;;;;;;;;4651:151;;;;;;;;;;-1:-1:-1;4651:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;4767:18:0;;;4740:7;4767:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4651:151;30002:53;;;;;;;;;;;;;;;;29944:51;;;;;;;;;;;;;;;;37771:188;;;;;;;;;;-1:-1:-1;37771:188:0;;;;;:::i;:::-;;:::i;36934:195::-;;;;;;;;;;-1:-1:-1;36934:195:0;;;;;:::i;:::-;;:::i;29760:35::-;;;;;;;;;;;;;;;;36661:72;;;;;;;;;;;;;:::i;3314:100::-;3368:13;3401:5;3394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3314:100;:::o;4949:169::-;5032:4;5049:39;1561:10;5072:7;5081:6;5049:8;:39::i;:::-;-1:-1:-1;5106:4:0;4949:169;;;;:::o;5343:492::-;5483:4;5500:36;5510:6;5518:9;5529:6;5500:9;:36::i;:::-;-1:-1:-1;;;;;5576:19:0;;5549:24;5576:19;;;:11;:19;;;;;;;;1561:10;5576:33;;;;;;;;5628:26;;;;5620:79;;;;-1:-1:-1;;;5620:79:0;;5579:2:1;5620:79:0;;;5561:21:1;5618:2;5598:18;;;5591:30;5657:34;5637:18;;;5630:62;-1:-1:-1;;;5708:18:1;;;5701:38;5756:19;;5620:79:0;;;;;;;;;5735:57;5744:6;1561:10;5785:6;5766:16;:25;5735:8;:57::i;:::-;-1:-1:-1;5823:4:0;;5343:492;-1:-1:-1;;;;5343:492:0:o;36741:185::-;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;36815:14:::1;:26:::0;;;36878:22:::1;36896:3;36878:13;3990:12:::0;;;3902:108;36878:13:::1;:17:::0;::::1;:22::i;:::-;36860:14;;:40;;36852:66;;;::::0;-1:-1:-1;;;36852:66:0;;6349:2:1;36852:66:0::1;::::0;::::1;6331:21:1::0;6388:2;6368:18;;;6361:30;-1:-1:-1;;;6407:18:1;;;6400:43;6460:18;;36852:66:0::1;6147:337:1::0;36852:66:0::1;36741:185:::0;:::o;37967:119::-;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;38047:18:::1;:31:::0;37967:119::o;37137:302::-;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;37308:1:::1;37259:45;37296:7:::0;37259:32:::1;:13:::0;37277;37259:17:::1;:32::i;:::-;:36:::0;::::1;:45::i;:::-;:50;;37251:75;;;::::0;-1:-1:-1;;;37251:75:0;;6691:2:1;37251:75:0::1;::::0;::::1;6673:21:1::0;6730:2;6710:18;;;6703:30;-1:-1:-1;;;6749:18:1;;;6742:42;6801:18;;37251:75:0::1;6489:336:1::0;37251:75:0::1;37337:12;:28:::0;;;;37376:12:::1;:28:::0;37415:6:::1;:16:::0;37137:302::o;3533:104::-;3589:13;3622:7;3615:14;;;;;:::i;4413:175::-;4499:4;4516:42;1561:10;4540:9;4551:6;4516:9;:42::i;36228:288::-;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36321:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;36313:95:::1;;;::::0;-1:-1:-1;;;36313:95:0;;7032:2:1;36313:95:0::1;::::0;::::1;7014:21:1::0;7071:2;7051:18;;;7044:30;7110:34;7090:18;;;7083:62;-1:-1:-1;;;7161:18:1;;;7154:40;7211:19;;36313:95:0::1;6830:406:1::0;36313:95:0::1;-1:-1:-1::0;;;;;36419:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36419:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36474:34;;1212:41:1;;;36474:34:0::1;::::0;1185:18:1;36474:34:0::1;;;;;;;36228:288:::0;;:::o;37448:315::-;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;37620:1:::1;37571:45;37608:7:::0;37571:32:::1;:13:::0;37589;37571:17:::1;:32::i;:45::-;:50;;37563:75;;;::::0;-1:-1:-1;;;37563:75:0;;6691:2:1;37563:75:0::1;::::0;::::1;6673:21:1::0;6730:2;6710:18;;;6703:30;-1:-1:-1;;;6749:18:1;;;6742:42;6801:18;;37563:75:0::1;6489:336:1::0;37563:75:0::1;37649:16;:32:::0;;;;37692:16:::1;:32:::0;37735:10:::1;:20:::0;37448:315::o;38094:171::-;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;38171:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;38171:32:0::1;-1:-1:-1::0;;;;38171:32:0;;::::1;;::::0;;38219:38:::1;::::0;::::1;::::0;::::1;::::0;38195:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;38219:38:0::1;;;;;;;;38094:171:::0;:::o;37771:188::-;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;37884:15:::1;:34:::0;;-1:-1:-1;;;;;37884:34:0;;::::1;-1:-1:-1::0;;;;;;37884:34:0;;::::1;;::::0;;;37929:9:::1;:22:::0;;;;;::::1;::::0;::::1;;::::0;;37771:188::o;36934:195::-;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;37002:20:::1;:29:::0;;;37074::::1;37092:10;37074:13;3990:12:::0;;;3902:108;37074:29:::1;37050:20;;:53;;37042:79;;;::::0;-1:-1:-1;;;37042:79:0;;6349:2:1;37042:79:0::1;::::0;::::1;6331:21:1::0;6388:2;6368:18;;;6361:30;-1:-1:-1;;;6407:18:1;;;6400:43;6460:18;;37042:79:0::1;6147:337:1::0;36661:72:0;2625:6;;-1:-1:-1;;;;;2625:6:0;1561:10;2625:22;2617:67;;;;-1:-1:-1;;;2617:67:0;;;;;;;:::i;:::-;36712:6:::1;:13:::0;;-1:-1:-1;;;;36712:13:0::1;-1:-1:-1::0;;;36712:13:0::1;::::0;;36661:72::o;7283:380::-;-1:-1:-1;;;;;7419:19:0;;7411:68;;;;-1:-1:-1;;;7411:68:0;;7443:2:1;7411:68:0;;;7425:21:1;7482:2;7462:18;;;7455:30;7521:34;7501:18;;;7494:62;-1:-1:-1;;;7572:18:1;;;7565:34;7616:19;;7411:68:0;7241:400:1;7411:68:0;-1:-1:-1;;;;;7498:21:0;;7490:68;;;;-1:-1:-1;;;7490:68:0;;7848:2:1;7490:68:0;;;7830:21:1;7887:2;7867:18;;;7860:30;7926:34;7906:18;;;7899:62;-1:-1:-1;;;7977:18:1;;;7970:32;8019:19;;7490:68:0;7646:398:1;7490:68:0;-1:-1:-1;;;;;7571:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7623:32;;1644:25:1;;;7623:32:0;;1617:18:1;7623:32:0;;;;;;;7283:380;;;:::o;31762:2029::-;-1:-1:-1;;;;;31894:18:0;;31886:68;;;;-1:-1:-1;;;31886:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31973:16:0;;31965:64;;;;-1:-1:-1;;;31965:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32063:25:0;;32040:20;32063:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32092:23:0;;;;;;:19;:23;;;;;;;;32063:52;32134:6;;32040:75;;-1:-1:-1;;;;32134:6:0;;;;;:25;;;32144:15;32134:25;32126:57;;;;-1:-1:-1;;;32126:57:0;;9061:2:1;32126:57:0;;;9043:21:1;9100:2;9080:18;;;9073:30;-1:-1:-1;;;9119:18:1;;;9112:49;9178:18;;32126:57:0;8859:343:1;32126:57:0;32199:6;32209:1;32199:11;32196:92;;32227:28;32243:4;32249:2;32253:1;32227:15;:28::i;:::-;32270:7;31762:2029;;;:::o;32196:92::-;32310:13;-1:-1:-1;;;;;32304:19:0;:4;-1:-1:-1;;;;;32304:19:0;;:49;;;;-1:-1:-1;;;;;;32328:25:0;;;;;;:19;:25;;;;;;;;32327:26;32304:49;:77;;;;-1:-1:-1;;;;;;32358:23:0;;;;;;:19;:23;;;;;;;;32357:24;32304:77;32301:271;;;-1:-1:-1;;;;;4174:18:0;;32397:32;4174:18;;;;;;;;;;;32505:14;;32468:33;32495:6;4174:18;32468:33;:::i;:::-;:51;;32460:100;;;;-1:-1:-1;;;32460:100:0;;9674:2:1;32460:100:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:34;9732:18;;;9725:62;-1:-1:-1;;;9803:18:1;;;9796:34;9847:19;;32460:100:0;9472:400:1;32460:100:0;32382:190;32301:271;32599:13;-1:-1:-1;;;;;32595:17:0;:2;-1:-1:-1;;;;;32595:17:0;;:37;;;;;32617:15;32616:16;32595:37;32592:152;;;32667:20;;32657:6;:30;;32649:83;;;;-1:-1:-1;;;32649:83:0;;10079:2:1;32649:83:0;;;10061:21:1;10118:2;10098:18;;;10091:30;10157:34;10137:18;;;10130:62;-1:-1:-1;;;10208:18:1;;;10201:38;10256:19;;32649:83:0;9877:404:1;32649:83:0;32810:4;32761:28;4174:18;;;;;;;;;;;32888;;32864:42;;;;;;;32929:40;;-1:-1:-1;32953:16:0;;-1:-1:-1;;;32953:16:0;;;;32952:17;32929:40;:61;;;;;32977:13;-1:-1:-1;;;;;32973:17:0;:2;-1:-1:-1;;;;;32973:17:0;;32929:61;:86;;;;-1:-1:-1;32994:21:0;;-1:-1:-1;;;32994:21:0;;;;32929:86;32926:212;;;33055:18;;33032:41;;33088:36;33103:20;33088:14;:36::i;:::-;33240:15;33236:500;;33272:12;33308:13;-1:-1:-1;;;;;33302:19:0;:4;-1:-1:-1;;;;;33302:19:0;;33299:128;;33348:63;33407:3;33348:54;33359:42;33394:6;;33359:30;33376:12;;33359;;:16;;:30;;;;:::i;:42::-;33348:6;;:10;:54::i;:63::-;33340:71;;33299:128;33450:13;-1:-1:-1;;;;;33446:17:0;:2;-1:-1:-1;;;;;33446:17:0;;33443:138;;33490:75;33561:3;33490:66;33501:54;33544:10;;33501:38;33522:16;;33501;;:20;;:38;;;;:::i;33490:75::-;33482:83;;33443:138;33603:16;:6;33614:4;33603:10;:16::i;:::-;33594:25;-1:-1:-1;33637:8:0;;33634:91;;33666:42;33682:4;33696;33703;33666:15;:42::i;:::-;33257:479;33236:500;33748:33;33764:4;33770:2;33774:6;33748:15;:33::i;:::-;31875:1916;;;31762:2029;;;:::o;19108:98::-;19166:7;19193:5;19197:1;19193;:5;:::i;:::-;19186:12;19108:98;-1:-1:-1;;;19108:98:0:o;17971:::-;18029:7;18056:5;18060:1;18056;:5;:::i;5933:733::-;-1:-1:-1;;;;;6073:20:0;;6065:70;;;;-1:-1:-1;;;6065:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6154:23:0;;6146:71;;;;-1:-1:-1;;;6146:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6314:17:0;;6290:21;6314:17;;;;;;;;;;;6350:23;;;;6342:74;;;;-1:-1:-1;;;6342:74:0;;10710:2:1;6342:74:0;;;10692:21:1;10749:2;10729:18;;;10722:30;10788:34;10768:18;;;10761:62;-1:-1:-1;;;10839:18:1;;;10832:36;10885:19;;6342:74:0;10508:402:1;6342:74:0;-1:-1:-1;;;;;6452:17:0;;;:9;:17;;;;;;;;;;;6472:22;;;6452:42;;6516:20;;;;;;;;:30;;6488:6;;6452:9;6516:30;;6488:6;;6516:30;:::i;:::-;;;;;;;;6581:9;-1:-1:-1;;;;;6564:35:0;6573:6;-1:-1:-1;;;;;6564:35:0;;6592:6;6564:35;;;;1644:25:1;;1632:2;1617:18;;1498:177;6564:35:0;;;;;;;;6612:46;7752:125;33800:1330;30501:16;:23;;-1:-1:-1;;;;30501:23:0;-1:-1:-1;;;30501:23:0;;;34004:10:::1;::::0;33982:16:::1;::::0;33961::::1;::::0;30501:23;;33914:102:::1;::::0;33961:54:::1;::::0;:38:::1;::::0;:20:::1;:38::i;:54::-;33939:16;::::0;33914:42:::1;::::0;:20;;:24:::1;:42::i;:102::-;33885:131:::0;-1:-1:-1;34085:12:0::1;34100:25;33885:131:::0;34123:1:::1;34100:22;:25::i;:::-;34085:40:::0;-1:-1:-1;34136:17:0::1;34156:28;:18:::0;34085:40;34156:22:::1;:28::i;:::-;34136:48:::0;-1:-1:-1;34487:21:0::1;34553:22;34570:4:::0;34553:16:::1;:22::i;:::-;34637:18;34658:41;:21;34684:14:::0;34658:25:::1;:41::i;:::-;34637:62;;34749:35;34762:9;34773:10;34749:12;:35::i;:::-;34838:62;34855:44;:20:::0;34880:18;34855:24:::1;:44::i;:::-;34838:16;:62::i;:::-;34911:9;::::0;34993:10:::1;::::0;34972:16:::1;::::0;-1:-1:-1;;;;;34911:9:0;;::::1;::::0;:95:::1;::::0;34930:75:::1;::::0;34972:32:::1;::::0;:20:::1;:32::i;:::-;34956:10;::::0;34930:37:::1;::::0;:21:::1;::::0;:25:::1;:37::i;:75::-;34911:95;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;35017:15:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;35017:15:0;;::::1;::::0;35042:21:::1;35017:47:::0;::::1;;;::::0;:15:::1;:47:::0;:15;:47;35042:21;35017:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;35089:32:0::1;::::0;;11089:25:1;;;11145:2;11130:18;;11123:34;;;35089:32:0::1;::::0;11062:18:1;35089:32:0::1;;;;;;;-1:-1:-1::0;;30547:16:0;:24;;-1:-1:-1;;;;30547:24:0;;;-1:-1:-1;;;;33800:1330:0:o;18709:98::-;18767:7;18794:5;18798:1;18794;:5;:::i;18352:98::-;18410:7;18437:5;18441:1;18437;:5;:::i;35138:692::-;35288:16;;;35302:1;35288:16;;;;;;;;35264:21;;35288:16;;;;;;;;;;-1:-1:-1;35288:16:0;35264:40;;35333:4;35315;35320:1;35315:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35315:23:0;;;:7;;;;;;;;;;:23;;;;35359:15;;:22;;;-1:-1:-1;;;35359:22:0;;;;:15;;;;;:20;;:22;;;;;35315:7;;35359:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35349:4;35354:1;35349:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35349:32:0;;;:7;;;;;;;;;;:32;;;;35430:15;;35415:4;4740:7;4767:18;;;:11;:18;;;;;;35430:15;;;;4767:27;;;;;;35450:11;-1:-1:-1;35394:156:0;;;35508:15;;35476:62;;35493:4;;-1:-1:-1;;;;;35508:15:0;-1:-1:-1;;35476:8:0;:62::i;:::-;35588:15;;:224;;-1:-1:-1;;;35588:224:0;;-1:-1:-1;;;;;35588:15:0;;;;:66;;:224;;35669:11;;35588:15;;35739:4;;35766;;35786:15;;35588:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35838:381;35949:15;;-1:-1:-1;;;;;35949:15:0;:31;35988:9;36021:4;36041:11;35949:15;;36153:7;2478:6;;-1:-1:-1;;;;;2478:6:0;;2413:79;36153:7;35949:252;;;;;;-1:-1:-1;;;;;;35949:252:0;;;-1:-1:-1;;;;;13335:15:1;;;35949:252:0;;;13317:34:1;13367:18;;;13360:34;;;;13410:18;;;13403:34;;;;13453:18;;;13446:34;13517:15;;;13496:19;;;13489:44;36175:15:0;13549:19:1;;;13542:35;13251:19;;35949:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35838:381;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1680:456::-;1757:6;1765;1773;1826:2;1814:9;1805:7;1801:23;1797:32;1794:52;;;1842:1;1839;1832:12;1794:52;1881:9;1868:23;1900:31;1925:5;1900:31;:::i;:::-;1950:5;-1:-1:-1;2007:2:1;1992:18;;1979:32;2020:33;1979:32;2020:33;:::i;:::-;1680:456;;2072:7;;-1:-1:-1;;;2126:2:1;2111:18;;;;2098:32;;1680:456::o;2538:247::-;2597:6;2650:2;2638:9;2629:7;2625:23;2621:32;2618:52;;;2666:1;2663;2656:12;2618:52;2705:9;2692:23;2724:31;2749:5;2724:31;:::i;2790:180::-;2849:6;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;-1:-1:-1;2941:23:1;;2790:180;-1:-1:-1;2790:180:1:o;3199:316::-;3276:6;3284;3292;3345:2;3333:9;3324:7;3320:23;3316:32;3313:52;;;3361:1;3358;3351:12;3313:52;-1:-1:-1;;3384:23:1;;;3454:2;3439:18;;3426:32;;-1:-1:-1;3505:2:1;3490:18;;;3477:32;;3199:316;-1:-1:-1;3199:316:1:o;3520:160::-;3585:20;;3641:13;;3634:21;3624:32;;3614:60;;3670:1;3667;3660:12;3614:60;3520:160;;;:::o;3685:315::-;3750:6;3758;3811:2;3799:9;3790:7;3786:23;3782:32;3779:52;;;3827:1;3824;3817:12;3779:52;3866:9;3853:23;3885:31;3910:5;3885:31;:::i;:::-;3935:5;-1:-1:-1;3959:35:1;3990:2;3975:18;;3959:35;:::i;:::-;3949:45;;3685:315;;;;;:::o;4005:180::-;4061:6;4114:2;4102:9;4093:7;4089:23;4085:32;4082:52;;;4130:1;4127;4120:12;4082:52;4153:26;4169:9;4153:26;:::i;4190:388::-;4258:6;4266;4319:2;4307:9;4298:7;4294:23;4290:32;4287:52;;;4335:1;4332;4325:12;4287:52;4374:9;4361:23;4393:31;4418:5;4393:31;:::i;:::-;4443:5;-1:-1:-1;4500:2:1;4485:18;;4472:32;4513:33;4472:32;4513:33;:::i;:::-;4565:7;4555:17;;;4190:388;;;;;:::o;4992:380::-;5071:1;5067:12;;;;5114;;;5135:61;;5189:4;5181:6;5177:17;5167:27;;5135:61;5242:2;5234:6;5231:14;5211:18;5208:38;5205:161;;5288:10;5283:3;5279:20;5276:1;5269:31;5323:4;5320:1;5313:15;5351:4;5348:1;5341:15;5205:161;;4992:380;;;:::o;5786:356::-;5988:2;5970:21;;;6007:18;;;6000:30;6066:34;6061:2;6046:18;;6039:62;6133:2;6118:18;;5786:356::o;8049:401::-;8251:2;8233:21;;;8290:2;8270:18;;;8263:30;8329:34;8324:2;8309:18;;8302:62;-1:-1:-1;;;8395:2:1;8380:18;;8373:35;8440:3;8425:19;;8049:401::o;8455:399::-;8657:2;8639:21;;;8696:2;8676:18;;;8669:30;8735:34;8730:2;8715:18;;8708:62;-1:-1:-1;;;8801:2:1;8786:18;;8779:33;8844:3;8829:19;;8455:399::o;9207:127::-;9268:10;9263:3;9259:20;9256:1;9249:31;9299:4;9296:1;9289:15;9323:4;9320:1;9313:15;9339:128;9379:3;9410:1;9406:6;9403:1;9400:13;9397:39;;;9416:18;;:::i;:::-;-1:-1:-1;9452:9:1;;9339:128::o;10286:217::-;10326:1;10352;10342:132;;10396:10;10391:3;10387:20;10384:1;10377:31;10431:4;10428:1;10421:15;10459:4;10456:1;10449:15;10342:132;-1:-1:-1;10488:9:1;;10286:217::o;11168:168::-;11208:7;11274:1;11270;11266:6;11262:14;11259:1;11256:21;11251:1;11244:9;11237:17;11233:45;11230:71;;;11281:18;;:::i;:::-;-1:-1:-1;11321:9:1;;11168:168::o;11341:125::-;11381:4;11409:1;11406;11403:8;11400:34;;;11414:18;;:::i;:::-;-1:-1:-1;11451:9:1;;11341:125::o;11603:127::-;11664:10;11659:3;11655:20;11652:1;11645:31;11695:4;11692:1;11685:15;11719:4;11716:1;11709:15;11735:251;11805:6;11858:2;11846:9;11837:7;11833:23;11829:32;11826:52;;;11874:1;11871;11864:12;11826:52;11906:9;11900:16;11925:31;11950:5;11925:31;:::i;11991:980::-;12253:4;12301:3;12290:9;12286:19;12332:6;12321:9;12314:25;12358:2;12396:6;12391:2;12380:9;12376:18;12369:34;12439:3;12434:2;12423:9;12419:18;12412:31;12463:6;12498;12492:13;12529:6;12521;12514:22;12567:3;12556:9;12552:19;12545:26;;12606:2;12598:6;12594:15;12580:29;;12627:1;12637:195;12651:6;12648:1;12645:13;12637:195;;;12716:13;;-1:-1:-1;;;;;12712:39:1;12700:52;;12807:15;;;;12772:12;;;;12748:1;12666:9;12637:195;;;-1:-1:-1;;;;;;;12888:32:1;;;;12883:2;12868:18;;12861:60;-1:-1:-1;;;12952:3:1;12937:19;12930:35;12849:3;11991:980;-1:-1:-1;;;11991:980:1:o;13588:306::-;13676:6;13684;13692;13745:2;13733:9;13724:7;13720:23;13716:32;13713:52;;;13761:1;13758;13751:12;13713:52;13790:9;13784:16;13774:26;;13840:2;13829:9;13825:18;13819:25;13809:35;;13884:2;13873:9;13869:18;13863:25;13853:35;;13588:306;;;;;:::o

Swarm Source

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