Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
1538
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Sofa
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "closedsea/src/OperatorFilterer.sol"; contract Sofa is ERC721, OperatorFilterer, Ownable, ERC2981 { bool public operatorFilteringEnabled; constructor() ERC721("Sofa Vision", "Sofa Vision") { _registerForOperatorFiltering(); operatorFilteringEnabled = false; _setDefaultRoyalty(msg.sender, 450); _safeMint(owner(), 1); } string public BASE_URI = ""; uint256 public revealStartTime = 1700485200; function setRevealStartTime(uint256 startTime) public onlyOwner { revealStartTime = startTime; } bool public paused = false; event RevealMinted(address owner, uint256 tokenId); function setBaseUri(string memory uri) public onlyOwner { BASE_URI = uri; } function setPaused(bool _paused) public onlyOwner { paused = _paused; } function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } address public revealer; function setRevealer(address addr) public onlyOwner { revealer = addr; } function revealMint(address wallet, uint256 tokenId) external { require(paused == false, "reveal not running"); require(block.timestamp >= revealStartTime, "reveal not start"); require(msg.sender == revealer, "u cannot mint without reveal!"); _safeMint(wallet, tokenId); emit RevealMinted(wallet, tokenId); } function _safeMint(address wallet, uint256 tokenId) internal override { // mint super._safeMint(wallet, tokenId); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { // Supports the following `interfaceId`s: // - IERC165: 0x01ffc9a7 // - IERC721: 0x80ac58cd // - IERC721Metadata: 0x5b5e139f // - IERC2981: 0x2a55205a return ERC721.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function setOperatorFilteringEnabled(bool value) public onlyOwner { operatorFilteringEnabled = value; } function _operatorFilteringEnabled() internal view override returns (bool) { return operatorFilteringEnabled; } function _isPriorityOperator(address operator) internal pure override returns (bool) { // OpenSea Seaport Conduit: // https://etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71 // https://goerli.etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71 return operator == address(0x1E0049783F008A0085193E00003D00cd54003c71); } //for ERC2981 Opensea function contractURI() external view virtual returns (string memory) { return _formatContractURI(); } //make contractURI function _formatContractURI() internal view returns (string memory) { (address receiver, uint256 royaltyFraction) = royaltyInfo(0, _feeDenominator()); //tokenid=0 return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( '{"seller_fee_basis_points":', Strings.toString(royaltyFraction), ', "fee_recipient":"', Strings.toHexString(uint256(uint160(receiver)), 20), '"}' ) ) ) ) ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// 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 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy)) for {} iszero(subscribe) {} { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) { // If the function selector has not been overwritten, // it is an out-of-gas error. if eq(shr(224, mload(0x00)), functionSelector) { // To prevent gas under-estimation. revert(0, 0) } } // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if the caller is a blocked operator. modifier onlyAllowedOperator(address from) virtual { if (from != msg.sender) { if (!_isPriorityOperator(msg.sender)) { if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender); } } _; } /// @dev Modifier to guard a function from approving a blocked operator.. modifier onlyAllowedOperatorApproval(address operator) virtual { if (!_isPriorityOperator(operator)) { if (_operatorFilteringEnabled()) _revertIfBlocked(operator); } _; } /// @dev Helper function that reverts if the `operator` is blocked by the registry. function _revertIfBlocked(address operator) private view { /// @solidity memory-safe-assembly assembly { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`. mstore(0x3a, operator) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } /// @dev For deriving contracts to override, so that operator filtering /// can be turned on / off. /// Returns true by default. function _operatorFilteringEnabled() internal view virtual returns (bool) { return true; } /// @dev For deriving contracts to override, so that preferred marketplaces can /// skip operator filtering, helping users save gas. /// Returns false for all inputs by default. function _isPriorityOperator(address) internal view virtual returns (bool) { return false; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"RevealMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"revealMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"setRevealStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRevealer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405260006080908152600a906200001a9082620006f5565b5063655b5850600b55600c805460ff191690553480156200003a57600080fd5b50604080518082018252600b8082526a29b7b330902b34b9b4b7b760a91b60208084018290528451808601909552918452908301529060006200007e8382620006f5565b5060016200008d8282620006f5565b505050620000aa620000a4620000f160201b60201c565b620000f5565b620000b462000147565b6009805460ff19169055620000cc336101c26200016a565b620000eb620000e36006546001600160a01b031690565b60016200026f565b6200088f565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000168733cc6cdda760b79bafa08df41ecfa224f810dceb660016200028a565b565b6127106001600160601b0382161115620001de5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002365760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001d5565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b6200028682826200030460201b62000b711760201c565b5050565b6001600160a01b0390911690637d3e3dbe81620002ba5782620002b35750634420e486620002ba565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620002fa578060005160e01c03620002fa57600080fd5b5060006024525050565b620002868282604051806020016040528060008152506200032660201b60201c565b6200033283836200039e565b620003416000848484620004e6565b620003995760405162461bcd60e51b8152602060048201526032602482015260008051602062002b3883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d5565b505050565b6001600160a01b038216620003f65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001d5565b6000818152600260205260409020546001600160a01b0316156200045d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001d5565b6001600160a01b038216600090815260036020526040812080546001929062000488908490620007c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000507846001600160a01b03166200064260201b62000b8b1760201c565b156200063657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000541903390899088908890600401620007e9565b6020604051808303816000875af19250505080156200057f575060408051601f3d908101601f191682019092526200057c918101906200085c565b60015b6200061b573d808015620005b0576040519150601f19603f3d011682016040523d82523d6000602084013e620005b5565b606091505b508051600003620006135760405162461bcd60e51b8152602060048201526032602482015260008051602062002b3883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200063a565b5060015b949350505050565b6001600160a01b03163b151590565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200067c57607f821691505b6020821081036200069d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039957600081815260208120601f850160051c81016020861015620006cc5750805b601f850160051c820191505b81811015620006ed57828155600101620006d8565b505050505050565b81516001600160401b0381111562000711576200071162000651565b620007298162000722845462000667565b84620006a3565b602080601f831160018114620007615760008415620007485750858301515b600019600386901b1c1916600185901b178555620006ed565b600085815260208120601f198616915b82811015620007925788860151825594840194600190910190840162000771565b5085821015620007b15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620007e357634e487b7160e01b600052601160045260246000fd5b92915050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620008385785810182015185820160a0015281016200081a565b5050600060a0828501015260a0601f19601f83011684010191505095945050505050565b6000602082840312156200086f57600080fd5b81516001600160e01b0319811681146200088857600080fd5b9392505050565b612299806200089f6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063c17c3fe3116100a2578063e8a3d48511610071578063e8a3d485146103fd578063e985e9c514610405578063f2fde38b14610418578063fb796e6c1461042b57600080fd5b8063c17c3fe3146103c6578063c87b56dd146103d9578063cc0bef84146103ec578063dbddb26a146103f557600080fd5b8063a0bcfc7f116100de578063a0bcfc7f1461037a578063a22cb4651461038d578063b7c0b8e8146103a0578063b88d4fde146103b357600080fd5b80638da5cb5b1461034e57806395d89b411461035f5780639738b89c1461036757600080fd5b806323b872dd1161017c5780635c975abb1161014b5780635c975abb146103055780636352211e1461031257806370a0823114610325578063715018a61461034657600080fd5b806323b872dd1461029a5780632a55205a146102ad5780633292fa63146102df57806342842e0e146102f257600080fd5b8063081812fc116101b8578063081812fc14610231578063095ea7b31461025c57806316c38b3c1461026f57806320b55a2d1461028257600080fd5b806301ffc9a7146101df57806304634d8d1461020757806306fdde031461021c575b600080fd5b6101f26101ed366004611a9c565b610438565b60405190151581526020015b60405180910390f35b61021a610215366004611ad5565b610458565b005b61022461046e565b6040516101fe9190611b68565b61024461023f366004611b7b565b610500565b6040516001600160a01b0390911681526020016101fe565b61021a61026a366004611b94565b610527565b61021a61027d366004611bce565b610558565b600c546102449061010090046001600160a01b031681565b61021a6102a8366004611be9565b610573565b6102c06102bb366004611c25565b6105b6565b604080516001600160a01b0390931683526020830191909152016101fe565b61021a6102ed366004611b94565b610662565b61021a610300366004611be9565b6107a3565b600c546101f29060ff1681565b610244610320366004611b7b565b6107e0565b610338610333366004611c47565b610840565b6040519081526020016101fe565b61021a6108c6565b6006546001600160a01b0316610244565b6102246108da565b61021a610375366004611b7b565b6108e9565b61021a610388366004611cee565b6108f6565b61021a61039b366004611d37565b61090a565b61021a6103ae366004611bce565b610936565b61021a6103c1366004611d6a565b610951565b61021a6103d4366004611c47565b610996565b6102246103e7366004611b7b565b6109c6565b610338600b5481565b610224610a2d565b610224610abb565b6101f2610413366004611de6565b610aca565b61021a610426366004611c47565b610af8565b6009546101f29060ff1681565b600061044382610b9a565b80610452575061045282610bea565b92915050565b610460610c0f565b61046a8282610c69565b5050565b60606000805461047d90611e10565b80601f01602080910402602001604051908101604052809291908181526020018280546104a990611e10565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b5050505050905090565b600061050b82610d66565b506000908152600460205260409020546001600160a01b031690565b8161053181610dc5565b6105495760095460ff16156105495761054981610de7565b6105538383610e2b565b505050565b610560610c0f565b600c805460ff1916911515919091179055565b826001600160a01b03811633146105a55761058d33610dc5565b6105a55760095460ff16156105a5576105a533610de7565b6105b0848484610f3b565b50505050565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161062b5750604080518082019091526007546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061064a906001600160601b031687611e60565b6106549190611e8d565b915196919550909350505050565b600c5460ff16156106af5760405162461bcd60e51b815260206004820152601260248201527172657665616c206e6f742072756e6e696e6760701b60448201526064015b60405180910390fd5b600b544210156106f45760405162461bcd60e51b815260206004820152601060248201526f1c995d99585b081b9bdd081cdd185c9d60821b60448201526064016106a6565b600c5461010090046001600160a01b031633146107535760405162461bcd60e51b815260206004820152601d60248201527f752063616e6e6f74206d696e7420776974686f75742072657665616c2100000060448201526064016106a6565b61075d8282610f6c565b604080516001600160a01b0384168152602081018390527f39ca5cef42aa91af9512acbca8c539a50ee0db4b23224388e66b0620aced44dc910160405180910390a15050565b826001600160a01b03811633146107d5576107bd33610dc5565b6107d55760095460ff16156107d5576107d533610de7565b6105b0848484610f76565b6000818152600260205260408120546001600160a01b0316806104525760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106a6565b60006001600160a01b0382166108aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016106a6565b506001600160a01b031660009081526003602052604090205490565b6108ce610c0f565b6108d86000610f91565b565b60606001805461047d90611e10565b6108f1610c0f565b600b55565b6108fe610c0f565b600a61046a8282611eef565b8161091481610dc5565b61092c5760095460ff161561092c5761092c81610de7565b6105538383610fe3565b61093e610c0f565b6009805460ff1916911515919091179055565b836001600160a01b03811633146109835761096b33610dc5565b6109835760095460ff16156109835761098333610de7565b61098f85858585610fee565b5050505050565b61099e610c0f565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60606109d182610d66565b60006109db611020565b905060008151116109fb5760405180602001604052806000815250610a26565b80610a058461102f565b604051602001610a16929190611faf565b6040516020818303038152906040525b9392505050565b600a8054610a3a90611e10565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6690611e10565b8015610ab35780601f10610a8857610100808354040283529160200191610ab3565b820191906000526020600020905b815481529060010190602001808311610a9657829003601f168201915b505050505081565b6060610ac5611138565b905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610b00610c0f565b6001600160a01b038116610b655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a6565b610b6e81610f91565b50565b61046a8282604051806020016040528060008152506111b8565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b1480610bcb57506001600160e01b03198216635b5e139f60e01b145b8061045257506301ffc9a760e01b6001600160e01b0319831614610452565b60006001600160e01b0319821663152a902d60e11b1480610452575061045282610b9a565b6006546001600160a01b031633146108d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a6565b6127106001600160601b0382161115610cd75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016106a6565b6001600160a01b038216610d2d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016106a6565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b6000818152600260205260409020546001600160a01b0316610b6e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106a6565b6001600160a01b0316731e0049783f008a0085193e00003d00cd54003c711490565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610e23573d6000803e3d6000fd5b6000603a5250565b6000610e36826107e0565b9050806001600160a01b0316836001600160a01b031603610ea35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106a6565b336001600160a01b0382161480610ebf5750610ebf8133610aca565b610f315760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016106a6565b61055383836111eb565b610f453382611259565b610f615760405162461bcd60e51b81526004016106a690611fde565b6105538383836112b7565b61046a8282610b71565b61055383838360405180602001604052806000815250610951565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61046a338383611453565b610ff83383611259565b6110145760405162461bcd60e51b81526004016106a690611fde565b6105b084848484611521565b6060600a805461047d90611e10565b6060816000036110565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611080578061106a8161202c565b91506110799050600a83611e8d565b915061105a565b60008167ffffffffffffffff81111561109b5761109b611c62565b6040519080825280601f01601f1916602001820160405280156110c5576020820181803683370190505b5090505b8415611130576110da600183612045565b91506110e7600a86612058565b6110f290603061206c565b60f81b8183815181106111075761110761207f565b60200101906001600160f81b031916908160001a905350611129600a86611e8d565b94506110c9565b949350505050565b6060600080611149816127106105b6565b915091506111926111598261102f565b61116d846001600160a01b03166014611554565b60405160200161117e929190612095565b6040516020818303038152906040526116f0565b6040516020016111a2919061211b565b6040516020818303038152906040529250505090565b6111c28383611843565b6111cf6000848484611985565b6105535760405162461bcd60e51b81526004016106a690612160565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611220826107e0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611265836107e0565b9050806001600160a01b0316846001600160a01b0316148061128c575061128c8185610aca565b806111305750836001600160a01b03166112a584610500565b6001600160a01b031614949350505050565b826001600160a01b03166112ca826107e0565b6001600160a01b03161461132e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106a6565b6001600160a01b0382166113905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106a6565b61139b6000826111eb565b6001600160a01b03831660009081526003602052604081208054600192906113c4908490612045565b90915550506001600160a01b03821660009081526003602052604081208054600192906113f290849061206c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b0316036114b45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106a6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61152c8484846112b7565b61153884848484611985565b6105b05760405162461bcd60e51b81526004016106a690612160565b60606000611563836002611e60565b61156e90600261206c565b67ffffffffffffffff81111561158657611586611c62565b6040519080825280601f01601f1916602001820160405280156115b0576020820181803683370190505b509050600360fc1b816000815181106115cb576115cb61207f565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106115fa576115fa61207f565b60200101906001600160f81b031916908160001a905350600061161e846002611e60565b61162990600161206c565b90505b60018111156116a1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061165d5761165d61207f565b1a60f81b8282815181106116735761167361207f565b60200101906001600160f81b031916908160001a90535060049490941c9361169a816121b2565b905061162c565b508315610a265760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106a6565b6060815160000361170f57505060408051602081019091526000815290565b6000604051806060016040528060408152602001612224604091399050600060038451600261173e919061206c565b6117489190611e8d565b611753906004611e60565b67ffffffffffffffff81111561176b5761176b611c62565b6040519080825280601f01601f191660200182016040528015611795576020820181803683370190505b509050600182016020820185865187015b80821015611801576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506117a6565b505060038651066001811461181d576002811461183057611838565b603d6001830353603d6002830353611838565b603d60018303535b509195945050505050565b6001600160a01b0382166118995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a6565b6000818152600260205260409020546001600160a01b0316156118fe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106a6565b6001600160a01b038216600090815260036020526040812080546001929061192790849061206c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611a7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c99033908990889088906004016121c9565b6020604051808303816000875af1925050508015611a04575060408051601f3d908101601f19168201909252611a0191810190612206565b60015b611a61573d808015611a32576040519150601f19603f3d011682016040523d82523d6000602084013e611a37565b606091505b508051600003611a595760405162461bcd60e51b81526004016106a690612160565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611130565b506001949350505050565b6001600160e01b031981168114610b6e57600080fd5b600060208284031215611aae57600080fd5b8135610a2681611a86565b80356001600160a01b0381168114611ad057600080fd5b919050565b60008060408385031215611ae857600080fd5b611af183611ab9565b915060208301356001600160601b0381168114611b0d57600080fd5b809150509250929050565b60005b83811015611b33578181015183820152602001611b1b565b50506000910152565b60008151808452611b54816020860160208601611b18565b601f01601f19169290920160200192915050565b602081526000610a266020830184611b3c565b600060208284031215611b8d57600080fd5b5035919050565b60008060408385031215611ba757600080fd5b611bb083611ab9565b946020939093013593505050565b80358015158114611ad057600080fd5b600060208284031215611be057600080fd5b610a2682611bbe565b600080600060608486031215611bfe57600080fd5b611c0784611ab9565b9250611c1560208501611ab9565b9150604084013590509250925092565b60008060408385031215611c3857600080fd5b50508035926020909101359150565b600060208284031215611c5957600080fd5b610a2682611ab9565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c9357611c93611c62565b604051601f8501601f19908116603f01168101908282118183101715611cbb57611cbb611c62565b81604052809350858152868686011115611cd457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d0057600080fd5b813567ffffffffffffffff811115611d1757600080fd5b8201601f81018413611d2857600080fd5b61113084823560208401611c78565b60008060408385031215611d4a57600080fd5b611d5383611ab9565b9150611d6160208401611bbe565b90509250929050565b60008060008060808587031215611d8057600080fd5b611d8985611ab9565b9350611d9760208601611ab9565b925060408501359150606085013567ffffffffffffffff811115611dba57600080fd5b8501601f81018713611dcb57600080fd5b611dda87823560208401611c78565b91505092959194509250565b60008060408385031215611df957600080fd5b611e0283611ab9565b9150611d6160208401611ab9565b600181811c90821680611e2457607f821691505b602082108103611e4457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761045257610452611e4a565b634e487b7160e01b600052601260045260246000fd5b600082611e9c57611e9c611e77565b500490565b601f82111561055357600081815260208120601f850160051c81016020861015611ec85750805b601f850160051c820191505b81811015611ee757828155600101611ed4565b505050505050565b815167ffffffffffffffff811115611f0957611f09611c62565b611f1d81611f178454611e10565b84611ea1565b602080601f831160018114611f525760008415611f3a5750858301515b600019600386901b1c1916600185901b178555611ee7565b600085815260208120601f198616915b82811015611f8157888601518255948401946001909101908401611f62565b5085821015611f9f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611fc1818460208801611b18565b835190830190611fd5818360208801611b18565b01949350505050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60006001820161203e5761203e611e4a565b5060010190565b8181038181111561045257610452611e4a565b60008261206757612067611e77565b500690565b8082018082111561045257610452611e4a565b634e487b7160e01b600052603260045260246000fd5b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a00000000008152600083516120cd81601b850160208801611b18565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161210081602e840160208801611b18565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161215381601d850160208701611b18565b91909101601d0192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816121c1576121c1611e4a565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121fc90830184611b3c565b9695505050505050565b60006020828403121561221857600080fd5b8151610a2681611a8656fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122076266697b0cab7a927a493cac295b3efce76f0b2e282e8ab65eeb99816196e6e64736f6c634300081200334552433732313a207472616e7366657220746f206e6f6e204552433732315265
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063c17c3fe3116100a2578063e8a3d48511610071578063e8a3d485146103fd578063e985e9c514610405578063f2fde38b14610418578063fb796e6c1461042b57600080fd5b8063c17c3fe3146103c6578063c87b56dd146103d9578063cc0bef84146103ec578063dbddb26a146103f557600080fd5b8063a0bcfc7f116100de578063a0bcfc7f1461037a578063a22cb4651461038d578063b7c0b8e8146103a0578063b88d4fde146103b357600080fd5b80638da5cb5b1461034e57806395d89b411461035f5780639738b89c1461036757600080fd5b806323b872dd1161017c5780635c975abb1161014b5780635c975abb146103055780636352211e1461031257806370a0823114610325578063715018a61461034657600080fd5b806323b872dd1461029a5780632a55205a146102ad5780633292fa63146102df57806342842e0e146102f257600080fd5b8063081812fc116101b8578063081812fc14610231578063095ea7b31461025c57806316c38b3c1461026f57806320b55a2d1461028257600080fd5b806301ffc9a7146101df57806304634d8d1461020757806306fdde031461021c575b600080fd5b6101f26101ed366004611a9c565b610438565b60405190151581526020015b60405180910390f35b61021a610215366004611ad5565b610458565b005b61022461046e565b6040516101fe9190611b68565b61024461023f366004611b7b565b610500565b6040516001600160a01b0390911681526020016101fe565b61021a61026a366004611b94565b610527565b61021a61027d366004611bce565b610558565b600c546102449061010090046001600160a01b031681565b61021a6102a8366004611be9565b610573565b6102c06102bb366004611c25565b6105b6565b604080516001600160a01b0390931683526020830191909152016101fe565b61021a6102ed366004611b94565b610662565b61021a610300366004611be9565b6107a3565b600c546101f29060ff1681565b610244610320366004611b7b565b6107e0565b610338610333366004611c47565b610840565b6040519081526020016101fe565b61021a6108c6565b6006546001600160a01b0316610244565b6102246108da565b61021a610375366004611b7b565b6108e9565b61021a610388366004611cee565b6108f6565b61021a61039b366004611d37565b61090a565b61021a6103ae366004611bce565b610936565b61021a6103c1366004611d6a565b610951565b61021a6103d4366004611c47565b610996565b6102246103e7366004611b7b565b6109c6565b610338600b5481565b610224610a2d565b610224610abb565b6101f2610413366004611de6565b610aca565b61021a610426366004611c47565b610af8565b6009546101f29060ff1681565b600061044382610b9a565b80610452575061045282610bea565b92915050565b610460610c0f565b61046a8282610c69565b5050565b60606000805461047d90611e10565b80601f01602080910402602001604051908101604052809291908181526020018280546104a990611e10565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b5050505050905090565b600061050b82610d66565b506000908152600460205260409020546001600160a01b031690565b8161053181610dc5565b6105495760095460ff16156105495761054981610de7565b6105538383610e2b565b505050565b610560610c0f565b600c805460ff1916911515919091179055565b826001600160a01b03811633146105a55761058d33610dc5565b6105a55760095460ff16156105a5576105a533610de7565b6105b0848484610f3b565b50505050565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161062b5750604080518082019091526007546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061064a906001600160601b031687611e60565b6106549190611e8d565b915196919550909350505050565b600c5460ff16156106af5760405162461bcd60e51b815260206004820152601260248201527172657665616c206e6f742072756e6e696e6760701b60448201526064015b60405180910390fd5b600b544210156106f45760405162461bcd60e51b815260206004820152601060248201526f1c995d99585b081b9bdd081cdd185c9d60821b60448201526064016106a6565b600c5461010090046001600160a01b031633146107535760405162461bcd60e51b815260206004820152601d60248201527f752063616e6e6f74206d696e7420776974686f75742072657665616c2100000060448201526064016106a6565b61075d8282610f6c565b604080516001600160a01b0384168152602081018390527f39ca5cef42aa91af9512acbca8c539a50ee0db4b23224388e66b0620aced44dc910160405180910390a15050565b826001600160a01b03811633146107d5576107bd33610dc5565b6107d55760095460ff16156107d5576107d533610de7565b6105b0848484610f76565b6000818152600260205260408120546001600160a01b0316806104525760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106a6565b60006001600160a01b0382166108aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016106a6565b506001600160a01b031660009081526003602052604090205490565b6108ce610c0f565b6108d86000610f91565b565b60606001805461047d90611e10565b6108f1610c0f565b600b55565b6108fe610c0f565b600a61046a8282611eef565b8161091481610dc5565b61092c5760095460ff161561092c5761092c81610de7565b6105538383610fe3565b61093e610c0f565b6009805460ff1916911515919091179055565b836001600160a01b03811633146109835761096b33610dc5565b6109835760095460ff16156109835761098333610de7565b61098f85858585610fee565b5050505050565b61099e610c0f565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60606109d182610d66565b60006109db611020565b905060008151116109fb5760405180602001604052806000815250610a26565b80610a058461102f565b604051602001610a16929190611faf565b6040516020818303038152906040525b9392505050565b600a8054610a3a90611e10565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6690611e10565b8015610ab35780601f10610a8857610100808354040283529160200191610ab3565b820191906000526020600020905b815481529060010190602001808311610a9657829003601f168201915b505050505081565b6060610ac5611138565b905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610b00610c0f565b6001600160a01b038116610b655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a6565b610b6e81610f91565b50565b61046a8282604051806020016040528060008152506111b8565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b1480610bcb57506001600160e01b03198216635b5e139f60e01b145b8061045257506301ffc9a760e01b6001600160e01b0319831614610452565b60006001600160e01b0319821663152a902d60e11b1480610452575061045282610b9a565b6006546001600160a01b031633146108d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a6565b6127106001600160601b0382161115610cd75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016106a6565b6001600160a01b038216610d2d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016106a6565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b6000818152600260205260409020546001600160a01b0316610b6e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106a6565b6001600160a01b0316731e0049783f008a0085193e00003d00cd54003c711490565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610e23573d6000803e3d6000fd5b6000603a5250565b6000610e36826107e0565b9050806001600160a01b0316836001600160a01b031603610ea35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106a6565b336001600160a01b0382161480610ebf5750610ebf8133610aca565b610f315760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016106a6565b61055383836111eb565b610f453382611259565b610f615760405162461bcd60e51b81526004016106a690611fde565b6105538383836112b7565b61046a8282610b71565b61055383838360405180602001604052806000815250610951565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61046a338383611453565b610ff83383611259565b6110145760405162461bcd60e51b81526004016106a690611fde565b6105b084848484611521565b6060600a805461047d90611e10565b6060816000036110565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611080578061106a8161202c565b91506110799050600a83611e8d565b915061105a565b60008167ffffffffffffffff81111561109b5761109b611c62565b6040519080825280601f01601f1916602001820160405280156110c5576020820181803683370190505b5090505b8415611130576110da600183612045565b91506110e7600a86612058565b6110f290603061206c565b60f81b8183815181106111075761110761207f565b60200101906001600160f81b031916908160001a905350611129600a86611e8d565b94506110c9565b949350505050565b6060600080611149816127106105b6565b915091506111926111598261102f565b61116d846001600160a01b03166014611554565b60405160200161117e929190612095565b6040516020818303038152906040526116f0565b6040516020016111a2919061211b565b6040516020818303038152906040529250505090565b6111c28383611843565b6111cf6000848484611985565b6105535760405162461bcd60e51b81526004016106a690612160565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611220826107e0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611265836107e0565b9050806001600160a01b0316846001600160a01b0316148061128c575061128c8185610aca565b806111305750836001600160a01b03166112a584610500565b6001600160a01b031614949350505050565b826001600160a01b03166112ca826107e0565b6001600160a01b03161461132e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106a6565b6001600160a01b0382166113905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106a6565b61139b6000826111eb565b6001600160a01b03831660009081526003602052604081208054600192906113c4908490612045565b90915550506001600160a01b03821660009081526003602052604081208054600192906113f290849061206c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b0316036114b45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106a6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61152c8484846112b7565b61153884848484611985565b6105b05760405162461bcd60e51b81526004016106a690612160565b60606000611563836002611e60565b61156e90600261206c565b67ffffffffffffffff81111561158657611586611c62565b6040519080825280601f01601f1916602001820160405280156115b0576020820181803683370190505b509050600360fc1b816000815181106115cb576115cb61207f565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106115fa576115fa61207f565b60200101906001600160f81b031916908160001a905350600061161e846002611e60565b61162990600161206c565b90505b60018111156116a1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061165d5761165d61207f565b1a60f81b8282815181106116735761167361207f565b60200101906001600160f81b031916908160001a90535060049490941c9361169a816121b2565b905061162c565b508315610a265760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106a6565b6060815160000361170f57505060408051602081019091526000815290565b6000604051806060016040528060408152602001612224604091399050600060038451600261173e919061206c565b6117489190611e8d565b611753906004611e60565b67ffffffffffffffff81111561176b5761176b611c62565b6040519080825280601f01601f191660200182016040528015611795576020820181803683370190505b509050600182016020820185865187015b80821015611801576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506117a6565b505060038651066001811461181d576002811461183057611838565b603d6001830353603d6002830353611838565b603d60018303535b509195945050505050565b6001600160a01b0382166118995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a6565b6000818152600260205260409020546001600160a01b0316156118fe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106a6565b6001600160a01b038216600090815260036020526040812080546001929061192790849061206c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611a7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c99033908990889088906004016121c9565b6020604051808303816000875af1925050508015611a04575060408051601f3d908101601f19168201909252611a0191810190612206565b60015b611a61573d808015611a32576040519150601f19603f3d011682016040523d82523d6000602084013e611a37565b606091505b508051600003611a595760405162461bcd60e51b81526004016106a690612160565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611130565b506001949350505050565b6001600160e01b031981168114610b6e57600080fd5b600060208284031215611aae57600080fd5b8135610a2681611a86565b80356001600160a01b0381168114611ad057600080fd5b919050565b60008060408385031215611ae857600080fd5b611af183611ab9565b915060208301356001600160601b0381168114611b0d57600080fd5b809150509250929050565b60005b83811015611b33578181015183820152602001611b1b565b50506000910152565b60008151808452611b54816020860160208601611b18565b601f01601f19169290920160200192915050565b602081526000610a266020830184611b3c565b600060208284031215611b8d57600080fd5b5035919050565b60008060408385031215611ba757600080fd5b611bb083611ab9565b946020939093013593505050565b80358015158114611ad057600080fd5b600060208284031215611be057600080fd5b610a2682611bbe565b600080600060608486031215611bfe57600080fd5b611c0784611ab9565b9250611c1560208501611ab9565b9150604084013590509250925092565b60008060408385031215611c3857600080fd5b50508035926020909101359150565b600060208284031215611c5957600080fd5b610a2682611ab9565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c9357611c93611c62565b604051601f8501601f19908116603f01168101908282118183101715611cbb57611cbb611c62565b81604052809350858152868686011115611cd457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d0057600080fd5b813567ffffffffffffffff811115611d1757600080fd5b8201601f81018413611d2857600080fd5b61113084823560208401611c78565b60008060408385031215611d4a57600080fd5b611d5383611ab9565b9150611d6160208401611bbe565b90509250929050565b60008060008060808587031215611d8057600080fd5b611d8985611ab9565b9350611d9760208601611ab9565b925060408501359150606085013567ffffffffffffffff811115611dba57600080fd5b8501601f81018713611dcb57600080fd5b611dda87823560208401611c78565b91505092959194509250565b60008060408385031215611df957600080fd5b611e0283611ab9565b9150611d6160208401611ab9565b600181811c90821680611e2457607f821691505b602082108103611e4457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761045257610452611e4a565b634e487b7160e01b600052601260045260246000fd5b600082611e9c57611e9c611e77565b500490565b601f82111561055357600081815260208120601f850160051c81016020861015611ec85750805b601f850160051c820191505b81811015611ee757828155600101611ed4565b505050505050565b815167ffffffffffffffff811115611f0957611f09611c62565b611f1d81611f178454611e10565b84611ea1565b602080601f831160018114611f525760008415611f3a5750858301515b600019600386901b1c1916600185901b178555611ee7565b600085815260208120601f198616915b82811015611f8157888601518255948401946001909101908401611f62565b5085821015611f9f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611fc1818460208801611b18565b835190830190611fd5818360208801611b18565b01949350505050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60006001820161203e5761203e611e4a565b5060010190565b8181038181111561045257610452611e4a565b60008261206757612067611e77565b500690565b8082018082111561045257610452611e4a565b634e487b7160e01b600052603260045260246000fd5b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a00000000008152600083516120cd81601b850160208801611b18565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161210081602e840160208801611b18565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161215381601d850160208701611b18565b91909101601d0192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816121c1576121c1611e4a565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121fc90830184611b3c565b9695505050505050565b60006020828403121561221857600080fd5b8151610a2681611a8656fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122076266697b0cab7a927a493cac295b3efce76f0b2e282e8ab65eeb99816196e6e64736f6c63430008120033
Loading...
Loading
Loading...
Loading
[ 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.