ETH Price: $3,227.71 (+1.04%)

Token

$CULO (CULO)
 

Overview

Max Total Supply

420,000,000,000 CULO

Holders

1,138

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,344,622.323697497919608925 CULO

Value
$0.00
0xb646c4fe0090bf6fdba226d3ccd8f775b30fdbb5
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:
BaseERC20

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 1 : BaseERC20.sol
/**
 *Submitted for verification at basescan.org on 2024-06-25
*/

pragma solidity =0.8.23 >=0.5.0 >=0.6.2 ^0.8.0 ^0.8.1;

// lib/openzeppelin-contracts/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Permit.sol

// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// lib/openzeppelin-contracts/contracts/utils/Address.sol

// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// lib/openzeppelin-contracts/contracts/utils/Context.sol

// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// lib/v2-core/contracts/interfaces/IUniswapV2Factory.sol

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

// lib/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

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

// src/ERC20/Constants.sol

library Constants {
    uint256 public constant LIQUIDITY_ADD_THRESHOLD = 5 ether;
    uint256 public constant INITIAL_VIRTUAL_TOKEN_RESERVE = 450_660_000_000 ether; // 450.66B
    uint256 public constant INITIAL_VIRTUAL_NATIVE_RESERVE = 1.5 ether; // 1.5 ether
    uint256 public constant VIRTUAL_TOKEN_RESERVE_WHEN_ADD_LIQUIDITY = 117_550_000_000 ether;    // 117.55 B
    uint256 public constant TOTAL_TOKEN_FOR_SELL = INITIAL_VIRTUAL_TOKEN_RESERVE - VIRTUAL_TOKEN_RESERVE_WHEN_ADD_LIQUIDITY;    // 117.55 B
    uint256 public constant KXY = INITIAL_VIRTUAL_TOKEN_RESERVE * INITIAL_VIRTUAL_NATIVE_RESERVE;
    uint256 public constant KXYM = KXY * M;
    uint256 public constant M = 1e18;
}

// src/ERC20/ICurve.sol

interface ICurve {
    function getOutputTokenAmount(uint256 inputAmount, address token) external view returns (uint256, uint256, uint256 remainNativeAmount);
    function getOutputEthAmount(uint256 inputAmount, address token) external view returns (uint256, uint256);
    function getInputEthAmount(uint256 outputAmount, address token) external view returns (uint256 ethInputAmount, uint256 tax);
    function getInputTokenAmount(uint256 outputNtAmount, address token) external view returns (uint256 inputAmount, uint256 tax);
}

// src/ERC20/ITokenFactory.sol

interface ITokenFactory {
    function updateRef(address referrer, address referee) external;
    function getReferrer(address referee) external view returns (address);
    function treasury() external view returns (address);
    function getRefAmounts(uint256 amount) external view returns (uint256[] memory);
    function addRefReceivedAmount(address referrer, uint256 addedAmount) external;
    function emitTokenEvent(uint8 eventType, bytes memory eventData) external;
}

// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

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

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

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

// lib/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

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

// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

    /**
     * @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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

// lib/openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol

// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/ERC20Capped.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// src/ERC20/BaseERC20.sol

/// @title BaseERC20
/// @notice A standard ERC20 token
contract BaseERC20 is ERC20Capped, ReentrancyGuard {
    using SafeERC20 for IERC20;
    using Address for address payable;

    IUniswapV2Router02 public immutable univ2router;
    address public immutable pair;
    IERC20 public immutable wnt;

    uint256 public immutable tokenSellThreshold;
    uint256 public constant SELL_DEX_TAX = 25; // 0.25%
    uint256 public constant PRECISION = 10000;

    uint8 public constant EVENT_TYPE_BUY = 0;
    uint8 public constant EVENT_TYPE_SELL = 1;
    uint8 public constant EVENT_TYPE_ADD_LIQUIDITY = 2;

    bool public isLiquidityPoolCreated = false;
    bool public isSwapping;
    ITokenFactory public immutable tokenFactory;
    ICurve public immutable curve;
    uint256[2] public virtualReserves;
    // modifiers
    modifier whenLiquidityNotAdded() {
        if (isLiquidityPoolCreated) {
            revert ErrLiquidityAlreadyAdded();
        }
        _;
    }

    constructor(
        IERC20 _wnt,
        IUniswapV2Router02 _univ2router,
        string memory name_,
        string memory symbol_,
        uint256 _totalSupply,
        IUniswapV2Factory univ2factory,
        ICurve _curve
    ) ERC20(name_, symbol_) ERC20Capped(_totalSupply) {
        _mint(
            address(this), // token contract
            _totalSupply // maxSupply
        );

        pair = univ2factory.createPair(address(this), address(_wnt));
        univ2router = _univ2router;
        wnt = _wnt;
        isSwapping = false;
        _approve(address(this), address(_univ2router), type(uint256).max);
        tokenSellThreshold = _totalSupply / 20000; // 0.005%
        tokenFactory = ITokenFactory(msg.sender);
        curve = _curve;
        virtualReserves[0] = Constants.INITIAL_VIRTUAL_NATIVE_RESERVE;
        virtualReserves[1] = Constants.INITIAL_VIRTUAL_TOKEN_RESERVE;
    }

    function deposit() external payable {}

    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal override {
        uint256 fee = 0;

        if (!isLiquidityPoolCreated) {
            if (!(to == address(this) || from == address(this))) {
                revert ErrLiquidityNotAdded();
            }
        }
        // check buy or sell
        if (to == pair || from == pair) {
            if (!(to == address(this) || from == address(this))) {
                fee = ((value * SELL_DEX_TAX) / PRECISION);
                if (from != pair) {
                    handle_fees();
                }
            }
        } else if ((to != address(this) && from != address(this))) {
            if (!isLiquidityPoolCreated) {
                revert ErrLiquidityNotAdded();
            }
        } 
        super._transfer(from, to, value - fee);
        if (fee > 0) {
            super._transfer(from, address(this), fee);
        }
    }

    function handle_fees() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= tokenSellThreshold) {
            swapTokensForETH(contractBalance);
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        if (isSwapping || !isLiquidityPoolCreated) return;
        isSwapping = true;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = address(wnt);
        univ2router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            tokenFactory.treasury(),
            block.timestamp
        );
        isSwapping = false;
    }

    function getBuyTokenAmount(uint256 amount) public view returns (uint256 tokenAmountReceived, uint256 tax, uint256 remainNativeAmount) {
        return curve.getOutputTokenAmount(amount, address(this));
    }

    function getNativeInputAmount(uint256 outTokenAmount) public view returns (uint256 ethInputAmount, uint256 tax) {
        return curve.getInputEthAmount(outTokenAmount, address(this));
    }

    function getSellTokenAmount(
        uint256 amount
    ) public view returns (uint256 ethReceived, uint256 tax) {
        return curve.getOutputEthAmount(amount, address(this));
    }

    function getInputTokenAmount(uint256 outputNtAmount) public view returns (uint256 inputAmount, uint256 tax) {
        return curve.getInputTokenAmount(outputNtAmount, address(this));
    }

    // return sent amount
    function transferToRef(address ref, uint256 amount) internal returns (uint256) {
        if (ref == address(0)) {
            return 0;
        }
        payable(ref).sendValue(amount);
        tokenFactory.addRefReceivedAmount(ref, amount);
        return amount;
    }

    function assertReserves(uint256 newNtReserve, uint256 newTokenReserve) internal {
        if (newNtReserve * newTokenReserve < virtualReserves[0] * virtualReserves[1]) {
            revert ErrInvalidCurve();
        }

        virtualReserves[0] = newNtReserve;
        virtualReserves[1] = newTokenReserve;
    }

    function getOrUpdateReferrer(address referrer) internal returns (address, address, address) {
        address treasury = tokenFactory.treasury();
        // check if should update referrer
        address currentReferrer = tokenFactory.getReferrer(msg.sender);
        if (currentReferrer == address(0)) {
            if (referrer == address(0)) {
                // update referrrer as treasury
                tokenFactory.updateRef(treasury, msg.sender);
                currentReferrer = treasury;
            } else {
                tokenFactory.updateRef(referrer, msg.sender);
                currentReferrer = referrer;
            }
        }
        if (currentReferrer == treasury) {
            return (currentReferrer, address(0), address(0));
        }
        address ref1Downline = tokenFactory.getReferrer(currentReferrer);
        address ref2Downline = tokenFactory.getReferrer(ref1Downline);
        return (currentReferrer, ref1Downline, ref2Downline);
    }

    function getRefAndTransfer(address referrer, uint256 tax) internal {
        uint256[] memory refAmounts = tokenFactory.getRefAmounts(tax);
        // check if should update referrer
        (address currentReferrer, address ref1Downline, address ref2Downline) = getOrUpdateReferrer(referrer);
        uint256 remainAmount = tax;
        remainAmount -= transferToRef(currentReferrer, refAmounts[0]);
        remainAmount -= transferToRef(ref1Downline, refAmounts[1]);
        remainAmount -= transferToRef(ref2Downline, refAmounts[2]);
        payable(tokenFactory.treasury()).sendValue(remainAmount);
    }

    function getVirtualReserves() public view returns (uint256[2] memory) {
        return virtualReserves;
    }

    function getReserves() external view returns (uint256[2] memory) {
        uint256[2] memory reserves;
        reserves[1] = balanceOf(address(this));
        reserves[0] = address(this).balance;
        return reserves;
    }

    // ============================================================================================
    // External Functions
    // ============================================================================================

    function buy(address recipient, address referrer, uint256 minOut) public payable whenLiquidityNotAdded nonReentrant() {
        if (recipient == address(0)) {
            recipient = msg.sender;
        }
        if (referrer == msg.sender) {
            revert ErrCannotRefToYourself();
        }
        if (msg.value == 0) {
            revert ErrValueMustBeGreaterThanZero();
        }

        (uint256 amountReceived, uint256 tax, uint256 remainNativeAmount) = getBuyTokenAmount(msg.value);
        if (amountReceived < minOut) {
            revert ErrExceedsSlipage();
        }
        _transfer(address(this), recipient, amountReceived);
        if (remainNativeAmount > 0) {
            payable(msg.sender).sendValue(remainNativeAmount);
        }
        getRefAndTransfer(referrer, tax);
        assertReserves(virtualReserves[0] + msg.value - tax - remainNativeAmount, virtualReserves[1] - amountReceived);
        tokenFactory.emitTokenEvent(EVENT_TYPE_BUY, abi.encode(address(this), msg.sender, recipient, msg.value, msg.value - tax - remainNativeAmount, amountReceived, virtualReserves[0], virtualReserves[1]));
        callAddLiquidityIfShould();
    }

    function buyExactOut(address recipient, address referrer, uint256 outTokenAmount) external payable whenLiquidityNotAdded nonReentrant() {
        if (recipient == address(0)) {
            recipient = msg.sender;
        }
        if (referrer == msg.sender) {
            revert ErrCannotRefToYourself();
        }
        if (msg.value == 0) {
            revert ErrValueMustBeGreaterThanZero();
        }

        (uint256 ethInputAmount, uint256 tax) = getNativeInputAmount(outTokenAmount);
        if (ethInputAmount > msg.value) {
            revert ErrExceedsSlipage();
        }
        _transfer(address(this), recipient, outTokenAmount);

        getRefAndTransfer(referrer, tax);
        if (msg.value > ethInputAmount) {
            payable(msg.sender).sendValue(msg.value - ethInputAmount);
        }

        assertReserves(virtualReserves[0] + ethInputAmount - tax, virtualReserves[1] - outTokenAmount);
        tokenFactory.emitTokenEvent(EVENT_TYPE_BUY, abi.encode(address(this), msg.sender, recipient, ethInputAmount, ethInputAmount - tax, outTokenAmount,  virtualReserves[0], virtualReserves[1]));
        callAddLiquidityIfShould();
    }

    function sell(address recipient, uint256 tokenAmount, address referrer, uint256 minOut) external whenLiquidityNotAdded nonReentrant {
        if (recipient == address(0)) {
            recipient = msg.sender;
        }
        if (referrer == msg.sender) {
            revert ErrCannotRefToYourself();
        }
        if (tokenAmount == 0) {
            revert ErrValueMustBeGreaterThanZero();
        }
        (uint256 amountUserReceived, uint256 tax) = getSellTokenAmount(tokenAmount);

        _transfer(msg.sender, address(this), tokenAmount);

        if (amountUserReceived < minOut) {
            revert ErrExceedsSlipage();
        }
        payable(recipient).sendValue(amountUserReceived);
        getRefAndTransfer(referrer, tax);
        assertReserves(virtualReserves[0] - (amountUserReceived + tax), virtualReserves[1] + tokenAmount);
        tokenFactory.emitTokenEvent(EVENT_TYPE_SELL, abi.encode(address(this), msg.sender, recipient, tokenAmount, amountUserReceived + tax, amountUserReceived,  virtualReserves[0], virtualReserves[1]));
        callAddLiquidityIfShould();
    }
    
    function sellExactOut(address recipient, uint256 outputNtAmount, address referrer, uint256 maxTokenAmount) external whenLiquidityNotAdded nonReentrant {
        if (recipient == address(0)) {
            recipient = msg.sender;
        }
        if (referrer == msg.sender) {
            revert ErrCannotRefToYourself();
        }
        if (maxTokenAmount == 0 || outputNtAmount == 0) {
            revert ErrValueMustBeGreaterThanZero();
        }
        (uint256 inputTokenAmount, uint256 tax) = getInputTokenAmount(outputNtAmount);

        if (inputTokenAmount > maxTokenAmount) {
            revert ErrExceedsSlipage();
        }

        _transfer(msg.sender, address(this), inputTokenAmount);
        payable(recipient).sendValue(outputNtAmount);

        getRefAndTransfer(referrer, tax);
        assertReserves(virtualReserves[0] - (outputNtAmount + tax), virtualReserves[1] + inputTokenAmount);
        tokenFactory.emitTokenEvent(EVENT_TYPE_SELL, abi.encode(address(this), msg.sender, recipient, inputTokenAmount, outputNtAmount + tax, outputNtAmount,  virtualReserves[0], virtualReserves[1]));
        callAddLiquidityIfShould();
    }

    function callAddLiquidityIfShould() internal {
        if (virtualReserves[1] == Constants.VIRTUAL_TOKEN_RESERVE_WHEN_ADD_LIQUIDITY) {
            addLiquidity();
        }
    }

    function addLiquidity() public whenLiquidityNotAdded {
        if (virtualReserves[1] != Constants.VIRTUAL_TOKEN_RESERVE_WHEN_ADD_LIQUIDITY) {
            revert ErrLiquidityBelowThreshold();
        }

        uint256 tokenAmountToAdd = totalSupply() - Constants.TOTAL_TOKEN_FOR_SELL;
        if (tokenAmountToAdd > balanceOf(address(this))) {
            tokenAmountToAdd = balanceOf(address(this));
        }

        // fee when add liquidity
        payable(tokenFactory.treasury()).sendValue(0.05 ether);

        payable(address(wnt)).functionCallWithValue(
            abi.encodeWithSignature("deposit()"),
            address(this).balance
        );

        uint256 _amountToken = tokenAmountToAdd;
        uint256 _amountWNT = wnt.balanceOf(address(this));
        if (!(_amountToken > 0 && _amountWNT > 0)) {
            revert ErrInvalidLiquidityAmount();
        }

        wnt.forceApprove(address(univ2router), _amountWNT);
        uint256 _liquidity = 0;
        (_amountToken, _amountWNT, _liquidity) = univ2router.addLiquidity(
            address(this), // tokenA
            address(wnt), // tokenB
            _amountToken, // amountADesired
            _amountWNT, // amountBDesired
            _amountToken, // amountAMin
            _amountWNT, // amountBMin
            address(0), // to
            block.timestamp // deadline
        );
        isLiquidityPoolCreated = true;
        // burn the rest
        _burn(address(this), balanceOf(address(this)));
        tokenFactory.emitTokenEvent(EVENT_TYPE_ADD_LIQUIDITY, abi.encode(address(this), _amountToken, _amountWNT, pair));
    }

    receive() external payable {
        buy(msg.sender, address(0), 0);
    }

    error ErrMinimumInitialDeposit();
    error ErrLiquidityAlreadyAdded();
    error ErrLiquidityReadyToAdd();
    error ErrLiquidityNotAdded();
    error ErrLiquidityBelowThreshold();
    error ErrValueMustBeGreaterThanZero();
    error ErrInvalidLiquidityAmount();
    error ErrCannotRefToYourself();
    error ErrExceedsSlipage();
    error ErrInvalidCurve();
}

Settings
{
  "remappings": [
    "forge-std/=lib/forge-std/src/",
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "@vectorized/=lib/dn404/src/",
    "@uniswap-periphery/=lib/v2-periphery/contracts/",
    "@uniswap-core/=lib/v2-core/contracts/",
    "dn404/=lib/dn404/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "murky/=lib/dn404/lib/murky/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "solady/=lib/dn404/lib/solady/src/",
    "v2-core/=lib/v2-core/contracts/",
    "v2-periphery/=lib/v2-periphery/contracts/",
    "v3-core/=lib/v3-core/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_wnt","type":"address"},{"internalType":"contract IUniswapV2Router02","name":"_univ2router","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"contract IUniswapV2Factory","name":"univ2factory","type":"address"},{"internalType":"contract ICurve","name":"_curve","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ErrCannotRefToYourself","type":"error"},{"inputs":[],"name":"ErrExceedsSlipage","type":"error"},{"inputs":[],"name":"ErrInvalidCurve","type":"error"},{"inputs":[],"name":"ErrInvalidLiquidityAmount","type":"error"},{"inputs":[],"name":"ErrLiquidityAlreadyAdded","type":"error"},{"inputs":[],"name":"ErrLiquidityBelowThreshold","type":"error"},{"inputs":[],"name":"ErrLiquidityNotAdded","type":"error"},{"inputs":[],"name":"ErrLiquidityReadyToAdd","type":"error"},{"inputs":[],"name":"ErrMinimumInitialDeposit","type":"error"},{"inputs":[],"name":"ErrValueMustBeGreaterThanZero","type":"error"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EVENT_TYPE_ADD_LIQUIDITY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EVENT_TYPE_BUY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EVENT_TYPE_SELL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_DEX_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"uint256","name":"minOut","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"uint256","name":"outTokenAmount","type":"uint256"}],"name":"buyExactOut","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curve","outputs":[{"internalType":"contract ICurve","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getBuyTokenAmount","outputs":[{"internalType":"uint256","name":"tokenAmountReceived","type":"uint256"},{"internalType":"uint256","name":"tax","type":"uint256"},{"internalType":"uint256","name":"remainNativeAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"outputNtAmount","type":"uint256"}],"name":"getInputTokenAmount","outputs":[{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"tax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"outTokenAmount","type":"uint256"}],"name":"getNativeInputAmount","outputs":[{"internalType":"uint256","name":"ethInputAmount","type":"uint256"},{"internalType":"uint256","name":"tax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint256[2]","name":"","type":"uint256[2]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getSellTokenAmount","outputs":[{"internalType":"uint256","name":"ethReceived","type":"uint256"},{"internalType":"uint256","name":"tax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVirtualReserves","outputs":[{"internalType":"uint256[2]","name":"","type":"uint256[2]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLiquidityPoolCreated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"uint256","name":"minOut","type":"uint256"}],"name":"sell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"outputNtAmount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"uint256","name":"maxTokenAmount","type":"uint256"}],"name":"sellExactOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenFactory","outputs":[{"internalType":"contract ITokenFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSellThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"univ2router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"virtualReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wnt","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101606040526006805460ff191690553480156200001c57600080fd5b50604051620039b9380380620039b98339810160408190526200003f9162000512565b82858560036200005083826200066d565b5060046200005f82826200066d565b50505060008111620000b85760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064015b60405180910390fd5b6080526001600555620000cc3084620001c2565b6040516364e329cb60e11b81523060048201526001600160a01b03888116602483015283169063c9c65396906044016020604051808303816000875af11580156200011b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000141919062000739565b6001600160a01b0390811660c05286811660a052871660e0526006805461ff00191690556200017430876000196200023c565b62000182614e208462000760565b6101005233610120526001600160a01b03166101405250506714d1120d7b16000060075550506c05b02937009da9bfb2e400000060085550620007ab9050565b60805181620001d060025490565b620001dc919062000783565b11156200022c5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401620000af565b62000238828262000364565b5050565b6001600160a01b038316620002a05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620000af565b6001600160a01b038216620003035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620000af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620003bc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000af565b8060026000828254620003d0919062000783565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000238600083835b505050565b6001600160a01b03811681146200044757600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200047257600080fd5b81516001600160401b03808211156200048f576200048f6200044a565b604051601f8301601f19908116603f01168101908282118183101715620004ba57620004ba6200044a565b8160405283815260209250866020858801011115620004d857600080fd5b600091505b83821015620004fc5785820183015181830184015290820190620004dd565b6000602085830101528094505050505092915050565b600080600080600080600060e0888a0312156200052e57600080fd5b87516200053b8162000431565b60208901519097506200054e8162000431565b60408901519096506001600160401b03808211156200056c57600080fd5b6200057a8b838c0162000460565b965060608a01519150808211156200059157600080fd5b50620005a08a828b0162000460565b9450506080880151925060a0880151620005ba8162000431565b60c0890151909250620005cd8162000431565b8091505092959891949750929550565b600181811c90821680620005f257607f821691505b6020821081036200061357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200042c576000816000526020600020601f850160051c81016020861015620006445750805b601f850160051c820191505b81811015620006655782815560010162000650565b505050505050565b81516001600160401b038111156200068957620006896200044a565b620006a1816200069a8454620005dd565b8462000619565b602080601f831160018114620006d95760008415620006c05750858301515b600019600386901b1c1916600185901b17855562000665565b600085815260208120601f198616915b828110156200070a57888601518255948401946001909101908401620006e9565b5085821015620007295787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200074c57600080fd5b8151620007598162000431565b9392505050565b6000826200077e57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007a557634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05160c05160e0516101005161012051610140516130cc620008ed600039600081816104e901528181610cf201528181610e2c01528181610e8401526116e20152600081816106da0152818161089d01528181610ba901528181610fca015281816110f501528181611458015281816115f201528181611a9701528181611ba501528181612208015281816122ab01528181612359015281816123e20152818161248d0152818161251f015281816125ea01526129b2015260008181610410015261202b0152600081816102d0015281816111bb015281816111fd015281816112ac0152818161130f015261292b0152600081816105bc01528181611430015281816117ff0152818161183a01526118b201526000818161034e015281816112ce01528181611363015261297f015260006103da01526130cc6000f3fe6080604052600436106102295760003560e01c8063826daeae11610123578063cca3fe64116100ab578063e77772fe1161006f578063e77772fe146106c8578063e8078d94146106fc578063ee09180d14610711578063f40bab5b14610726578063fbc6e9c11461073957600080fd5b8063cca3fe6414610653578063ce1cd31b14610673578063d0e30db01461023a578063d841617f14610693578063dd62ed3e146106a857600080fd5b8063a8aa1b31116100f2578063a8aa1b31146105aa578063a9059cbb146105de578063aaf5eb68146105fe578063b886311514610614578063c831a6d81461063357600080fd5b8063826daeae146105205780638a56b3731461054057806395d89b4114610575578063a457c2d71461058a57600080fd5b8063313ce567116101b1578063526554e811610175578063526554e81461046c578063627eb0d41461048157806370a08231146104a15780637165485d146104d75780637f8f61841461050b57600080fd5b8063313ce567146103b7578063355274ea146103cb57806338bae4cc146103fe5780633950935114610432578063396d0cd01461045257600080fd5b8063153e66e6116101f8578063153e66e61461030a57806318160ddd1461031d57806319eff2b91461033c57806323b872dd146103705780632bd7315e1461039057600080fd5b806306fdde03146102415780630902f1ac1461026c578063095ea7b31461028e578063126846ec146102be57600080fd5b3661023c5761023a33600080610774565b005b600080fd5b34801561024d57600080fd5b50610256610973565b6040516102639190612bb4565b60405180910390f35b34801561027857600080fd5b50610281610a05565b6040516102639190612bce565b34801561029a57600080fd5b506102ae6102a9366004612c14565b610a32565b6040519015158152602001610263565b3480156102ca57600080fd5b506102f27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610263565b61023a610318366004612c40565b610774565b34801561032957600080fd5b506002545b604051908152602001610263565b34801561034857600080fd5b506102f27f000000000000000000000000000000000000000000000000000000000000000081565b34801561037c57600080fd5b506102ae61038b366004612c40565b610a4c565b34801561039c57600080fd5b506103a5600281565b60405160ff9091168152602001610263565b3480156103c357600080fd5b5060126103a5565b3480156103d757600080fd5b507f000000000000000000000000000000000000000000000000000000000000000061032e565b34801561040a57600080fd5b5061032e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561043e57600080fd5b506102ae61044d366004612c14565b610a70565b34801561045e57600080fd5b506006546102ae9060ff1681565b34801561047857600080fd5b5061032e601981565b34801561048d57600080fd5b5061023a61049c366004612c81565b610a92565b3480156104ad57600080fd5b5061032e6104bc366004612cc9565b6001600160a01b031660009081526020819052604090205490565b3480156104e357600080fd5b506102f27f000000000000000000000000000000000000000000000000000000000000000081565b34801561051757600080fd5b50610281610c78565b34801561052c57600080fd5b5061032e61053b366004612ce6565b610cb2565b34801561054c57600080fd5b5061056061055b366004612ce6565b610cc9565b60408051928352602083019190915201610263565b34801561058157600080fd5b50610256610d66565b34801561059657600080fd5b506102ae6105a5366004612c14565b610d75565b3480156105b657600080fd5b506102f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ea57600080fd5b506102ae6105f9366004612c14565b610df5565b34801561060a57600080fd5b5061032e61271081565b34801561062057600080fd5b506006546102ae90610100900460ff1681565b34801561063f57600080fd5b5061056061064e366004612ce6565b610e03565b34801561065f57600080fd5b5061056061066e366004612ce6565b610e5b565b34801561067f57600080fd5b5061023a61068e366004612c81565b610eb3565b34801561069f57600080fd5b506103a5600181565b3480156106b457600080fd5b5061032e6106c3366004612cff565b61100b565b3480156106d457600080fd5b506102f27f000000000000000000000000000000000000000000000000000000000000000081565b34801561070857600080fd5b5061023a611036565b34801561071d57600080fd5b506103a5600081565b61023a610734366004612c40565b6114e9565b34801561074557600080fd5b50610759610754366004612ce6565b6116b7565b60408051938452602084019290925290820152606001610263565b60065460ff16156107985760405163eeb1f91960e01b815260040160405180910390fd5b6107a061175b565b6001600160a01b0383166107b2573392505b336001600160a01b038316036107db57604051637f57c19160e01b815260040160405180910390fd5b346000036107fc57604051630525e5dd60e11b815260040160405180910390fd5b600080600061080a346116b7565b92509250925083831015610831576040516327b2bf7b60e21b815260040160405180910390fd5b61083c3087856117b4565b801561084c5761084c3382611965565b6108568583611a7e565b61089381833460076000015461086c9190612d64565b6108769190612d77565b6108809190612d77565b60085461088e908690612d77565b611c0a565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663121c2dec600030338a34876108d38a83612d77565b6108dd9190612d77565b6007546008546040516108fb9796959493928e929091602001612d8a565b6040516020818303038152906040526040518363ffffffff1660e01b8152600401610927929190612dd1565b600060405180830381600087803b15801561094157600080fd5b505af1158015610955573d6000803e3d6000fd5b50505050610961611c4e565b50505061096e6001600555565b505050565b60606003805461098290612ded565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae90612ded565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b610a0d612b46565b610a15612b46565b306000908152602081905260409020546020820152478152919050565b600033610a40818585611c6d565b60019150505b92915050565b600033610a5a858285611d91565b610a658585856117b4565b506001949350505050565b600033610a40818585610a83838361100b565b610a8d9190612d64565b611c6d565b60065460ff1615610ab65760405163eeb1f91960e01b815260040160405180910390fd5b610abe61175b565b6001600160a01b038416610ad0573393505b336001600160a01b03831603610af957604051637f57c19160e01b815260040160405180910390fd5b82600003610b1a57604051630525e5dd60e11b815260040160405180910390fd5b600080610b2685610e5b565b91509150610b353330876117b4565b82821015610b56576040516327b2bf7b60e21b815260040160405180910390fd5b610b696001600160a01b03871683611965565b610b738482611a7e565b610b9f610b808284612d64565b600754610b8d9190612d77565b86600760015b015461088e9190612d64565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663121c2dec600130338a8a610bde888a612d64565b89600760005b0154600854604051610c00989796959493929190602001612d8a565b6040516020818303038152906040526040518363ffffffff1660e01b8152600401610c2c929190612dd1565b600060405180830381600087803b158015610c4657600080fd5b505af1158015610c5a573d6000803e3d6000fd5b50505050610c66611c4e565b5050610c726001600555565b50505050565b610c80612b46565b60408051808201918290529060079060029082845b815481526020019060010190808311610c95575050505050905090565b60078160028110610cc257600080fd5b0154905081565b6040516323913b9d60e11b81526004810182905230602482015260009081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690634722773a906044015b6040805180830381865afa158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d9190612e27565b91509150915091565b60606004805461098290612ded565b60003381610d83828661100b565b905083811015610de85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610a658286868403611c6d565b600033610a408185856117b4565b604051631204329d60e21b81526004810182905230602482015260009081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690634810ca7490604401610d1d565b604051631c1c5c8560e11b81526004810182905230602482015260009081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690633838b90a90604401610d1d565b60065460ff1615610ed75760405163eeb1f91960e01b815260040160405180910390fd5b610edf61175b565b6001600160a01b038416610ef1573393505b336001600160a01b03831603610f1a57604051637f57c19160e01b815260040160405180910390fd5b801580610f25575082155b15610f4357604051630525e5dd60e11b815260040160405180910390fd5b600080610f4f85610cc9565b9150915082821115610f74576040516327b2bf7b60e21b815260040160405180910390fd5b610f7f3330846117b4565b610f926001600160a01b03871686611965565b610f9c8482611a7e565b610fc0610fa98287612d64565b600754610fb69190612d77565b8360076001610b93565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663121c2dec600130338a87610fff888d612d64565b8c60076000610be4565b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065460ff161561105a5760405163eeb1f91960e01b815260040160405180910390fd5b6008546c017bd314bcc896e25dee0000001461108957604051631d84b01760e11b815260040160405180910390fd5b60006110af6c017bd314bcc896e25dee0000006c05b02937009da9bfb2e4000000612d77565b6002546110bc9190612d77565b306000908152602081905260409020549091508111156110e85750306000908152602081905260409020545b61118466b1a2bc2ec500007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111759190612e4b565b6001600160a01b031690611965565b6040805160048152602481019091526020810180516001600160e01b0316630d0e30db60e41b1790526111e2906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169047611e05565b506040516370a0823160e01b815230600482015281906000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561124c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112709190612e68565b90506000821180156112825750600081115b61129f5760405163160b000b60e31b815260040160405180910390fd5b6112f36001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000083611e33565b60405162e8e33760e81b81523060048201526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116602483015260448201849052606482018390526084820184905260a48201839052600060c483018190524260e4840152917f00000000000000000000000000000000000000000000000000000000000000009091169063e8e3370090610104016060604051808303816000875af11580156113af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d39190612e81565b6006805460ff191660011790559194509250905061140f3061140a816001600160a01b031660009081526020819052604090205490565b611ee7565b60408051306020820152908101849052606081018390526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660808301527f0000000000000000000000000000000000000000000000000000000000000000169063121c2dec9060029060a0016040516020818303038152906040526040518363ffffffff1660e01b81526004016114b1929190612dd1565b600060405180830381600087803b1580156114cb57600080fd5b505af11580156114df573d6000803e3d6000fd5b5050505050505050565b60065460ff161561150d5760405163eeb1f91960e01b815260040160405180910390fd5b61151561175b565b6001600160a01b038316611527573392505b336001600160a01b0383160361155057604051637f57c19160e01b815260040160405180910390fd5b3460000361157157604051630525e5dd60e11b815260040160405180910390fd5b60008061157d83610e03565b91509150348211156115a2576040516327b2bf7b60e21b815260040160405180910390fd5b6115ad3086856117b4565b6115b78482611a7e565b813411156115d3576115d36115cc8334612d77565b3390611965565b6115e881836007600001546108769190612d64565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663121c2dec6000303389876116278882612d77565b6007546008546040516116459796959493928e929091602001612d8a565b6040516020818303038152906040526040518363ffffffff1660e01b8152600401611671929190612dd1565b600060405180830381600087803b15801561168b57600080fd5b505af115801561169f573d6000803e3d6000fd5b505050506116ab611c4e565b505061096e6001600555565b604051638bbe040760e01b815260048101829052306024820152600090819081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690638bbe040790604401606060405180830381865afa158015611729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174d9190612e81565b9250925092505b9193909250565b6002600554036117ad5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ddf565b6002600555565b60065460009060ff166117fd576001600160a01b0383163014806117e057506001600160a01b03841630145b6117fd5760405163a3f4791160e01b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061186e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b156118f6576001600160a01b03831630148061189257506001600160a01b03841630145b6118f1576127106118a4601984612eaf565b6118ae9190612ec6565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316146118f1576118f1612019565b611940565b6001600160a01b038316301480159061191857506001600160a01b0384163014155b156119405760065460ff166119405760405163a3f4791160e01b815260040160405180910390fd5b611954848461194f8486612d77565b61205c565b8015610c7257610c7284308361205c565b804710156119b55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ddf565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a02576040519150601f19603f3d011682016040523d82523d6000602084013e611a07565b606091505b505090508061096e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ddf565b604051630a84345960e21b8152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632a10d16490602401600060405180830381865afa158015611ae6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b0e9190810190612efe565b90506000806000611b1e86612200565b9250925092506000859050611b4d8486600081518110611b4057611b40612d38565b6020026020010151612599565b611b579082612d77565b9050611b708386600181518110611b4057611b40612d38565b611b7a9082612d77565b9050611b938286600281518110611b4057611b40612d38565b611b9d9082612d77565b9050611c01817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611151573d6000803e3d6000fd5b50505050505050565b600854600754611c1a9190612eaf565b611c248284612eaf565b1015611c4357604051632dbf3a4960e01b815260040160405180910390fd5b600791909155600855565b6008546c017bd314bcc896e25dedffffff190161100957611009611036565b6001600160a01b038316611ccf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ddf565b6001600160a01b038216611d305760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ddf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611d9d848461100b565b90506000198114610c725781811015611df85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ddf565b610c728484848403611c6d565b6060611e2b84848460405180606001604052806029815260200161306e6029913961264d565b949350505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611e848482612728565b610c7257604080516001600160a01b038516602482015260006044808301919091528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611edd9085906127cf565b610c7284826127cf565b6001600160a01b038216611f475760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ddf565b6001600160a01b03821660009081526020819052604090205481811015611fbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ddf565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b306000908152602081905260409020547f0000000000000000000000000000000000000000000000000000000000000000811061205957612059816128a4565b50565b6001600160a01b0383166120c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ddf565b6001600160a01b0382166121225760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ddf565b6001600160a01b0383166000908152602081905260409020548181101561219a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ddf565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c72565b6000806000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612264573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122889190612e4b565b604051634a9fefc760e01b81523360048201529091506000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690634a9fefc790602401602060405180830381865afa1580156122f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123169190612e4b565b90506001600160a01b038116612442576001600160a01b0386166123bd57604051632701cc5160e01b81526001600160a01b0383811660048301523360248301527f00000000000000000000000000000000000000000000000000000000000000001690632701cc5190604401600060405180830381600087803b15801561239d57600080fd5b505af11580156123b1573d6000803e3d6000fd5b50505050819050612442565b604051632701cc5160e01b81526001600160a01b0387811660048301523360248301527f00000000000000000000000000000000000000000000000000000000000000001690632701cc5190604401600060405180830381600087803b15801561242657600080fd5b505af115801561243a573d6000803e3d6000fd5b505050508590505b816001600160a01b0316816001600160a01b03160361246b579350600092508291506117549050565b604051634a9fefc760e01b81526001600160a01b0382811660048301526000917f000000000000000000000000000000000000000000000000000000000000000090911690634a9fefc790602401602060405180830381865afa1580156124d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124fa9190612e4b565b604051634a9fefc760e01b81526001600160a01b0380831660048301529192506000917f00000000000000000000000000000000000000000000000000000000000000001690634a9fefc790602401602060405180830381865afa158015612566573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258a9190612e4b565b92989197509195509350505050565b60006001600160a01b0383166125b157506000610a46565b6125c46001600160a01b03841683611965565b6040516365bc6a2d60e01b81526001600160a01b038481166004830152602482018490527f000000000000000000000000000000000000000000000000000000000000000016906365bc6a2d90604401600060405180830381600087803b15801561262e57600080fd5b505af1158015612642573d6000803e3d6000fd5b509395945050505050565b6060824710156126ae5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610ddf565b600080866001600160a01b031685876040516126ca9190612fbc565b60006040518083038185875af1925050503d8060008114612707576040519150601f19603f3d011682016040523d82523d6000602084013e61270c565b606091505b509150915061271d87838387612a94565b979650505050505050565b6000806000846001600160a01b0316846040516127459190612fbc565b6000604051808303816000865af19150503d8060008114612782576040519150601f19603f3d011682016040523d82523d6000602084013e612787565b606091505b50915091508180156127b15750805115806127b15750808060200190518101906127b19190612fd8565b80156127c657506001600160a01b0385163b15155b95945050505050565b6000612824826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612b0d9092919063ffffffff16565b90508051600014806128455750808060200190518101906128459190612fd8565b61096e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ddf565b600654610100900460ff16806128bd575060065460ff16155b156128c55750565b6006805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061290957612909612d38565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000008160018151811061295d5761295d612d38565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac947836000847f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a329190612e4b565b426040518663ffffffff1660e01b8152600401612a53959493929190612ffa565b600060405180830381600087803b158015612a6d57600080fd5b505af1158015612a81573d6000803e3d6000fd5b50506006805461ff001916905550505050565b60608315612b03578251600003612afc576001600160a01b0385163b612afc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ddf565b5081611e2b565b611e2b8383612b1c565b6060611e2b848460008561264d565b815115612b2c5781518083602001fd5b8060405162461bcd60e51b8152600401610ddf9190612bb4565b60405180604001604052806002906020820280368337509192915050565b60005b83811015612b7f578181015183820152602001612b67565b50506000910152565b60008151808452612ba0816020860160208601612b64565b601f01601f19169290920160200192915050565b602081526000612bc76020830184612b88565b9392505050565b60408101818360005b6002811015612bf6578151835260209283019290910190600101612bd7565b50505092915050565b6001600160a01b038116811461205957600080fd5b60008060408385031215612c2757600080fd5b8235612c3281612bff565b946020939093013593505050565b600080600060608486031215612c5557600080fd5b8335612c6081612bff565b92506020840135612c7081612bff565b929592945050506040919091013590565b60008060008060808587031215612c9757600080fd5b8435612ca281612bff565b9350602085013592506040850135612cb981612bff565b9396929550929360600135925050565b600060208284031215612cdb57600080fd5b8135612bc781612bff565b600060208284031215612cf857600080fd5b5035919050565b60008060408385031215612d1257600080fd5b8235612d1d81612bff565b91506020830135612d2d81612bff565b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115610a4657610a46612d4e565b81810381811115610a4657610a46612d4e565b6001600160a01b03988916815296881660208801529490961660408601526060850192909252608084015260a083015260c082019290925260e08101919091526101000190565b60ff83168152604060208201526000611e2b6040830184612b88565b600181811c90821680612e0157607f821691505b602082108103612e2157634e487b7160e01b600052602260045260246000fd5b50919050565b60008060408385031215612e3a57600080fd5b505080516020909101519092909150565b600060208284031215612e5d57600080fd5b8151612bc781612bff565b600060208284031215612e7a57600080fd5b5051919050565b600080600060608486031215612e9657600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610a4657610a46612d4e565b600082612ee357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215612f1157600080fd5b825167ffffffffffffffff80821115612f2957600080fd5b818501915085601f830112612f3d57600080fd5b815181811115612f4f57612f4f612ee8565b8060051b604051601f19603f83011681018181108582111715612f7457612f74612ee8565b604052918252848201925083810185019188831115612f9257600080fd5b938501935b82851015612fb057845184529385019392850192612f97565b98975050505050505050565b60008251612fce818460208701612b64565b9190910192915050565b600060208284031215612fea57600080fd5b81518015158114612bc757600080fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b8181101561304c5784516001600160a01b031683529383019391830191600101613027565b50506001600160a01b0396909616606085015250505060800152939250505056fe416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564a2646970667358221220233eafeff16c5498c8a227f11f2098683341af83e3c8ff843b17d855d39352b664736f6c63430008170033000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000054d17db76321263eca00000000000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000000000000000000000001429b38e58b97de646acd65fdb8a4502c213148400000000000000000000000000000000000000000000000000000000000000052443554c4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443554c4f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063826daeae11610123578063cca3fe64116100ab578063e77772fe1161006f578063e77772fe146106c8578063e8078d94146106fc578063ee09180d14610711578063f40bab5b14610726578063fbc6e9c11461073957600080fd5b8063cca3fe6414610653578063ce1cd31b14610673578063d0e30db01461023a578063d841617f14610693578063dd62ed3e146106a857600080fd5b8063a8aa1b31116100f2578063a8aa1b31146105aa578063a9059cbb146105de578063aaf5eb68146105fe578063b886311514610614578063c831a6d81461063357600080fd5b8063826daeae146105205780638a56b3731461054057806395d89b4114610575578063a457c2d71461058a57600080fd5b8063313ce567116101b1578063526554e811610175578063526554e81461046c578063627eb0d41461048157806370a08231146104a15780637165485d146104d75780637f8f61841461050b57600080fd5b8063313ce567146103b7578063355274ea146103cb57806338bae4cc146103fe5780633950935114610432578063396d0cd01461045257600080fd5b8063153e66e6116101f8578063153e66e61461030a57806318160ddd1461031d57806319eff2b91461033c57806323b872dd146103705780632bd7315e1461039057600080fd5b806306fdde03146102415780630902f1ac1461026c578063095ea7b31461028e578063126846ec146102be57600080fd5b3661023c5761023a33600080610774565b005b600080fd5b34801561024d57600080fd5b50610256610973565b6040516102639190612bb4565b60405180910390f35b34801561027857600080fd5b50610281610a05565b6040516102639190612bce565b34801561029a57600080fd5b506102ae6102a9366004612c14565b610a32565b6040519015158152602001610263565b3480156102ca57600080fd5b506102f27f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6040516001600160a01b039091168152602001610263565b61023a610318366004612c40565b610774565b34801561032957600080fd5b506002545b604051908152602001610263565b34801561034857600080fd5b506102f27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561037c57600080fd5b506102ae61038b366004612c40565b610a4c565b34801561039c57600080fd5b506103a5600281565b60405160ff9091168152602001610263565b3480156103c357600080fd5b5060126103a5565b3480156103d757600080fd5b507f00000000000000000000000000000000000000054d17db76321263eca000000061032e565b34801561040a57600080fd5b5061032e7f000000000000000000000000000000000000000000115eec47f6cf7e3500000081565b34801561043e57600080fd5b506102ae61044d366004612c14565b610a70565b34801561045e57600080fd5b506006546102ae9060ff1681565b34801561047857600080fd5b5061032e601981565b34801561048d57600080fd5b5061023a61049c366004612c81565b610a92565b3480156104ad57600080fd5b5061032e6104bc366004612cc9565b6001600160a01b031660009081526020819052604090205490565b3480156104e357600080fd5b506102f27f0000000000000000000000001429b38e58b97de646acd65fdb8a4502c213148481565b34801561051757600080fd5b50610281610c78565b34801561052c57600080fd5b5061032e61053b366004612ce6565b610cb2565b34801561054c57600080fd5b5061056061055b366004612ce6565b610cc9565b60408051928352602083019190915201610263565b34801561058157600080fd5b50610256610d66565b34801561059657600080fd5b506102ae6105a5366004612c14565b610d75565b3480156105b657600080fd5b506102f27f0000000000000000000000007cdf51a6c2726c7ce0f0f5d3d568db797906cc4381565b3480156105ea57600080fd5b506102ae6105f9366004612c14565b610df5565b34801561060a57600080fd5b5061032e61271081565b34801561062057600080fd5b506006546102ae90610100900460ff1681565b34801561063f57600080fd5b5061056061064e366004612ce6565b610e03565b34801561065f57600080fd5b5061056061066e366004612ce6565b610e5b565b34801561067f57600080fd5b5061023a61068e366004612c81565b610eb3565b34801561069f57600080fd5b506103a5600181565b3480156106b457600080fd5b5061032e6106c3366004612cff565b61100b565b3480156106d457600080fd5b506102f27f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc81565b34801561070857600080fd5b5061023a611036565b34801561071d57600080fd5b506103a5600081565b61023a610734366004612c40565b6114e9565b34801561074557600080fd5b50610759610754366004612ce6565b6116b7565b60408051938452602084019290925290820152606001610263565b60065460ff16156107985760405163eeb1f91960e01b815260040160405180910390fd5b6107a061175b565b6001600160a01b0383166107b2573392505b336001600160a01b038316036107db57604051637f57c19160e01b815260040160405180910390fd5b346000036107fc57604051630525e5dd60e11b815260040160405180910390fd5b600080600061080a346116b7565b92509250925083831015610831576040516327b2bf7b60e21b815260040160405180910390fd5b61083c3087856117b4565b801561084c5761084c3382611965565b6108568583611a7e565b61089381833460076000015461086c9190612d64565b6108769190612d77565b6108809190612d77565b60085461088e908690612d77565b611c0a565b6001600160a01b037f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc1663121c2dec600030338a34876108d38a83612d77565b6108dd9190612d77565b6007546008546040516108fb9796959493928e929091602001612d8a565b6040516020818303038152906040526040518363ffffffff1660e01b8152600401610927929190612dd1565b600060405180830381600087803b15801561094157600080fd5b505af1158015610955573d6000803e3d6000fd5b50505050610961611c4e565b50505061096e6001600555565b505050565b60606003805461098290612ded565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae90612ded565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b610a0d612b46565b610a15612b46565b306000908152602081905260409020546020820152478152919050565b600033610a40818585611c6d565b60019150505b92915050565b600033610a5a858285611d91565b610a658585856117b4565b506001949350505050565b600033610a40818585610a83838361100b565b610a8d9190612d64565b611c6d565b60065460ff1615610ab65760405163eeb1f91960e01b815260040160405180910390fd5b610abe61175b565b6001600160a01b038416610ad0573393505b336001600160a01b03831603610af957604051637f57c19160e01b815260040160405180910390fd5b82600003610b1a57604051630525e5dd60e11b815260040160405180910390fd5b600080610b2685610e5b565b91509150610b353330876117b4565b82821015610b56576040516327b2bf7b60e21b815260040160405180910390fd5b610b696001600160a01b03871683611965565b610b738482611a7e565b610b9f610b808284612d64565b600754610b8d9190612d77565b86600760015b015461088e9190612d64565b6001600160a01b037f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc1663121c2dec600130338a8a610bde888a612d64565b89600760005b0154600854604051610c00989796959493929190602001612d8a565b6040516020818303038152906040526040518363ffffffff1660e01b8152600401610c2c929190612dd1565b600060405180830381600087803b158015610c4657600080fd5b505af1158015610c5a573d6000803e3d6000fd5b50505050610c66611c4e565b5050610c726001600555565b50505050565b610c80612b46565b60408051808201918290529060079060029082845b815481526020019060010190808311610c95575050505050905090565b60078160028110610cc257600080fd5b0154905081565b6040516323913b9d60e11b81526004810182905230602482015260009081906001600160a01b037f0000000000000000000000001429b38e58b97de646acd65fdb8a4502c21314841690634722773a906044015b6040805180830381865afa158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d9190612e27565b91509150915091565b60606004805461098290612ded565b60003381610d83828661100b565b905083811015610de85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610a658286868403611c6d565b600033610a408185856117b4565b604051631204329d60e21b81526004810182905230602482015260009081906001600160a01b037f0000000000000000000000001429b38e58b97de646acd65fdb8a4502c21314841690634810ca7490604401610d1d565b604051631c1c5c8560e11b81526004810182905230602482015260009081906001600160a01b037f0000000000000000000000001429b38e58b97de646acd65fdb8a4502c21314841690633838b90a90604401610d1d565b60065460ff1615610ed75760405163eeb1f91960e01b815260040160405180910390fd5b610edf61175b565b6001600160a01b038416610ef1573393505b336001600160a01b03831603610f1a57604051637f57c19160e01b815260040160405180910390fd5b801580610f25575082155b15610f4357604051630525e5dd60e11b815260040160405180910390fd5b600080610f4f85610cc9565b9150915082821115610f74576040516327b2bf7b60e21b815260040160405180910390fd5b610f7f3330846117b4565b610f926001600160a01b03871686611965565b610f9c8482611a7e565b610fc0610fa98287612d64565b600754610fb69190612d77565b8360076001610b93565b6001600160a01b037f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc1663121c2dec600130338a87610fff888d612d64565b8c60076000610be4565b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065460ff161561105a5760405163eeb1f91960e01b815260040160405180910390fd5b6008546c017bd314bcc896e25dee0000001461108957604051631d84b01760e11b815260040160405180910390fd5b60006110af6c017bd314bcc896e25dee0000006c05b02937009da9bfb2e4000000612d77565b6002546110bc9190612d77565b306000908152602081905260409020549091508111156110e85750306000908152602081905260409020545b61118466b1a2bc2ec500007f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc6001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111759190612e4b565b6001600160a01b031690611965565b6040805160048152602481019091526020810180516001600160e01b0316630d0e30db60e41b1790526111e2906001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2169047611e05565b506040516370a0823160e01b815230600482015281906000907f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316906370a0823190602401602060405180830381865afa15801561124c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112709190612e68565b90506000821180156112825750600081115b61129f5760405163160b000b60e31b815260040160405180910390fd5b6112f36001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2167f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d83611e33565b60405162e8e33760e81b81523060048201526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116602483015260448201849052606482018390526084820184905260a48201839052600060c483018190524260e4840152917f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063e8e3370090610104016060604051808303816000875af11580156113af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d39190612e81565b6006805460ff191660011790559194509250905061140f3061140a816001600160a01b031660009081526020819052604090205490565b611ee7565b60408051306020820152908101849052606081018390526001600160a01b037f0000000000000000000000007cdf51a6c2726c7ce0f0f5d3d568db797906cc43811660808301527f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc169063121c2dec9060029060a0016040516020818303038152906040526040518363ffffffff1660e01b81526004016114b1929190612dd1565b600060405180830381600087803b1580156114cb57600080fd5b505af11580156114df573d6000803e3d6000fd5b5050505050505050565b60065460ff161561150d5760405163eeb1f91960e01b815260040160405180910390fd5b61151561175b565b6001600160a01b038316611527573392505b336001600160a01b0383160361155057604051637f57c19160e01b815260040160405180910390fd5b3460000361157157604051630525e5dd60e11b815260040160405180910390fd5b60008061157d83610e03565b91509150348211156115a2576040516327b2bf7b60e21b815260040160405180910390fd5b6115ad3086856117b4565b6115b78482611a7e565b813411156115d3576115d36115cc8334612d77565b3390611965565b6115e881836007600001546108769190612d64565b6001600160a01b037f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc1663121c2dec6000303389876116278882612d77565b6007546008546040516116459796959493928e929091602001612d8a565b6040516020818303038152906040526040518363ffffffff1660e01b8152600401611671929190612dd1565b600060405180830381600087803b15801561168b57600080fd5b505af115801561169f573d6000803e3d6000fd5b505050506116ab611c4e565b505061096e6001600555565b604051638bbe040760e01b815260048101829052306024820152600090819081906001600160a01b037f0000000000000000000000001429b38e58b97de646acd65fdb8a4502c21314841690638bbe040790604401606060405180830381865afa158015611729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174d9190612e81565b9250925092505b9193909250565b6002600554036117ad5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ddf565b6002600555565b60065460009060ff166117fd576001600160a01b0383163014806117e057506001600160a01b03841630145b6117fd5760405163a3f4791160e01b815260040160405180910390fd5b7f0000000000000000000000007cdf51a6c2726c7ce0f0f5d3d568db797906cc436001600160a01b0316836001600160a01b0316148061186e57507f0000000000000000000000007cdf51a6c2726c7ce0f0f5d3d568db797906cc436001600160a01b0316846001600160a01b0316145b156118f6576001600160a01b03831630148061189257506001600160a01b03841630145b6118f1576127106118a4601984612eaf565b6118ae9190612ec6565b90507f0000000000000000000000007cdf51a6c2726c7ce0f0f5d3d568db797906cc436001600160a01b0316846001600160a01b0316146118f1576118f1612019565b611940565b6001600160a01b038316301480159061191857506001600160a01b0384163014155b156119405760065460ff166119405760405163a3f4791160e01b815260040160405180910390fd5b611954848461194f8486612d77565b61205c565b8015610c7257610c7284308361205c565b804710156119b55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ddf565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a02576040519150601f19603f3d011682016040523d82523d6000602084013e611a07565b606091505b505090508061096e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ddf565b604051630a84345960e21b8152600481018290526000907f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc6001600160a01b031690632a10d16490602401600060405180830381865afa158015611ae6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b0e9190810190612efe565b90506000806000611b1e86612200565b9250925092506000859050611b4d8486600081518110611b4057611b40612d38565b6020026020010151612599565b611b579082612d77565b9050611b708386600181518110611b4057611b40612d38565b611b7a9082612d77565b9050611b938286600281518110611b4057611b40612d38565b611b9d9082612d77565b9050611c01817f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc6001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611151573d6000803e3d6000fd5b50505050505050565b600854600754611c1a9190612eaf565b611c248284612eaf565b1015611c4357604051632dbf3a4960e01b815260040160405180910390fd5b600791909155600855565b6008546c017bd314bcc896e25dedffffff190161100957611009611036565b6001600160a01b038316611ccf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ddf565b6001600160a01b038216611d305760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ddf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611d9d848461100b565b90506000198114610c725781811015611df85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ddf565b610c728484848403611c6d565b6060611e2b84848460405180606001604052806029815260200161306e6029913961264d565b949350505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611e848482612728565b610c7257604080516001600160a01b038516602482015260006044808301919091528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611edd9085906127cf565b610c7284826127cf565b6001600160a01b038216611f475760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ddf565b6001600160a01b03821660009081526020819052604090205481811015611fbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ddf565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b306000908152602081905260409020547f000000000000000000000000000000000000000000115eec47f6cf7e35000000811061205957612059816128a4565b50565b6001600160a01b0383166120c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ddf565b6001600160a01b0382166121225760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ddf565b6001600160a01b0383166000908152602081905260409020548181101561219a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ddf565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c72565b6000806000807f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc6001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612264573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122889190612e4b565b604051634a9fefc760e01b81523360048201529091506000906001600160a01b037f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc1690634a9fefc790602401602060405180830381865afa1580156122f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123169190612e4b565b90506001600160a01b038116612442576001600160a01b0386166123bd57604051632701cc5160e01b81526001600160a01b0383811660048301523360248301527f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc1690632701cc5190604401600060405180830381600087803b15801561239d57600080fd5b505af11580156123b1573d6000803e3d6000fd5b50505050819050612442565b604051632701cc5160e01b81526001600160a01b0387811660048301523360248301527f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc1690632701cc5190604401600060405180830381600087803b15801561242657600080fd5b505af115801561243a573d6000803e3d6000fd5b505050508590505b816001600160a01b0316816001600160a01b03160361246b579350600092508291506117549050565b604051634a9fefc760e01b81526001600160a01b0382811660048301526000917f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc90911690634a9fefc790602401602060405180830381865afa1580156124d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124fa9190612e4b565b604051634a9fefc760e01b81526001600160a01b0380831660048301529192506000917f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc1690634a9fefc790602401602060405180830381865afa158015612566573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258a9190612e4b565b92989197509195509350505050565b60006001600160a01b0383166125b157506000610a46565b6125c46001600160a01b03841683611965565b6040516365bc6a2d60e01b81526001600160a01b038481166004830152602482018490527f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc16906365bc6a2d90604401600060405180830381600087803b15801561262e57600080fd5b505af1158015612642573d6000803e3d6000fd5b509395945050505050565b6060824710156126ae5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610ddf565b600080866001600160a01b031685876040516126ca9190612fbc565b60006040518083038185875af1925050503d8060008114612707576040519150601f19603f3d011682016040523d82523d6000602084013e61270c565b606091505b509150915061271d87838387612a94565b979650505050505050565b6000806000846001600160a01b0316846040516127459190612fbc565b6000604051808303816000865af19150503d8060008114612782576040519150601f19603f3d011682016040523d82523d6000602084013e612787565b606091505b50915091508180156127b15750805115806127b15750808060200190518101906127b19190612fd8565b80156127c657506001600160a01b0385163b15155b95945050505050565b6000612824826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612b0d9092919063ffffffff16565b90508051600014806128455750808060200190518101906128459190612fd8565b61096e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ddf565b600654610100900460ff16806128bd575060065460ff16155b156128c55750565b6006805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061290957612909612d38565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061295d5761295d612d38565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac947836000847f000000000000000000000000760a48afb8a0439834567f00e30e8305154409cc6001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a329190612e4b565b426040518663ffffffff1660e01b8152600401612a53959493929190612ffa565b600060405180830381600087803b158015612a6d57600080fd5b505af1158015612a81573d6000803e3d6000fd5b50506006805461ff001916905550505050565b60608315612b03578251600003612afc576001600160a01b0385163b612afc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ddf565b5081611e2b565b611e2b8383612b1c565b6060611e2b848460008561264d565b815115612b2c5781518083602001fd5b8060405162461bcd60e51b8152600401610ddf9190612bb4565b60405180604001604052806002906020820280368337509192915050565b60005b83811015612b7f578181015183820152602001612b67565b50506000910152565b60008151808452612ba0816020860160208601612b64565b601f01601f19169290920160200192915050565b602081526000612bc76020830184612b88565b9392505050565b60408101818360005b6002811015612bf6578151835260209283019290910190600101612bd7565b50505092915050565b6001600160a01b038116811461205957600080fd5b60008060408385031215612c2757600080fd5b8235612c3281612bff565b946020939093013593505050565b600080600060608486031215612c5557600080fd5b8335612c6081612bff565b92506020840135612c7081612bff565b929592945050506040919091013590565b60008060008060808587031215612c9757600080fd5b8435612ca281612bff565b9350602085013592506040850135612cb981612bff565b9396929550929360600135925050565b600060208284031215612cdb57600080fd5b8135612bc781612bff565b600060208284031215612cf857600080fd5b5035919050565b60008060408385031215612d1257600080fd5b8235612d1d81612bff565b91506020830135612d2d81612bff565b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115610a4657610a46612d4e565b81810381811115610a4657610a46612d4e565b6001600160a01b03988916815296881660208801529490961660408601526060850192909252608084015260a083015260c082019290925260e08101919091526101000190565b60ff83168152604060208201526000611e2b6040830184612b88565b600181811c90821680612e0157607f821691505b602082108103612e2157634e487b7160e01b600052602260045260246000fd5b50919050565b60008060408385031215612e3a57600080fd5b505080516020909101519092909150565b600060208284031215612e5d57600080fd5b8151612bc781612bff565b600060208284031215612e7a57600080fd5b5051919050565b600080600060608486031215612e9657600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610a4657610a46612d4e565b600082612ee357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215612f1157600080fd5b825167ffffffffffffffff80821115612f2957600080fd5b818501915085601f830112612f3d57600080fd5b815181811115612f4f57612f4f612ee8565b8060051b604051601f19603f83011681018181108582111715612f7457612f74612ee8565b604052918252848201925083810185019188831115612f9257600080fd5b938501935b82851015612fb057845184529385019392850192612f97565b98975050505050505050565b60008251612fce818460208701612b64565b9190910192915050565b600060208284031215612fea57600080fd5b81518015158114612bc757600080fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b8181101561304c5784516001600160a01b031683529383019391830191600101613027565b50506001600160a01b0396909616606085015250505060800152939250505056fe416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564a2646970667358221220233eafeff16c5498c8a227f11f2098683341af83e3c8ff843b17d855d39352b664736f6c63430008170033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000054d17db76321263eca00000000000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000000000000000000000001429b38e58b97de646acd65fdb8a4502c213148400000000000000000000000000000000000000000000000000000000000000052443554c4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443554c4f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _wnt (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : _univ2router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : name_ (string): $CULO
Arg [3] : symbol_ (string): CULO
Arg [4] : _totalSupply (uint256): 420000000000000000000000000000
Arg [5] : univ2factory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
Arg [6] : _curve (address): 0x1429B38e58b97de646ACd65fdb8a4502c2131484

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 00000000000000000000000000000000000000054d17db76321263eca0000000
Arg [5] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Arg [6] : 0000000000000000000000001429b38e58b97de646acd65fdb8a4502c2131484
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 2443554c4f000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 43554c4f00000000000000000000000000000000000000000000000000000000


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.