ETH Price: $3,452.70 (-1.82%)
Gas: 4 Gwei

Token

Insider Protocol (IYKYK)
 

Overview

Max Total Supply

1,000,000 IYKYK

Holders

71

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,500.000027286213327995 IYKYK

Value
$0.00
0x66AC79734663bBEd2D2A5AE88b76B1E8d3Af578f
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:
InsiderProtocol

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Website: https://insiderprotocol.net/
// Twitter: https://twitter.com/areyouinside_
// Medium: https://medium.com/@insiderprotocol
// Telegram Public: https://t.me/insiderprotocolpublic

// SPDX-License-Identifier: MIT

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity 0.8.17;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity 0.8.17;

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity 0.8.17;

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity 0.8.17;


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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity 0.8.17;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity 0.8.17;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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



// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity 0.8.17;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity 0.8.17;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity 0.8.17;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        if (amount > 0) {

        emit Transfer(sender, recipient, amount);}

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: contracts/HOUR.sol


pragma solidity 0.8.17;


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

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
   
    struct BuyFee {
        uint16 marketingFee;
    }

    struct SellFee {
        uint16 marketingFee;
    }

    bool private swapping;

    BuyFee public buyFee;
    SellFee public sellFee;

    

    uint256 public swapThreshold = 0.00005 ether; //threshold in eth (when collected tokens reach this worth or more it's swapped)
    uint256 private maxSupply = 1000000 * 1e18; // 1 million tokens

    uint256 public maxTxAmount = maxSupply * 1  /1000; // 1 of the supply
    uint256 public maxWalletAmount = maxSupply * 2 / 100; // 2% of the supply (antiwhale)

    uint16 private totalBuyFee;
    uint16 private totalSellFee;
    

    bool public swapEnabled;
    bool private isTradingEnabled;
   

    address payable marketingWallet = payable(address(0xcd8803bAA65Aef8829Aa28fCCa4F4bc692c8191F)); // marketingWallet to receive ETH
  
   
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimit;

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

   

    modifier lockTheSwap() {
        swapping = true;
        _;
        swapping = false;
    }
  
    constructor() ERC20("Insider Protocol", "IYKYK") {
       
        buyFee.marketingFee = 0;
        totalBuyFee = 0;

        
        sellFee.marketingFee = 50;
        totalSellFee = 50;

        

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D// Uniswap V2 Router
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

       
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(marketingWallet, true);
        swapEnabled = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), maxSupply); // 100 Million Tokens
    }

    receive() external payable {}

    function updateRouter(address newAddress) external onlyOwner {
    require(newAddress != address(uniswapV2Router), "IYKYK: The router already has that address");
            uniswapV2Router = IUniswapV2Router02(newAddress);
         address get_pair =
            IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this),
            uniswapV2Router.WETH());
        if (get_pair == address(0)) {
          uniswapV2Pair =
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),
             uniswapV2Router.WETH());
    } else {
        uniswapV2Pair = get_pair;
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded,"IYKYK: Account is already the value of excluded");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    // claim other ERC20 token from token contract

     function claimStuckTokens(address _token) external onlyOwner {
        if (_token == address(this)){
            transfer(owner(), balanceOf(address(this)));
        } else {
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
        }
    }

    // claim stucked Ether (if any)
    function claimStuckEther() external onlyOwner {
        (bool sent,) = marketingWallet.call{value: address(this).balance}("");
        require (sent, "eth transfer failed");
    }

    // exclude from maxTx limit
    function excludefromLimit(address account, bool excluded) external onlyOwner {
        _isExcludedFromLimit[account] = excluded;
    }

    

   function enableTrading() external onlyOwner {
        isTradingEnabled = true;
       
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "IYKYK: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }
            
    function setBuyFees(
        uint16 _market
        ) external onlyOwner

    {
        buyFee.marketingFee = _market;
      
         totalBuyFee = _market ;
        require(totalBuyFee <= 51,"MaX buy fees limit  is 51%");
    }

   
    function setSellFees(
        uint16 _market
        ) external onlyOwner

    {
        sellFee.marketingFee = _market;
         totalSellFee = _market;
        require(totalSellFee <= 51,"MaX buy fees limit  is 51");
    }

                    

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    // function to change marketing  wallet
    function updateMarketWallet(address mWallet) external onlyOwner {
    require (mWallet != address(0), "marketing wallet can not be a zero address");
        marketingWallet = payable(mWallet);
    }

   
  
    // Function to set Max Wallet limit ( How many tokens a wallet can hold)
    function setMaxWallet(uint256 amount) external onlyOwner {
        require(amount >= totalSupply() / 1e20, "Max Wallet amount should be 1% or more of the supply");
        maxWalletAmount = amount * 1e18;
    }
    // function to set Max Tx limit per transaction
    function setMaxTxAmount(uint256 amount) external onlyOwner {
      require(amount >= totalSupply() / 1e21, "Max Tx amount should be 0.1% of more of the supply");
        maxTxAmount = amount * 1e18;
    }
  

    // function to set threshold for eth conversion
   function setSwapThreshold(uint256 amountInWei) external onlyOwner {
       require (amountInWei > 1e9, "threshold should be greator than 1 gwei");
       swapThreshold =  amountInWei;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "HOUR: transfer from the zero address");
        require(to != address(0), "HOUR: transfer to the zero address");
       
        require( isTradingEnabled || _isExcludedFromFees[from],
            "Trading not enabled yet"
        );

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

        address[] memory sellPath = new address[](2);
        sellPath[0] = address(this);
        sellPath[1] = uniswapV2Router.WETH();

        uint256 ethValue;

        if (balanceOf(address(this)) > 0){

        ethValue = uniswapV2Router.getAmountsOut(balanceOf(address(this)), sellPath)[1];
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = ethValue >=
            swapThreshold;

        if (
            swapEnabled &&
            !swapping &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance
        ) {
            
            uint256 swapTokens = contractTokenBalance;
            swapAndSendToMarketing(swapTokens);

        }

        bool takeFee = true;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees;
          
            if (automatedMarketMakerPairs[to]) {
                fees = totalSellFee;
               
            } else if (automatedMarketMakerPairs[from]) {
                fees = totalBuyFee;
                
            }

            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                if (automatedMarketMakerPairs[to]) {
                    require(amount <= maxTxAmount, "Sell exceeds Max Tx limit");
                } else if (automatedMarketMakerPairs[from]) {
                  require(amount <= maxTxAmount, "Buy exceeds Max Tx limit");
                   
                }

                if (!automatedMarketMakerPairs[to]) {
                    require(
                        balanceOf(to) + amount <= maxWalletAmount,
                        "AntiWhale: Balance exceeds max Wallet limit"
                    );
                }
            }

            uint256 feeAmount = amount.mul(fees).div(100);
            amount = amount.sub(feeAmount);
            super._transfer(from, address(this), feeAmount);
        }

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

    function swapAndSendToMarketing (uint256 tokens) private lockTheSwap {
        swapTokensForEth(tokens); 
       (bool os, ) = payable(marketingWallet).call{value: address(this).balance}("");
       require(os,"transaction failed");

    }
   

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

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

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

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimStuckEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_market","type":"uint16"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_market","type":"uint16"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountInWei","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mWallet","type":"address"}],"name":"updateMarketWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052652d79883d2000600a5569d3c21bcecceda1000000600b556103e8600b5460016200003091906200070c565b6200003c91906200072c565b600c556064600b5460026200005291906200070c565b6200005e91906200072c565b600d55600e8054600160301b600160d01b03191679cd8803baa65aef8829aa28fcca4f4bc692c8191f0000000000001790553480156200009d57600080fd5b506040518060400160405280601081526020016f125b9cda59195c88141c9bdd1bd8dbdb60821b8152506040518060400160405280600581526020016449594b594b60d81b8152508160039081620000f69190620007f3565b506004620001058282620007f3565b505050620001226200011c6200038160201b60201c565b62000385565b6008805461ffff19908116909155600e805460098054603294169390931790925563ffffffff19909116623200001790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a01559160048083019260209291908290030181865afa158015620001a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cf9190620008bf565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002439190620008bf565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000291573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b79190620008bf565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002f6816001620003d7565b620003156200030d6005546001600160a01b031690565b6001620004c7565b62000322306001620004c7565b600e546200034590660100000000000090046001600160a01b03166001620004c7565b600e805460ff60201b191664010000000017905562000379620003706005546001600160a01b031690565b600b546200060c565b505062000907565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503620004735760405162461bcd60e51b815260206004820152603f60248201527f49594b594b3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084015b60405180910390fd5b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200046a565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503620005ad5760405162461bcd60e51b815260206004820152602f60248201527f49594b594b3a204163636f756e7420697320616c72656164792074686520766160448201526e1b1d59481bd988195e18db1d591959608a1b60648201526084016200046a565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006645760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200046a565b8060026000828254620006789190620008f1565b90915550506001600160a01b03821660009081526020819052604081208054839290620006a7908490620008f1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007265762000726620006f6565b92915050565b6000826200074a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200077a57607f821691505b6020821081036200079b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006f157600081815260208120601f850160051c81016020861015620007ca5750805b601f850160051c820191505b81811015620007eb57828155600101620007d6565b505050505050565b81516001600160401b038111156200080f576200080f6200074f565b620008278162000820845462000765565b84620007a1565b602080601f8311600181146200085f5760008415620008465750858301515b600019600386901b1c1916600185901b178555620007eb565b600085815260208120601f198616915b8281101562000890578886015182559484019460019091019084016200086f565b5085821015620008af5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008d257600080fd5b81516001600160a01b0381168114620008ea57600080fd5b9392505050565b80820180821115620007265762000726620006f6565b61284680620009176000396000f3fe60806040526004361061021e5760003560e01c8063715018a611610123578063a9059cbb116100ab578063c851cc321161006f578063c851cc3214610658578063dd62ed3e14610678578063ec28438a146106be578063f2fde38b146106de578063f9d0831a146106fe57600080fd5b8063a9059cbb146105b2578063aa4bde28146105d2578063ad73fc3e146105e8578063b62496f514610608578063c02466681461063857600080fd5b80638da5cb5b116100f25780638da5cb5b1461051f57806395d89b411461053d5780639a7a23d6146105525780639d0014b114610572578063a457c2d71461059257600080fd5b8063715018a6146104bf5780637537a47f146104d45780638a8c523c146104f45780638c0b5e221461050957600080fd5b806339509351116101a65780634d474d42116101755780634d474d42146103ee5780634fbee1931461040e5780635d0044ca146104475780636ddd17131461046757806370a082311461048957600080fd5b8063395093511461037357806343c348a51461039357806347062402146103b357806349bd5a5e146103ce57600080fd5b80631694505e116101ed5780631694505e146102bc57806318160ddd146102f457806323b872dd146103095780632b14ca5614610329578063313ce5671461035757600080fd5b80630445b6671461022a57806306fdde0314610253578063095ea7b31461027557806312e322b3146102a557600080fd5b3661022557005b600080fd5b34801561023657600080fd5b50610240600a5481565b6040519081526020015b60405180910390f35b34801561025f57600080fd5b5061026861071e565b60405161024a91906123af565b34801561028157600080fd5b50610295610290366004612412565b6107b0565b604051901515815260200161024a565b3480156102b157600080fd5b506102ba6107c7565b005b3480156102c857600080fd5b506006546102dc906001600160a01b031681565b6040516001600160a01b03909116815260200161024a565b34801561030057600080fd5b50600254610240565b34801561031557600080fd5b5061029561032436600461243e565b61089d565b34801561033557600080fd5b506009546103449061ffff1681565b60405161ffff909116815260200161024a565b34801561036357600080fd5b506040516012815260200161024a565b34801561037f57600080fd5b5061029561038e366004612412565b610947565b34801561039f57600080fd5b506102ba6103ae36600461247f565b610983565b3480156103bf57600080fd5b506008546103449061ffff1681565b3480156103da57600080fd5b506007546102dc906001600160a01b031681565b3480156103fa57600080fd5b506102ba6104093660046124a3565b610a1d565b34801561041a57600080fd5b506102956104293660046124a3565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561045357600080fd5b506102ba6104623660046124c0565b610adf565b34801561047357600080fd5b50600e5461029590640100000000900460ff1681565b34801561049557600080fd5b506102406104a43660046124a3565b6001600160a01b031660009081526020819052604090205490565b3480156104cb57600080fd5b506102ba610baa565b3480156104e057600080fd5b506102ba6104ef3660046124e7565b610be0565b34801561050057600080fd5b506102ba610c35565b34801561051557600080fd5b50610240600c5481565b34801561052b57600080fd5b506005546001600160a01b03166102dc565b34801561054957600080fd5b50610268610c78565b34801561055e57600080fd5b506102ba61056d3660046124e7565b610c87565b34801561057e57600080fd5b506102ba61058d3660046124c0565b610d54565b34801561059e57600080fd5b506102956105ad366004612412565b610de6565b3480156105be57600080fd5b506102956105cd366004612412565b610e7f565b3480156105de57600080fd5b50610240600d5481565b3480156105f457600080fd5b506102ba61060336600461247f565b610e8c565b34801561061457600080fd5b506102956106233660046124a3565b60116020526000908152604090205460ff1681565b34801561064457600080fd5b506102ba6106533660046124e7565b610f38565b34801561066457600080fd5b506102ba6106733660046124a3565b611049565b34801561068457600080fd5b50610240610693366004612520565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ca57600080fd5b506102ba6106d93660046124c0565b61141c565b3480156106ea57600080fd5b506102ba6106f93660046124a3565b6114e5565b34801561070a57600080fd5b506102ba6107193660046124a3565b61157d565b60606003805461072d9061254e565b80601f01602080910402602001604051908101604052809291908181526020018280546107599061254e565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bd3384846116e8565b5060015b92915050565b6005546001600160a01b031633146107fa5760405162461bcd60e51b81526004016107f190612588565b60405180910390fd5b600e54604051600091600160301b90046001600160a01b03169047908381818185875af1925050503d806000811461084e576040519150601f19603f3d011682016040523d82523d6000602084013e610853565b606091505b505090508061089a5760405162461bcd60e51b8152602060048201526013602482015272195d1a081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016107f1565b50565b60006108aa84848461180c565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107f1565b61093c85338584036116e8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107bd91859061097e9086906125d3565b6116e8565b6005546001600160a01b031633146109ad5760405162461bcd60e51b81526004016107f190612588565b6008805461ffff831661ffff199182168117909255600e8054909116821790556033101561089a5760405162461bcd60e51b815260206004820152601a60248201527f4d6158206275792066656573206c696d6974202069732035312500000000000060448201526064016107f1565b6005546001600160a01b03163314610a475760405162461bcd60e51b81526004016107f190612588565b6001600160a01b038116610ab05760405162461bcd60e51b815260206004820152602a60248201527f6d61726b6574696e672077616c6c65742063616e206e6f742062652061207a65604482015269726f206164647265737360b01b60648201526084016107f1565b600e80546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b6005546001600160a01b03163314610b095760405162461bcd60e51b81526004016107f190612588565b68056bc75e2d63100000610b1c60025490565b610b2691906125e6565b811015610b925760405162461bcd60e51b815260206004820152603460248201527f4d61782057616c6c657420616d6f756e742073686f756c64206265203125206f60448201527372206d6f7265206f662074686520737570706c7960601b60648201526084016107f1565b610ba481670de0b6b3a7640000612608565b600d5550565b6005546001600160a01b03163314610bd45760405162461bcd60e51b81526004016107f190612588565b610bde6000611e4f565b565b6005546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016107f190612588565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c5f5760405162461bcd60e51b81526004016107f190612588565b600e805465ff0000000000191665010000000000179055565b60606004805461072d9061254e565b6005546001600160a01b03163314610cb15760405162461bcd60e51b81526004016107f190612588565b6007546001600160a01b0390811690831603610d465760405162461bcd60e51b815260206004820152604860248201527f49594b594b3a2054686520756e697377617020706169722063616e6e6f74206260448201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616064820152676b6572506169727360c01b608482015260a4016107f1565b610d508282611ea1565b5050565b6005546001600160a01b03163314610d7e5760405162461bcd60e51b81526004016107f190612588565b633b9aca008111610de15760405162461bcd60e51b815260206004820152602760248201527f7468726573686f6c642073686f756c642062652067726561746f72207468616e6044820152662031206777656960c81b60648201526084016107f1565b600a55565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e685760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f1565b610e7533858584036116e8565b5060019392505050565b60006107bd33848461180c565b6005546001600160a01b03163314610eb65760405162461bcd60e51b81526004016107f190612588565b6009805461ffff191661ffff838116918217909255600e805463ffff000019166201000092830217908190556033919004909116111561089a5760405162461bcd60e51b815260206004820152601960248201527f4d6158206275792066656573206c696d6974202069732035310000000000000060448201526064016107f1565b6005546001600160a01b03163314610f625760405162461bcd60e51b81526004016107f190612588565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610fea5760405162461bcd60e51b815260206004820152602f60248201527f49594b594b3a204163636f756e7420697320616c72656164792074686520766160448201526e1b1d59481bd988195e18db1d591959608a1b60648201526084016107f1565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110735760405162461bcd60e51b81526004016107f190612588565b6006546001600160a01b03908116908216036110e45760405162461bcd60e51b815260206004820152602a60248201527f49594b594b3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b60648201526084016107f1565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611164919061261f565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ea919061261f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611235573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611259919061261f565b90506001600160a01b0381166113fb57600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e0919061261f565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611342573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611366919061261f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d7919061261f565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b600780546001600160a01b0383166001600160a01b03199091161790555050565b6005546001600160a01b031633146114465760405162461bcd60e51b81526004016107f190612588565b683635c9adc5dea0000061145960025490565b61146391906125e6565b8110156114cd5760405162461bcd60e51b815260206004820152603260248201527f4d617820547820616d6f756e742073686f756c6420626520302e3125206f66206044820152716d6f7265206f662074686520737570706c7960701b60648201526084016107f1565b6114df81670de0b6b3a7640000612608565b600c5550565b6005546001600160a01b0316331461150f5760405162461bcd60e51b81526004016107f190612588565b6001600160a01b0381166115745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f1565b61089a81611e4f565b6005546001600160a01b031633146115a75760405162461bcd60e51b81526004016107f190612588565b306001600160a01b038216036115e157610d506115cc6005546001600160a01b031690565b30600090815260208190526040902054610e7f565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561162a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164e919061263c565b9050816001600160a01b031663a9059cbb6116716005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156116be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e29190612655565b50505050565b6001600160a01b03831661174a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f1565b6001600160a01b0382166117ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661186e5760405162461bcd60e51b8152602060048201526024808201527f484f55523a207472616e736665722066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f1565b6001600160a01b0382166118cf5760405162461bcd60e51b815260206004820152602260248201527f484f55523a207472616e7366657220746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f1565b600e5465010000000000900460ff168061190157506001600160a01b0383166000908152600f602052604090205460ff165b61194d5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c65642079657400000000000000000060448201526064016107f1565b806000036119665761196183836000611f8b565b505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061199b5761199b612688565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a18919061261f565b81600181518110611a2b57611a2b612688565b6001600160a01b039290921660209283029190910182015230600090815290819052604081205415611b07576006546001600160a01b031663d06ca61f611a87306001600160a01b031660009081526020819052604090205490565b846040518363ffffffff1660e01b8152600401611aa59291906126e2565b600060405180830381865afa158015611ac2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611aea9190810190612703565b600181518110611afc57611afc612688565b602002602001015190505b30600090815260208190526040902054600a54600e549083101590640100000000900460ff168015611b435750600754600160a01b900460ff16155b8015611b5d57506007546001600160a01b03888116911614155b8015611b665750805b15611b775781611b758161215e565b505b6001600160a01b0387166000908152600f602052604090205460019060ff1680611bb957506001600160a01b0387166000908152600f602052604090205460ff165b15611bc2575060005b8015611e3a576001600160a01b03871660009081526011602052604081205460ff1615611bfc5750600e5462010000900461ffff16611c26565b6001600160a01b03891660009081526011602052604090205460ff1615611c265750600e5461ffff165b6001600160a01b03891660009081526010602052604090205460ff16158015611c6857506001600160a01b03881660009081526010602052604090205460ff16155b15611e07576001600160a01b03881660009081526011602052604090205460ff1615611ce557600c54871115611ce05760405162461bcd60e51b815260206004820152601960248201527f53656c6c2065786365656473204d6178205478206c696d69740000000000000060448201526064016107f1565b611d58565b6001600160a01b03891660009081526011602052604090205460ff1615611d5857600c54871115611d585760405162461bcd60e51b815260206004820152601860248201527f4275792065786365656473204d6178205478206c696d6974000000000000000060448201526064016107f1565b6001600160a01b03881660009081526011602052604090205460ff16611e0757600d5487611d9b8a6001600160a01b031660009081526020819052604090205490565b611da591906125d3565b1115611e075760405162461bcd60e51b815260206004820152602b60248201527f416e74695768616c653a2042616c616e63652065786365656473206d6178205760448201526a185b1b195d081b1a5b5a5d60aa1b60648201526084016107f1565b6000611e1e6064611e188a8561222a565b9061223d565b9050611e2a8882612249565b9750611e378a3083611f8b565b50505b611e45888888611f8b565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503611f375760405162461bcd60e51b815260206004820152603f60248201527f49594b594b3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084016107f1565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611fef5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107f1565b6001600160a01b0382166120515760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107f1565b6001600160a01b038316600090815260208190526040902054818110156120c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f1565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121009084906125d3565b9091555050811561215957826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161215091815260200190565b60405180910390a35b6116e2565b6007805460ff60a01b1916600160a01b17905561217a81612255565b600e54604051600091600160301b90046001600160a01b03169047908381818185875af1925050503d80600081146121ce576040519150601f19603f3d011682016040523d82523d6000602084013e6121d3565b606091505b50509050806122195760405162461bcd60e51b81526020600482015260126024820152711d1c985b9cd858dd1a5bdb8819985a5b195960721b60448201526064016107f1565b50506007805460ff60a01b19169055565b60006122368284612608565b9392505050565b600061223682846125e6565b600061223682846127c1565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061228a5761228a612688565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156122e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612307919061261f565b8160018151811061231a5761231a612688565b6001600160a01b03928316602091820292909201015260065461234091309116846116e8565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906123799085906000908690309042906004016127d4565b600060405180830381600087803b15801561239357600080fd5b505af11580156123a7573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156123dc578581018301518582016040015282016123c0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461089a57600080fd5b6000806040838503121561242557600080fd5b8235612430816123fd565b946020939093013593505050565b60008060006060848603121561245357600080fd5b833561245e816123fd565b9250602084013561246e816123fd565b929592945050506040919091013590565b60006020828403121561249157600080fd5b813561ffff8116811461223657600080fd5b6000602082840312156124b557600080fd5b8135612236816123fd565b6000602082840312156124d257600080fd5b5035919050565b801515811461089a57600080fd5b600080604083850312156124fa57600080fd5b8235612505816123fd565b91506020830135612515816124d9565b809150509250929050565b6000806040838503121561253357600080fd5b823561253e816123fd565b91506020830135612515816123fd565b600181811c9082168061256257607f821691505b60208210810361258257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c1576107c16125bd565b60008261260357634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176107c1576107c16125bd565b60006020828403121561263157600080fd5b8151612236816123fd565b60006020828403121561264e57600080fd5b5051919050565b60006020828403121561266757600080fd5b8151612236816124d9565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156126d75781516001600160a01b0316875295820195908201906001016126b2565b509495945050505050565b8281526040602082015260006126fb604083018461269e565b949350505050565b6000602080838503121561271657600080fd5b825167ffffffffffffffff8082111561272e57600080fd5b818501915085601f83011261274257600080fd5b81518181111561275457612754612672565b8060051b604051601f19603f8301168101818110858211171561277957612779612672565b60405291825284820192508381018501918883111561279757600080fd5b938501935b828510156127b55784518452938501939285019261279c565b98975050505050505050565b818103818111156107c1576107c16125bd565b85815284602082015260a0604082015260006127f360a083018661269e565b6001600160a01b039490941660608301525060800152939250505056fea2646970667358221220fb30e1d930538c48fce6d3c1d922c7a9033d4cb79e08b6af700ab1169528a49964736f6c63430008110033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c8063715018a611610123578063a9059cbb116100ab578063c851cc321161006f578063c851cc3214610658578063dd62ed3e14610678578063ec28438a146106be578063f2fde38b146106de578063f9d0831a146106fe57600080fd5b8063a9059cbb146105b2578063aa4bde28146105d2578063ad73fc3e146105e8578063b62496f514610608578063c02466681461063857600080fd5b80638da5cb5b116100f25780638da5cb5b1461051f57806395d89b411461053d5780639a7a23d6146105525780639d0014b114610572578063a457c2d71461059257600080fd5b8063715018a6146104bf5780637537a47f146104d45780638a8c523c146104f45780638c0b5e221461050957600080fd5b806339509351116101a65780634d474d42116101755780634d474d42146103ee5780634fbee1931461040e5780635d0044ca146104475780636ddd17131461046757806370a082311461048957600080fd5b8063395093511461037357806343c348a51461039357806347062402146103b357806349bd5a5e146103ce57600080fd5b80631694505e116101ed5780631694505e146102bc57806318160ddd146102f457806323b872dd146103095780632b14ca5614610329578063313ce5671461035757600080fd5b80630445b6671461022a57806306fdde0314610253578063095ea7b31461027557806312e322b3146102a557600080fd5b3661022557005b600080fd5b34801561023657600080fd5b50610240600a5481565b6040519081526020015b60405180910390f35b34801561025f57600080fd5b5061026861071e565b60405161024a91906123af565b34801561028157600080fd5b50610295610290366004612412565b6107b0565b604051901515815260200161024a565b3480156102b157600080fd5b506102ba6107c7565b005b3480156102c857600080fd5b506006546102dc906001600160a01b031681565b6040516001600160a01b03909116815260200161024a565b34801561030057600080fd5b50600254610240565b34801561031557600080fd5b5061029561032436600461243e565b61089d565b34801561033557600080fd5b506009546103449061ffff1681565b60405161ffff909116815260200161024a565b34801561036357600080fd5b506040516012815260200161024a565b34801561037f57600080fd5b5061029561038e366004612412565b610947565b34801561039f57600080fd5b506102ba6103ae36600461247f565b610983565b3480156103bf57600080fd5b506008546103449061ffff1681565b3480156103da57600080fd5b506007546102dc906001600160a01b031681565b3480156103fa57600080fd5b506102ba6104093660046124a3565b610a1d565b34801561041a57600080fd5b506102956104293660046124a3565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561045357600080fd5b506102ba6104623660046124c0565b610adf565b34801561047357600080fd5b50600e5461029590640100000000900460ff1681565b34801561049557600080fd5b506102406104a43660046124a3565b6001600160a01b031660009081526020819052604090205490565b3480156104cb57600080fd5b506102ba610baa565b3480156104e057600080fd5b506102ba6104ef3660046124e7565b610be0565b34801561050057600080fd5b506102ba610c35565b34801561051557600080fd5b50610240600c5481565b34801561052b57600080fd5b506005546001600160a01b03166102dc565b34801561054957600080fd5b50610268610c78565b34801561055e57600080fd5b506102ba61056d3660046124e7565b610c87565b34801561057e57600080fd5b506102ba61058d3660046124c0565b610d54565b34801561059e57600080fd5b506102956105ad366004612412565b610de6565b3480156105be57600080fd5b506102956105cd366004612412565b610e7f565b3480156105de57600080fd5b50610240600d5481565b3480156105f457600080fd5b506102ba61060336600461247f565b610e8c565b34801561061457600080fd5b506102956106233660046124a3565b60116020526000908152604090205460ff1681565b34801561064457600080fd5b506102ba6106533660046124e7565b610f38565b34801561066457600080fd5b506102ba6106733660046124a3565b611049565b34801561068457600080fd5b50610240610693366004612520565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ca57600080fd5b506102ba6106d93660046124c0565b61141c565b3480156106ea57600080fd5b506102ba6106f93660046124a3565b6114e5565b34801561070a57600080fd5b506102ba6107193660046124a3565b61157d565b60606003805461072d9061254e565b80601f01602080910402602001604051908101604052809291908181526020018280546107599061254e565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bd3384846116e8565b5060015b92915050565b6005546001600160a01b031633146107fa5760405162461bcd60e51b81526004016107f190612588565b60405180910390fd5b600e54604051600091600160301b90046001600160a01b03169047908381818185875af1925050503d806000811461084e576040519150601f19603f3d011682016040523d82523d6000602084013e610853565b606091505b505090508061089a5760405162461bcd60e51b8152602060048201526013602482015272195d1a081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016107f1565b50565b60006108aa84848461180c565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107f1565b61093c85338584036116e8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107bd91859061097e9086906125d3565b6116e8565b6005546001600160a01b031633146109ad5760405162461bcd60e51b81526004016107f190612588565b6008805461ffff831661ffff199182168117909255600e8054909116821790556033101561089a5760405162461bcd60e51b815260206004820152601a60248201527f4d6158206275792066656573206c696d6974202069732035312500000000000060448201526064016107f1565b6005546001600160a01b03163314610a475760405162461bcd60e51b81526004016107f190612588565b6001600160a01b038116610ab05760405162461bcd60e51b815260206004820152602a60248201527f6d61726b6574696e672077616c6c65742063616e206e6f742062652061207a65604482015269726f206164647265737360b01b60648201526084016107f1565b600e80546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b6005546001600160a01b03163314610b095760405162461bcd60e51b81526004016107f190612588565b68056bc75e2d63100000610b1c60025490565b610b2691906125e6565b811015610b925760405162461bcd60e51b815260206004820152603460248201527f4d61782057616c6c657420616d6f756e742073686f756c64206265203125206f60448201527372206d6f7265206f662074686520737570706c7960601b60648201526084016107f1565b610ba481670de0b6b3a7640000612608565b600d5550565b6005546001600160a01b03163314610bd45760405162461bcd60e51b81526004016107f190612588565b610bde6000611e4f565b565b6005546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016107f190612588565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c5f5760405162461bcd60e51b81526004016107f190612588565b600e805465ff0000000000191665010000000000179055565b60606004805461072d9061254e565b6005546001600160a01b03163314610cb15760405162461bcd60e51b81526004016107f190612588565b6007546001600160a01b0390811690831603610d465760405162461bcd60e51b815260206004820152604860248201527f49594b594b3a2054686520756e697377617020706169722063616e6e6f74206260448201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616064820152676b6572506169727360c01b608482015260a4016107f1565b610d508282611ea1565b5050565b6005546001600160a01b03163314610d7e5760405162461bcd60e51b81526004016107f190612588565b633b9aca008111610de15760405162461bcd60e51b815260206004820152602760248201527f7468726573686f6c642073686f756c642062652067726561746f72207468616e6044820152662031206777656960c81b60648201526084016107f1565b600a55565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e685760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f1565b610e7533858584036116e8565b5060019392505050565b60006107bd33848461180c565b6005546001600160a01b03163314610eb65760405162461bcd60e51b81526004016107f190612588565b6009805461ffff191661ffff838116918217909255600e805463ffff000019166201000092830217908190556033919004909116111561089a5760405162461bcd60e51b815260206004820152601960248201527f4d6158206275792066656573206c696d6974202069732035310000000000000060448201526064016107f1565b6005546001600160a01b03163314610f625760405162461bcd60e51b81526004016107f190612588565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610fea5760405162461bcd60e51b815260206004820152602f60248201527f49594b594b3a204163636f756e7420697320616c72656164792074686520766160448201526e1b1d59481bd988195e18db1d591959608a1b60648201526084016107f1565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110735760405162461bcd60e51b81526004016107f190612588565b6006546001600160a01b03908116908216036110e45760405162461bcd60e51b815260206004820152602a60248201527f49594b594b3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b60648201526084016107f1565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611164919061261f565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ea919061261f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611235573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611259919061261f565b90506001600160a01b0381166113fb57600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e0919061261f565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611342573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611366919061261f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d7919061261f565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b600780546001600160a01b0383166001600160a01b03199091161790555050565b6005546001600160a01b031633146114465760405162461bcd60e51b81526004016107f190612588565b683635c9adc5dea0000061145960025490565b61146391906125e6565b8110156114cd5760405162461bcd60e51b815260206004820152603260248201527f4d617820547820616d6f756e742073686f756c6420626520302e3125206f66206044820152716d6f7265206f662074686520737570706c7960701b60648201526084016107f1565b6114df81670de0b6b3a7640000612608565b600c5550565b6005546001600160a01b0316331461150f5760405162461bcd60e51b81526004016107f190612588565b6001600160a01b0381166115745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f1565b61089a81611e4f565b6005546001600160a01b031633146115a75760405162461bcd60e51b81526004016107f190612588565b306001600160a01b038216036115e157610d506115cc6005546001600160a01b031690565b30600090815260208190526040902054610e7f565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561162a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164e919061263c565b9050816001600160a01b031663a9059cbb6116716005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156116be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e29190612655565b50505050565b6001600160a01b03831661174a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f1565b6001600160a01b0382166117ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661186e5760405162461bcd60e51b8152602060048201526024808201527f484f55523a207472616e736665722066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f1565b6001600160a01b0382166118cf5760405162461bcd60e51b815260206004820152602260248201527f484f55523a207472616e7366657220746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f1565b600e5465010000000000900460ff168061190157506001600160a01b0383166000908152600f602052604090205460ff165b61194d5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c65642079657400000000000000000060448201526064016107f1565b806000036119665761196183836000611f8b565b505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061199b5761199b612688565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a18919061261f565b81600181518110611a2b57611a2b612688565b6001600160a01b039290921660209283029190910182015230600090815290819052604081205415611b07576006546001600160a01b031663d06ca61f611a87306001600160a01b031660009081526020819052604090205490565b846040518363ffffffff1660e01b8152600401611aa59291906126e2565b600060405180830381865afa158015611ac2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611aea9190810190612703565b600181518110611afc57611afc612688565b602002602001015190505b30600090815260208190526040902054600a54600e549083101590640100000000900460ff168015611b435750600754600160a01b900460ff16155b8015611b5d57506007546001600160a01b03888116911614155b8015611b665750805b15611b775781611b758161215e565b505b6001600160a01b0387166000908152600f602052604090205460019060ff1680611bb957506001600160a01b0387166000908152600f602052604090205460ff165b15611bc2575060005b8015611e3a576001600160a01b03871660009081526011602052604081205460ff1615611bfc5750600e5462010000900461ffff16611c26565b6001600160a01b03891660009081526011602052604090205460ff1615611c265750600e5461ffff165b6001600160a01b03891660009081526010602052604090205460ff16158015611c6857506001600160a01b03881660009081526010602052604090205460ff16155b15611e07576001600160a01b03881660009081526011602052604090205460ff1615611ce557600c54871115611ce05760405162461bcd60e51b815260206004820152601960248201527f53656c6c2065786365656473204d6178205478206c696d69740000000000000060448201526064016107f1565b611d58565b6001600160a01b03891660009081526011602052604090205460ff1615611d5857600c54871115611d585760405162461bcd60e51b815260206004820152601860248201527f4275792065786365656473204d6178205478206c696d6974000000000000000060448201526064016107f1565b6001600160a01b03881660009081526011602052604090205460ff16611e0757600d5487611d9b8a6001600160a01b031660009081526020819052604090205490565b611da591906125d3565b1115611e075760405162461bcd60e51b815260206004820152602b60248201527f416e74695768616c653a2042616c616e63652065786365656473206d6178205760448201526a185b1b195d081b1a5b5a5d60aa1b60648201526084016107f1565b6000611e1e6064611e188a8561222a565b9061223d565b9050611e2a8882612249565b9750611e378a3083611f8b565b50505b611e45888888611f8b565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503611f375760405162461bcd60e51b815260206004820152603f60248201527f49594b594b3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084016107f1565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611fef5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107f1565b6001600160a01b0382166120515760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107f1565b6001600160a01b038316600090815260208190526040902054818110156120c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f1565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121009084906125d3565b9091555050811561215957826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161215091815260200190565b60405180910390a35b6116e2565b6007805460ff60a01b1916600160a01b17905561217a81612255565b600e54604051600091600160301b90046001600160a01b03169047908381818185875af1925050503d80600081146121ce576040519150601f19603f3d011682016040523d82523d6000602084013e6121d3565b606091505b50509050806122195760405162461bcd60e51b81526020600482015260126024820152711d1c985b9cd858dd1a5bdb8819985a5b195960721b60448201526064016107f1565b50506007805460ff60a01b19169055565b60006122368284612608565b9392505050565b600061223682846125e6565b600061223682846127c1565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061228a5761228a612688565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156122e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612307919061261f565b8160018151811061231a5761231a612688565b6001600160a01b03928316602091820292909201015260065461234091309116846116e8565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906123799085906000908690309042906004016127d4565b600060405180830381600087803b15801561239357600080fd5b505af11580156123a7573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156123dc578581018301518582016040015282016123c0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461089a57600080fd5b6000806040838503121561242557600080fd5b8235612430816123fd565b946020939093013593505050565b60008060006060848603121561245357600080fd5b833561245e816123fd565b9250602084013561246e816123fd565b929592945050506040919091013590565b60006020828403121561249157600080fd5b813561ffff8116811461223657600080fd5b6000602082840312156124b557600080fd5b8135612236816123fd565b6000602082840312156124d257600080fd5b5035919050565b801515811461089a57600080fd5b600080604083850312156124fa57600080fd5b8235612505816123fd565b91506020830135612515816124d9565b809150509250929050565b6000806040838503121561253357600080fd5b823561253e816123fd565b91506020830135612515816123fd565b600181811c9082168061256257607f821691505b60208210810361258257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c1576107c16125bd565b60008261260357634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176107c1576107c16125bd565b60006020828403121561263157600080fd5b8151612236816123fd565b60006020828403121561264e57600080fd5b5051919050565b60006020828403121561266757600080fd5b8151612236816124d9565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156126d75781516001600160a01b0316875295820195908201906001016126b2565b509495945050505050565b8281526040602082015260006126fb604083018461269e565b949350505050565b6000602080838503121561271657600080fd5b825167ffffffffffffffff8082111561272e57600080fd5b818501915085601f83011261274257600080fd5b81518181111561275457612754612672565b8060051b604051601f19603f8301168101818110858211171561277957612779612672565b60405291825284820192508381018501918883111561279757600080fd5b938501935b828510156127b55784518452938501939285019261279c565b98975050505050505050565b818103818111156107c1576107c16125bd565b85815284602082015260a0604082015260006127f360a083018661269e565b6001600160a01b039490941660608301525060800152939250505056fea2646970667358221220fb30e1d930538c48fce6d3c1d922c7a9033d4cb79e08b6af700ab1169528a49964736f6c63430008110033

Deployed Bytecode Sourcemap

34871:10865:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35262:44;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;35262:44:0;;;;;;;;24816:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26983:169::-;;;;;;;;;;-1:-1:-1;26983:169:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;26983:169:0;1205:187:1;39268:182:0;;;;;;;;;;;;;:::i;:::-;;34956:41;;;;;;;;;;-1:-1:-1;34956:41:0;;;;-1:-1:-1;;;;;34956:41:0;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;34956:41:0;1397:229:1;25936:108:0;;;;;;;;;;-1:-1:-1;26024:12:0;;25936:108;;27634:492;;;;;;;;;;-1:-1:-1;27634:492:0;;;;;:::i;:::-;;:::i;35223:22::-;;;;;;;;;;-1:-1:-1;35223:22:0;;;;;;;;;;;2266:6:1;2254:19;;;2236:38;;2224:2;2209:18;35223:22:0;2092:188:1;25778:93:0;;;;;;;;;;-1:-1:-1;25778:93:0;;25861:2;2427:36:1;;2415:2;2400:18;25778:93:0;2285:184:1;28535:215:0;;;;;;;;;;-1:-1:-1;28535:215:0;;;;;:::i;:::-;;:::i;40444:238::-;;;;;;;;;;-1:-1:-1;40444:238:0;;;;;:::i;:::-;;:::i;35196:20::-;;;;;;;;;;-1:-1:-1;35196:20:0;;;;;;;;35004:29;;;;;;;;;;-1:-1:-1;35004:29:0;;;;-1:-1:-1;;;;;35004:29:0;;;41138:201;;;;;;;;;;-1:-1:-1;41138:201:0;;;;;:::i;:::-;;:::i;40959:126::-;;;;;;;;;;-1:-1:-1;40959:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41049:28:0;41025:4;41049:28;;;:19;:28;;;;;;;;;40959:126;41434:213;;;;;;;;;;-1:-1:-1;41434:213:0;;;;;:::i;:::-;;:::i;35708:23::-;;;;;;;;;;-1:-1:-1;35708:23:0;;;;;;;;;;;26107:127;;;;;;;;;;-1:-1:-1;26107:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;26208:18:0;26181:7;26208:18;;;;;;;;;;;;26107:127;18237:103;;;;;;;;;;;;;:::i;39491:136::-;;;;;;;;;;-1:-1:-1;39491:136:0;;;;;:::i;:::-;;:::i;39642:95::-;;;;;;;;;;;;;:::i;35465:49::-;;;;;;;;;;;;;;;;17586:87;;;;;;;;;;-1:-1:-1;17659:6:0;;-1:-1:-1;;;;;17659:6:0;17586:87;;25035:104;;;;;;;;;;;;;:::i;39745:319::-;;;;;;;;;;-1:-1:-1;39745:319:0;;;;;:::i;:::-;;:::i;41977:192::-;;;;;;;;;;-1:-1:-1;41977:192:0;;;;;:::i;:::-;;:::i;29253:413::-;;;;;;;;;;-1:-1:-1;29253:413:0;;;;;:::i;:::-;;:::i;26447:175::-;;;;;;;;;;-1:-1:-1;26447:175:0;;;;;:::i;:::-;;:::i;35540:52::-;;;;;;;;;;;;;;;;40695:232;;;;;;;;;;-1:-1:-1;40695:232:0;;;;;:::i;:::-;;:::i;36195:57::-;;;;;;;;;;-1:-1:-1;36195:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38514:294;;;;;;;;;;-1:-1:-1;38514:294:0;;;;;:::i;:::-;;:::i;37877:629::-;;;;;;;;;;-1:-1:-1;37877:629:0;;;;;:::i;:::-;;:::i;26685:151::-;;;;;;;;;;-1:-1:-1;26685:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;26801:18:0;;;26774:7;26801:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26685:151;41706:207;;;;;;;;;;-1:-1:-1;41706:207:0;;;;;:::i;:::-;;:::i;18495:201::-;;;;;;;;;;-1:-1:-1;18495:201:0;;;;;:::i;:::-;;:::i;38871:352::-;;;;;;;;;;-1:-1:-1;38871:352:0;;;;;:::i;:::-;;:::i;24816:100::-;24870:13;24903:5;24896:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24816:100;:::o;26983:169::-;27066:4;27083:39;16386:10;27106:7;27115:6;27083:8;:39::i;:::-;-1:-1:-1;27140:4:0;26983:169;;;;;:::o;39268:182::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;;;;;;;;;39340:15:::1;::::0;:54:::1;::::0;39326:9:::1;::::0;-1:-1:-1;;;39340:15:0;::::1;-1:-1:-1::0;;;;;39340:15:0::1;::::0;39368:21:::1;::::0;39326:9;39340:54;39326:9;39340:54;39368:21;39340:15;:54:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39325:69;;;39414:4;39405:37;;;::::0;-1:-1:-1;;;39405:37:0;;5457:2:1;39405:37:0::1;::::0;::::1;5439:21:1::0;5496:2;5476:18;;;5469:30;-1:-1:-1;;;5515:18:1;;;5508:49;5574:18;;39405:37:0::1;5255:343:1::0;39405:37:0::1;39314:136;39268:182::o:0;27634:492::-;27774:4;27791:36;27801:6;27809:9;27820:6;27791:9;:36::i;:::-;-1:-1:-1;;;;;27867:19:0;;27840:24;27867:19;;;:11;:19;;;;;;;;16386:10;27867:33;;;;;;;;27919:26;;;;27911:79;;;;-1:-1:-1;;;27911:79:0;;5805:2:1;27911:79:0;;;5787:21:1;5844:2;5824:18;;;5817:30;5883:34;5863:18;;;5856:62;-1:-1:-1;;;5934:18:1;;;5927:38;5982:19;;27911:79:0;5603:404:1;27911:79:0;28026:57;28035:6;16386:10;28076:6;28057:16;:25;28026:8;:57::i;:::-;-1:-1:-1;28114:4:0;;27634:492;-1:-1:-1;;;;27634:492:0:o;28535:215::-;16386:10;28623:4;28672:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28672:34:0;;;;;;;;;;28623:4;;28640:80;;28663:7;;28672:47;;28709:10;;28672:47;:::i;:::-;28640:8;:80::i;40444:238::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;40537:6:::1;:29:::0;;::::1;::::0;::::1;-1:-1:-1::0;;40537:29:0;;::::1;::::0;::::1;::::0;;;40586:11:::1;:21:::0;;;;::::1;::::0;::::1;::::0;;40642:2:::1;-1:-1:-1::0;40627:17:0::1;40619:55;;;::::0;-1:-1:-1;;;40619:55:0;;6476:2:1;40619:55:0::1;::::0;::::1;6458:21:1::0;6515:2;6495:18;;;6488:30;6554:28;6534:18;;;6527:56;6600:18;;40619:55:0::1;6274:350:1::0;41138:201:0;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41218:21:0;::::1;41209:77;;;::::0;-1:-1:-1;;;41209:77:0;;6831:2:1;41209:77:0::1;::::0;::::1;6813:21:1::0;6870:2;6850:18;;;6843:30;6909:34;6889:18;;;6882:62;-1:-1:-1;;;6960:18:1;;;6953:40;7010:19;;41209:77:0::1;6629:406:1::0;41209:77:0::1;41297:15;:34:::0;;-1:-1:-1;;;;;41297:34:0;;::::1;-1:-1:-1::0;;;41297:34:0::1;-1:-1:-1::0;;;;;;41297:34:0;;::::1;::::0;;;::::1;::::0;;41138:201::o;41434:213::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;41536:4:::1;41520:13;26024:12:::0;;;25936:108;41520:13:::1;:20;;;;:::i;:::-;41510:6;:30;;41502:95;;;::::0;-1:-1:-1;;;41502:95:0;;7464:2:1;41502:95:0::1;::::0;::::1;7446:21:1::0;7503:2;7483:18;;;7476:30;7542:34;7522:18;;;7515:62;-1:-1:-1;;;7593:18:1;;;7586:50;7653:19;;41502:95:0::1;7262:416:1::0;41502:95:0::1;41626:13;:6:::0;41635:4:::1;41626:13;:::i;:::-;41608:15;:31:::0;-1:-1:-1;41434:213:0:o;18237:103::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;18302:30:::1;18329:1;18302:18;:30::i;:::-;18237:103::o:0;39491:136::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39579:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;39579:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39491:136::o;39642:95::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;39697:16:::1;:23:::0;;-1:-1:-1;;39697:23:0::1;::::0;::::1;::::0;;39642:95::o;25035:104::-;25091:13;25124:7;25117:14;;;;;:::i;39745:319::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;39889:13:::1;::::0;-1:-1:-1;;;;;39889:13:0;;::::1;39881:21:::0;;::::1;::::0;39859:143:::1;;;::::0;-1:-1:-1;;;39859:143:0;;8058:2:1;39859:143:0::1;::::0;::::1;8040:21:1::0;8097:2;8077:18;;;8070:30;8136:34;8116:18;;;8109:62;8207:34;8187:18;;;8180:62;-1:-1:-1;;;8258:19:1;;;8251:39;8307:19;;39859:143:0::1;7856:476:1::0;39859:143:0::1;40015:41;40044:4;40050:5;40015:28;:41::i;:::-;39745:319:::0;;:::o;41977:192::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;42076:3:::1;42062:11;:17;42053:70;;;::::0;-1:-1:-1;;;42053:70:0;;8539:2:1;42053:70:0::1;::::0;::::1;8521:21:1::0;8578:2;8558:18;;;8551:30;8617:34;8597:18;;;8590:62;-1:-1:-1;;;8668:18:1;;;8661:37;8715:19;;42053:70:0::1;8337:403:1::0;42053:70:0::1;42133:13;:28:::0;41977:192::o;29253:413::-;16386:10;29346:4;29390:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29390:34:0;;;;;;;;;;29443:35;;;;29435:85;;;;-1:-1:-1;;;29435:85:0;;8947:2:1;29435:85:0;;;8929:21:1;8986:2;8966:18;;;8959:30;9025:34;9005:18;;;8998:62;-1:-1:-1;;;9076:18:1;;;9069:35;9121:19;;29435:85:0;8745:401:1;29435:85:0;29556:67;16386:10;29579:7;29607:15;29588:16;:34;29556:8;:67::i;:::-;-1:-1:-1;29654:4:0;;29253:413;-1:-1:-1;;;29253:413:0:o;26447:175::-;26533:4;26550:42;16386:10;26574:9;26585:6;26550:9;:42::i;40695:232::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;40789:7:::1;:30:::0;;-1:-1:-1;;40789:30:0::1;;::::0;;::::1;::::0;;::::1;::::0;;;40831:12:::1;:22:::0;;-1:-1:-1;;40831:22:0::1;::::0;;;::::1;;::::0;;;;40888:2:::1;40872:12:::0;;::::1;::::0;;::::1;:18;;40864:55;;;::::0;-1:-1:-1;;;40864:55:0;;9353:2:1;40864:55:0::1;::::0;::::1;9335:21:1::0;9392:2;9372:18;;;9365:30;9431:27;9411:18;;;9404:55;9476:18;;40864:55:0::1;9151:349:1::0;38514:294:0;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38607:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;38599:99:::1;;;::::0;-1:-1:-1;;;38599:99:0;;9707:2:1;38599:99:0::1;::::0;::::1;9689:21:1::0;9746:2;9726:18;;;9719:30;9785:34;9765:18;;;9758:62;-1:-1:-1;;;9836:18:1;;;9829:45;9891:19;;38599:99:0::1;9505:411:1::0;38599:99:0::1;-1:-1:-1::0;;;;;38709:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38709:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38766:34;;1345:41:1;;;38766:34:0::1;::::0;1318:18:1;38766:34:0::1;;;;;;;38514:294:::0;;:::o;37877:629::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;37975:15:::1;::::0;-1:-1:-1;;;;;37975:15:0;;::::1;37953:38:::0;;::::1;::::0;37945:93:::1;;;::::0;-1:-1:-1;;;37945:93:0;;10123:2:1;37945:93:0::1;::::0;::::1;10105:21:1::0;10162:2;10142:18;;;10135:30;10201:34;10181:18;;;10174:62;-1:-1:-1;;;10252:18:1;;;10245:40;10302:19;;37945:93:0::1;9921:406:1::0;37945:93:0::1;38053:15;:48:::0;;-1:-1:-1;;;;;;38053:48:0::1;-1:-1:-1::0;;;;;38053:48:0;::::1;::::0;;::::1;::::0;;;38163:25:::1;::::0;;-1:-1:-1;;;38163:25:0;;;;-1:-1:-1;;38053:48:0;38163:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;38053:48;38163:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38145:52:0::1;;38206:4;38226:15;;;;;;;;;-1:-1:-1::0;;;;;38226:15:0::1;-1:-1:-1::0;;;;;38226:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38145:104;::::0;-1:-1:-1;;;;;;38145:104:0::1;::::0;;;;;;-1:-1:-1;;;;;10818:15:1;;;38145:104:0::1;::::0;::::1;10800:34:1::0;10870:15;;10850:18;;;10843:43;10735:18;;38145:104:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38113:136:::0;-1:-1:-1;;;;;;38264:22:0;::::1;38260:239;;38348:15;;;;;;;;;-1:-1:-1::0;;;;;38348:15:0::1;-1:-1:-1::0;;;;;38348:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38330:55:0::1;;38394:4;38415:15;;;;;;;;;-1:-1:-1::0;;;;;38415:15:0::1;-1:-1:-1::0;;;;;38415:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38330:108;::::0;-1:-1:-1;;;;;;38330:108:0::1;::::0;;;;;;-1:-1:-1;;;;;10818:15:1;;;38330:108:0::1;::::0;::::1;10800:34:1::0;10870:15;;10850:18;;;10843:43;10735:18;;38330:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38301:13;:137:::0;;-1:-1:-1;;;;;;38301:137:0::1;-1:-1:-1::0;;;;;38301:137:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;39745:319:0:o;38260:239::-:1;38463:13;:24:::0;;-1:-1:-1;;;;;38463:24:0;::::1;-1:-1:-1::0;;;;;;38463:24:0;;::::1;;::::0;;37938:568:::1;37877:629:::0;:::o;41706:207::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;41808:4:::1;41792:13;26024:12:::0;;;25936:108;41792:13:::1;:20;;;;:::i;:::-;41782:6;:30;;41774:93;;;::::0;-1:-1:-1;;;41774:93:0;;11099:2:1;41774:93:0::1;::::0;::::1;11081:21:1::0;11138:2;11118:18;;;11111:30;11177:34;11157:18;;;11150:62;-1:-1:-1;;;11228:18:1;;;11221:48;11286:19;;41774:93:0::1;10897:414:1::0;41774:93:0::1;41892:13;:6:::0;41901:4:::1;41892:13;:::i;:::-;41878:11;:27:::0;-1:-1:-1;41706:207:0:o;18495:201::-;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18584:22:0;::::1;18576:73;;;::::0;-1:-1:-1;;;18576:73:0;;11518:2:1;18576:73:0::1;::::0;::::1;11500:21:1::0;11557:2;11537:18;;;11530:30;11596:34;11576:18;;;11569:62;-1:-1:-1;;;11647:18:1;;;11640:36;11693:19;;18576:73:0::1;11316:402:1::0;18576:73:0::1;18660:28;18679:8;18660:18;:28::i;38871:352::-:0;17659:6;;-1:-1:-1;;;;;17659:6:0;16386:10;17806:23;17798:68;;;;-1:-1:-1;;;17798:68:0;;;;;;;:::i;:::-;38965:4:::1;-1:-1:-1::0;;;;;38947:23:0;::::1;::::0;38943:273:::1;;38986:43;38995:7;17659:6:::0;;-1:-1:-1;;;;;17659:6:0;;17586:87;38995:7:::1;39022:4;26181:7:::0;26208:18;;;;;;;;;;;26447:175;:::i;38943:273::-:1;39121:35;::::0;-1:-1:-1;;;39121:35:0;;39150:4:::1;39121:35;::::0;::::1;1569:51:1::0;39085:6:0;;39058:17:::1;::::0;-1:-1:-1;;;;;39121:20:0;::::1;::::0;::::1;::::0;1542:18:1;;39121:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39103:53;;39167:10;-1:-1:-1::0;;;;;39167:19:0::1;;39187:7;17659:6:::0;;-1:-1:-1;;;;;17659:6:0;;17586:87;39187:7:::1;39167:37;::::0;-1:-1:-1;;;;;;39167:37:0::1;::::0;;;;;;-1:-1:-1;;;;;12104:32:1;;;39167:37:0::1;::::0;::::1;12086:51:1::0;12153:18;;;12146:34;;;12059:18;;39167:37:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39047:169;;38871:352:::0;:::o;32967:380::-;-1:-1:-1;;;;;33103:19:0;;33095:68;;;;-1:-1:-1;;;33095:68:0;;12643:2:1;33095:68:0;;;12625:21:1;12682:2;12662:18;;;12655:30;12721:34;12701:18;;;12694:62;-1:-1:-1;;;12772:18:1;;;12765:34;12816:19;;33095:68:0;12441:400:1;33095:68:0;-1:-1:-1;;;;;33182:21:0;;33174:68;;;;-1:-1:-1;;;33174:68:0;;13048:2:1;33174:68:0;;;13030:21:1;13087:2;13067:18;;;13060:30;13126:34;13106:18;;;13099:62;-1:-1:-1;;;13177:18:1;;;13170:32;13219:19;;33174:68:0;12846:398:1;33174:68:0;-1:-1:-1;;;;;33255:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33307:32;;160:25:1;;;33307:32:0;;133:18:1;33307:32:0;;;;;;;32967:380;;;:::o;42177:2694::-;-1:-1:-1;;;;;42309:18:0;;42301:67;;;;-1:-1:-1;;;42301:67:0;;13451:2:1;42301:67:0;;;13433:21:1;13490:2;13470:18;;;13463:30;13529:34;13509:18;;;13502:62;-1:-1:-1;;;13580:18:1;;;13573:34;13624:19;;42301:67:0;13249:400:1;42301:67:0;-1:-1:-1;;;;;42387:16:0;;42379:63;;;;-1:-1:-1;;;42379:63:0;;13856:2:1;42379:63:0;;;13838:21:1;13895:2;13875:18;;;13868:30;13934:34;13914:18;;;13907:62;-1:-1:-1;;;13985:18:1;;;13978:32;14027:19;;42379:63:0;13654:398:1;42379:63:0;42471:16;;;;;;;;:45;;-1:-1:-1;;;;;;42491:25:0;;;;;;:19;:25;;;;;;;;42471:45;42462:105;;;;-1:-1:-1;;;42462:105:0;;14259:2:1;42462:105:0;;;14241:21:1;14298:2;14278:18;;;14271:30;14337:25;14317:18;;;14310:53;14380:18;;42462:105:0;14057:347:1;42462:105:0;42584:6;42594:1;42584:11;42580:93;;42612:28;42628:4;42634:2;42638:1;42612:15;:28::i;:::-;42177:2694;;;:::o;42580:93::-;42713:16;;;42727:1;42713:16;;;;;;;;42685:25;;42713:16;;;;;;;;;;-1:-1:-1;42713:16:0;42685:44;;42762:4;42740:8;42749:1;42740:11;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42740:27:0;;;:11;;;;;;;;;;:27;;;;42792:15;;:22;;;-1:-1:-1;;;42792:22:0;;;;:15;;;;;:20;;:22;;;;;42740:11;;42792:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42778:8;42787:1;42778:11;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42778:36:0;;;;:11;;;;;;;;;;:36;42878:4;42827:16;26208:18;;;;;;;;;;;-1:-1:-1;42856:137:0;;42913:15;;-1:-1:-1;;;;;42913:15:0;:29;42943:24;42961:4;-1:-1:-1;;;;;26208:18:0;26181:7;26208:18;;;;;;;;;;;;26107:127;42943:24;42969:8;42913:65;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42913:65:0;;;;;;;;;;;;:::i;:::-;42979:1;42913:68;;;;;;;;:::i;:::-;;;;;;;42902:79;;42856:137;43052:4;43003:28;26208:18;;;;;;;;;;;43125:13;;43169:11;;43100:38;;;;;43169:11;;;;;:37;;;;-1:-1:-1;43198:8:0;;-1:-1:-1;;;43198:8:0;;;;43197:9;43169:37;:75;;;;-1:-1:-1;43231:13:0;;-1:-1:-1;;;;;43223:21:0;;;43231:13;;43223:21;;43169:75;:115;;;;;43261:23;43169:115;43151:278;;;43346:20;43381:34;43346:20;43381:22;:34::i;:::-;43296:133;43151:278;-1:-1:-1;;;;;43562:25:0;;43441:12;43562:25;;;:19;:25;;;;;;43456:4;;43562:25;;;:52;;-1:-1:-1;;;;;;43591:23:0;;;;;;:19;:23;;;;;;;;43562:52;43558:100;;;-1:-1:-1;43641:5:0;43558:100;43674:7;43670:1148;;;-1:-1:-1;;;;;43741:29:0;;43698:12;43741:29;;;:25;:29;;;;;;;;43737:220;;;-1:-1:-1;43798:12:0;;;;;;;43737:220;;;-1:-1:-1;;;;;43853:31:0;;;;;;:25;:31;;;;;;;;43849:108;;;-1:-1:-1;43912:11:0;;;;43849:108;-1:-1:-1;;;;;43978:26:0;;;;;;:20;:26;;;;;;;;43977:27;:56;;;;-1:-1:-1;;;;;;44009:24:0;;;;;;:20;:24;;;;;;;;44008:25;43977:56;43973:665;;;-1:-1:-1;;;;;44058:29:0;;;;;;:25;:29;;;;;;;;44054:300;;;44130:11;;44120:6;:21;;44112:59;;;;-1:-1:-1;;;44112:59:0;;16788:2:1;44112:59:0;;;16770:21:1;16827:2;16807:18;;;16800:30;16866:27;16846:18;;;16839:55;16911:18;;44112:59:0;16586:349:1;44112:59:0;44054:300;;;-1:-1:-1;;;;;44201:31:0;;;;;;:25;:31;;;;;;;;44197:157;;;44273:11;;44263:6;:21;;44255:58;;;;-1:-1:-1;;;44255:58:0;;17142:2:1;44255:58:0;;;17124:21:1;17181:2;17161:18;;;17154:30;17220:26;17200:18;;;17193:54;17264:18;;44255:58:0;16940:348:1;44255:58:0;-1:-1:-1;;;;;44379:29:0;;;;;;:25;:29;;;;;;;;44374:249;;44493:15;;44483:6;44467:13;44477:2;-1:-1:-1;;;;;26208:18:0;26181:7;26208:18;;;;;;;;;;;;26107:127;44467:13;:22;;;;:::i;:::-;:41;;44433:170;;;;-1:-1:-1;;;44433:170:0;;17495:2:1;44433:170:0;;;17477:21:1;17534:2;17514:18;;;17507:30;17573:34;17553:18;;;17546:62;-1:-1:-1;;;17624:18:1;;;17617:41;17675:19;;44433:170:0;17293:407:1;44433:170:0;44654:17;44674:25;44695:3;44674:16;:6;44685:4;44674:10;:16::i;:::-;:20;;:25::i;:::-;44654:45;-1:-1:-1;44723:21:0;:6;44654:45;44723:10;:21::i;:::-;44714:30;;44759:47;44775:4;44789;44796:9;44759:15;:47::i;:::-;43683:1135;;43670:1148;44830:33;44846:4;44852:2;44856:6;44830:15;:33::i;:::-;42290:2581;;;;;42177:2694;;;:::o;18856:191::-;18949:6;;;-1:-1:-1;;;;;18966:17:0;;;-1:-1:-1;;;;;;18966:17:0;;;;;;;18999:40;;18949:6;;;18966:17;18949:6;;18999:40;;18930:16;;18999:40;18919:128;18856:191;:::o;40072:352::-;-1:-1:-1;;;;;40177:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;40155:153;;;;-1:-1:-1;;;40155:153:0;;17907:2:1;40155:153:0;;;17889:21:1;17946:2;17926:18;;;17919:30;17985:34;17965:18;;;17958:62;18056:33;18036:18;;;18029:61;18107:19;;40155:153:0;17705:427:1;40155:153:0;-1:-1:-1;;;;;40319:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40319:39:0;;;;;;;;;;40376:40;;40319:39;;:31;40376:40;;;40072:352;;:::o;30156:763::-;-1:-1:-1;;;;;30296:20:0;;30288:70;;;;-1:-1:-1;;;30288:70:0;;18339:2:1;30288:70:0;;;18321:21:1;18378:2;18358:18;;;18351:30;18417:34;18397:18;;;18390:62;-1:-1:-1;;;18468:18:1;;;18461:35;18513:19;;30288:70:0;18137:401:1;30288:70:0;-1:-1:-1;;;;;30377:23:0;;30369:71;;;;-1:-1:-1;;;30369:71:0;;18745:2:1;30369:71:0;;;18727:21:1;18784:2;18764:18;;;18757:30;18823:34;18803:18;;;18796:62;-1:-1:-1;;;18874:18:1;;;18867:33;18917:19;;30369:71:0;18543:399:1;30369:71:0;-1:-1:-1;;;;;30537:17:0;;30513:21;30537:17;;;;;;;;;;;30573:23;;;;30565:74;;;;-1:-1:-1;;;30565:74:0;;19149:2:1;30565:74:0;;;19131:21:1;19188:2;19168:18;;;19161:30;19227:34;19207:18;;;19200:62;-1:-1:-1;;;19278:18:1;;;19271:36;19324:19;;30565:74:0;18947:402:1;30565:74:0;-1:-1:-1;;;;;30675:17:0;;;:9;:17;;;;;;;;;;;30695:22;;;30675:42;;30739:20;;;;;;;;:30;;30711:6;;30675:9;30739:30;;30711:6;;30739:30;:::i;:::-;;;;-1:-1:-1;;30786:10:0;;30782:71;;30833:9;-1:-1:-1;;;;;30816:35:0;30825:6;-1:-1:-1;;;;;30816:35:0;;30844:6;30816:35;;;;160:25:1;;148:2;133:18;;14:177;30816:35:0;;;;;;;;30782:71;30865:46;42177:2694;44879:244;36581:8;:15;;-1:-1:-1;;;;36581:15:0;-1:-1:-1;;;36581:15:0;;;44959:24:::1;44976:6:::0;44959:16:::1;:24::i;:::-;45016:15;::::0;45008:63:::1;::::0;44995:7:::1;::::0;-1:-1:-1;;;45016:15:0;::::1;-1:-1:-1::0;;;;;45016:15:0::1;::::0;45045:21:::1;::::0;44995:7;45008:63;44995:7;45008:63;45045:21;45016:15;45008:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44994:77;;;45089:2;45081:32;;;::::0;-1:-1:-1;;;45081:32:0;;19556:2:1;45081:32:0::1;::::0;::::1;19538:21:1::0;19595:2;19575:18;;;19568:30;-1:-1:-1;;;19614:18:1;;;19607:48;19672:18;;45081:32:0::1;19354:342:1::0;45081:32:0::1;-1:-1:-1::0;;36619:8:0;:16;;-1:-1:-1;;;;36619:16:0;;;44879:244::o;12200:98::-;12258:7;12285:5;12289:1;12285;:5;:::i;:::-;12278:12;12200:98;-1:-1:-1;;;12200:98:0:o;12599:::-;12657:7;12684:5;12688:1;12684;:5;:::i;11843:98::-;11901:7;11928:5;11932:1;11928;:5;:::i;45136:589::-;45286:16;;;45300:1;45286:16;;;;;;;;45262:21;;45286:16;;;;;;;;;;-1:-1:-1;45286:16:0;45262:40;;45331:4;45313;45318:1;45313:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45313:23:0;;;:7;;;;;;;;;;:23;;;;45357:15;;:22;;;-1:-1:-1;;;45357:22:0;;;;:15;;;;;:20;;:22;;;;;45313:7;;45357:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45347:4;45352:1;45347:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45347:32:0;;;:7;;;;;;;;;:32;45424:15;;45392:62;;45409:4;;45424:15;45442:11;45392:8;:62::i;:::-;45493:15;;:224;;-1:-1:-1;;;45493:224:0;;-1:-1:-1;;;;;45493:15:0;;;;:66;;:224;;45574:11;;45493:15;;45644:4;;45671;;45691:15;;45493:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45191:534;45136:589;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2474:272::-;2532:6;2585:2;2573:9;2564:7;2560:23;2556:32;2553:52;;;2601:1;2598;2591:12;2553:52;2640:9;2627:23;2690:6;2683:5;2679:18;2672:5;2669:29;2659:57;;2712:1;2709;2702:12;2959:247;3018:6;3071:2;3059:9;3050:7;3046:23;3042:32;3039:52;;;3087:1;3084;3077:12;3039:52;3126:9;3113:23;3145:31;3170:5;3145:31;:::i;3211:180::-;3270:6;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;-1:-1:-1;3362:23:1;;3211:180;-1:-1:-1;3211:180:1:o;3396:118::-;3482:5;3475:13;3468:21;3461:5;3458:32;3448:60;;3504:1;3501;3494:12;3519:382;3584:6;3592;3645:2;3633:9;3624:7;3620:23;3616:32;3613:52;;;3661:1;3658;3651:12;3613:52;3700:9;3687:23;3719:31;3744:5;3719:31;:::i;:::-;3769:5;-1:-1:-1;3826:2:1;3811:18;;3798:32;3839:30;3798:32;3839:30;:::i;:::-;3888:7;3878:17;;;3519:382;;;;;:::o;3906:388::-;3974:6;3982;4035:2;4023:9;4014:7;4010:23;4006:32;4003:52;;;4051:1;4048;4041:12;4003:52;4090:9;4077:23;4109:31;4134:5;4109:31;:::i;:::-;4159:5;-1:-1:-1;4216:2:1;4201:18;;4188:32;4229:33;4188:32;4229:33;:::i;4299:380::-;4378:1;4374:12;;;;4421;;;4442:61;;4496:4;4488:6;4484:17;4474:27;;4442:61;4549:2;4541:6;4538:14;4518:18;4515:38;4512:161;;4595:10;4590:3;4586:20;4583:1;4576:31;4630:4;4627:1;4620:15;4658:4;4655:1;4648:15;4512:161;;4299:380;;;:::o;4684:356::-;4886:2;4868:21;;;4905:18;;;4898:30;4964:34;4959:2;4944:18;;4937:62;5031:2;5016:18;;4684:356::o;6012:127::-;6073:10;6068:3;6064:20;6061:1;6054:31;6104:4;6101:1;6094:15;6128:4;6125:1;6118:15;6144:125;6209:9;;;6230:10;;;6227:36;;;6243:18;;:::i;7040:217::-;7080:1;7106;7096:132;;7150:10;7145:3;7141:20;7138:1;7131:31;7185:4;7182:1;7175:15;7213:4;7210:1;7203:15;7096:132;-1:-1:-1;7242:9:1;;7040:217::o;7683:168::-;7756:9;;;7787;;7804:15;;;7798:22;;7784:37;7774:71;;7825:18;;:::i;10332:251::-;10402:6;10455:2;10443:9;10434:7;10430:23;10426:32;10423:52;;;10471:1;10468;10461:12;10423:52;10503:9;10497:16;10522:31;10547:5;10522:31;:::i;11723:184::-;11793:6;11846:2;11834:9;11825:7;11821:23;11817:32;11814:52;;;11862:1;11859;11852:12;11814:52;-1:-1:-1;11885:16:1;;11723:184;-1:-1:-1;11723:184:1:o;12191:245::-;12258:6;12311:2;12299:9;12290:7;12286:23;12282:32;12279:52;;;12327:1;12324;12317:12;12279:52;12359:9;12353:16;12378:28;12400:5;12378:28;:::i;14409:127::-;14470:10;14465:3;14461:20;14458:1;14451:31;14501:4;14498:1;14491:15;14525:4;14522:1;14515:15;14541:127;14602:10;14597:3;14593:20;14590:1;14583:31;14633:4;14630:1;14623:15;14657:4;14654:1;14647:15;14673:461;14726:3;14764:5;14758:12;14791:6;14786:3;14779:19;14817:4;14846:2;14841:3;14837:12;14830:19;;14883:2;14876:5;14872:14;14904:1;14914:195;14928:6;14925:1;14922:13;14914:195;;;14993:13;;-1:-1:-1;;;;;14989:39:1;14977:52;;15049:12;;;;15084:15;;;;15025:1;14943:9;14914:195;;;-1:-1:-1;15125:3:1;;14673:461;-1:-1:-1;;;;;14673:461:1:o;15139:332::-;15346:6;15335:9;15328:25;15389:2;15384;15373:9;15369:18;15362:30;15309:4;15409:56;15461:2;15450:9;15446:18;15438:6;15409:56;:::i;:::-;15401:64;15139:332;-1:-1:-1;;;;15139:332:1:o;15476:1105::-;15571:6;15602:2;15645;15633:9;15624:7;15620:23;15616:32;15613:52;;;15661:1;15658;15651:12;15613:52;15694:9;15688:16;15723:18;15764:2;15756:6;15753:14;15750:34;;;15780:1;15777;15770:12;15750:34;15818:6;15807:9;15803:22;15793:32;;15863:7;15856:4;15852:2;15848:13;15844:27;15834:55;;15885:1;15882;15875:12;15834:55;15914:2;15908:9;15936:2;15932;15929:10;15926:36;;;15942:18;;:::i;:::-;15988:2;15985:1;15981:10;16020:2;16014:9;16083:2;16079:7;16074:2;16070;16066:11;16062:25;16054:6;16050:38;16138:6;16126:10;16123:22;16118:2;16106:10;16103:18;16100:46;16097:72;;;16149:18;;:::i;:::-;16185:2;16178:22;16235:18;;;16269:15;;;;-1:-1:-1;16311:11:1;;;16307:20;;;16339:19;;;16336:39;;;16371:1;16368;16361:12;16336:39;16395:11;;;;16415:135;16431:6;16426:3;16423:15;16415:135;;;16497:10;;16485:23;;16448:12;;;;16528;;;;16415:135;;;16569:6;15476:1105;-1:-1:-1;;;;;;;;15476:1105:1:o;19701:128::-;19768:9;;;19789:11;;;19786:37;;;19803:18;;:::i;19834:582::-;20133:6;20122:9;20115:25;20176:6;20171:2;20160:9;20156:18;20149:34;20219:3;20214:2;20203:9;20199:18;20192:31;20096:4;20240:57;20292:3;20281:9;20277:19;20269:6;20240:57;:::i;:::-;-1:-1:-1;;;;;20333:32:1;;;;20328:2;20313:18;;20306:60;-1:-1:-1;20397:3:1;20382:19;20375:35;20232:65;19834:582;-1:-1:-1;;;19834:582:1:o

Swarm Source

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