ETH Price: $1,624.88 (-1.39%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer161330302022-12-07 13:09:47860 days ago1670418587IN
0xf61cACbD...b276B0266
0 ETH0.0010352917.55092255
Transfer150716592022-07-03 20:09:161016 days ago1656878956IN
0xf61cACbD...b276B0266
0 ETH0.0022293341.14078235
Transfer139125992021-12-31 10:26:221201 days ago1640946382IN
0xf61cACbD...b276B0266
0 ETH0.0036084866.5772258
Transfer139125592021-12-31 10:20:001201 days ago1640946000IN
0xf61cACbD...b276B0266
0 ETH0.0038271591.36626743
Transfer139125572021-12-31 10:19:011201 days ago1640945941IN
0xf61cACbD...b276B0266
0 ETH0.0035746185.33738586
Transfer139124642021-12-31 9:57:141201 days ago1640944634IN
0xf61cACbD...b276B0266
0 ETH0.00426349101.78310576
Transfer139123812021-12-31 9:37:461201 days ago1640943466IN
0xf61cACbD...b276B0266
0 ETH0.0061335104
Transfer138948782021-12-28 16:43:591204 days ago1640709839IN
0xf61cACbD...b276B0266
0 ETH0.0045426383.83099319
Transfer137875952021-12-12 2:16:411220 days ago1639275401IN
0xf61cACbD...b276B0266
0 ETH0.0029494954.43080123
Transfer137854422021-12-11 18:22:561220 days ago1639246976IN
0xf61cACbD...b276B0266
0 ETH0.0047014379.70147093
Transfer135237402021-10-31 8:28:071262 days ago1635668887IN
0xf61cACbD...b276B0266
0 ETH0.00846059143.42915974
Transfer134837642021-10-25 2:01:031268 days ago1635127263IN
0xf61cACbD...b276B0266
0 ETH0.00701426118.91
Transfer134832072021-10-24 23:49:431268 days ago1635119383IN
0xf61cACbD...b276B0266
0 ETH0.0042281678.02766833
Approve134830602021-10-24 23:15:591268 days ago1635117359IN
0xf61cACbD...b276B0266
0 ETH0.0033044461.36268724
Transfer134830122021-10-24 23:07:291268 days ago1635116849IN
0xf61cACbD...b276B0266
0 ETH0.005384591.3
Transfer134611832021-10-21 13:06:071272 days ago1634821567IN
0xf61cACbD...b276B0266
0 ETH0.0049722791.75963799
Transfer134611322021-10-21 12:54:381272 days ago1634820878IN
0xf61cACbD...b276B0266
0 ETH0.005384591.3
Transfer134139692021-10-14 3:31:161279 days ago1634182276IN
0xf61cACbD...b276B0266
0 ETH0.00650701110.31075011
Transfer132249462021-09-14 16:37:071309 days ago1631637427IN
0xf61cACbD...b276B0266
0 ETH0.01003170
Transfer132249452021-09-14 16:36:531309 days ago1631637413IN
0xf61cACbD...b276B0266
0 ETH0.00684096163.31571987
Transfer132070982021-09-11 22:16:261311 days ago1631398586IN
0xf61cACbD...b276B0266
0 ETH0.0035204459.68072232
Transfer131806002021-09-07 19:44:171315 days ago1631043857IN
0xf61cACbD...b276B0266
0 ETH0.00916581218.88
Transfer131797102021-09-07 16:25:521316 days ago1631031952IN
0xf61cACbD...b276B0266
0 ETH0.01316647223.25143259
Transfer130393372021-08-16 23:51:061337 days ago1629157866IN
0xf61cACbD...b276B0266
0 ETH0.0023005339
Transfer130250312021-08-14 19:00:491339 days ago1628967649IN
0xf61cACbD...b276B0266
0 ETH0.0025477147.01630171
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UpgradeabilityProxy

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 3 : UpgradeabilityProxy.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.0;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
contract UpgradeabilityProxy {

    using SafeMath for uint;

    bytes32 private constant proxyOwnerPosition = keccak256("proxy.owner");
    bytes32 private constant newProxyOwnerPosition = keccak256("proxy.newOwner");
    bytes32 private constant implementationPosition = keccak256("proxy.implementation");
    bytes32 private constant newImplementationPosition = keccak256("proxy.newImplementation");
    bytes32 private constant timelockPosition = keccak256("proxy.timelock");
    uint public constant timelockPeriod = 21600; // 6 hours

    constructor (address _proxyOwner, address implementation_, bytes memory initializationData, bool forceCall) {
        _setProxyOwner(_proxyOwner);
        _setImplementation(implementation_);
        if (initializationData.length > 0 || forceCall) {
            Address.functionDelegateCall(_implementation(), initializationData);
        }
    }


    modifier ifProxyOwner() {
        if (msg.sender == _proxyOwner()) {
            _;
        } else {
            _delegate(_implementation());
        }
    }

    function _proxyOwner() internal view returns (address proxyOwner_) {
        bytes32 position = proxyOwnerPosition;
        assembly {
            proxyOwner_ := sload(position)
        }
    }

    function proxyOwner() public ifProxyOwner returns (address proxyOwner_) {
        return _proxyOwner();
    }

    function newProxyOwner() public ifProxyOwner returns (address _newProxyOwner) {
        bytes32 position = newProxyOwnerPosition;
        assembly {
            _newProxyOwner := sload(position)
        }
    }

    function _setProxyOwner(address _newProxyOwner) private {
        bytes32 position = proxyOwnerPosition;
        assembly {
            sstore(position, _newProxyOwner)
        }
    }

    function setNewProxyOwner(address _newProxyOwner) public ifProxyOwner {
        /* require(msg.sender == proxyOwner(), "UpgradeabilityProxy: only current proxy owner can set new proxy owner."); */
        bytes32 position = newProxyOwnerPosition; 
        assembly {
            sstore(position, _newProxyOwner)
        }
    }

    function transferProxyOwnership() public {
        address _newProxyOwner = newProxyOwner();
        if (msg.sender == _newProxyOwner) {
            _setProxyOwner(_newProxyOwner);
        } else {
            _delegate(_implementation());
        }
    }

    function _implementation() private view returns (address implementation_) {
        bytes32 position = implementationPosition;
        assembly {
            implementation_ := sload(position)
        }
    }
    

    function implementation() public ifProxyOwner returns (address implementation_) {
        return _implementation();
    }

    function newImplementation() public ifProxyOwner returns (address _newImplementation) {
        bytes32 position = newImplementationPosition;
        assembly {
            _newImplementation := sload(position)
        }
    } 

    function timelock() public ifProxyOwner returns (uint _timelock) {
        bytes32 position = timelockPosition;
        assembly {
            _timelock := sload(position)
        }
    }

    function _setTimelock(uint newTimelock) private {
        bytes32 position = timelockPosition;
        assembly {
            sstore(position, newTimelock)
        }
    }

    function _setImplementation(address _newImplementation) private {
        bytes32 position = implementationPosition;
        assembly {
            sstore(position, _newImplementation)
        }
    }


    function setNewImplementation(address _newImplementation) public ifProxyOwner {
        /* require(msg.sender == proxyOwner(), "UpgradeabilityProxy: only current proxy owner can set new implementation."); */
        bytes32 position = newImplementationPosition; 
        assembly {
            sstore(position, _newImplementation)
        }
        uint newTimelock = block.timestamp.add(timelockPeriod);
        _setTimelock(newTimelock);
    }

    function transferImplementation() public ifProxyOwner {
        /* require(msg.sender == proxyOwner(), "UpgradeabilityProxy: only proxy owner can transfer implementation."); */
        require(block.timestamp >= timelock(), "UpgradeabilityProxy: cannot transfer implementation yet.");
        _setImplementation(newImplementation());
    }

    function _delegate(address _implementation) internal virtual {
        assembly {
            calldatacopy(0, 0, calldatasize())


            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()) }
        }
    }


    fallback () external payable virtual {
        _delegate(implementation());
    }


    receive () external payable virtual {
        _delegate(implementation());
    }
}

File 2 of 3 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 3 of 3 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_proxyOwner","type":"address"},{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bytes","name":"initializationData","type":"bytes"},{"internalType":"bool","name":"forceCall","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"newImplementation","outputs":[{"internalType":"address","name":"_newImplementation","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"newProxyOwner","outputs":[{"internalType":"address","name":"_newProxyOwner","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxyOwner","outputs":[{"internalType":"address","name":"proxyOwner_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newImplementation","type":"address"}],"name":"setNewImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newProxyOwner","type":"address"}],"name":"setNewProxyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"uint256","name":"_timelock","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"timelockPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferProxyOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620010b8380380620010b8833981810160405260808110156200003757600080fd5b810190808051906020019092919080519060200190929190805160405193929190846401000000008211156200006c57600080fd5b838201915060208201858111156200008357600080fd5b8251866001820283011164010000000082111715620000a157600080fd5b8083526020830192505050908051906020019080838360005b83811015620000d7578082015181840152602081019050620000ba565b50505050905090810190601f168015620001055780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291905050506200012a846200018160201b60201c565b6200013b83620001ad60201b60201c565b600082511180620001495750805b1562000177576200017562000163620001d960201b60201c565b836200020760201b620007961760201c565b505b5050505062000467565b60007f58a6b8f109ed5c70ad37140473420d0209511d3629dc7480eab94a450067bd5f90508181555050565b60007f24ed44ee9374370fd3aa7c8b1abf58827504c20f65246b17d2b9e7e1aef7784790508181555050565b6000807f24ed44ee9374370fd3aa7c8b1abf58827504c20f65246b17d2b9e7e1aef778479050805491505090565b60606200023583836040518060600160405280602781526020016200106b602791396200023d60201b60201c565b905092915050565b606062000250846200038260201b60201c565b620002a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180620010926026913960400191505060405180910390fd5b600060608573ffffffffffffffffffffffffffffffffffffffff16856040518082805190602001908083835b60208310620002f85780518252602082019150602081019050602083039250620002d3565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146200035a576040519150601f19603f3d011682016040523d82523d6000602084013e6200035f565b606091505b5091509150620003778282866200039560201b60201c565b925050509392505050565b600080823b905060008111915050919050565b60608315620003a75782905062000460565b600083511115620003bb5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200042457808201518184015260208101905062000407565b50505050905090810190601f168015620004525780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b610bf480620004776000396000f3fe6080604052600436106100955760003560e01c806381ac16591161005957806381ac1659146101d357806387b27951146102145780638b677b031461022b578063adb3ce921461026c578063d33219b4146102bd576100ac565b8063025313a2146100be57806310776181146100ff5780632ecaf675146101505780632fa8ad531461017b5780635c60da1b14610192576100ac565b366100ac576100aa6100a56102e8565b610348565b005b6100bc6100b76102e8565b610348565b005b3480156100ca57600080fd5b506100d361036e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561010b57600080fd5b5061014e6004803603602081101561012257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506103ce565b005b34801561015c57600080fd5b5061016561044b565b6040518082815260200191505060405180910390f35b34801561018757600080fd5b50610190610451565b005b34801561019e57600080fd5b506101a76102e8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156101df57600080fd5b506101e86104b3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561022057600080fd5b50610229610533565b005b34801561023757600080fd5b506102406105f6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561027857600080fd5b506102bb6004803603602081101561028f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610676565b005b3480156102c957600080fd5b506102d2610716565b6040518082815260200191505060405180910390f35b60006102f26107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156103345761032d6107f1565b9050610345565b61034461033f6107f1565b610348565b5b90565b3660008037600080366000845af43d6000803e8060008114610369573d6000f35b3d6000fd5b60006103786107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156103ba576103b36107c3565b90506103cb565b6103ca6103c56107f1565b610348565b5b90565b6103d66107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156104375760007f089a30daf7a7609a193f76c173c735bdd3fb300b4d9b7c61ea0c4395e0b20cf6905081815550610448565b6104476104426107f1565b610348565b5b50565b61546081565b600061045b6104b3565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561049f5761049a8161081f565b6104b0565b6104af6104aa6107f1565b610348565b5b50565b60006104bd6107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561051f5760007f089a30daf7a7609a193f76c173c735bdd3fb300b4d9b7c61ea0c4395e0b20cf690508054915050610530565b61052f61052a6107f1565b610348565b5b90565b61053b6107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156105e357610576610716565b4210156105ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180610b876038913960400191505060405180910390fd5b6105de6105d96105f6565b61084b565b6105f4565b6105f36105ee6107f1565b610348565b5b565b60006106006107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156106625760007f762ff5225469654ad30beda02ad3106fbdd38c4bff827c9426bf649d95ed7e1d90508054915050610673565b61067261066d6107f1565b610348565b5b90565b61067e6107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156107025760007f762ff5225469654ad30beda02ad3106fbdd38c4bff827c9426bf649d95ed7e1d905081815560006106f06154604261087790919063ffffffff16565b90506106fb816108ff565b5050610713565b61071261070d6107f1565b610348565b5b50565b60006107206107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156107825760007fbc70700c0bb41e729f3b16a22511bc61a02ceaa6d1f98256bf8f5df4fa51e7a990508054915050610793565b61079261078d6107f1565b610348565b5b90565b60606107bb8383604051806060016040528060278152602001610b3a6027913961092b565b905092915050565b6000807f58a6b8f109ed5c70ad37140473420d0209511d3629dc7480eab94a450067bd5f9050805491505090565b6000807f24ed44ee9374370fd3aa7c8b1abf58827504c20f65246b17d2b9e7e1aef778479050805491505090565b60007f58a6b8f109ed5c70ad37140473420d0209511d3629dc7480eab94a450067bd5f90508181555050565b60007f24ed44ee9374370fd3aa7c8b1abf58827504c20f65246b17d2b9e7e1aef7784790508181555050565b6000808284019050838110156108f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60007fbc70700c0bb41e729f3b16a22511bc61a02ceaa6d1f98256bf8f5df4fa51e7a990508181555050565b606061093684610a5a565b61098b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180610b616026913960400191505060405180910390fd5b600060608573ffffffffffffffffffffffffffffffffffffffff16856040518082805190602001908083835b602083106109da57805182526020820191506020810190506020830392506109b7565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114610a3a576040519150601f19603f3d011682016040523d82523d6000602084013e610a3f565b606091505b5091509150610a4f828286610a6d565b925050509392505050565b600080823b905060008111915050919050565b60608315610a7d57829050610b32565b600083511115610a905782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610af7578082015181840152602081019050610adc565b50505050905090810190601f168015610b245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374557067726164656162696c69747950726f78793a2063616e6e6f74207472616e7366657220696d706c656d656e746174696f6e207965742ea26469706673582212202088700844ba516ea0487dff68f5653b6548aefd467c4009c98b8ba17b4224f664736f6c63430007000033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e74726163740000000000000000000000007d1f52763346ff33901bbbe7c9890cbabf6d5faa0000000000000000000000000bdbaa34b6f7e43ae886f0c9cc8762e2fbf484110000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001048f15b414000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007d1f52763346ff33901bbbe7c9890cbabf6d5faa000000000000000000000000bdfab17f225d5e73d6102b3303b0aa2421bdac20000000000000000000000000000000000000000000000000000000000000000b77726170706564204144410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004774144410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100955760003560e01c806381ac16591161005957806381ac1659146101d357806387b27951146102145780638b677b031461022b578063adb3ce921461026c578063d33219b4146102bd576100ac565b8063025313a2146100be57806310776181146100ff5780632ecaf675146101505780632fa8ad531461017b5780635c60da1b14610192576100ac565b366100ac576100aa6100a56102e8565b610348565b005b6100bc6100b76102e8565b610348565b005b3480156100ca57600080fd5b506100d361036e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561010b57600080fd5b5061014e6004803603602081101561012257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506103ce565b005b34801561015c57600080fd5b5061016561044b565b6040518082815260200191505060405180910390f35b34801561018757600080fd5b50610190610451565b005b34801561019e57600080fd5b506101a76102e8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156101df57600080fd5b506101e86104b3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561022057600080fd5b50610229610533565b005b34801561023757600080fd5b506102406105f6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561027857600080fd5b506102bb6004803603602081101561028f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610676565b005b3480156102c957600080fd5b506102d2610716565b6040518082815260200191505060405180910390f35b60006102f26107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156103345761032d6107f1565b9050610345565b61034461033f6107f1565b610348565b5b90565b3660008037600080366000845af43d6000803e8060008114610369573d6000f35b3d6000fd5b60006103786107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156103ba576103b36107c3565b90506103cb565b6103ca6103c56107f1565b610348565b5b90565b6103d66107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156104375760007f089a30daf7a7609a193f76c173c735bdd3fb300b4d9b7c61ea0c4395e0b20cf6905081815550610448565b6104476104426107f1565b610348565b5b50565b61546081565b600061045b6104b3565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561049f5761049a8161081f565b6104b0565b6104af6104aa6107f1565b610348565b5b50565b60006104bd6107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561051f5760007f089a30daf7a7609a193f76c173c735bdd3fb300b4d9b7c61ea0c4395e0b20cf690508054915050610530565b61052f61052a6107f1565b610348565b5b90565b61053b6107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156105e357610576610716565b4210156105ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180610b876038913960400191505060405180910390fd5b6105de6105d96105f6565b61084b565b6105f4565b6105f36105ee6107f1565b610348565b5b565b60006106006107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156106625760007f762ff5225469654ad30beda02ad3106fbdd38c4bff827c9426bf649d95ed7e1d90508054915050610673565b61067261066d6107f1565b610348565b5b90565b61067e6107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156107025760007f762ff5225469654ad30beda02ad3106fbdd38c4bff827c9426bf649d95ed7e1d905081815560006106f06154604261087790919063ffffffff16565b90506106fb816108ff565b5050610713565b61071261070d6107f1565b610348565b5b50565b60006107206107c3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156107825760007fbc70700c0bb41e729f3b16a22511bc61a02ceaa6d1f98256bf8f5df4fa51e7a990508054915050610793565b61079261078d6107f1565b610348565b5b90565b60606107bb8383604051806060016040528060278152602001610b3a6027913961092b565b905092915050565b6000807f58a6b8f109ed5c70ad37140473420d0209511d3629dc7480eab94a450067bd5f9050805491505090565b6000807f24ed44ee9374370fd3aa7c8b1abf58827504c20f65246b17d2b9e7e1aef778479050805491505090565b60007f58a6b8f109ed5c70ad37140473420d0209511d3629dc7480eab94a450067bd5f90508181555050565b60007f24ed44ee9374370fd3aa7c8b1abf58827504c20f65246b17d2b9e7e1aef7784790508181555050565b6000808284019050838110156108f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60007fbc70700c0bb41e729f3b16a22511bc61a02ceaa6d1f98256bf8f5df4fa51e7a990508181555050565b606061093684610a5a565b61098b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180610b616026913960400191505060405180910390fd5b600060608573ffffffffffffffffffffffffffffffffffffffff16856040518082805190602001908083835b602083106109da57805182526020820191506020810190506020830392506109b7565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114610a3a576040519150601f19603f3d011682016040523d82523d6000602084013e610a3f565b606091505b5091509150610a4f828286610a6d565b925050509392505050565b600080823b905060008111915050919050565b60608315610a7d57829050610b32565b600083511115610a905782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610af7578082015181840152602081019050610adc565b50505050905090810190601f168015610b245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374557067726164656162696c69747950726f78793a2063616e6e6f74207472616e7366657220696d706c656d656e746174696f6e207965742ea26469706673582212202088700844ba516ea0487dff68f5653b6548aefd467c4009c98b8ba17b4224f664736f6c63430007000033

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

0000000000000000000000007d1f52763346ff33901bbbe7c9890cbabf6d5faa0000000000000000000000000bdbaa34b6f7e43ae886f0c9cc8762e2fbf484110000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001048f15b414000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007d1f52763346ff33901bbbe7c9890cbabf6d5faa000000000000000000000000bdfab17f225d5e73d6102b3303b0aa2421bdac20000000000000000000000000000000000000000000000000000000000000000b77726170706564204144410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004774144410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _proxyOwner (address): 0x7D1F52763346Ff33901bBBE7c9890CbAbf6D5FaA
Arg [1] : implementation_ (address): 0x0bdbAa34b6f7E43ae886f0C9Cc8762e2fbF48411
Arg [2] : initializationData (bytes): 0x8f15b414000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007d1f52763346ff33901bbbe7c9890cbabf6d5faa000000000000000000000000bdfab17f225d5e73d6102b3303b0aa2421bdac20000000000000000000000000000000000000000000000000000000000000000b777261707065642041444100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047741444100000000000000000000000000000000000000000000000000000000
Arg [3] : forceCall (bool): True

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000007d1f52763346ff33901bbbe7c9890cbabf6d5faa
Arg [1] : 0000000000000000000000000bdbaa34b6f7e43ae886f0c9cc8762e2fbf48411
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000104
Arg [5] : 8f15b41400000000000000000000000000000000000000000000000000000000
Arg [6] : 0000008000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000c00000000000000000000000007d1f52763346ff33901bbbe7c9890cba
Arg [8] : bf6d5faa000000000000000000000000bdfab17f225d5e73d6102b3303b0aa24
Arg [9] : 21bdac2000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000b77726170706564204144410000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000477414441000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000


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
Loading...
Loading
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.