Contract

0x17ccEf8785cC6D95B3Afa5Bc1b8D85A4Af6c7f9F

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

-

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...5470022024-12-18 9:36:4225 hrs ago1734514602IN
0x17ccEf87...4Af6c7f9F
0 S0.000031441.1

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WooRouterV2

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion
File 1 of 12 : WooRouterV2.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.14;

/*

░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗
░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║
░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║
░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║
░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║
░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝

*
* MIT License
* ===========
*
* Copyright (c) 2020 WooTrade
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

import "./interfaces/IWooPPV2.sol";
import "./interfaces/IWETH.sol";
import "./interfaces/IWooRouterV2.sol";

import {TransferHelper} from "@uniswap/v3-periphery/contracts/libraries/TransferHelper.sol";

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {IERC20, SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

/// @title Woo Router V2 implementation.
/// @notice Router for stateless execution of swaps against Woo private pool.
contract WooRouterV2 is IWooRouterV2, Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;

    /* ----- Constant variables ----- */

    // Erc20 placeholder address for native tokens (e.g. eth, bnb, matic, etc)
    address constant ETH_PLACEHOLDER_ADDR = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;

    /* ----- State variables ----- */

    // Wrapper for native tokens (e.g. eth, bnb, matic, etc)
    // BSC WBNB: 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c
    address public immutable override WETH;

    IWooPPV2 public override wooPool;

    mapping(address => bool) public isWhitelisted;

    address public quoteToken;

    /* ----- Callback Function ----- */

    receive() external payable {
        // only accept ETH from WETH or whitelisted external swaps.
        require(msg.sender == WETH || isWhitelisted[msg.sender], "!sender");
    }

    /* ----- Query & swap APIs ----- */

    constructor(address _weth, address _pool) {
        require(_weth != address(0), "WooRouter: weth_ZERO_ADDR");
        WETH = _weth;
        if (_pool != address(0)) {
            setPool(_pool);
        }
    }

    /// @inheritdoc IWooRouterV2
    function querySwap(
        address fromToken,
        address toToken,
        uint256 fromAmount
    ) external view override returns (uint256 toAmount) {
        require(fromToken != address(0), "WooRouter: !fromToken");
        require(toToken != address(0), "WooRouter: !toToken");
        fromToken = (fromToken == ETH_PLACEHOLDER_ADDR) ? WETH : fromToken;
        toToken = (toToken == ETH_PLACEHOLDER_ADDR) ? WETH : toToken;
        toAmount = wooPool.query(fromToken, toToken, fromAmount);
    }

    function tryQuerySwap(
        address fromToken,
        address toToken,
        uint256 fromAmount
    ) external view override returns (uint256 toAmount) {
        if (fromToken == address(0) || toToken == address(0)) {
            return 0;
        }
        fromToken = (fromToken == ETH_PLACEHOLDER_ADDR) ? WETH : fromToken;
        toToken = (toToken == ETH_PLACEHOLDER_ADDR) ? WETH : toToken;
        toAmount = wooPool.tryQuery(fromToken, toToken, fromAmount);
    }

    /// @inheritdoc IWooRouterV2
    function swap(
        address fromToken,
        address toToken,
        uint256 fromAmount,
        uint256 minToAmount,
        address payable to,
        address rebateTo
    ) external payable override nonReentrant returns (uint256 realToAmount) {
        require(fromToken != address(0), "WooRouter: !fromToken");
        require(toToken != address(0), "WooRouter: !toToken");
        require(to != address(0), "WooRouter: !to");

        bool isFromETH = fromToken == ETH_PLACEHOLDER_ADDR;
        bool isToETH = toToken == ETH_PLACEHOLDER_ADDR;
        fromToken = isFromETH ? WETH : fromToken;
        toToken = isToETH ? WETH : toToken;

        // Step 1: transfer the source tokens to WooRouter
        if (isFromETH) {
            require(fromAmount == msg.value, "WooRouter: !msg.value");
            IWETH(WETH).deposit{value: msg.value}();
            TransferHelper.safeTransfer(WETH, address(wooPool), fromAmount);
        } else {
            require(0 == msg.value, "WooRouter: !msg.value");
            TransferHelper.safeTransferFrom(fromToken, msg.sender, address(wooPool), fromAmount);
        }

        // Step 2: swap and transfer
        if (isToETH) {
            realToAmount = wooPool.swap(fromToken, toToken, fromAmount, minToAmount, address(this), rebateTo);
            IWETH(WETH).withdraw(realToAmount);
            TransferHelper.safeTransferETH(to, realToAmount);
        } else {
            realToAmount = wooPool.swap(fromToken, toToken, fromAmount, minToAmount, to, rebateTo);
        }

        // Step 3: firing event
        emit WooRouterSwap(
            SwapType.WooSwap,
            isFromETH ? ETH_PLACEHOLDER_ADDR : fromToken,
            isToETH ? ETH_PLACEHOLDER_ADDR : toToken,
            fromAmount,
            realToAmount,
            msg.sender,
            to,
            rebateTo
        );
    }

    /// @inheritdoc IWooRouterV2
    function externalSwap(
        address approveTarget,
        address swapTarget,
        address fromToken,
        address toToken,
        uint256 fromAmount,
        uint256 minToAmount,
        address payable to,
        bytes calldata data
    ) external payable override nonReentrant returns (uint256 realToAmount) {
        require(approveTarget != address(0), "WooRouter: approveTarget_ADDR_ZERO");
        require(swapTarget != address(0), "WooRouter: swapTarget_ADDR_ZERO");
        require(fromToken != address(0), "WooRouter: fromToken_ADDR_ZERO");
        require(toToken != address(0), "WooRouter: toToken_ADDR_ZERO");
        require(to != address(0), "WooRouter: to_ADDR_ZERO");
        require(isWhitelisted[approveTarget], "WooRouter: APPROVE_TARGET_NOT_ALLOWED");
        require(isWhitelisted[swapTarget], "WooRouter: SWAP_TARGET_NOT_ALLOWED");

        uint256 preBalance = _generalBalanceOf(toToken, address(this));
        _internalFallbackSwap(approveTarget, swapTarget, fromToken, fromAmount, data);
        uint256 postBalance = _generalBalanceOf(toToken, address(this));

        require(preBalance <= postBalance, "WooRouter: balance_ERROR");
        realToAmount = postBalance - preBalance;
        require(realToAmount >= minToAmount && realToAmount > 0, "WooRouter: realToAmount_NOT_ENOUGH");
        _generalTransfer(toToken, to, realToAmount);

        emit WooRouterSwap(SwapType.DodoSwap, fromToken, toToken, fromAmount, realToAmount, msg.sender, to, address(0));
    }

    /* ----- Admin functions ----- */

    /// @dev Rescue the specified funds when stuck happen
    /// @param stuckToken the stuck token address
    function inCaseTokenGotStuck(address stuckToken) external onlyOwner {
        if (stuckToken == ETH_PLACEHOLDER_ADDR) {
            TransferHelper.safeTransferETH(msg.sender, address(this).balance);
        } else {
            uint256 amount = IERC20(stuckToken).balanceOf(address(this));
            TransferHelper.safeTransfer(stuckToken, msg.sender, amount);
        }
    }

    /// @dev Rescue the specified funds when stuck happen
    /// @param stuckTokens the stuck tokens address
    function inCaseTokensGotStuck(address[] calldata stuckTokens) external onlyOwner {
        for (uint256 i = 0; i < stuckTokens.length; ++i) {
            address stuckToken = stuckTokens[i];
            if (stuckToken == ETH_PLACEHOLDER_ADDR) {
                TransferHelper.safeTransferETH(msg.sender, address(this).balance);
            } else {
                uint256 amount = IERC20(stuckToken).balanceOf(address(this));
                TransferHelper.safeTransfer(stuckToken, msg.sender, amount);
            }
        }
    }

    /// @dev Set wooPool from newPool
    /// @param newPool Wooracle address
    function setPool(address newPool) public onlyOwner {
        wooPool = IWooPPV2(newPool);
        quoteToken = wooPool.quoteToken();
        require(quoteToken != address(0), "WooRouter: quoteToken_ADDR_ZERO");
        emit WooPoolChanged(newPool);
    }

    /// @dev Add target address into whitelist
    /// @param target address that approved by WooRouter
    /// @param whitelisted approve to using WooRouter or not
    function setWhitelisted(address target, bool whitelisted) external onlyOwner {
        require(target != address(0), "WooRouter: target_ADDR_ZERO");
        isWhitelisted[target] = whitelisted;
    }

    /* ----- Private Function ----- */

    function _internalFallbackSwap(
        address approveTarget,
        address swapTarget,
        address fromToken,
        uint256 fromAmount,
        bytes calldata data
    ) private {
        require(isWhitelisted[approveTarget], "WooRouter: APPROVE_TARGET_NOT_ALLOWED");
        require(isWhitelisted[swapTarget], "WooRouter: SWAP_TARGET_NOT_ALLOWED");

        if (fromToken != ETH_PLACEHOLDER_ADDR) {
            TransferHelper.safeTransferFrom(fromToken, msg.sender, address(this), fromAmount);
            TransferHelper.safeApprove(fromToken, approveTarget, fromAmount);
            (bool success, ) = swapTarget.call{value: 0}(data);
            TransferHelper.safeApprove(fromToken, approveTarget, 0);
            require(success, "WooRouter: FALLBACK_SWAP_FAILED");
        } else {
            require(fromAmount <= msg.value, "WooRouter: fromAmount_INVALID");
            (bool success, ) = swapTarget.call{value: fromAmount}(data);
            require(success, "WooRouter: FALLBACK_SWAP_FAILED");
        }
    }

    function _generalTransfer(
        address token,
        address payable to,
        uint256 amount
    ) private {
        if (amount > 0) {
            if (token == ETH_PLACEHOLDER_ADDR) {
                TransferHelper.safeTransferETH(to, amount);
            } else {
                TransferHelper.safeTransfer(token, to, amount);
            }
        }
    }

    function _generalBalanceOf(address token, address who) private view returns (uint256) {
        return token == ETH_PLACEHOLDER_ADDR ? who.balance : IERC20(token).balanceOf(who);
    }
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 3 of 12 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

File 4 of 12 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

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

File 5 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 12 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.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));
    }
}

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

File 8 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 12 : TransferHelper.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.6.0;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';

library TransferHelper {
    /// @notice Transfers tokens from the targeted address to the given destination
    /// @notice Errors with 'STF' if transfer fails
    /// @param token The contract address of the token to be transferred
    /// @param from The originating address from which the tokens will be transferred
    /// @param to The destination address of the transfer
    /// @param value The amount to be transferred
    function safeTransferFrom(
        address token,
        address from,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) =
            token.call(abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'STF');
    }

    /// @notice Transfers tokens from msg.sender to a recipient
    /// @dev Errors with ST if transfer fails
    /// @param token The contract address of the token which will be transferred
    /// @param to The recipient of the transfer
    /// @param value The value of the transfer
    function safeTransfer(
        address token,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transfer.selector, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'ST');
    }

    /// @notice Approves the stipulated contract to spend the given allowance in the given token
    /// @dev Errors with 'SA' if transfer fails
    /// @param token The contract address of the token to be approved
    /// @param to The target of the approval
    /// @param value The amount of the given token the target will be allowed to spend
    function safeApprove(
        address token,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.approve.selector, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'SA');
    }

    /// @notice Transfers ETH to the recipient address
    /// @dev Fails with `STE`
    /// @param to The destination of the transfer
    /// @param value The value to be transferred
    function safeTransferETH(address to, uint256 value) internal {
        (bool success, ) = to.call{value: value}(new bytes(0));
        require(success, 'STE');
    }
}

File 10 of 12 : IWETH.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/// @title Wrapped ETH.
interface IWETH {
    /// @dev Deposit ETH into WETH
    function deposit() external payable;

    /// @dev Transfer WETH to receiver
    /// @param to address of WETH receiver
    /// @param value amount of WETH to transfer
    /// @return get true when succeed, else false
    function transfer(address to, uint256 value) external returns (bool);

    /// @dev Withdraw WETH to ETH
    function withdraw(uint256) external;
}

File 11 of 12 : IWooPPV2.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.14;

/*

░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗
░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║
░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║
░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║
░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║
░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝

*
* MIT License
* ===========
*
* Copyright (c) 2020 WooTrade
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

/// @title Woo private pool for swap.
/// @notice Use this contract to directly interfact with woo's synthetic proactive
///         marketing making pool.
/// @author woo.network
interface IWooPPV2 {
    /* ----- Events ----- */

    event Deposit(address indexed token, address indexed sender, uint256 amount);
    event Withdraw(address indexed token, address indexed receiver, uint256 amount);
    event Migrate(address indexed token, address indexed receiver, uint256 amount);
    event AdminUpdated(address indexed addr, bool flag);
    event PauseRoleUpdated(address indexed addr, bool flag);
    event FeeAddrUpdated(address indexed newFeeAddr);
    event WooracleUpdated(address indexed newWooracle);
    event WooSwap(
        address indexed fromToken,
        address indexed toToken,
        uint256 fromAmount,
        uint256 toAmount,
        address from,
        address indexed to,
        address rebateTo,
        uint256 swapVol,
        uint256 swapFee
    );

    /* ----- External Functions ----- */

    /// @notice The quote token address (immutable).
    /// @return address of quote token
    function quoteToken() external view returns (address);

    /// @notice Gets the pool size of the specified token (swap liquidity).
    /// @param token the token address
    /// @return the pool size
    function poolSize(address token) external view returns (uint256);

    /// @notice Query the amount to swap `fromToken` to `toToken`, without checking the pool reserve balance.
    /// @param fromToken the from token
    /// @param toToken the to token
    /// @param fromAmount the amount of `fromToken` to swap
    /// @return toAmount the swapped amount of `toToken`
    function tryQuery(
        address fromToken,
        address toToken,
        uint256 fromAmount
    ) external view returns (uint256 toAmount);

    /// @notice Query the amount to swap `fromToken` to `toToken`, with checking the pool reserve balance.
    /// @dev tx reverts when 'toToken' balance is insufficient.
    /// @param fromToken the from token
    /// @param toToken the to token
    /// @param fromAmount the amount of `fromToken` to swap
    /// @return toAmount the swapped amount of `toToken`
    function query(
        address fromToken,
        address toToken,
        uint256 fromAmount
    ) external view returns (uint256 toAmount);

    /// @notice Swap `fromToken` to `toToken`.
    /// @param fromToken the from token
    /// @param toToken the to token
    /// @param fromAmount the amount of `fromToken` to swap
    /// @param minToAmount the minimum amount of `toToken` to receive
    /// @param to the destination address
    /// @param rebateTo the rebate address (optional, can be address ZERO)
    /// @return realToAmount the amount of toToken to receive
    function swap(
        address fromToken,
        address toToken,
        uint256 fromAmount,
        uint256 minToAmount,
        address to,
        address rebateTo
    ) external returns (uint256 realToAmount);

    /// @notice Deposit the specified token into the liquidity pool of WooPPV2.
    /// @param token the token to deposit
    /// @param amount the deposit amount
    function deposit(address token, uint256 amount) external;
}

File 12 of 12 : IWooRouterV2.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.14;

/*

░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗
░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║
░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║
░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║
░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║
░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝

*
* MIT License
* ===========
*
* Copyright (c) 2020 WooTrade
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

import "../interfaces/IWooPPV2.sol";

/// @title Woo router interface (version 2)
/// @notice functions to interface with WooFi swap
interface IWooRouterV2 {
    /* ----- Type declarations ----- */

    enum SwapType {
        WooSwap,
        DodoSwap
    }

    /* ----- Events ----- */

    event WooRouterSwap(
        SwapType swapType,
        address indexed fromToken,
        address indexed toToken,
        uint256 fromAmount,
        uint256 toAmount,
        address from,
        address indexed to,
        address rebateTo
    );

    event WooPoolChanged(address newPool);

    /* ----- Router properties ----- */

    function WETH() external view returns (address);

    function wooPool() external view returns (IWooPPV2);

    /* ----- Main query & swap APIs ----- */

    /// @notice query the amount to swap fromToken -> toToken
    /// @param fromToken the from token
    /// @param toToken the to token
    /// @param fromAmount the amount of fromToken to swap
    /// @return toAmount the predicted amount to receive
    function querySwap(
        address fromToken,
        address toToken,
        uint256 fromAmount
    ) external view returns (uint256 toAmount);

    /// @notice query the amount to swap fromToken -> toToken,
    ///     WITHOUT checking the reserve balance; so it
    ///     always returns the quoted amount (for reference).
    /// @param fromToken the from token
    /// @param toToken the to token
    /// @param fromAmount the amount of fromToken to swap
    /// @return toAmount the predicted amount to receive
    function tryQuerySwap(
        address fromToken,
        address toToken,
        uint256 fromAmount
    ) external view returns (uint256 toAmount);

    /// @notice Swap `fromToken` to `toToken`.
    /// @param fromToken the from token
    /// @param toToken the to token
    /// @param fromAmount the amount of `fromToken` to swap
    /// @param minToAmount the minimum amount of `toToken` to receive
    /// @param to the destination address
    /// @param rebateTo the rebate address (optional, can be 0)
    /// @return realToAmount the amount of toToken to receive
    function swap(
        address fromToken,
        address toToken,
        uint256 fromAmount,
        uint256 minToAmount,
        address payable to,
        address rebateTo
    ) external payable returns (uint256 realToAmount);

    /* ----- 3rd party DEX swap ----- */

    /// @notice swap fromToken -> toToken via an external 3rd swap
    /// @param approveTarget the contract address for token transfer approval
    /// @param swapTarget the contract address for swap
    /// @param fromToken the from token
    /// @param toToken the to token
    /// @param fromAmount the amount of fromToken to swap
    /// @param minToAmount the min amount of swapped toToken
    /// @param to the destination address
    /// @param data call data for external call
    function externalSwap(
        address approveTarget,
        address swapTarget,
        address fromToken,
        address toToken,
        uint256 fromAmount,
        uint256 minToAmount,
        address payable to,
        bytes calldata data
    ) external payable returns (uint256 realToAmount);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 20000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_weth","type":"address"},{"internalType":"address","name":"_pool","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newPool","type":"address"}],"name":"WooPoolChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum IWooRouterV2.SwapType","name":"swapType","type":"uint8"},{"indexed":true,"internalType":"address","name":"fromToken","type":"address"},{"indexed":true,"internalType":"address","name":"toToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"fromAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"rebateTo","type":"address"}],"name":"WooRouterSwap","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"approveTarget","type":"address"},{"internalType":"address","name":"swapTarget","type":"address"},{"internalType":"address","name":"fromToken","type":"address"},{"internalType":"address","name":"toToken","type":"address"},{"internalType":"uint256","name":"fromAmount","type":"uint256"},{"internalType":"uint256","name":"minToAmount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"externalSwap","outputs":[{"internalType":"uint256","name":"realToAmount","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"stuckToken","type":"address"}],"name":"inCaseTokenGotStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"stuckTokens","type":"address[]"}],"name":"inCaseTokensGotStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"fromToken","type":"address"},{"internalType":"address","name":"toToken","type":"address"},{"internalType":"uint256","name":"fromAmount","type":"uint256"}],"name":"querySwap","outputs":[{"internalType":"uint256","name":"toAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quoteToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPool","type":"address"}],"name":"setPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"setWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"fromToken","type":"address"},{"internalType":"address","name":"toToken","type":"address"},{"internalType":"uint256","name":"fromAmount","type":"uint256"},{"internalType":"uint256","name":"minToAmount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"},{"internalType":"address","name":"rebateTo","type":"address"}],"name":"swap","outputs":[{"internalType":"uint256","name":"realToAmount","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"fromToken","type":"address"},{"internalType":"address","name":"toToken","type":"address"},{"internalType":"uint256","name":"fromAmount","type":"uint256"}],"name":"tryQuerySwap","outputs":[{"internalType":"uint256","name":"toAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wooPool","outputs":[{"internalType":"contract IWooPPV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b5060405162002acf38038062002acf8339810160408190526200003491620002c9565b6200003f33620000c8565b600180556001600160a01b0382166200009f5760405162461bcd60e51b815260206004820152601960248201527f576f6f526f757465723a20776574685f5a45524f5f414444520000000000000060448201526064015b60405180910390fd5b6001600160a01b03808316608052811615620000c057620000c08162000118565b505062000326565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001226200024e565b600280546001600160a01b0319166001600160a01b03831690811790915560408051630217a4b760e41b8152905163217a4b70916004808201926020929091908290030181865afa1580156200017c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a2919062000301565b600480546001600160a01b0319166001600160a01b039290921691821790556200020f5760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a2071756f7465546f6b656e5f414444525f5a45524f00604482015260640162000096565b6040516001600160a01b03821681527f4577a21bd8e55848c574b7582f8e6cc6a7cf1c1958f36a9751eab6329d656b1e9060200160405180910390a150565b6000546001600160a01b03163314620002aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000096565b565b80516001600160a01b0381168114620002c457600080fd5b919050565b60008060408385031215620002dd57600080fd5b620002e883620002ac565b9150620002f860208401620002ac565b90509250929050565b6000602082840312156200031457600080fd5b6200031f82620002ac565b9392505050565b60805161274762000388600039600081816101090152818161036601528181610c1501528181610c4401528181610cbd01528181610d4301528181610eee01528181611387015281816113e2015281816116a7015261170201526127476000f3fe6080604052600436106100ec5760003560e01c80638da5cb5b1161008a578063ad5c464811610059578063ad5c464814610354578063e1a4e72a14610388578063e94803f4146103a8578063f2fde38b146103c857600080fd5b80638da5cb5b146102bc5780639281aa0b146102e75780639d82e12314610307578063a73946031461032757600080fd5b80634437152a116100c65780634437152a14610254578063715018a6146102745780637dc2038214610289578063819580151461029c57600080fd5b8063199b83fa1461019c578063217a4b70146101c25780633af32abf1461021457600080fd5b36610197573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016148061014457503360009081526003602052604090205460ff165b6101955760405162461bcd60e51b815260206004820152600760248201527f2173656e6465720000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b005b600080fd5b6101af6101aa3660046122e4565b6103e8565b6040519081526020015b60405180910390f35b3480156101ce57600080fd5b506004546101ef9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b9565b34801561022057600080fd5b5061024461022f3660046123c7565b60036020526000908152604090205460ff1681565b60405190151581526020016101b9565b34801561026057600080fd5b5061019561026f3660046123c7565b6108ee565b34801561028057600080fd5b50610195610a8d565b6101af6102973660046123e4565b610aa1565b3480156102a857600080fd5b506101956102b7366004612454565b611107565b3480156102c857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166101ef565b3480156102f357600080fd5b506101956103023660046124d7565b611247565b34801561031357600080fd5b506101af610322366004612510565b611308565b34801561033357600080fd5b506002546101ef9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561036057600080fd5b506101ef7f000000000000000000000000000000000000000000000000000000000000000081565b34801561039457600080fd5b506101956103a33660046123c7565b6114b2565b3480156103b457600080fd5b506101af6103c3366004612510565b6115a6565b3480156103d457600080fd5b506101956103e33660046123c7565b61178b565b60006103f2611825565b73ffffffffffffffffffffffffffffffffffffffff8a1661047b5760405162461bcd60e51b815260206004820152602260248201527f576f6f526f757465723a20617070726f76655461726765745f414444525f5a4560448201527f524f000000000000000000000000000000000000000000000000000000000000606482015260840161018c565b73ffffffffffffffffffffffffffffffffffffffff89166104de5760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a20737761705461726765745f414444525f5a45524f00604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff88166105415760405162461bcd60e51b815260206004820152601e60248201527f576f6f526f757465723a2066726f6d546f6b656e5f414444525f5a45524f0000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff87166105a45760405162461bcd60e51b815260206004820152601c60248201527f576f6f526f757465723a20746f546f6b656e5f414444525f5a45524f00000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff84166106075760405162461bcd60e51b815260206004820152601760248201527f576f6f526f757465723a20746f5f414444525f5a45524f000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526003602052604090205460ff166106a25760405162461bcd60e51b815260206004820152602560248201527f576f6f526f757465723a20415050524f56455f5441524745545f4e4f545f414c60448201527f4c4f574544000000000000000000000000000000000000000000000000000000606482015260840161018c565b73ffffffffffffffffffffffffffffffffffffffff891660009081526003602052604090205460ff1661073d5760405162461bcd60e51b815260206004820152602260248201527f576f6f526f757465723a20535741505f5441524745545f4e4f545f414c4c4f5760448201527f4544000000000000000000000000000000000000000000000000000000000000606482015260840161018c565b6000610749883061187e565b90506107598b8b8b8a8888611963565b6000610765893061187e565b9050808211156107b75760405162461bcd60e51b815260206004820152601860248201527f576f6f526f757465723a2062616c616e63655f4552524f520000000000000000604482015260640161018c565b6107c18282612580565b92508683101580156107d35750600083115b6108455760405162461bcd60e51b815260206004820152602260248201527f576f6f526f757465723a207265616c546f416d6f756e745f4e4f545f454e4f5560448201527f4748000000000000000000000000000000000000000000000000000000000000606482015260840161018c565b610850898785611cc8565b8573ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167f27c98e911efdd224f4002f6cd831c3ad0d2759ee176f9ee8466d95826af22a1c60018c883360006040516108ce959493929190612597565b60405180910390a450506108e160018055565b9998505050505050505050565b6108f6611d20565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517f217a4b70000000000000000000000000000000000000000000000000000000008152905163217a4b70916004808201926020929091908290030181865afa15801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b1919061260c565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169182179055610a415760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a2071756f7465546f6b656e5f414444525f5a45524f00604482015260640161018c565b60405173ffffffffffffffffffffffffffffffffffffffff821681527f4577a21bd8e55848c574b7582f8e6cc6a7cf1c1958f36a9751eab6329d656b1e9060200160405180910390a150565b610a95611d20565b610a9f6000611d87565b565b6000610aab611825565b73ffffffffffffffffffffffffffffffffffffffff8716610b0e5760405162461bcd60e51b815260206004820152601560248201527f576f6f526f757465723a202166726f6d546f6b656e0000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff8616610b715760405162461bcd60e51b815260206004820152601360248201527f576f6f526f757465723a2021746f546f6b656e00000000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff8316610bd45760405162461bcd60e51b815260206004820152600e60248201527f576f6f526f757465723a2021746f000000000000000000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff87811673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee9081149188161481610c135788610c35565b7f00000000000000000000000000000000000000000000000000000000000000005b985080610c425787610c64565b7f00000000000000000000000000000000000000000000000000000000000000005b97508115610d8757348714610cbb5760405162461bcd60e51b815260206004820152601560248201527f576f6f526f757465723a20216d73672e76616c75650000000000000000000000604482015260640161018c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610d2357600080fd5b505af1158015610d37573d6000803e3d6000fd5b5050600254610d8293507f0000000000000000000000000000000000000000000000000000000000000000925073ffffffffffffffffffffffffffffffffffffffff16905089611dfc565b610dfc565b3415610dd55760405162461bcd60e51b815260206004820152601560248201527f576f6f526f757465723a20216d73672e76616c75650000000000000000000000604482015260640161018c565b600254610dfc908a90339073ffffffffffffffffffffffffffffffffffffffff168a611f52565b8015610f6e576002546040517f7dc2038200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b811660048301528a81166024830152604482018a90526064820189905230608483015286811660a483015290911690637dc203829060c4016020604051808303816000875af1158015610e98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebc9190612629565b6040517f2e1a7d4d000000000000000000000000000000000000000000000000000000008152600481018290529093507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690632e1a7d4d90602401600060405180830381600087803b158015610f4757600080fd5b505af1158015610f5b573d6000803e3d6000fd5b50505050610f6985846120a9565b61102d565b6002546040517f7dc2038200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b811660048301528a81166024830152604482018a905260648201899052878116608483015286811660a483015290911690637dc203829060c4016020604051808303816000875af1158015611006573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102a9190612629565b92505b8473ffffffffffffffffffffffffffffffffffffffff168161104f5788611065565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee5b73ffffffffffffffffffffffffffffffffffffffff1683611086578a61109c565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee5b73ffffffffffffffffffffffffffffffffffffffff167f27c98e911efdd224f4002f6cd831c3ad0d2759ee176f9ee8466d95826af22a1c60008b88338b6040516110ea959493929190612597565b60405180910390a450506110fd60018055565b9695505050505050565b61110f611d20565b60005b8181101561124257600083838381811061112e5761112e612642565b905060200201602081019061114391906123c7565b90507fffffffffffffffffffffffff111111111111111111111111111111111111111273ffffffffffffffffffffffffffffffffffffffff8216016111915761118c33476120a9565b611231565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190612629565b905061122f823383611dfc565b505b5061123b81612671565b9050611112565b505050565b61124f611d20565b73ffffffffffffffffffffffffffffffffffffffff82166112b25760405162461bcd60e51b815260206004820152601b60248201527f576f6f526f757465723a207461726765745f414444525f5a45524f0000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600073ffffffffffffffffffffffffffffffffffffffff84161580611341575073ffffffffffffffffffffffffffffffffffffffff8316155b1561134e575060006114ab565b73ffffffffffffffffffffffffffffffffffffffff841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1461138557836113a7565b7f00000000000000000000000000000000000000000000000000000000000000005b935073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146113e05782611402565b7f00000000000000000000000000000000000000000000000000000000000000005b6002546040517fce824f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015280841660248301526044820186905292955091169063ce824f19906064015b602060405180830381865afa158015611484573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a89190612629565b90505b9392505050565b6114ba611d20565b7fffffffffffffffffffffffff111111111111111111111111111111111111111273ffffffffffffffffffffffffffffffffffffffff8216016115045761150133476120a9565b50565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015611571573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115959190612629565b90506115a2823383611dfc565b5050565b600073ffffffffffffffffffffffffffffffffffffffff841661160b5760405162461bcd60e51b815260206004820152601560248201527f576f6f526f757465723a202166726f6d546f6b656e0000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff831661166e5760405162461bcd60e51b815260206004820152601360248201527f576f6f526f757465723a2021746f546f6b656e00000000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146116a557836116c7565b7f00000000000000000000000000000000000000000000000000000000000000005b935073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146117005782611722565b7f00000000000000000000000000000000000000000000000000000000000000005b6002546040517ff58a435f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015280841660248301526044820186905292955091169063f58a435f90606401611467565b611793611d20565b73ffffffffffffffffffffffffffffffffffffffff811661181c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161018c565b61150181611d87565b6002600154036118775760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161018c565b6002600155565b600073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14611946576040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528416906370a0823190602401602060405180830381865afa15801561191d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119419190612629565b6114ab565b5073ffffffffffffffffffffffffffffffffffffffff1631919050565b73ffffffffffffffffffffffffffffffffffffffff861660009081526003602052604090205460ff166119fe5760405162461bcd60e51b815260206004820152602560248201527f576f6f526f757465723a20415050524f56455f5441524745545f4e4f545f414c60448201527f4c4f574544000000000000000000000000000000000000000000000000000000606482015260840161018c565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604090205460ff16611a995760405162461bcd60e51b815260206004820152602260248201527f576f6f526f757465723a20535741505f5441524745545f4e4f545f414c4c4f5760448201527f4544000000000000000000000000000000000000000000000000000000000000606482015260840161018c565b73ffffffffffffffffffffffffffffffffffffffff841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14611bb157611ad684333086611f52565b611ae1848785612173565b60008573ffffffffffffffffffffffffffffffffffffffff1660008484604051611b0c9291906126a9565b60006040518083038185875af1925050503d8060008114611b49576040519150601f19603f3d011682016040523d82523d6000602084013e611b4e565b606091505b50509050611b5e85886000612173565b80611bab5760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a2046414c4c4241434b5f535741505f4641494c454400604482015260640161018c565b50611cc0565b34831115611c015760405162461bcd60e51b815260206004820152601d60248201527f576f6f526f757465723a2066726f6d416d6f756e745f494e56414c4944000000604482015260640161018c565b60008573ffffffffffffffffffffffffffffffffffffffff16848484604051611c2b9291906126a9565b60006040518083038185875af1925050503d8060008114611c68576040519150601f19603f3d011682016040523d82523d6000602084013e611c6d565b606091505b5050905080611cbe5760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a2046414c4c4241434b5f535741505f4641494c454400604482015260640161018c565b505b505050505050565b8015611242577fffffffffffffffffffffffff111111111111111111111111111111111111111273ffffffffffffffffffffffffffffffffffffffff841601611d155761124282826120a9565b611242838383611dfc565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a9f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161018c565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790529151600092839290871691611e9391906126b9565b6000604051808303816000865af19150503d8060008114611ed0576040519150601f19603f3d011682016040523d82523d6000602084013e611ed5565b606091505b5091509150818015611eff575080511580611eff575080806020019051810190611eff91906126f4565b611f4b5760405162461bcd60e51b815260206004820152600260248201527f5354000000000000000000000000000000000000000000000000000000000000604482015260640161018c565b5050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790529151600092839290881691611ff191906126b9565b6000604051808303816000865af19150503d806000811461202e576040519150601f19603f3d011682016040523d82523d6000602084013e612033565b606091505b509150915081801561205d57508051158061205d57508080602001905181019061205d91906126f4565b611cc05760405162461bcd60e51b815260206004820152600360248201527f5354460000000000000000000000000000000000000000000000000000000000604482015260640161018c565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040516120e091906126b9565b60006040518083038185875af1925050503d806000811461211d576040519150601f19603f3d011682016040523d82523d6000602084013e612122565b606091505b50509050806112425760405162461bcd60e51b815260206004820152600360248201527f5354450000000000000000000000000000000000000000000000000000000000604482015260640161018c565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b300000000000000000000000000000000000000000000000000000000179052915160009283929087169161220a91906126b9565b6000604051808303816000865af19150503d8060008114612247576040519150601f19603f3d011682016040523d82523d6000602084013e61224c565b606091505b509150915081801561227657508051158061227657508080602001905181019061227691906126f4565b611f4b5760405162461bcd60e51b815260206004820152600260248201527f5341000000000000000000000000000000000000000000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff8116811461150157600080fd5b60008060008060008060008060006101008a8c03121561230357600080fd5b893561230e816122c2565b985060208a013561231e816122c2565b975060408a013561232e816122c2565b965060608a013561233e816122c2565b955060808a0135945060a08a0135935060c08a013561235c816122c2565b925060e08a013567ffffffffffffffff8082111561237957600080fd5b818c0191508c601f83011261238d57600080fd5b81358181111561239c57600080fd5b8d60208285010111156123ae57600080fd5b6020830194508093505050509295985092959850929598565b6000602082840312156123d957600080fd5b81356114ab816122c2565b60008060008060008060c087890312156123fd57600080fd5b8635612408816122c2565b95506020870135612418816122c2565b945060408701359350606087013592506080870135612436816122c2565b915060a0870135612446816122c2565b809150509295509295509295565b6000806020838503121561246757600080fd5b823567ffffffffffffffff8082111561247f57600080fd5b818501915085601f83011261249357600080fd5b8135818111156124a257600080fd5b8660208260051b85010111156124b757600080fd5b60209290920196919550909350505050565b801515811461150157600080fd5b600080604083850312156124ea57600080fd5b82356124f5816122c2565b91506020830135612505816124c9565b809150509250929050565b60008060006060848603121561252557600080fd5b8335612530816122c2565b92506020840135612540816122c2565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561259257612592612551565b500390565b60a08101600287106125d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9581526020810194909452604084019290925273ffffffffffffffffffffffffffffffffffffffff90811660608401521660809091015290565b60006020828403121561261e57600080fd5b81516114ab816122c2565b60006020828403121561263b57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126a2576126a2612551565b5060010190565b8183823760009101908152919050565b6000825160005b818110156126da57602081860181015185830152016126c0565b818111156126e9576000828501525b509190910192915050565b60006020828403121561270657600080fd5b81516114ab816124c956fea2646970667358221220dc38014e0b76b6c7a8a0f0d1a081a8092f7da37498d3c0695bd6a6c4974ad8db64736f6c634300080e0033000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38000000000000000000000000ed9e3f98bbed560e66b89aac922e29d4596a9642

Deployed Bytecode

0x6080604052600436106100ec5760003560e01c80638da5cb5b1161008a578063ad5c464811610059578063ad5c464814610354578063e1a4e72a14610388578063e94803f4146103a8578063f2fde38b146103c857600080fd5b80638da5cb5b146102bc5780639281aa0b146102e75780639d82e12314610307578063a73946031461032757600080fd5b80634437152a116100c65780634437152a14610254578063715018a6146102745780637dc2038214610289578063819580151461029c57600080fd5b8063199b83fa1461019c578063217a4b70146101c25780633af32abf1461021457600080fd5b36610197573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3816148061014457503360009081526003602052604090205460ff165b6101955760405162461bcd60e51b815260206004820152600760248201527f2173656e6465720000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b005b600080fd5b6101af6101aa3660046122e4565b6103e8565b6040519081526020015b60405180910390f35b3480156101ce57600080fd5b506004546101ef9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b9565b34801561022057600080fd5b5061024461022f3660046123c7565b60036020526000908152604090205460ff1681565b60405190151581526020016101b9565b34801561026057600080fd5b5061019561026f3660046123c7565b6108ee565b34801561028057600080fd5b50610195610a8d565b6101af6102973660046123e4565b610aa1565b3480156102a857600080fd5b506101956102b7366004612454565b611107565b3480156102c857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166101ef565b3480156102f357600080fd5b506101956103023660046124d7565b611247565b34801561031357600080fd5b506101af610322366004612510565b611308565b34801561033357600080fd5b506002546101ef9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561036057600080fd5b506101ef7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b34801561039457600080fd5b506101956103a33660046123c7565b6114b2565b3480156103b457600080fd5b506101af6103c3366004612510565b6115a6565b3480156103d457600080fd5b506101956103e33660046123c7565b61178b565b60006103f2611825565b73ffffffffffffffffffffffffffffffffffffffff8a1661047b5760405162461bcd60e51b815260206004820152602260248201527f576f6f526f757465723a20617070726f76655461726765745f414444525f5a4560448201527f524f000000000000000000000000000000000000000000000000000000000000606482015260840161018c565b73ffffffffffffffffffffffffffffffffffffffff89166104de5760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a20737761705461726765745f414444525f5a45524f00604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff88166105415760405162461bcd60e51b815260206004820152601e60248201527f576f6f526f757465723a2066726f6d546f6b656e5f414444525f5a45524f0000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff87166105a45760405162461bcd60e51b815260206004820152601c60248201527f576f6f526f757465723a20746f546f6b656e5f414444525f5a45524f00000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff84166106075760405162461bcd60e51b815260206004820152601760248201527f576f6f526f757465723a20746f5f414444525f5a45524f000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526003602052604090205460ff166106a25760405162461bcd60e51b815260206004820152602560248201527f576f6f526f757465723a20415050524f56455f5441524745545f4e4f545f414c60448201527f4c4f574544000000000000000000000000000000000000000000000000000000606482015260840161018c565b73ffffffffffffffffffffffffffffffffffffffff891660009081526003602052604090205460ff1661073d5760405162461bcd60e51b815260206004820152602260248201527f576f6f526f757465723a20535741505f5441524745545f4e4f545f414c4c4f5760448201527f4544000000000000000000000000000000000000000000000000000000000000606482015260840161018c565b6000610749883061187e565b90506107598b8b8b8a8888611963565b6000610765893061187e565b9050808211156107b75760405162461bcd60e51b815260206004820152601860248201527f576f6f526f757465723a2062616c616e63655f4552524f520000000000000000604482015260640161018c565b6107c18282612580565b92508683101580156107d35750600083115b6108455760405162461bcd60e51b815260206004820152602260248201527f576f6f526f757465723a207265616c546f416d6f756e745f4e4f545f454e4f5560448201527f4748000000000000000000000000000000000000000000000000000000000000606482015260840161018c565b610850898785611cc8565b8573ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167f27c98e911efdd224f4002f6cd831c3ad0d2759ee176f9ee8466d95826af22a1c60018c883360006040516108ce959493929190612597565b60405180910390a450506108e160018055565b9998505050505050505050565b6108f6611d20565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517f217a4b70000000000000000000000000000000000000000000000000000000008152905163217a4b70916004808201926020929091908290030181865afa15801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b1919061260c565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169182179055610a415760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a2071756f7465546f6b656e5f414444525f5a45524f00604482015260640161018c565b60405173ffffffffffffffffffffffffffffffffffffffff821681527f4577a21bd8e55848c574b7582f8e6cc6a7cf1c1958f36a9751eab6329d656b1e9060200160405180910390a150565b610a95611d20565b610a9f6000611d87565b565b6000610aab611825565b73ffffffffffffffffffffffffffffffffffffffff8716610b0e5760405162461bcd60e51b815260206004820152601560248201527f576f6f526f757465723a202166726f6d546f6b656e0000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff8616610b715760405162461bcd60e51b815260206004820152601360248201527f576f6f526f757465723a2021746f546f6b656e00000000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff8316610bd45760405162461bcd60e51b815260206004820152600e60248201527f576f6f526f757465723a2021746f000000000000000000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff87811673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee9081149188161481610c135788610c35565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad385b985080610c425787610c64565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad385b97508115610d8757348714610cbb5760405162461bcd60e51b815260206004820152601560248201527f576f6f526f757465723a20216d73672e76616c75650000000000000000000000604482015260640161018c565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610d2357600080fd5b505af1158015610d37573d6000803e3d6000fd5b5050600254610d8293507f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38925073ffffffffffffffffffffffffffffffffffffffff16905089611dfc565b610dfc565b3415610dd55760405162461bcd60e51b815260206004820152601560248201527f576f6f526f757465723a20216d73672e76616c75650000000000000000000000604482015260640161018c565b600254610dfc908a90339073ffffffffffffffffffffffffffffffffffffffff168a611f52565b8015610f6e576002546040517f7dc2038200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b811660048301528a81166024830152604482018a90526064820189905230608483015286811660a483015290911690637dc203829060c4016020604051808303816000875af1158015610e98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebc9190612629565b6040517f2e1a7d4d000000000000000000000000000000000000000000000000000000008152600481018290529093507f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff1690632e1a7d4d90602401600060405180830381600087803b158015610f4757600080fd5b505af1158015610f5b573d6000803e3d6000fd5b50505050610f6985846120a9565b61102d565b6002546040517f7dc2038200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b811660048301528a81166024830152604482018a905260648201899052878116608483015286811660a483015290911690637dc203829060c4016020604051808303816000875af1158015611006573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102a9190612629565b92505b8473ffffffffffffffffffffffffffffffffffffffff168161104f5788611065565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee5b73ffffffffffffffffffffffffffffffffffffffff1683611086578a61109c565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee5b73ffffffffffffffffffffffffffffffffffffffff167f27c98e911efdd224f4002f6cd831c3ad0d2759ee176f9ee8466d95826af22a1c60008b88338b6040516110ea959493929190612597565b60405180910390a450506110fd60018055565b9695505050505050565b61110f611d20565b60005b8181101561124257600083838381811061112e5761112e612642565b905060200201602081019061114391906123c7565b90507fffffffffffffffffffffffff111111111111111111111111111111111111111273ffffffffffffffffffffffffffffffffffffffff8216016111915761118c33476120a9565b611231565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190612629565b905061122f823383611dfc565b505b5061123b81612671565b9050611112565b505050565b61124f611d20565b73ffffffffffffffffffffffffffffffffffffffff82166112b25760405162461bcd60e51b815260206004820152601b60248201527f576f6f526f757465723a207461726765745f414444525f5a45524f0000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600073ffffffffffffffffffffffffffffffffffffffff84161580611341575073ffffffffffffffffffffffffffffffffffffffff8316155b1561134e575060006114ab565b73ffffffffffffffffffffffffffffffffffffffff841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1461138557836113a7565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad385b935073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146113e05782611402565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad385b6002546040517fce824f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015280841660248301526044820186905292955091169063ce824f19906064015b602060405180830381865afa158015611484573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a89190612629565b90505b9392505050565b6114ba611d20565b7fffffffffffffffffffffffff111111111111111111111111111111111111111273ffffffffffffffffffffffffffffffffffffffff8216016115045761150133476120a9565b50565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015611571573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115959190612629565b90506115a2823383611dfc565b5050565b600073ffffffffffffffffffffffffffffffffffffffff841661160b5760405162461bcd60e51b815260206004820152601560248201527f576f6f526f757465723a202166726f6d546f6b656e0000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff831661166e5760405162461bcd60e51b815260206004820152601360248201527f576f6f526f757465723a2021746f546f6b656e00000000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146116a557836116c7565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad385b935073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146117005782611722565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad385b6002546040517ff58a435f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015280841660248301526044820186905292955091169063f58a435f90606401611467565b611793611d20565b73ffffffffffffffffffffffffffffffffffffffff811661181c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161018c565b61150181611d87565b6002600154036118775760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161018c565b6002600155565b600073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14611946576040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528416906370a0823190602401602060405180830381865afa15801561191d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119419190612629565b6114ab565b5073ffffffffffffffffffffffffffffffffffffffff1631919050565b73ffffffffffffffffffffffffffffffffffffffff861660009081526003602052604090205460ff166119fe5760405162461bcd60e51b815260206004820152602560248201527f576f6f526f757465723a20415050524f56455f5441524745545f4e4f545f414c60448201527f4c4f574544000000000000000000000000000000000000000000000000000000606482015260840161018c565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604090205460ff16611a995760405162461bcd60e51b815260206004820152602260248201527f576f6f526f757465723a20535741505f5441524745545f4e4f545f414c4c4f5760448201527f4544000000000000000000000000000000000000000000000000000000000000606482015260840161018c565b73ffffffffffffffffffffffffffffffffffffffff841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14611bb157611ad684333086611f52565b611ae1848785612173565b60008573ffffffffffffffffffffffffffffffffffffffff1660008484604051611b0c9291906126a9565b60006040518083038185875af1925050503d8060008114611b49576040519150601f19603f3d011682016040523d82523d6000602084013e611b4e565b606091505b50509050611b5e85886000612173565b80611bab5760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a2046414c4c4241434b5f535741505f4641494c454400604482015260640161018c565b50611cc0565b34831115611c015760405162461bcd60e51b815260206004820152601d60248201527f576f6f526f757465723a2066726f6d416d6f756e745f494e56414c4944000000604482015260640161018c565b60008573ffffffffffffffffffffffffffffffffffffffff16848484604051611c2b9291906126a9565b60006040518083038185875af1925050503d8060008114611c68576040519150601f19603f3d011682016040523d82523d6000602084013e611c6d565b606091505b5050905080611cbe5760405162461bcd60e51b815260206004820152601f60248201527f576f6f526f757465723a2046414c4c4241434b5f535741505f4641494c454400604482015260640161018c565b505b505050505050565b8015611242577fffffffffffffffffffffffff111111111111111111111111111111111111111273ffffffffffffffffffffffffffffffffffffffff841601611d155761124282826120a9565b611242838383611dfc565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a9f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161018c565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790529151600092839290871691611e9391906126b9565b6000604051808303816000865af19150503d8060008114611ed0576040519150601f19603f3d011682016040523d82523d6000602084013e611ed5565b606091505b5091509150818015611eff575080511580611eff575080806020019051810190611eff91906126f4565b611f4b5760405162461bcd60e51b815260206004820152600260248201527f5354000000000000000000000000000000000000000000000000000000000000604482015260640161018c565b5050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790529151600092839290881691611ff191906126b9565b6000604051808303816000865af19150503d806000811461202e576040519150601f19603f3d011682016040523d82523d6000602084013e612033565b606091505b509150915081801561205d57508051158061205d57508080602001905181019061205d91906126f4565b611cc05760405162461bcd60e51b815260206004820152600360248201527f5354460000000000000000000000000000000000000000000000000000000000604482015260640161018c565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040516120e091906126b9565b60006040518083038185875af1925050503d806000811461211d576040519150601f19603f3d011682016040523d82523d6000602084013e612122565b606091505b50509050806112425760405162461bcd60e51b815260206004820152600360248201527f5354450000000000000000000000000000000000000000000000000000000000604482015260640161018c565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b300000000000000000000000000000000000000000000000000000000179052915160009283929087169161220a91906126b9565b6000604051808303816000865af19150503d8060008114612247576040519150601f19603f3d011682016040523d82523d6000602084013e61224c565b606091505b509150915081801561227657508051158061227657508080602001905181019061227691906126f4565b611f4b5760405162461bcd60e51b815260206004820152600260248201527f5341000000000000000000000000000000000000000000000000000000000000604482015260640161018c565b73ffffffffffffffffffffffffffffffffffffffff8116811461150157600080fd5b60008060008060008060008060006101008a8c03121561230357600080fd5b893561230e816122c2565b985060208a013561231e816122c2565b975060408a013561232e816122c2565b965060608a013561233e816122c2565b955060808a0135945060a08a0135935060c08a013561235c816122c2565b925060e08a013567ffffffffffffffff8082111561237957600080fd5b818c0191508c601f83011261238d57600080fd5b81358181111561239c57600080fd5b8d60208285010111156123ae57600080fd5b6020830194508093505050509295985092959850929598565b6000602082840312156123d957600080fd5b81356114ab816122c2565b60008060008060008060c087890312156123fd57600080fd5b8635612408816122c2565b95506020870135612418816122c2565b945060408701359350606087013592506080870135612436816122c2565b915060a0870135612446816122c2565b809150509295509295509295565b6000806020838503121561246757600080fd5b823567ffffffffffffffff8082111561247f57600080fd5b818501915085601f83011261249357600080fd5b8135818111156124a257600080fd5b8660208260051b85010111156124b757600080fd5b60209290920196919550909350505050565b801515811461150157600080fd5b600080604083850312156124ea57600080fd5b82356124f5816122c2565b91506020830135612505816124c9565b809150509250929050565b60008060006060848603121561252557600080fd5b8335612530816122c2565b92506020840135612540816122c2565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561259257612592612551565b500390565b60a08101600287106125d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9581526020810194909452604084019290925273ffffffffffffffffffffffffffffffffffffffff90811660608401521660809091015290565b60006020828403121561261e57600080fd5b81516114ab816122c2565b60006020828403121561263b57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126a2576126a2612551565b5060010190565b8183823760009101908152919050565b6000825160005b818110156126da57602081860181015185830152016126c0565b818111156126e9576000828501525b509190910192915050565b60006020828403121561270657600080fd5b81516114ab816124c956fea2646970667358221220dc38014e0b76b6c7a8a0f0d1a081a8092f7da37498d3c0695bd6a6c4974ad8db64736f6c634300080e0033

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

000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38000000000000000000000000ed9e3f98bbed560e66b89aac922e29d4596a9642

-----Decoded View---------------
Arg [0] : _weth (address): 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38
Arg [1] : _pool (address): 0xEd9e3f98bBed560e66B89AaC922E29D4596A9642

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Arg [1] : 000000000000000000000000ed9e3f98bbed560e66b89aac922e29d4596a9642


Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.