ERC-721
Source Code
Overview
Max Total Supply
1,000 OPN
Holders
748
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 OPNLoading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Opepen_CreatedByALIENSWAP
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/////////////////////////////////////////////////////////
// all-in-one NFT generator at https://alienswap.xyz //
/////////////////////////////////////////////////////////
import "./ERC721Creator.sol";
///////////////////////////////////////////////////
// ___ _ _ //
// / _ \| (_) //
// / /_\ \ |_ ___ _ __ _____ ____ _ _ __ //
// | _ | | |/ _ \ '_ \/ __\ \ /\ / / _` | '_ \ //
// | | | | | | __/ | | \__ \ V V / (_| | |_) |//
// \_| |_/_|_|\___|_| |_|___/ \_/\_/ \__,_| .__/ //
// | | //
// |_| //
///////////////////////////////////////////////////
contract Opepen_CreatedByALIENSWAP is ERC721Creator {
SalesConfiguration salesConfig = SalesConfiguration(
100000000000000,
10,
1694347153,
4102444799,
0,
0,
0,
4102444799,
0x0000000000000000000000000000000000000000000000000000000000000000,
0xf61467b750F98B40884E23dc051bb297dbC772b5
);
constructor() ERC721Creator(unicode"Opepen 2099", unicode"OPN", 1000, "https://createx.art/api/v1/createx/metadata/LINEA/nybyn6uk6ce39pibhdog7uyvz2c8j5yh/",
"https://createx.art/api/v1/createx/collection_url/LINEA/nybyn6uk6ce39pibhdog7uyvz2c8j5yh", 0xf61467b750F98B40884E23dc051bb297dbC772b5, 0,
salesConfig
) {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/Proxy.sol";
import "@openzeppelin/Address.sol";
import "@openzeppelin/StorageSlot.sol";
import "@openzeppelin/Ownable.sol";
contract ERC721Creator is Proxy, Ownable {
struct SalesConfiguration {
uint256 publicSalePrice;
uint256 maxSalePurchasePerAddress;
uint256 publicSaleStart;
uint256 publicSaleEnd;
uint256 presaleStart;
uint256 preSalePrice;
uint256 presaleMaxMintsPerAddress;
uint256 presaleEnd;
bytes32 presaleMerkleRoot;
address fundsRecipient;
}
constructor(string memory name, string memory symbol, uint256 maxSupply, string memory baseURI, string memory collectionURI, address recipient, uint256 royaltyAmount,
SalesConfiguration memory _salesConfig
) Ownable() {
assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = 0xD82F30c68369f255B32BE4864deEf620A3C709fb;
Address.functionDelegateCall(
0xD82F30c68369f255B32BE4864deEf620A3C709fb,
abi.encodeWithSignature("initCreator(string,string,uint256,string,string,address,uint256,uint256,uint256)",
name, symbol, maxSupply, baseURI, collectionURI, recipient, royaltyAmount, 100000000000000, 1696089600));
Address.functionDelegateCall(
0xD82F30c68369f255B32BE4864deEf620A3C709fb,
abi.encodeWithSignature("setSaleConfiguration(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address,bytes32)",
_salesConfig.publicSalePrice,
_salesConfig.maxSalePurchasePerAddress,
_salesConfig.publicSaleStart,
_salesConfig.publicSaleEnd,
_salesConfig.presaleStart,
_salesConfig.presaleEnd,
_salesConfig.preSalePrice,
_salesConfig.presaleMaxMintsPerAddress,
_salesConfig.fundsRecipient,
_salesConfig.presaleMerkleRoot
)
);
}
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev Returns the current implementation address.
*/
function implementation() public view returns (address) {
return _implementation();
}
function _implementation() internal override view returns (address) {
return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
}
}// SPDX-License-Identifier: MIT
// 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);
}
}
}
}// 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "@openzeppelin/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 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);
}
}// SPDX-License-Identifier: MIT
// 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 {}
}// SPDX-License-Identifier: MIT
// 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
}
}
}{
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052604051806101400160405280655af3107a40008152602001600a81526020016364fdaf91815260200163f48656ff815260200160008152602001600081526020016000815260200163f48656ff81526020016000801b815260200173f61467b750f98b40884e23dc051bb297dbc772b573ffffffffffffffffffffffffffffffffffffffff168152506001600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015561010082015181600801556101208201518160090160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050503480156200014157600080fd5b506040518060400160405280600b81526020017f4f706570656e20323039390000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f504e00000000000000000000000000000000000000000000000000000000008152506103e8604051806080016040528060538152602001620016c9605391396040518060800160405280605881526020016200164a6058913973f61467b750f98b40884e23dc051bb297dbc772b560006001604051806101400160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050620002da620002ce620005ad60201b60201c565b620005b560201b60201c565b60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd60001c6200030c919062000b1c565b60001b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b1462000344576200034362000c1f565b5b73d82f30c68369f255b32be4864deef620a3c709fb620003927f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6200067960201b620002c41760201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004a773d82f30c68369f255b32be4864deef620a3c709fb89898989898989655af3107a4000636518460060405160240162000419999897969594939291906200095d565b6040516020818303038152906040527fd8890f77000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506200068360201b620002ce1760201c565b506200059e73d82f30c68369f255b32be4864deef620a3c709fb826000015183602001518460400151856060015186608001518760e001518860a001518960c001518a61012001518b6101000151604051602401620005109a9998979695949392919062000a3a565b6040516020818303038152906040527fd6743d4c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506200068360201b620002ce1760201c565b50505050505050505062000cdd565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000819050919050565b6060620006b18383604051806060016040528060278152602001620016a260279139620006b960201b60201c565b905092915050565b6060620006cc846200079d60201b60201c565b6200070e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007059062000a18565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168560405162000738919062000920565b600060405180830381855af49150503d806000811462000775576040519150601f19603f3d011682016040523d82523d6000602084013e6200077a565b606091505b509150915062000792828286620007c060201b60201c565b925050509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315620007d25782905062000825565b600083511115620007e65782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200081c919062000939565b60405180910390fd5b9392505050565b620008378162000b57565b82525050565b620008488162000b6b565b82525050565b60006200085b8262000aea565b62000867818562000b00565b93506200087981856020860162000be9565b80840191505092915050565b620008908162000bc1565b82525050565b620008a18162000bd5565b82525050565b6000620008b48262000af5565b620008c0818562000b0b565b9350620008d281856020860162000be9565b620008dd8162000c7d565b840191505092915050565b6000620008f760268362000b0b565b9150620009048262000c8e565b604082019050919050565b6200091a8162000b95565b82525050565b60006200092e82846200084e565b915081905092915050565b60006020820190508181036000830152620009558184620008a7565b905092915050565b60006101208201905081810360008301526200097a818c620008a7565b9050818103602083015262000990818b620008a7565b9050620009a1604083018a6200090f565b8181036060830152620009b58189620008a7565b90508181036080830152620009cb8188620008a7565b9050620009dc60a08301876200082c565b620009eb60c08301866200090f565b620009fa60e083018562000885565b62000a0a61010083018462000896565b9a9950505050505050505050565b6000602082019050818103600083015262000a3381620008e8565b9050919050565b60006101408201905062000a52600083018d6200090f565b62000a61602083018c6200090f565b62000a70604083018b6200090f565b62000a7f606083018a6200090f565b62000a8e60808301896200090f565b62000a9d60a08301886200090f565b62000aac60c08301876200090f565b62000abb60e08301866200090f565b62000acb6101008301856200082c565b62000adb6101208301846200083d565b9b9a5050505050505050505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600062000b298262000b95565b915062000b368362000b95565b92508282101562000b4c5762000b4b62000c4e565b5b828203905092915050565b600062000b648262000b75565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600065ffffffffffff82169050919050565b600062000bce8262000baf565b9050919050565b600062000be28262000b9f565b9050919050565b60005b8381101562000c0957808201518184015260208101905062000bec565b8381111562000c19576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000601f19601f8301169050919050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b61095d8062000ced6000396000f3fe6080604052600436106100435760003560e01c80635c60da1b1461005c578063715018a6146100875780638da5cb5b1461009e578063f2fde38b146100c957610052565b36610052576100506100f2565b005b61005a6100f2565b005b34801561006857600080fd5b5061007161010c565b60405161007e91906106d8565b60405180910390f35b34801561009357600080fd5b5061009c61011b565b005b3480156100aa57600080fd5b506100b36101a3565b6040516100c091906106d8565b60405180910390f35b3480156100d557600080fd5b506100f060048036038101906100eb91906105b2565b6101cc565b005b6100fa6102fb565b61010a6101056102fd565b610354565b565b60006101166102fd565b905090565b61012361037a565b73ffffffffffffffffffffffffffffffffffffffff166101416101a3565b73ffffffffffffffffffffffffffffffffffffffff1614610197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018e90610735565b60405180910390fd5b6101a16000610382565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101d461037a565b73ffffffffffffffffffffffffffffffffffffffff166101f26101a3565b73ffffffffffffffffffffffffffffffffffffffff1614610248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023f90610735565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102af90610715565b60405180910390fd5b6102c181610382565b50565b6000819050919050565b60606102f3838360405180606001604052806027815260200161090160279139610446565b905092915050565b565b600061032b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6102c4565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3660008037600080366000845af43d6000803e8060008114610375573d6000f35b3d6000fd5b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606061045184610513565b610490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048790610755565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff16856040516104b891906106c1565b600060405180830381855af49150503d80600081146104f3576040519150601f19603f3d011682016040523d82523d6000602084013e6104f8565b606091505b5091509150610508828286610536565b925050509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561054657829050610596565b6000835111156105595782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058d91906106f3565b60405180910390fd5b9392505050565b6000813590506105ac816108e9565b92915050565b6000602082840312156105c8576105c761080c565b5b60006105d68482850161059d565b91505092915050565b6105e8816107a7565b82525050565b60006105f982610775565b610603818561078b565b93506106138185602086016107d9565b80840191505092915050565b600061062a82610780565b6106348185610796565b93506106448185602086016107d9565b61064d81610811565b840191505092915050565b6000610665602683610796565b915061067082610822565b604082019050919050565b6000610688602083610796565b915061069382610871565b602082019050919050565b60006106ab602683610796565b91506106b68261089a565b604082019050919050565b60006106cd82846105ee565b915081905092915050565b60006020820190506106ed60008301846105df565b92915050565b6000602082019050818103600083015261070d818461061f565b905092915050565b6000602082019050818103600083015261072e81610658565b9050919050565b6000602082019050818103600083015261074e8161067b565b9050919050565b6000602082019050818103600083015261076e8161069e565b9050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006107b2826107b9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156107f75780820151818401526020810190506107dc565b83811115610806576000848401525b50505050565b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6108f2816107a7565b81146108fd57600080fd5b5056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220f9b50819183baded9e0addef2c1143c427457f808b5f6e6b6a7ba7ec11d9a80864736f6c6343000807003368747470733a2f2f637265617465782e6172742f6170692f76312f637265617465782f636f6c6c656374696f6e5f75726c2f4c494e45412f6e7962796e36756b366365333970696268646f67377579767a3263386a357968416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c656468747470733a2f2f637265617465782e6172742f6170692f76312f637265617465782f6d657461646174612f4c494e45412f6e7962796e36756b366365333970696268646f67377579767a3263386a3579682f
Deployed Bytecode
0x6080604052600436106100435760003560e01c80635c60da1b1461005c578063715018a6146100875780638da5cb5b1461009e578063f2fde38b146100c957610052565b36610052576100506100f2565b005b61005a6100f2565b005b34801561006857600080fd5b5061007161010c565b60405161007e91906106d8565b60405180910390f35b34801561009357600080fd5b5061009c61011b565b005b3480156100aa57600080fd5b506100b36101a3565b6040516100c091906106d8565b60405180910390f35b3480156100d557600080fd5b506100f060048036038101906100eb91906105b2565b6101cc565b005b6100fa6102fb565b61010a6101056102fd565b610354565b565b60006101166102fd565b905090565b61012361037a565b73ffffffffffffffffffffffffffffffffffffffff166101416101a3565b73ffffffffffffffffffffffffffffffffffffffff1614610197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018e90610735565b60405180910390fd5b6101a16000610382565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101d461037a565b73ffffffffffffffffffffffffffffffffffffffff166101f26101a3565b73ffffffffffffffffffffffffffffffffffffffff1614610248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023f90610735565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102af90610715565b60405180910390fd5b6102c181610382565b50565b6000819050919050565b60606102f3838360405180606001604052806027815260200161090160279139610446565b905092915050565b565b600061032b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6102c4565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3660008037600080366000845af43d6000803e8060008114610375573d6000f35b3d6000fd5b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606061045184610513565b610490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048790610755565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff16856040516104b891906106c1565b600060405180830381855af49150503d80600081146104f3576040519150601f19603f3d011682016040523d82523d6000602084013e6104f8565b606091505b5091509150610508828286610536565b925050509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561054657829050610596565b6000835111156105595782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058d91906106f3565b60405180910390fd5b9392505050565b6000813590506105ac816108e9565b92915050565b6000602082840312156105c8576105c761080c565b5b60006105d68482850161059d565b91505092915050565b6105e8816107a7565b82525050565b60006105f982610775565b610603818561078b565b93506106138185602086016107d9565b80840191505092915050565b600061062a82610780565b6106348185610796565b93506106448185602086016107d9565b61064d81610811565b840191505092915050565b6000610665602683610796565b915061067082610822565b604082019050919050565b6000610688602083610796565b915061069382610871565b602082019050919050565b60006106ab602683610796565b91506106b68261089a565b604082019050919050565b60006106cd82846105ee565b915081905092915050565b60006020820190506106ed60008301846105df565b92915050565b6000602082019050818103600083015261070d818461061f565b905092915050565b6000602082019050818103600083015261072e81610658565b9050919050565b6000602082019050818103600083015261074e8161067b565b9050919050565b6000602082019050818103600083015261076e8161069e565b9050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006107b2826107b9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156107f75780820151818401526020810190506107dc565b83811115610806576000848401525b50505050565b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6108f2816107a7565b81146108fd57600080fd5b5056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220f9b50819183baded9e0addef2c1143c427457f808b5f6e6b6a7ba7ec11d9a80864736f6c63430008070033
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.