ETH Price: $2,981.27 (+0.96%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Amount:Between 1-1M
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

Update your filters to view other transactions

Amount:Between 1-1M
Reset Filter

Advanced mode:
Parent Transaction Hash Method Block
From
To

There are no matching entries

Update your filters to view other transactions

View All Internal Transactions
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
IncomeIslandProxy

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-02-17
*/

pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/Proxy.sol)
/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(
                gas(),
                implementation,
                0,
                calldatasize(),
                0,
                0
            )

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overriden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

// OpenZeppelin Contracts v4.4.1 (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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/StorageSlot.sol)
/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot)
        internal
        pure
        returns (AddressSlot storage r)
    {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot)
        internal
        pure
        returns (BooleanSlot storage r)
    {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot)
        internal
        pure
        returns (Bytes32Slot storage r)
    {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot)
        internal
        pure
        returns (Uint256Slot storage r)
    {
        assembly {
            r.slot := slot
        }
    }
}

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

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

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

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

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

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

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

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

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

contract IncomeIslandProxy is Proxy {
    using Address for address;

    bytes32 internal constant _IMPLEMENTATION_SLOT =
        0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    bytes32 internal constant _ADMIN_SLOT =
        0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @notice Constructor inherits ProxyAdmin
     * @param _logic the logic contract address
     */
    constructor(address _logic) {
        _setAdmin(msg.sender);
        _setImplementation(_logic);
    }

    /**
     * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
     */
    modifier ifAdmin() {
        if (msg.sender == _getAdmin()) {
            _;
        } else {
            _fallback();
        }
    }

    function _implementation() internal view override returns (address) {
        return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(
            Address.isContract(newImplementation),
            "ERC1967: new implementation is not a contract"
        );
        StorageSlot
            .getAddressSlot(_IMPLEMENTATION_SLOT)
            .value = newImplementation;
    }

    function implementation() external view returns (address implementation_) {
        implementation_ = _implementation();
    }

    /**
     * @notice setUri
     */
    function setLOGIC(address newLogicAddress) external ifAdmin {
        _setImplementation(newLogicAddress);
    }

    function _getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) internal {
        require(
            newAdmin != address(0),
            "TradingProxy: new admin is the zero address"
        );
        StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
    }

    function admin() external view returns (address admin_) {
        admin_ = _getAdmin();
    }

    function changeAdmin(address newAdmin) external ifAdmin {
        _setAdmin(newAdmin);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_logic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newLogicAddress","type":"address"}],"name":"setLOGIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162000ac938038062000ac983398181016040528101906200003791906200025b565b62000048336200006060201b60201c565b62000059816200015160201b60201c565b5062000421565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620000d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ca90620002db565b60405180910390fd5b806200010d7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6200022760201b620001e61760201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000167816200023160201b620001f01760201c565b620001a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a090620002fd565b60405180910390fd5b80620001e37f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6200022760201b620001e61760201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000819050919050565b600080823b905060008111915050919050565b600081519050620002558162000407565b92915050565b60006020828403121562000274576200027362000364565b5b6000620002848482850162000244565b91505092915050565b60006200029c602b836200031f565b9150620002a98262000369565b604082019050919050565b6000620002c3602d836200031f565b9150620002d082620003b8565b604082019050919050565b60006020820190508181036000830152620002f6816200028d565b9050919050565b600060208201905081810360008301526200031881620002b4565b9050919050565b600082825260208201905092915050565b60006200033d8262000344565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f54726164696e6750726f78793a206e65772061646d696e20697320746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b620004128162000330565b81146200041e57600080fd5b50565b61069880620004316000396000f3fe6080604052600436106100435760003560e01c80630c65b80a1461005c5780635c60da1b146100855780638f283970146100b0578063f851a440146100d957610052565b3661005257610050610104565b005b61005a610104565b005b34801561006857600080fd5b50610083600480360381019061007e9190610488565b61011e565b005b34801561009157600080fd5b5061009a610173565b6040516100a7919061050a565b60405180910390f35b3480156100bc57600080fd5b506100d760048036038101906100d29190610488565b610182565b005b3480156100e557600080fd5b506100ee6101d7565b6040516100fb919061050a565b60405180910390f35b61010c610203565b61011c610117610205565b61025c565b565b610126610282565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561016757610162816102d9565b610170565b61016f610104565b5b50565b600061017d610205565b905090565b61018a610282565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156101cb576101c681610392565b6101d4565b6101d3610104565b5b50565b60006101e1610282565b905090565b6000819050919050565b600080823b905060008111915050919050565b565b60006102337f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6101e6565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3660008037600080366000845af43d6000803e806000811461027d573d6000f35b3d6000fd5b60006102b07fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6101e6565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6102e2816101f0565b610321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031890610545565b60405180910390fd5b8061034e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6101e6565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f990610525565b60405180910390fd5b8061042f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6101e6565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000813590506104828161064b565b92915050565b60006020828403121561049e5761049d6105a8565b5b60006104ac84828501610473565b91505092915050565b6104be81610576565b82525050565b60006104d1602b83610565565b91506104dc826105ad565b604082019050919050565b60006104f4602d83610565565b91506104ff826105fc565b604082019050919050565b600060208201905061051f60008301846104b5565b92915050565b6000602082019050818103600083015261053e816104c4565b9050919050565b6000602082019050818103600083015261055e816104e7565b9050919050565b600082825260208201905092915050565b600061058182610588565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f54726164696e6750726f78793a206e65772061646d696e20697320746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b61065481610576565b811461065f57600080fd5b5056fea264697066735822122056c51dab6e6c739a5a7bb208cc5cda52dd619784fb76caf82f58f4d1f95eb80e64736f6c634300080600330000000000000000000000009f1300a84a3d4627b9cf999b0160682b51f3430f

Deployed Bytecode

0x6080604052600436106100435760003560e01c80630c65b80a1461005c5780635c60da1b146100855780638f283970146100b0578063f851a440146100d957610052565b3661005257610050610104565b005b61005a610104565b005b34801561006857600080fd5b50610083600480360381019061007e9190610488565b61011e565b005b34801561009157600080fd5b5061009a610173565b6040516100a7919061050a565b60405180910390f35b3480156100bc57600080fd5b506100d760048036038101906100d29190610488565b610182565b005b3480156100e557600080fd5b506100ee6101d7565b6040516100fb919061050a565b60405180910390f35b61010c610203565b61011c610117610205565b61025c565b565b610126610282565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561016757610162816102d9565b610170565b61016f610104565b5b50565b600061017d610205565b905090565b61018a610282565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156101cb576101c681610392565b6101d4565b6101d3610104565b5b50565b60006101e1610282565b905090565b6000819050919050565b600080823b905060008111915050919050565b565b60006102337f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6101e6565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3660008037600080366000845af43d6000803e806000811461027d573d6000f35b3d6000fd5b60006102b07fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6101e6565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6102e2816101f0565b610321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031890610545565b60405180910390fd5b8061034e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6101e6565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f990610525565b60405180910390fd5b8061042f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6101e6565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000813590506104828161064b565b92915050565b60006020828403121561049e5761049d6105a8565b5b60006104ac84828501610473565b91505092915050565b6104be81610576565b82525050565b60006104d1602b83610565565b91506104dc826105ad565b604082019050919050565b60006104f4602d83610565565b91506104ff826105fc565b604082019050919050565b600060208201905061051f60008301846104b5565b92915050565b6000602082019050818103600083015261053e816104c4565b9050919050565b6000602082019050818103600083015261055e816104e7565b9050919050565b600082825260208201905092915050565b600061058182610588565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f54726164696e6750726f78793a206e65772061646d696e20697320746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b61065481610576565b811461065f57600080fd5b5056fea264697066735822122056c51dab6e6c739a5a7bb208cc5cda52dd619784fb76caf82f58f4d1f95eb80e64736f6c63430008060033

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

0000000000000000000000009f1300a84a3d4627b9cf999b0160682b51f3430f

-----Decoded View---------------
Arg [0] : _logic (address): 0x9F1300a84A3D4627b9CF999B0160682B51F3430f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009f1300a84a3d4627b9cf999b0160682b51f3430f


Deployed Bytecode Sourcemap

17916:2392:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3074:11;:9;:11::i;:::-;17916:2392;;2843:11;:9;:11::i;:::-;17916:2392;19520:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19343:128;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20211:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20108:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2480:113;2529:17;:15;:17::i;:::-;2557:28;2567:17;:15;:17::i;:::-;2557:9;:28::i;:::-;2480:113::o;19520:114::-;18664:11;:9;:11::i;:::-;18650:25;;:10;:25;;;18646:103;;;19591:35:::1;19610:15;19591:18;:35::i;:::-;18646:103:::0;;;18726:11;:9;:11::i;:::-;18646:103;19520:114;:::o;19343:128::-;19392:23;19446:17;:15;:17::i;:::-;19428:35;;19343:128;:::o;20211:94::-;18664:11;:9;:11::i;:::-;18650:25;;:10;:25;;;18646:103;;;20278:19:::1;20288:8;20278:9;:19::i;:::-;18646:103:::0;;;18726:11;:9;:11::i;:::-;18646:103;20211:94;:::o;20108:95::-;20148:14;20184:11;:9;:11::i;:::-;20175:20;;20108:95;:::o;13556:183::-;13644:21;13717:4;13707:14;;13556:183;;;:::o;4170:387::-;4230:4;4438:12;4505:7;4493:20;4485:28;;4548:1;4541:4;:8;4534:15;;;4170:387;;;:::o;3382:46::-;:::o;18764:148::-;18823:7;18850:48;18051:66;18877:20;;18850:26;:48::i;:::-;:54;;;;;;;;;;;;18843:61;;18764:148;:::o;953:1035::-;1296:14;1293:1;1290;1277:34;1617:1;1597;1564:14;1544:1;1511:14;1487:5;1456:177;1710:16;1707:1;1704;1689:38;1750:6;1824:1;1819:68;;;;1938:16;1935:1;1928:27;1819:68;1855:16;1852:1;1845:27;19642:124;19686:7;19713:39;18175:66;19740:11;;19713:26;:39::i;:::-;:45;;;;;;;;;;;;19706:52;;19642:124;:::o;19008:327::-;19104:37;19123:17;19104:18;:37::i;:::-;19082:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;19310:17;19225:62;18051:66;19266:20;;19225:40;:62::i;:::-;:82;;;:102;;;;;;;;;;;;;;;;;;19008:327;:::o;19853:247::-;19952:1;19932:22;;:8;:22;;;;19910:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;20084:8;20036:39;18175:66;20063:11;;20036:26;:39::i;:::-;:45;;;:56;;;;;;;;;;;;;;;;;;19853:247;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:2;;;266:79;;:::i;:::-;228:2;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;218:263;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;552:53;;:::o;611:366::-;753:3;774:67;838:2;833:3;774:67;:::i;:::-;767:74;;850:93;939:3;850:93;:::i;:::-;968:2;963:3;959:12;952:19;;757:220;;;:::o;983:366::-;1125:3;1146:67;1210:2;1205:3;1146:67;:::i;:::-;1139:74;;1222:93;1311:3;1222:93;:::i;:::-;1340:2;1335:3;1331:12;1324:19;;1129:220;;;:::o;1355:222::-;1448:4;1486:2;1475:9;1471:18;1463:26;;1499:71;1567:1;1556:9;1552:17;1543:6;1499:71;:::i;:::-;1453:124;;;;:::o;1583:419::-;1749:4;1787:2;1776:9;1772:18;1764:26;;1836:9;1830:4;1826:20;1822:1;1811:9;1807:17;1800:47;1864:131;1990:4;1864:131;:::i;:::-;1856:139;;1754:248;;;:::o;2008:419::-;2174:4;2212:2;2201:9;2197:18;2189:26;;2261:9;2255:4;2251:20;2247:1;2236:9;2232:17;2225:47;2289:131;2415:4;2289:131;:::i;:::-;2281:139;;2179:248;;;:::o;2514:169::-;2598:11;2632:6;2627:3;2620:19;2672:4;2667:3;2663:14;2648:29;;2610:73;;;;:::o;2689:96::-;2726:7;2755:24;2773:5;2755:24;:::i;:::-;2744:35;;2734:51;;;:::o;2791:126::-;2828:7;2868:42;2861:5;2857:54;2846:65;;2836:81;;;:::o;3046:117::-;3155:1;3152;3145:12;3169:230;3309:34;3305:1;3297:6;3293:14;3286:58;3378:13;3373:2;3365:6;3361:15;3354:38;3275:124;:::o;3405:232::-;3545:34;3541:1;3533:6;3529:14;3522:58;3614:15;3609:2;3601:6;3597:15;3590:40;3511:126;:::o;3643:122::-;3716:24;3734:5;3716:24;:::i;:::-;3709:5;3706:35;3696:2;;3755:1;3752;3745:12;3696:2;3686:79;:::o

Swarm Source

ipfs://56c51dab6e6c739a5a7bb208cc5cda52dd619784fb76caf82f58f4d1f95eb80e

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

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.