ETH Price: $3,473.45 (+1.60%)
Gas: 11 Gwei

Token

Star2 (STAR2)
 

Overview

Max Total Supply

2,311,419.630180447346698878 STAR2

Holders

855

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
975.209664351851851851 STAR2

Value
$0.00
0xbb0173c0e8d5919e0a6a4066a1c506b16748e2d1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
STARProxy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-07-21
*/

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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


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

pragma solidity ^0.8.0;

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

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

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

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

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

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


pragma solidity ^0.8.0;

contract STARProxy is Ownable, Proxy {
    bytes32 internal _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    constructor( address implementation ){
        assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
        setImplementation( implementation );
    }

    function setImplementation( address implementation ) public onlyOwner {
        StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = implementation;
        Address.functionDelegateCall(
            implementation,
            abi.encodeWithSignature("initialize()")
        );
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"setImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60015534801561003457600080fd5b5060405161098938038061098983398101604081905261005391610312565b61005c336100a6565b61008760017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd61033b565b6001541461009757610097610360565b6100a0816100f6565b506103f5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031633146101555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8061016b6001546101cc60201b6102511760201c565b80546001600160a01b03929092166001600160a01b0319909216919091179055604080516004815260248101909152602080820180516001600160e01b031663204a7f0760e21b1790526101c89183916102546101cf821b17901c565b5050565b90565b60606101f48383604051806060016040528060278152602001610962602791396101fb565b9392505050565b60606001600160a01b0384163b6102635760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161014c565b600080856001600160a01b03168560405161027e91906103a6565b600060405180830381855af49150503d80600081146102b9576040519150601f19603f3d011682016040523d82523d6000602084013e6102be565b606091505b5090925090506102cf8282866102d9565b9695505050505050565b606083156102e85750816101f4565b8251156102f85782518084602001fd5b8160405162461bcd60e51b815260040161014c91906103c2565b60006020828403121561032457600080fd5b81516001600160a01b03811681146101f457600080fd5b60008282101561035b57634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052600160045260246000fd5b60005b83811015610391578181015183820152602001610379565b838111156103a0576000848401525b50505050565b600082516103b8818460208701610376565b9190910192915050565b60208152600082518060208401526103e1816040850160208701610376565b601f01601f19169190910160400192915050565b61055e806104046000396000f3fe6080604052600436106100435760003560e01c8063715018a61461005a5780638da5cb5b1461006f578063d784d4261461009b578063f2fde38b146100bb57610052565b36610052576100506100db565b005b6100506100db565b34801561006657600080fd5b506100506100ed565b34801561007b57600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b3480156100a757600080fd5b506100506100b6366004610424565b61012a565b3480156100c757600080fd5b506100506100d6366004610424565b6101b6565b6100eb6100e6610280565b61029a565b565b6000546001600160a01b031633146101205760405162461bcd60e51b81526004016101179061044d565b60405180910390fd5b6100eb60006102be565b6000546001600160a01b031633146101545760405162461bcd60e51b81526004016101179061044d565b8061015e60015490565b80546001600160a01b03929092166001600160a01b03199092169190911790556040805160048152602481019091526020810180516001600160e01b031663204a7f0760e21b1790526101b2908290610254565b5050565b6000546001600160a01b031633146101e05760405162461bcd60e51b81526004016101179061044d565b6001600160a01b0381166102455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610117565b61024e816102be565b50565b90565b606061027983836040518060600160405280602781526020016105026027913961030e565b9392505050565b600061028b60015490565b546001600160a01b0316919050565b3660008037600080366000845af43d6000803e8080156102b9573d6000f35b3d6000fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60606001600160a01b0384163b6103765760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610117565b600080856001600160a01b03168560405161039191906104b2565b600060405180830381855af49150503d80600081146103cc576040519150601f19603f3d011682016040523d82523d6000602084013e6103d1565b606091505b50915091506103e18282866103eb565b9695505050505050565b606083156103fa575081610279565b82511561040a5782518084602001fd5b8160405162461bcd60e51b815260040161011791906104ce565b60006020828403121561043657600080fd5b81356001600160a01b038116811461027957600080fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60005b8381101561049d578181015183820152602001610485565b838111156104ac576000848401525b50505050565b600082516104c4818460208701610482565b9190910192915050565b60208152600082518060208401526104ed816040850160208701610482565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122009d54127fff01debfdcb6d5b8d58ff16e6a80a0db9512c3109e77e5fada35c8c64736f6c63430008090033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564000000000000000000000000ca53ebcc85e18527172d0bb0d059cddc69ea7251

Deployed Bytecode

0x6080604052600436106100435760003560e01c8063715018a61461005a5780638da5cb5b1461006f578063d784d4261461009b578063f2fde38b146100bb57610052565b36610052576100506100db565b005b6100506100db565b34801561006657600080fd5b506100506100ed565b34801561007b57600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b3480156100a757600080fd5b506100506100b6366004610424565b61012a565b3480156100c757600080fd5b506100506100d6366004610424565b6101b6565b6100eb6100e6610280565b61029a565b565b6000546001600160a01b031633146101205760405162461bcd60e51b81526004016101179061044d565b60405180910390fd5b6100eb60006102be565b6000546001600160a01b031633146101545760405162461bcd60e51b81526004016101179061044d565b8061015e60015490565b80546001600160a01b03929092166001600160a01b03199092169190911790556040805160048152602481019091526020810180516001600160e01b031663204a7f0760e21b1790526101b2908290610254565b5050565b6000546001600160a01b031633146101e05760405162461bcd60e51b81526004016101179061044d565b6001600160a01b0381166102455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610117565b61024e816102be565b50565b90565b606061027983836040518060600160405280602781526020016105026027913961030e565b9392505050565b600061028b60015490565b546001600160a01b0316919050565b3660008037600080366000845af43d6000803e8080156102b9573d6000f35b3d6000fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60606001600160a01b0384163b6103765760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610117565b600080856001600160a01b03168560405161039191906104b2565b600060405180830381855af49150503d80600081146103cc576040519150601f19603f3d011682016040523d82523d6000602084013e6103d1565b606091505b50915091506103e18282866103eb565b9695505050505050565b606083156103fa575081610279565b82511561040a5782518084602001fd5b8160405162461bcd60e51b815260040161011791906104ce565b60006020828403121561043657600080fd5b81356001600160a01b038116811461027957600080fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60005b8381101561049d578181015183820152602001610485565b838111156104ac576000848401525b50505050565b600082516104c4818460208701610482565b9190910192915050565b60208152600082518060208401526104ed816040850160208701610482565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122009d54127fff01debfdcb6d5b8d58ff16e6a80a0db9512c3109e77e5fada35c8c64736f6c63430008090033

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

000000000000000000000000ca53ebcc85e18527172d0bb0d059cddc69ea7251

-----Decoded View---------------
Arg [0] : implementation (address): 0xca53EBCc85e18527172d0bB0D059cdDC69Ea7251

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ca53ebcc85e18527172d0bb0d059cddc69ea7251


Deployed Bytecode Sourcemap

17658:815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6281:11;:9;:11::i;:::-;17658:815;;6050:11;:9;:11::i;2524:103::-;;;;;;;;;;;;;:::i;1873:87::-;;;;;;;;;;-1:-1:-1;1919:7:0;1946:6;1873:87;;;-1:-1:-1;;;;;1946:6:0;;;160:51:1;;1873:87:0;;;;;148:2:1;1873:87:0;;;18022:293;;;;;;;;;;-1:-1:-1;18022:293:0;;;;;:::i;:::-;;:::i;2782:201::-;;;;;;;;;;-1:-1:-1;2782:201:0;;;;;:::i;:::-;;:::i;5687:113::-;5764:28;5774:17;:15;:17::i;:::-;5764:9;:28::i;:::-;5687:113::o;2524:103::-;1919:7;1946:6;-1:-1:-1;;;;;1946:6:0;736:10;2093:23;2085:68;;;;-1:-1:-1;;;2085:68:0;;;;;;;:::i;:::-;;;;;;;;;2589:30:::1;2616:1;2589:18;:30::i;18022:293::-:0;1919:7;1946:6;-1:-1:-1;;;;;1946:6:0;736:10;2093:23;2085:68;;;;-1:-1:-1;;;2085:68:0;;;;;;;:::i;:::-;18160:14:::1;18103:48;18130:20;;16838:4:::0;16709:151;18103:48:::1;:71:::0;;-1:-1:-1;;;;;18103:71:0;;;::::1;-1:-1:-1::0;;;;;;18103:71:0;;::::1;::::0;;;::::1;::::0;;18257:39:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;18257:39:0::1;-1:-1:-1::0;;;18257:39:0::1;::::0;;18185:122:::1;::::0;18228:14;;18185:28:::1;:122::i;:::-;;18022:293:::0;:::o;2782:201::-;1919:7;1946:6;-1:-1:-1;;;;;1946:6:0;736:10;2093:23;2085:68;;;;-1:-1:-1;;;2085:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2871:22:0;::::1;2863:73;;;::::0;-1:-1:-1;;;2863:73:0;;1076:2:1;2863:73:0::1;::::0;::::1;1058:21:1::0;1115:2;1095:18;;;1088:30;1154:34;1134:18;;;1127:62;-1:-1:-1;;;1205:18:1;;;1198:36;1251:19;;2863:73:0::1;874:402:1::0;2863:73:0::1;2947:28;2966:8;2947:18;:28::i;:::-;2782:201:::0;:::o;16709:151::-;16838:4;16709:151::o;13353:200::-;13436:12;13468:77;13489:6;13497:4;13468:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;13461:84;13353:200;-1:-1:-1;;;13353:200:0:o;18323:147::-;18382:7;18408:48;18435:20;;16838:4;16709:151;18408:48;:54;-1:-1:-1;;;;;18408:54:0;;18323:147;-1:-1:-1;18323:147:0:o;4277:918::-;4620:14;4617:1;4614;4601:34;4838:1;4835;4819:14;4816:1;4800:14;4793:5;4780:60;4917:16;4914:1;4911;4896:38;4957:6;5026:68;;;;5145:16;5142:1;5135:27;5026:68;5062:16;5059:1;5052:27;3143:191;3217:16;3236:6;;-1:-1:-1;;;;;3253:17:0;;;-1:-1:-1;;;;;;3253:17:0;;;;;;3286:40;;3236:6;;;;;;;3286:40;;3217:16;3286:40;3206:128;3143:191;:::o;13747:396::-;13892:12;-1:-1:-1;;;;;8115:19:0;;;13917:69;;;;-1:-1:-1;;;13917:69:0;;1483:2:1;13917:69:0;;;1465:21:1;1522:2;1502:18;;;1495:30;1561:34;1541:18;;;1534:62;-1:-1:-1;;;1612:18:1;;;1605:36;1658:19;;13917:69:0;1281:402:1;13917:69:0;14000:12;14014:23;14041:6;-1:-1:-1;;;;;14041:19:0;14061:4;14041:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13999:67;;;;14084:51;14101:7;14110:10;14122:12;14084:16;:51::i;:::-;14077:58;13747:396;-1:-1:-1;;;;;;13747:396:0:o;14371:712::-;14521:12;14550:7;14546:530;;;-1:-1:-1;14581:10:0;14574:17;;14546:530;14695:17;;:21;14691:374;;14893:10;14887:17;14954:15;14941:10;14937:2;14933:19;14926:44;14691:374;15036:12;15029:20;;-1:-1:-1;;;15029:20:0;;;;;;;;:::i;222:286:1:-;281:6;334:2;322:9;313:7;309:23;305:32;302:52;;;350:1;347;340:12;302:52;376:23;;-1:-1:-1;;;;;428:31:1;;418:42;;408:70;;474:1;471;464:12;513:356;715:2;697:21;;;734:18;;;727:30;793:34;788:2;773:18;;766:62;860:2;845:18;;513:356::o;1688:258::-;1760:1;1770:113;1784:6;1781:1;1778:13;1770:113;;;1860:11;;;1854:18;1841:11;;;1834:39;1806:2;1799:10;1770:113;;;1901:6;1898:1;1895:13;1892:48;;;1936:1;1927:6;1922:3;1918:16;1911:27;1892:48;;1688:258;;;:::o;1951:274::-;2080:3;2118:6;2112:13;2134:53;2180:6;2175:3;2168:4;2160:6;2156:17;2134:53;:::i;:::-;2203:16;;;;;1951:274;-1:-1:-1;;1951:274:1:o;2230:383::-;2379:2;2368:9;2361:21;2342:4;2411:6;2405:13;2454:6;2449:2;2438:9;2434:18;2427:34;2470:66;2529:6;2524:2;2513:9;2509:18;2504:2;2496:6;2492:15;2470:66;:::i;:::-;2597:2;2576:15;-1:-1:-1;;2572:29:1;2557:45;;;;2604:2;2553:54;;2230:383;-1:-1:-1;;2230:383:1:o

Swarm Source

ipfs://09d54127fff01debfdcb6d5b8d58ff16e6a80a0db9512c3109e77e5fada35c8c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.