ETH Price: $3,387.81 (-2.98%)
Gas: 9 Gwei

Contract

0x781e90f1c8Fc4611c9b7497C3B47F99Ef6969CbC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Send Message200767742024-06-12 15:54:595 days ago1718207699IN
0x781e90f1...Ef6969CbC
0.0153539 ETH0.0004742221.35368222
Send Message199669682024-05-28 7:47:1121 days ago1716882431IN
0x781e90f1...Ef6969CbC
0.001 ETH0.0004027618.1458681
0x60806040183189292023-10-10 8:41:47252 days ago1696927307IN
 Contract Creation
0 ETH0.004855229.18658926

Advanced mode:
Parent Transaction Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xA76acF00...9F955d026
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Fallback

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity =0.8.16;

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
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);
}

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Fallback is Ownable {
    using SafeERC20 for IERC20;

    /// @notice Withdraw stucked token from this contract.
    /// @param _token The address of token to withdraw, use `address(0)` if withdraw ETH.
    /// @param _amount The amount of token to withdraw.
    /// @param _recipient The address of receiver.
    function withdraw(
        address _token,
        uint256 _amount,
        address _recipient
    ) external onlyOwner {
        if (_token == address(0)) {
            (bool _success, ) = _recipient.call{value: _amount}("");
            require(_success, "transfer ETH failed");
        } else {
            IERC20(_token).safeTransfer(_recipient, _amount);
        }
    }

    /// @notice Execute an arbitrary message.
    /// @param _target The address of contract to call.
    /// @param _data The calldata passed to target contract.
    function execute(address _target, bytes calldata _data) external payable onlyOwner {
        (bool _success, ) = _target.call{value: msg.value}(_data);
        require(_success, "call failed");
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_target","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x60806040526004361061004a5760003560e01c80631cff79cd1461004f57806369328dec14610064578063715018a6146100845780638da5cb5b14610099578063f2fde38b146100c5575b600080fd5b61006261005d366004610668565b6100e5565b005b34801561007057600080fd5b5061006261007f3660046106eb565b610196565b34801561009057600080fd5b5061006261025e565b3480156100a557600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b3480156100d157600080fd5b506100626100e0366004610727565b610272565b6100ed6102eb565b6000836001600160a01b031634848460405161010a929190610749565b60006040518083038185875af1925050503d8060008114610147576040519150601f19603f3d011682016040523d82523d6000602084013e61014c565b606091505b50509050806101905760405162461bcd60e51b815260206004820152600b60248201526a18d85b1b0819985a5b195960aa1b60448201526064015b60405180910390fd5b50505050565b61019e6102eb565b6001600160a01b038316610245576000816001600160a01b03168360405160006040518083038185875af1925050503d80600081146101f9576040519150601f19603f3d011682016040523d82523d6000602084013e6101fe565b606091505b50509050806101905760405162461bcd60e51b81526020600482015260136024820152721d1c985b9cd9995c881155120819985a5b1959606a1b6044820152606401610187565b6102596001600160a01b0384168284610345565b505050565b6102666102eb565b6102706000610397565b565b61027a6102eb565b6001600160a01b0381166102df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610187565b6102e881610397565b50565b6000546001600160a01b031633146102705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610187565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526102599084906103e7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061043c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166104bc9092919063ffffffff16565b905080516000148061045d57508080602001905181019061045d9190610759565b6102595760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610187565b60606104cb84846000856104d3565b949350505050565b6060824710156105345760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610187565b600080866001600160a01b03168587604051610550919061079f565b60006040518083038185875af1925050503d806000811461058d576040519150601f19603f3d011682016040523d82523d6000602084013e610592565b606091505b50915091506105a3878383876105ae565b979650505050505050565b6060831561061d578251600003610616576001600160a01b0385163b6106165760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610187565b50816104cb565b6104cb83838151156106325781518083602001fd5b8060405162461bcd60e51b815260040161018791906107bb565b80356001600160a01b038116811461066357600080fd5b919050565b60008060006040848603121561067d57600080fd5b6106868461064c565b9250602084013567ffffffffffffffff808211156106a357600080fd5b818601915086601f8301126106b757600080fd5b8135818111156106c657600080fd5b8760208285010111156106d857600080fd5b6020830194508093505050509250925092565b60008060006060848603121561070057600080fd5b6107098461064c565b92506020840135915061071e6040850161064c565b90509250925092565b60006020828403121561073957600080fd5b6107428261064c565b9392505050565b8183823760009101908152919050565b60006020828403121561076b57600080fd5b8151801515811461074257600080fd5b60005b8381101561079657818101518382015260200161077e565b50506000910152565b600082516107b181846020870161077b565b9190910192915050565b60208152600082518060208401526107da81604085016020870161077b565b601f01601f1916919091016040019291505056fea26469706673582212206f1db3ed3e32743380e30eda934842fb19d66650c4db8b0c2bd6b88851f5bff564736f6c63430008100033

Deployed Bytecode Sourcemap

24964:1096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25855:202;;;;;;:::i;:::-;;:::i;:::-;;25295:386;;;;;;;;;;-1:-1:-1;25295:386:0;;;;;:::i;:::-;;:::i;2663:103::-;;;;;;;;;;;;;:::i;2022:87::-;;;;;;;;;;-1:-1:-1;2068:7:0;2095:6;2022:87;;;-1:-1:-1;;;;;2095:6:0;;;1341:51:1;;2022:87:0;;;;;1329:2:1;2022:87:0;;;2921:201;;;;;;;;;;-1:-1:-1;2921:201:0;;;;;:::i;:::-;;:::i;25855:202::-;1908:13;:11;:13::i;:::-;25950::::1;25969:7;-1:-1:-1::0;;;;;25969:12:0::1;25989:9;26000:5;;25969:37;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25949:57;;;26025:8;26017:32;;;::::0;-1:-1:-1;;;26017:32:0;;2072:2:1;26017:32:0::1;::::0;::::1;2054:21:1::0;2111:2;2091:18;;;2084:30;-1:-1:-1;;;2130:18:1;;;2123:41;2181:18;;26017:32:0::1;;;;;;;;;25938:119;25855:202:::0;;;:::o;25295:386::-;1908:13;:11;:13::i;:::-;-1:-1:-1;;;;;25434:20:0;::::1;25430:244;;25472:13;25491:10;-1:-1:-1::0;;;;;25491:15:0::1;25514:7;25491:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25471:55;;;25549:8;25541:40;;;::::0;-1:-1:-1;;;25541:40:0;;2622:2:1;25541:40:0::1;::::0;::::1;2604:21:1::0;2661:2;2641:18;;;2634:30;-1:-1:-1;;;2680:18:1;;;2673:49;2739:18;;25541:40:0::1;2420:343:1::0;25430:244:0::1;25614:48;-1:-1:-1::0;;;;;25614:27:0;::::1;25642:10:::0;25654:7;25614:27:::1;:48::i;:::-;25295:386:::0;;;:::o;2663:103::-;1908:13;:11;:13::i;:::-;2728:30:::1;2755:1;2728:18;:30::i;:::-;2663:103::o:0;2921:201::-;1908:13;:11;:13::i;:::-;-1:-1:-1;;;;;3010:22:0;::::1;3002:73;;;::::0;-1:-1:-1;;;3002:73:0;;2970:2:1;3002:73:0::1;::::0;::::1;2952:21:1::0;3009:2;2989:18;;;2982:30;3048:34;3028:18;;;3021:62;-1:-1:-1;;;3099:18:1;;;3092:36;3145:19;;3002:73:0::1;2768:402:1::0;3002:73:0::1;3086:28;3105:8;3086:18;:28::i;:::-;2921:201:::0;:::o;2187:132::-;2068:7;2095:6;-1:-1:-1;;;;;2095:6:0;811:10;2251:23;2243:68;;;;-1:-1:-1;;;2243:68:0;;3377:2:1;2243:68:0;;;3359:21:1;;;3396:18;;;3389:30;3455:34;3435:18;;;3428:62;3507:18;;2243:68:0;3175:356:1;18849:177:0;18959:58;;;-1:-1:-1;;;;;3728:32:1;;18959:58:0;;;3710:51:1;3777:18;;;;3770:34;;;18959:58:0;;;;;;;;;;3683:18:1;;;;18959:58:0;;;;;;;;-1:-1:-1;;;;;18959:58:0;-1:-1:-1;;;18959:58:0;;;18932:86;;18952:5;;18932:19;:86::i;3282:191::-;3356:16;3375:6;;-1:-1:-1;;;;;3392:17:0;;;-1:-1:-1;;;;;;3392:17:0;;;;;;3425:40;;3375:6;;;;;;;3425:40;;3356:16;3425:40;3345:128;3282:191;:::o;23195:649::-;23619:23;23645:69;23673:4;23645:69;;;;;;;;;;;;;;;;;23653:5;-1:-1:-1;;;;;23645:27:0;;;:69;;;;;:::i;:::-;23619:95;;23733:10;:17;23754:1;23733:22;:56;;;;23770:10;23759:30;;;;;;;;;;;;:::i;:::-;23725:111;;;;-1:-1:-1;;;23725:111:0;;4299:2:1;23725:111:0;;;4281:21:1;4338:2;4318:18;;;4311:30;4377:34;4357:18;;;4350:62;-1:-1:-1;;;4428:18:1;;;4421:40;4478:19;;23725:111:0;4097:406:1;12731:229:0;12868:12;12900:52;12922:6;12930:4;12936:1;12939:12;12900:21;:52::i;:::-;12893:59;12731:229;-1:-1:-1;;;;12731:229:0:o;13817:455::-;13987:12;14045:5;14020:21;:30;;14012:81;;;;-1:-1:-1;;;14012:81:0;;4710:2:1;14012:81:0;;;4692:21:1;4749:2;4729:18;;;4722:30;4788:34;4768:18;;;4761:62;-1:-1:-1;;;4839:18:1;;;4832:36;4885:19;;14012:81:0;4508:402:1;14012:81:0;14105:12;14119:23;14146:6;-1:-1:-1;;;;;14146:11:0;14165:5;14172:4;14146:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14104:73;;;;14195:69;14222:6;14230:7;14239:10;14251:12;14195:26;:69::i;:::-;14188:76;13817:455;-1:-1:-1;;;;;;;13817:455:0:o;16390:644::-;16575:12;16604:7;16600:427;;;16632:10;:17;16653:1;16632:22;16628:290;;-1:-1:-1;;;;;10271:19:0;;;16842:60;;;;-1:-1:-1;;;16842:60:0;;5664:2:1;16842:60:0;;;5646:21:1;5703:2;5683:18;;;5676:30;5742:31;5722:18;;;5715:59;5791:18;;16842:60:0;5462:353:1;16842:60:0;-1:-1:-1;16939:10:0;16932:17;;16600:427;16982:33;16990:10;17002:12;17737:17;;:21;17733:388;;17969:10;17963:17;18026:15;18013:10;18009:2;18005:19;17998:44;17733:388;18096:12;18089:20;;-1:-1:-1;;;18089:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:665::-;271:6;279;287;340:2;328:9;319:7;315:23;311:32;308:52;;;356:1;353;346:12;308:52;379:29;398:9;379:29;:::i;:::-;369:39;;459:2;448:9;444:18;431:32;482:18;523:2;515:6;512:14;509:34;;;539:1;536;529:12;509:34;577:6;566:9;562:22;552:32;;622:7;615:4;611:2;607:13;603:27;593:55;;644:1;641;634:12;593:55;684:2;671:16;710:2;702:6;699:14;696:34;;;726:1;723;716:12;696:34;771:7;766:2;757:6;753:2;749:15;745:24;742:37;739:57;;;792:1;789;782:12;739:57;823:2;819;815:11;805:21;;845:6;835:16;;;;;192:665;;;;;:::o;862:328::-;939:6;947;955;1008:2;996:9;987:7;983:23;979:32;976:52;;;1024:1;1021;1014:12;976:52;1047:29;1066:9;1047:29;:::i;:::-;1037:39;;1123:2;1112:9;1108:18;1095:32;1085:42;;1146:38;1180:2;1169:9;1165:18;1146:38;:::i;:::-;1136:48;;862:328;;;;;:::o;1403:186::-;1462:6;1515:2;1503:9;1494:7;1490:23;1486:32;1483:52;;;1531:1;1528;1521:12;1483:52;1554:29;1573:9;1554:29;:::i;:::-;1544:39;1403:186;-1:-1:-1;;;1403:186:1:o;1594:271::-;1777:6;1769;1764:3;1751:33;1733:3;1803:16;;1828:13;;;1803:16;1594:271;-1:-1:-1;1594:271:1:o;3815:277::-;3882:6;3935:2;3923:9;3914:7;3910:23;3906:32;3903:52;;;3951:1;3948;3941:12;3903:52;3983:9;3977:16;4036:5;4029:13;4022:21;4015:5;4012:32;4002:60;;4058:1;4055;4048:12;4915:250;5000:1;5010:113;5024:6;5021:1;5018:13;5010:113;;;5100:11;;;5094:18;5081:11;;;5074:39;5046:2;5039:10;5010:113;;;-1:-1:-1;;5157:1:1;5139:16;;5132:27;4915:250::o;5170:287::-;5299:3;5337:6;5331:13;5353:66;5412:6;5407:3;5400:4;5392:6;5388:17;5353:66;:::i;:::-;5435:16;;;;;5170:287;-1:-1:-1;;5170:287:1:o;5820:396::-;5969:2;5958:9;5951:21;5932:4;6001:6;5995:13;6044:6;6039:2;6028:9;6024:18;6017:34;6060:79;6132:6;6127:2;6116:9;6112:18;6107:2;6099:6;6095:15;6060:79;:::i;:::-;6200:2;6179:15;-1:-1:-1;;6175:29:1;6160:45;;;;6207:2;6156:54;;5820:396;-1:-1:-1;;5820:396:1:o

Swarm Source

ipfs://6f1db3ed3e32743380e30eda934842fb19d66650c4db8b0c2bd6b88851f5bff5

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.