ETH Price: $3,484.86 (+3.65%)
Gas: 2 Gwei

Contract

0xb2Ae736E85Dec5e40F47805B9624FfE62c35D815
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer Ownersh...201647682024-06-24 23:17:596 days ago1719271079IN
0xb2Ae736E...62c35D815
0 ETH0.000117934.12808025
Add Or Update Se...201646132024-06-24 22:46:116 days ago1719269171IN
0xb2Ae736E...62c35D815
0 ETH0.002219553.25123998
Remove Impl Addr...201646072024-06-24 22:44:596 days ago1719269099IN
0xb2Ae736E...62c35D815
0 ETH0.001525773.27609975
Transfer Ownersh...201628672024-06-24 16:54:236 days ago1719248063IN
0xb2Ae736E...62c35D815
0 ETH0.0005905620.67212455
Transfer Ownersh...196646132024-04-16 0:56:1176 days ago1713228971IN
0xb2Ae736E...62c35D815
0 ETH0.000203547.12500164
Add Or Update Se...196645492024-04-16 0:43:1176 days ago1713228191IN
0xb2Ae736E...62c35D815
0 ETH0.003619987.30936245
Remove Impl Addr...196645412024-04-16 0:41:3576 days ago1713228095IN
0xb2Ae736E...62c35D815
0 ETH0.003349717.6256455
Transfer Ownersh...196630692024-04-15 19:43:3576 days ago1713210215IN
0xb2Ae736E...62c35D815
0 ETH0.0004574116.01156429
Transfer Ownersh...190927712024-01-26 19:10:35156 days ago1706296235IN
0xb2Ae736E...62c35D815
0 ETH0.0006121821.42892731
Set Fallback Imp...190815642024-01-25 5:32:11158 days ago1706160731IN
0xb2Ae736E...62c35D815
0 ETH0.0004952110.72188577
Add Or Update Se...190815632024-01-25 5:31:59158 days ago1706160719IN
0xb2Ae736E...62c35D815
0 ETH0.0055271110.71119272
Add Or Update Se...190815622024-01-25 5:31:47158 days ago1706160707IN
0xb2Ae736E...62c35D815
0 ETH0.0077818811.14282313
Add Or Update Se...190815612024-01-25 5:31:35158 days ago1706160695IN
0xb2Ae736E...62c35D815
0 ETH0.0081660811.73550486
Add Or Update Se...190815602024-01-25 5:31:23158 days ago1706160683IN
0xb2Ae736E...62c35D815
0 ETH0.0056147611.57384454
Add Or Update Se...190815592024-01-25 5:31:11158 days ago1706160671IN
0xb2Ae736E...62c35D815
0 ETH0.0015792511.60392877
Add Or Update Se...190815542024-01-25 5:30:11158 days ago1706160611IN
0xb2Ae736E...62c35D815
0 ETH0.0188391413.35511098
0x60806040190729242024-01-24 0:27:35159 days ago1706056055IN
 Create: AddressRelay
0 ETH0.014810548.83011727

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AddressRelay

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 6 : AddressRelay.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IAddressRelay, Implementation} from "./interfaces/IAddressRelay.sol";
import {IERC165} from "./interfaces/IERC165.sol";
import {IERC173} from "./interfaces/IERC173.sol";

/**
 * @author Created by HeyMint Launchpad https://join.heymint.xyz
 * @notice This contract contains the base logic for ERC-721A tokens deployed with HeyMint
 */
contract AddressRelay is IAddressRelay, Ownable {
    mapping(bytes4 => address) public selectorToImplAddress;
    mapping(bytes4 => bool) public supportedInterfaces;
    bytes4[] selectors;
    address[] implAddresses;
    address public fallbackImplAddress;
    bool public relayFrozen;

    constructor() {
        supportedInterfaces[0x01ffc9a7] = true; // IERC165
        supportedInterfaces[0x7f5828d0] = true; // IERC173
        supportedInterfaces[0x80ac58cd] = true; // IERC721
        supportedInterfaces[0x5b5e139f] = true; // IERC721Metadata
        supportedInterfaces[0x2a55205a] = true; // IERC2981
        supportedInterfaces[0xad092b5c] = true; // IERC4907
    }

    /**
     * @notice Permanently freezes the relay so no more selectors can be added or removed
     */
    function freezeRelay() external onlyOwner {
        relayFrozen = true;
    }

    /**
     * @notice Adds or updates selectors and their implementation addresses
     * @param _selectors The selectors to add or update
     * @param _implAddress The implementation address the selectors will point to
     */
    function addOrUpdateSelectors(
        bytes4[] memory _selectors,
        address _implAddress
    ) external onlyOwner {
        require(!relayFrozen, "RELAY_FROZEN");
        for (uint256 i = 0; i < _selectors.length; i++) {
            bytes4 selector = _selectors[i];
            selectorToImplAddress[selector] = _implAddress;
            selectors.push(selector);
        }
        bool implAddressExists = false;
        for (uint256 i = 0; i < implAddresses.length; i++) {
            if (implAddresses[i] == _implAddress) {
                implAddressExists = true;
                break;
            }
        }
        if (!implAddressExists) {
            implAddresses.push(_implAddress);
        }
    }

    /**
     * @notice Removes selectors
     * @param _selectors The selectors to remove
     */
    function removeSelectors(bytes4[] memory _selectors) external onlyOwner {
        require(!relayFrozen, "RELAY_FROZEN");
        for (uint256 i = 0; i < _selectors.length; i++) {
            bytes4 selector = _selectors[i];
            delete selectorToImplAddress[selector];
            for (uint256 j = 0; j < selectors.length; j++) {
                if (selectors[j] == selector) {
                    // this just sets the value to 0, but doesn't remove it from the array
                    delete selectors[j];
                    break;
                }
            }
        }
    }

    /**
     * @notice Removes an implementation address and all the selectors that point to it
     * @param _implAddress The implementation address to remove
     */
    function removeImplAddressAndAllSelectors(
        address _implAddress
    ) external onlyOwner {
        require(!relayFrozen, "RELAY_FROZEN");
        for (uint256 i = 0; i < implAddresses.length; i++) {
            if (implAddresses[i] == _implAddress) {
                // this just sets the value to 0, but doesn't remove it from the array
                delete implAddresses[i];
                break;
            }
        }
        for (uint256 i = 0; i < selectors.length; i++) {
            if (selectorToImplAddress[selectors[i]] == _implAddress) {
                delete selectorToImplAddress[selectors[i]];
                delete selectors[i];
            }
        }
    }

    /**
     * @notice Returns the implementation address for a given function selector
     * @param _functionSelector The function selector to get the implementation address for
     */
    function getImplAddress(
        bytes4 _functionSelector
    ) external view returns (address) {
        address implAddress = selectorToImplAddress[_functionSelector];
        if (implAddress == address(0)) {
            implAddress = fallbackImplAddress;
        }
        require(implAddress != address(0), "Function does not exist");
        return implAddress;
    }

    /**
     * @notice Returns the implementation address for a given function selector. Throws an error if function does not exist.
     * @param _functionSelector The function selector to get the implementation address for
     */
    function getImplAddressNoFallback(
        bytes4 _functionSelector
    ) external view returns (address) {
        address implAddress = selectorToImplAddress[_functionSelector];
        require(implAddress != address(0), "Function does not exist");
        return implAddress;
    }

    /**
     * @notice Returns all the implementation addresses and the selectors they support
     * @return impls_ An array of Implementation structs
     */
    function getAllImplAddressesAndSelectors()
        external
        view
        returns (Implementation[] memory)
    {
        uint256 trueImplAddressCount = 0;
        uint256 implAddressesLength = implAddresses.length;
        for (uint256 i = 0; i < implAddressesLength; i++) {
            if (implAddresses[i] != address(0)) {
                trueImplAddressCount++;
            }
        }
        Implementation[] memory impls = new Implementation[](
            trueImplAddressCount
        );
        uint256 implIndex = 0;
        for (uint256 i = 0; i < implAddressesLength; i++) {
            if (implAddresses[i] == address(0)) {
                continue;
            }
            address implAddress = implAddresses[i];
            bytes4[] memory selectors_;
            uint256 selectorCount = 0;
            uint256 selectorsLength = selectors.length;
            for (uint256 j = 0; j < selectorsLength; j++) {
                if (selectorToImplAddress[selectors[j]] == implAddress) {
                    selectorCount++;
                }
            }
            selectors_ = new bytes4[](selectorCount);
            uint256 selectorIndex = 0;
            for (uint256 j = 0; j < selectorsLength; j++) {
                if (selectorToImplAddress[selectors[j]] == implAddress) {
                    selectors_[selectorIndex] = selectors[j];
                    selectorIndex++;
                }
            }
            impls[implIndex] = Implementation(implAddress, selectors_);
            implIndex++;
        }
        return impls;
    }

    /**
     * @notice Return all the function selectors associated with an implementation address
     * @param _implAddress The implementation address to get the selectors for
     */
    function getSelectorsForImplAddress(
        address _implAddress
    ) external view returns (bytes4[] memory) {
        uint256 selectorCount = 0;
        uint256 selectorsLength = selectors.length;
        for (uint256 i = 0; i < selectorsLength; i++) {
            if (selectorToImplAddress[selectors[i]] == _implAddress) {
                selectorCount++;
            }
        }
        bytes4[] memory selectorArr = new bytes4[](selectorCount);
        uint256 selectorIndex = 0;
        for (uint256 i = 0; i < selectorsLength; i++) {
            if (selectorToImplAddress[selectors[i]] == _implAddress) {
                selectorArr[selectorIndex] = selectors[i];
                selectorIndex++;
            }
        }
        return selectorArr;
    }

    /**
     * @notice Sets the fallback implementation address to use when a function selector is not found
     * @param _fallbackAddress The fallback implementation address
     */
    function setFallbackImplAddress(
        address _fallbackAddress
    ) external onlyOwner {
        require(!relayFrozen, "RELAY_FROZEN");
        fallbackImplAddress = _fallbackAddress;
    }

    /**
     * @notice Updates the supported interfaces
     * @param _interfaceId The interface ID to update
     * @param _supported Whether the interface is supported or not
     */
    function updateSupportedInterfaces(
        bytes4 _interfaceId,
        bool _supported
    ) external onlyOwner {
        supportedInterfaces[_interfaceId] = _supported;
    }

    /**
     * @notice Returns whether the interface is supported or not
     * @param _interfaceId The interface ID to check
     */
    function supportsInterface(
        bytes4 _interfaceId
    ) external view returns (bool) {
        return supportedInterfaces[_interfaceId];
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

File 3 of 6 : 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 4 of 6 : IAddressRelay.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

struct Implementation {
    address implAddress;
    bytes4[] selectors;
}

interface IAddressRelay {
    /**
     * @notice Returns the fallback implementation address
     */
    function fallbackImplAddress() external returns (address);

    /**
     * @notice Adds or updates selectors and their implementation addresses
     * @param _selectors The selectors to add or update
     * @param _implAddress The implementation address the selectors will point to
     */
    function addOrUpdateSelectors(
        bytes4[] memory _selectors,
        address _implAddress
    ) external;

    /**
     * @notice Removes selectors
     * @param _selectors The selectors to remove
     */
    function removeSelectors(bytes4[] memory _selectors) external;

    /**
     * @notice Removes an implementation address and all the selectors that point to it
     * @param _implAddress The implementation address to remove
     */
    function removeImplAddressAndAllSelectors(address _implAddress) external;

    /**
     * @notice Returns the implementation address for a given function selector
     * @param _functionSelector The function selector to get the implementation address for
     */
    function getImplAddress(
        bytes4 _functionSelector
    ) external view returns (address implAddress_);

    /**
     * @notice Returns all the implementation addresses and the selectors they support
     * @return impls_ An array of Implementation structs
     */
    function getAllImplAddressesAndSelectors()
        external
        view
        returns (Implementation[] memory impls_);

    /**
     * @notice Return all the fucntion selectors associated with an implementation address
     * @param _implAddress The implementation address to get the selectors for
     */
    function getSelectorsForImplAddress(
        address _implAddress
    ) external view returns (bytes4[] memory selectors_);

    /**
     * @notice Sets the fallback implementation address to use when a function selector is not found
     * @param _fallbackAddress The fallback implementation address
     */
    function setFallbackImplAddress(address _fallbackAddress) external;

    /**
     * @notice Updates the supported interfaces
     * @param _interfaceId The interface ID to update
     * @param _supported Whether the interface is supported or not
     */
    function updateSupportedInterfaces(
        bytes4 _interfaceId,
        bool _supported
    ) external;

    /**
     * @notice Returns whether the interface is supported or not
     * @param _interfaceId The interface ID to check
     */
    function supportsInterface(
        bytes4 _interfaceId
    ) external view returns (bool);
}

File 5 of 6 : IERC165.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

interface IERC165 {
    /// @notice Query if a contract implements an interface
    /// @param interfaceId The interface identifier, as specified in ERC-165
    /// @dev Interface identification is specified in ERC-165. This function
    ///  uses less than 30,000 gas.
    /// @return `true` if the contract implements `interfaceID` and
    ///  `interfaceID` is not 0xffffffff, `false` otherwise
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 6 of 6 : IERC173.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

/// @title ERC-173 Contract Ownership Standard
///  Note: the ERC-165 identifier for this interface is 0x7f5828d0
/* is ERC165 */
interface IERC173 {
    /// @dev This emits when ownership of a contract changes.
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /// @notice Get the address of the owner
    /// @return owner_ The address of the owner.
    function owner() external view returns (address owner_);

    /// @notice Set the address of the new owner of the contract
    /// @dev Set _newOwner to address(0) to renounce any ownership.
    /// @param _newOwner The address of the new owner of the contract
    function transferOwnership(address _newOwner) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"bytes4[]","name":"_selectors","type":"bytes4[]"},{"internalType":"address","name":"_implAddress","type":"address"}],"name":"addOrUpdateSelectors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fallbackImplAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeRelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllImplAddressesAndSelectors","outputs":[{"components":[{"internalType":"address","name":"implAddress","type":"address"},{"internalType":"bytes4[]","name":"selectors","type":"bytes4[]"}],"internalType":"struct Implementation[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_functionSelector","type":"bytes4"}],"name":"getImplAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_functionSelector","type":"bytes4"}],"name":"getImplAddressNoFallback","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_implAddress","type":"address"}],"name":"getSelectorsForImplAddress","outputs":[{"internalType":"bytes4[]","name":"","type":"bytes4[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"relayFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_implAddress","type":"address"}],"name":"removeImplAddressAndAllSelectors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4[]","name":"_selectors","type":"bytes4[]"}],"name":"removeSelectors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"selectorToImplAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_fallbackAddress","type":"address"}],"name":"setFallbackImplAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"supportedInterfaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"},{"internalType":"bool","name":"_supported","type":"bool"}],"name":"updateSupportedInterfaces","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5061001a3361012e565b60026020527f71203db6a8b906f8e7c7701ea536708e3d7c6018d3ad50e5680c3241edacce178054600160ff1991821681179092557f78f52cb004db167c8f5d234094ad3cdb9f2eb775244b109350230eab2d3d350b80548216831790557fe93570590271d95518ca425fa83dfa75d04081fc79a4d9a58f39c8df65a8e7a180548216831790557fe7f4f15f8a9f2f6fc23737b039e4cbf51e96102d2c02d512a4356c0910a430f580548216831790557f5d063669f9b1c173848d23e3517fac39e0180ef9dc06c66ffdb87bfddd239c938054821683179055632b424ad760e21b6000527f07e71b91f21e90aaa1349afc7bbbbad733cad72a11691aeaf6a2bcb1c07eecfa8054909116909117905561017e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611aad8061018d6000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c8063836875f8116100b2578063c2c9581411610081578063e34a59e311610066578063e34a59e31461031a578063f2fde38b1461032d578063fc1e79591461034057600080fd5b8063c2c95814146102f4578063c9ce75f71461030757600080fd5b8063836875f8146102735780638c8ab2dd146102a95780638da5cb5b146102b1578063bffb3593146102cf57600080fd5b80632d06691411610109578063474e8dbb116100ee578063474e8dbb1461022b578063494807781461024b578063715018a61461026b57600080fd5b80632d066914146102055780632ecf0b701461021857600080fd5b806301ffc9a71461013b5780630a85121a146101955780631584ba38146101aa5780632ac5365f146101cd575b600080fd5b610180610149366004611676565b7fffffffff000000000000000000000000000000000000000000000000000000001660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a86101a3366004611698565b610355565b005b6101806101b8366004611676565b60026020526000908152604090205460ff1681565b6101e06101db366004611676565b6103bf565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161018c565b6101a86102133660046116f8565b610479565b6101a8610226366004611802565b61054d565b61023e6102393660046116f8565b6107d6565b60405161018c9190611850565b6005546101e09073ffffffffffffffffffffffffffffffffffffffff1681565b6101a8610a37565b6101e0610281366004611676565b60016020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6101a8610a4b565b60005473ffffffffffffffffffffffffffffffffffffffff166101e0565b6005546101809074010000000000000000000000000000000000000000900460ff1681565b6101e0610302366004611676565b610a94565b6101a86103153660046116f8565b610b79565b6101a86103283660046118b6565b610e49565b6101a861033b3660046116f8565b611047565b6103486110fe565b60405161018c91906118f3565b61035d61154b565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116600090815260026020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526001602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f46756e6374696f6e20646f6573206e6f7420657869737400000000000000000060448201526064015b60405180910390fd5b92915050565b61048161154b565b60055474010000000000000000000000000000000000000000900460ff1615610506576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f52454c41595f46524f5a454e0000000000000000000000000000000000000000604482015260640161046a565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61055561154b565b60055474010000000000000000000000000000000000000000900460ff16156105da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f52454c41595f46524f5a454e0000000000000000000000000000000000000000604482015260640161046a565b60005b82518110156106df5760008382815181106105fa576105fa6119e9565b6020908102919091018101517fffffffff00000000000000000000000000000000000000000000000000000000811660009081526001928390526040812080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff881617905560038054938401815590527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b6008830401805463ffffffff60079094166004026101000a938402191660e09290921c9290920217905550806106d781611a18565b9150506105dd565b506000805b60045481101561075a578273ffffffffffffffffffffffffffffffffffffffff1660048281548110610718576107186119e9565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1603610748576001915061075a565b8061075281611a18565b9150506106e4565b50806107d157600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84161790555b505050565b600354606090600090815b818110156108a4578473ffffffffffffffffffffffffffffffffffffffff166001600060038481548110610817576108176119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff1603610892578261088e81611a18565b9350505b8061089c81611a18565b9150506107e1565b5060008267ffffffffffffffff8111156108c0576108c0611713565b6040519080825280602002602001820160405280156108e9578160200160208202803683370190505b5090506000805b83811015610a2c578673ffffffffffffffffffffffffffffffffffffffff166001600060038481548110610926576109266119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff1603610a1a57600381815481106109a6576109a66119e9565b90600052602060002090600891828204019190066004029054906101000a900460e01b8383815181106109db576109db6119e9565b7fffffffff000000000000000000000000000000000000000000000000000000009092166020928302919091019091015281610a1681611a18565b9250505b80610a2481611a18565b9150506108f0565b509095945050505050565b610a3f61154b565b610a4960006115cc565b565b610a5361154b565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526001602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610afc575060055473ffffffffffffffffffffffffffffffffffffffff165b73ffffffffffffffffffffffffffffffffffffffff8116610473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f46756e6374696f6e20646f6573206e6f74206578697374000000000000000000604482015260640161046a565b610b8161154b565b60055474010000000000000000000000000000000000000000900460ff1615610c06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f52454c41595f46524f5a454e0000000000000000000000000000000000000000604482015260640161046a565b60005b600454811015610cbf578173ffffffffffffffffffffffffffffffffffffffff1660048281548110610c3d57610c3d6119e9565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1603610cad5760048181548110610c7757610c776119e9565b600091825260209091200180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610cbf565b80610cb781611a18565b915050610c09565b5060005b600354811015610e45578173ffffffffffffffffffffffffffffffffffffffff166001600060038481548110610cfb57610cfb6119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff1603610e33576001600060038381548110610d7f57610d7f6119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff00000000000000000000000000000000000000000000000000000000168352820192909252604001902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556003805482908110610e0a57610e0a6119e9565b90600052602060002090600891828204019190066004026101000a81549063ffffffff02191690555b80610e3d81611a18565b915050610cc3565b5050565b610e5161154b565b60055474010000000000000000000000000000000000000000900460ff1615610ed6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f52454c41595f46524f5a454e0000000000000000000000000000000000000000604482015260640161046a565b60005b8151811015610e45576000828281518110610ef657610ef66119e9565b6020908102919091018101517fffffffff000000000000000000000000000000000000000000000000000000008116600090815260019092526040822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016905591505b60035481101561103257817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191660038281548110610f9957610f996119e9565b90600052602060002090600891828204019190066004029054906101000a900460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916036110205760038181548110610ff357610ff36119e9565b90600052602060002090600891828204019190066004026101000a81549063ffffffff0219169055611032565b8061102a81611a18565b915050610f5c565b5050808061103f90611a18565b915050610ed9565b61104f61154b565b73ffffffffffffffffffffffffffffffffffffffff81166110f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161046a565b6110fb816115cc565b50565b600454606090600090815b8181101561118357600073ffffffffffffffffffffffffffffffffffffffff166004828154811061113c5761113c6119e9565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614611171578261116d81611a18565b9350505b8061117b81611a18565b915050611109565b5060008267ffffffffffffffff81111561119f5761119f611713565b6040519080825280602002602001820160405280156111e557816020015b6040805180820190915260008152606060208201528152602001906001900390816111bd5790505b5090506000805b8381101561154157600073ffffffffffffffffffffffffffffffffffffffff166004828154811061121f5761121f6119e9565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff161461152f5760006004828154811061125b5761125b6119e9565b600091825260208220015460035473ffffffffffffffffffffffffffffffffffffffff909116925060609190815b8181101561134c578473ffffffffffffffffffffffffffffffffffffffff1660016000600384815481106112bf576112bf6119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff160361133a578261133681611a18565b9350505b8061134481611a18565b915050611289565b508167ffffffffffffffff81111561136657611366611713565b60405190808252806020026020018201604052801561138f578160200160208202803683370190505b5092506000805b828110156114d2578573ffffffffffffffffffffffffffffffffffffffff1660016000600384815481106113cc576113cc6119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff16036114c0576003818154811061144c5761144c6119e9565b90600052602060002090600891828204019190066004029054906101000a900460e01b858381518110611481576114816119e9565b7fffffffff0000000000000000000000000000000000000000000000000000000090921660209283029190910190910152816114bc81611a18565b9250505b806114ca81611a18565b915050611396565b5060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff16815260200185815250888881518110611510576115106119e9565b6020026020010181905250868061152690611a18565b97505050505050505b8061153981611a18565b9150506111ec565b5090949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161046a565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461167157600080fd5b919050565b60006020828403121561168857600080fd5b61169182611641565b9392505050565b600080604083850312156116ab57600080fd5b6116b483611641565b9150602083013580151581146116c957600080fd5b809150509250929050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461167157600080fd5b60006020828403121561170a57600080fd5b611691826116d4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261175357600080fd5b8135602067ffffffffffffffff8083111561177057611770611713565b8260051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811084821117156117b3576117b3611713565b6040529384528581018301938381019250878511156117d157600080fd5b83870191505b848210156117f7576117e882611641565b835291830191908301906117d7565b979650505050505050565b6000806040838503121561181557600080fd5b823567ffffffffffffffff81111561182c57600080fd5b61183885828601611742565b925050611847602084016116d4565b90509250929050565b6020808252825182820181905260009190848201906040850190845b818110156118aa5783517fffffffff00000000000000000000000000000000000000000000000000000000168352928401929184019160010161186c565b50909695505050505050565b6000602082840312156118c857600080fd5b813567ffffffffffffffff8111156118df57600080fd5b6118eb84828501611742565b949350505050565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b848110156119da578984037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00186528251805173ffffffffffffffffffffffffffffffffffffffff168552880151888501889052805188860181905290890190839060608701905b808310156119c55783517fffffffff00000000000000000000000000000000000000000000000000000000168252928b019260019290920191908b0190611983565b50978a0197955050509187019160010161191b565b50919998505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a70577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b506001019056fea2646970667358221220bf8104a8a3f977dfa18b2c053d7d0a6b6908b2285af5bf9deeb634d2c37a3eec64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101365760003560e01c8063836875f8116100b2578063c2c9581411610081578063e34a59e311610066578063e34a59e31461031a578063f2fde38b1461032d578063fc1e79591461034057600080fd5b8063c2c95814146102f4578063c9ce75f71461030757600080fd5b8063836875f8146102735780638c8ab2dd146102a95780638da5cb5b146102b1578063bffb3593146102cf57600080fd5b80632d06691411610109578063474e8dbb116100ee578063474e8dbb1461022b578063494807781461024b578063715018a61461026b57600080fd5b80632d066914146102055780632ecf0b701461021857600080fd5b806301ffc9a71461013b5780630a85121a146101955780631584ba38146101aa5780632ac5365f146101cd575b600080fd5b610180610149366004611676565b7fffffffff000000000000000000000000000000000000000000000000000000001660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a86101a3366004611698565b610355565b005b6101806101b8366004611676565b60026020526000908152604090205460ff1681565b6101e06101db366004611676565b6103bf565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161018c565b6101a86102133660046116f8565b610479565b6101a8610226366004611802565b61054d565b61023e6102393660046116f8565b6107d6565b60405161018c9190611850565b6005546101e09073ffffffffffffffffffffffffffffffffffffffff1681565b6101a8610a37565b6101e0610281366004611676565b60016020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6101a8610a4b565b60005473ffffffffffffffffffffffffffffffffffffffff166101e0565b6005546101809074010000000000000000000000000000000000000000900460ff1681565b6101e0610302366004611676565b610a94565b6101a86103153660046116f8565b610b79565b6101a86103283660046118b6565b610e49565b6101a861033b3660046116f8565b611047565b6103486110fe565b60405161018c91906118f3565b61035d61154b565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116600090815260026020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526001602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f46756e6374696f6e20646f6573206e6f7420657869737400000000000000000060448201526064015b60405180910390fd5b92915050565b61048161154b565b60055474010000000000000000000000000000000000000000900460ff1615610506576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f52454c41595f46524f5a454e0000000000000000000000000000000000000000604482015260640161046a565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61055561154b565b60055474010000000000000000000000000000000000000000900460ff16156105da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f52454c41595f46524f5a454e0000000000000000000000000000000000000000604482015260640161046a565b60005b82518110156106df5760008382815181106105fa576105fa6119e9565b6020908102919091018101517fffffffff00000000000000000000000000000000000000000000000000000000811660009081526001928390526040812080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff881617905560038054938401815590527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b6008830401805463ffffffff60079094166004026101000a938402191660e09290921c9290920217905550806106d781611a18565b9150506105dd565b506000805b60045481101561075a578273ffffffffffffffffffffffffffffffffffffffff1660048281548110610718576107186119e9565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1603610748576001915061075a565b8061075281611a18565b9150506106e4565b50806107d157600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84161790555b505050565b600354606090600090815b818110156108a4578473ffffffffffffffffffffffffffffffffffffffff166001600060038481548110610817576108176119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff1603610892578261088e81611a18565b9350505b8061089c81611a18565b9150506107e1565b5060008267ffffffffffffffff8111156108c0576108c0611713565b6040519080825280602002602001820160405280156108e9578160200160208202803683370190505b5090506000805b83811015610a2c578673ffffffffffffffffffffffffffffffffffffffff166001600060038481548110610926576109266119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff1603610a1a57600381815481106109a6576109a66119e9565b90600052602060002090600891828204019190066004029054906101000a900460e01b8383815181106109db576109db6119e9565b7fffffffff000000000000000000000000000000000000000000000000000000009092166020928302919091019091015281610a1681611a18565b9250505b80610a2481611a18565b9150506108f0565b509095945050505050565b610a3f61154b565b610a4960006115cc565b565b610a5361154b565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526001602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610afc575060055473ffffffffffffffffffffffffffffffffffffffff165b73ffffffffffffffffffffffffffffffffffffffff8116610473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f46756e6374696f6e20646f6573206e6f74206578697374000000000000000000604482015260640161046a565b610b8161154b565b60055474010000000000000000000000000000000000000000900460ff1615610c06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f52454c41595f46524f5a454e0000000000000000000000000000000000000000604482015260640161046a565b60005b600454811015610cbf578173ffffffffffffffffffffffffffffffffffffffff1660048281548110610c3d57610c3d6119e9565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1603610cad5760048181548110610c7757610c776119e9565b600091825260209091200180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610cbf565b80610cb781611a18565b915050610c09565b5060005b600354811015610e45578173ffffffffffffffffffffffffffffffffffffffff166001600060038481548110610cfb57610cfb6119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff1603610e33576001600060038381548110610d7f57610d7f6119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff00000000000000000000000000000000000000000000000000000000168352820192909252604001902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556003805482908110610e0a57610e0a6119e9565b90600052602060002090600891828204019190066004026101000a81549063ffffffff02191690555b80610e3d81611a18565b915050610cc3565b5050565b610e5161154b565b60055474010000000000000000000000000000000000000000900460ff1615610ed6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f52454c41595f46524f5a454e0000000000000000000000000000000000000000604482015260640161046a565b60005b8151811015610e45576000828281518110610ef657610ef66119e9565b6020908102919091018101517fffffffff000000000000000000000000000000000000000000000000000000008116600090815260019092526040822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016905591505b60035481101561103257817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191660038281548110610f9957610f996119e9565b90600052602060002090600891828204019190066004029054906101000a900460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916036110205760038181548110610ff357610ff36119e9565b90600052602060002090600891828204019190066004026101000a81549063ffffffff0219169055611032565b8061102a81611a18565b915050610f5c565b5050808061103f90611a18565b915050610ed9565b61104f61154b565b73ffffffffffffffffffffffffffffffffffffffff81166110f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161046a565b6110fb816115cc565b50565b600454606090600090815b8181101561118357600073ffffffffffffffffffffffffffffffffffffffff166004828154811061113c5761113c6119e9565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614611171578261116d81611a18565b9350505b8061117b81611a18565b915050611109565b5060008267ffffffffffffffff81111561119f5761119f611713565b6040519080825280602002602001820160405280156111e557816020015b6040805180820190915260008152606060208201528152602001906001900390816111bd5790505b5090506000805b8381101561154157600073ffffffffffffffffffffffffffffffffffffffff166004828154811061121f5761121f6119e9565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff161461152f5760006004828154811061125b5761125b6119e9565b600091825260208220015460035473ffffffffffffffffffffffffffffffffffffffff909116925060609190815b8181101561134c578473ffffffffffffffffffffffffffffffffffffffff1660016000600384815481106112bf576112bf6119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff160361133a578261133681611a18565b9350505b8061134481611a18565b915050611289565b508167ffffffffffffffff81111561136657611366611713565b60405190808252806020026020018201604052801561138f578160200160208202803683370190505b5092506000805b828110156114d2578573ffffffffffffffffffffffffffffffffffffffff1660016000600384815481106113cc576113cc6119e9565b6000918252602080832060088304015460079092166004026101000a90910460e01b7fffffffff0000000000000000000000000000000000000000000000000000000016835282019290925260400190205473ffffffffffffffffffffffffffffffffffffffff16036114c0576003818154811061144c5761144c6119e9565b90600052602060002090600891828204019190066004029054906101000a900460e01b858381518110611481576114816119e9565b7fffffffff0000000000000000000000000000000000000000000000000000000090921660209283029190910190910152816114bc81611a18565b9250505b806114ca81611a18565b915050611396565b5060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff16815260200185815250888881518110611510576115106119e9565b6020026020010181905250868061152690611a18565b97505050505050505b8061153981611a18565b9150506111ec565b5090949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161046a565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461167157600080fd5b919050565b60006020828403121561168857600080fd5b61169182611641565b9392505050565b600080604083850312156116ab57600080fd5b6116b483611641565b9150602083013580151581146116c957600080fd5b809150509250929050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461167157600080fd5b60006020828403121561170a57600080fd5b611691826116d4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261175357600080fd5b8135602067ffffffffffffffff8083111561177057611770611713565b8260051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811084821117156117b3576117b3611713565b6040529384528581018301938381019250878511156117d157600080fd5b83870191505b848210156117f7576117e882611641565b835291830191908301906117d7565b979650505050505050565b6000806040838503121561181557600080fd5b823567ffffffffffffffff81111561182c57600080fd5b61183885828601611742565b925050611847602084016116d4565b90509250929050565b6020808252825182820181905260009190848201906040850190845b818110156118aa5783517fffffffff00000000000000000000000000000000000000000000000000000000168352928401929184019160010161186c565b50909695505050505050565b6000602082840312156118c857600080fd5b813567ffffffffffffffff8111156118df57600080fd5b6118eb84828501611742565b949350505050565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b848110156119da578984037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00186528251805173ffffffffffffffffffffffffffffffffffffffff168552880151888501889052805188860181905290890190839060608701905b808310156119c55783517fffffffff00000000000000000000000000000000000000000000000000000000168252928b019260019290920191908b0190611983565b50978a0197955050509187019160010161191b565b50919998505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a70577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b506001019056fea2646970667358221220bf8104a8a3f977dfa18b2c053d7d0a6b6908b2285af5bf9deeb634d2c37a3eec64736f6c63430008120033

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.