ERC-721
Overview
Max Total Supply
127 NGNSS
Holders
117
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NGNSSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NOTGNSS
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-24 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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 be 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); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/NOTGNSS.sol pragma solidity ^0.8.9; contract NOTGNSS is ERC721A, Ownable { using Strings for uint256; string private _baseTokenURI; uint256 public maxSupply = 19292; uint256 public freeMintAmount = 500; uint256 public price; bool public isSaleLive = false; uint256 public freeMintPerWallet = 1; mapping(address => uint256) public freeMintTracker; constructor(string memory _URI) ERC721A("NOTGNSS","NGNSS") { _baseTokenURI = _URI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"URI query for nonexistent token."); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } function Mint(uint256 count) public payable { require(isSaleLive == true,"Sale is not live!"); require(count > 0,"You must mint atleast one token."); uint256 supply = totalSupply(); require(supply + count <= maxSupply,"Sold Out!"); uint256 chargeFor = count; if(freeMintAmount > 0 && eligibleForFreeMint()){ freeMintTracker[msg.sender] += freeMintPerWallet; freeMintAmount -= freeMintPerWallet; chargeFor -= freeMintPerWallet; } require(msg.value >= price * chargeFor,"Insufficient Ether!"); _safeMint(msg.sender,count); } function eligibleForFreeMint() public view returns (bool){ return freeMintTracker[msg.sender] < freeMintPerWallet; } function setFreeMintAmount(uint256 amt) public onlyOwner { freeMintAmount = amt; } function setFreeMintPerWallet(uint256 amt_perWallet) public onlyOwner { freeMintPerWallet = amt_perWallet; } function setSaleLive(bool live) public onlyOwner { isSaleLive = live; } function setPrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function withdrawAmount(uint256 amount) public onlyOwner { require(amount <= address(this).balance, "Insufficient Balance."); (bool os, ) = payable(owner()).call{value: amount}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"eligibleForFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setFreeMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt_perWallet","type":"uint256"}],"name":"setFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"live","type":"bool"}],"name":"setSaleLive","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":[],"name":"totalSupply","outputs":[{"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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052614b5c600a556101f4600b55600d805460ff191690556001600e553480156200002c57600080fd5b5060405162001dde38038062001dde8339810160408190526200004f91620001ee565b60408051808201825260078152664e4f54474e535360c81b6020808301918252835180850190945260058452644e474e535360d81b9084015281519192916200009b9160029162000132565b508051620000b190600390602084019062000132565b50506000805550620000c333620000e0565b8051620000d890600990602084019062000132565b505062000307565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014090620002ca565b90600052602060002090601f016020900481019282620001645760008555620001af565b82601f106200017f57805160ff1916838001178555620001af565b82800160010185558215620001af579182015b82811115620001af57825182559160200191906001019062000192565b50620001bd929150620001c1565b5090565b5b80821115620001bd5760008155600101620001c2565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200020257600080fd5b82516001600160401b03808211156200021a57600080fd5b818501915085601f8301126200022f57600080fd5b815181811115620002445762000244620001d8565b604051601f8201601f19908116603f011681019083821181831017156200026f576200026f620001d8565b8160405282815288868487010111156200028857600080fd5b600093505b82841015620002ac57848401860151818501870152928501926200028d565b82841115620002be5760008684830101525b98975050505050505050565b600181811c90821680620002df57607f821691505b602082108114156200030157634e487b7160e01b600052602260045260246000fd5b50919050565b611ac780620003176000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610565578063e985e9c51461057b578063f2fde38b146105c4578063f71143ca146105e457600080fd5b8063b88d4fde146104e9578063c1ab22ec14610509578063c87b56dd1461051f578063caa3b19d1461053f57600080fd5b806391b7f5ed116100d157806391b7f5ed1461047e57806395d89b411461049e578063a035b1fe146104b3578063a22cb465146104c957600080fd5b806370a082311461040b578063715018a61461042b5780637f953a22146104405780638da5cb5b1461046057600080fd5b806318160ddd1161017a5780633ccfd60b116101495780633ccfd60b1461039657806342842e0e146103ab57806355f804b3146103cb5780636352211e146103eb57600080fd5b806318160ddd1461032757806323b872dd146103405780633a467e3d146103605780633c4c7bb41461037657600080fd5b806307883703116101b65780630788370314610281578063081812fc14610294578063095ea7b3146102cc578063106c46b6146102ec57600080fd5b806301ffc9a7146101e85780630426c1fa1461021d5780630562b9f71461023f57806306fdde031461025f575b600080fd5b3480156101f457600080fd5b5061020861020336600461158b565b6105fe565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d6102383660046115a8565b610650565b005b34801561024b57600080fd5b5061023d61025a3660046115a8565b610688565b34801561026b57600080fd5b5061027461076f565b6040516102149190611619565b61023d61028f3660046115a8565b610801565b3480156102a057600080fd5b506102b46102af3660046115a8565b6109d0565b6040516001600160a01b039091168152602001610214565b3480156102d857600080fd5b5061023d6102e7366004611648565b610a14565b3480156102f857600080fd5b50610319610307366004611672565b600f6020526000908152604090205481565b604051908152602001610214565b34801561033357600080fd5b5060015460005403610319565b34801561034c57600080fd5b5061023d61035b36600461168d565b610ab4565b34801561036c57600080fd5b50610319600b5481565b34801561038257600080fd5b5061023d6103913660046116d9565b610c45565b3480156103a257600080fd5b5061023d610c82565b3480156103b757600080fd5b5061023d6103c636600461168d565b610d20565b3480156103d757600080fd5b5061023d6103e63660046116f4565b610d3b565b3480156103f757600080fd5b506102b46104063660046115a8565b610d71565b34801561041757600080fd5b50610319610426366004611672565b610d7c565b34801561043757600080fd5b5061023d610dcb565b34801561044c57600080fd5b5061023d61045b3660046115a8565b610e01565b34801561046c57600080fd5b506008546001600160a01b03166102b4565b34801561048a57600080fd5b5061023d6104993660046115a8565b610e30565b3480156104aa57600080fd5b50610274610e5f565b3480156104bf57600080fd5b50610319600c5481565b3480156104d557600080fd5b5061023d6104e4366004611766565b610e6e565b3480156104f557600080fd5b5061023d6105043660046117af565b610f04565b34801561051557600080fd5b50610319600e5481565b34801561052b57600080fd5b5061027461053a3660046115a8565b610f4e565b34801561054b57600080fd5b50600e54336000908152600f602052604090205410610208565b34801561057157600080fd5b50610319600a5481565b34801561058757600080fd5b5061020861059636600461188b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d057600080fd5b5061023d6105df366004611672565b611001565b3480156105f057600080fd5b50600d546102089060ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061062f57506380ac58cd60e01b6001600160e01b03198316145b8061064a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106835760405162461bcd60e51b815260040161067a906118b5565b60405180910390fd5b600e55565b6008546001600160a01b031633146106b25760405162461bcd60e51b815260040161067a906118b5565b478111156106fa5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a102130b630b731b29760591b604482015260640161067a565b600061070e6008546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610758576040519150601f19603f3d011682016040523d82523d6000602084013e61075d565b606091505b505090508061076b57600080fd5b5050565b60606002805461077e906118ea565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa906118ea565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b600d5460ff16151560011461084c5760405162461bcd60e51b815260206004820152601160248201527053616c65206973206e6f74206c6976652160781b604482015260640161067a565b6000811161089c5760405162461bcd60e51b815260206004820181905260248201527f596f75206d757374206d696e742061746c65617374206f6e6520746f6b656e2e604482015260640161067a565b60006108ab6001546000540390565b600a549091506108bb838361193b565b11156108f55760405162461bcd60e51b8152602060048201526009602482015268536f6c64204f75742160b81b604482015260640161067a565b600b548290158015906109185750600e54336000908152600f6020526040902054105b1561096e57600e54336000908152600f60205260408120805490919061093f90849061193b565b9091555050600e54600b8054600090610959908490611953565b9091555050600e5461096b9082611953565b90505b80600c5461097c919061196a565b3410156109c15760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742045746865722160681b604482015260640161067a565b6109cb3384611099565b505050565b60006109db826110b3565b6109f8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a1f82610d71565b9050336001600160a01b03821614610a5857610a3b8133610596565b610a58576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610abf826110da565b9050836001600160a01b0316816001600160a01b031614610af25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b3f57610b228633610596565b610b3f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b6657604051633a954ecd60e21b815260040160405180910390fd5b8015610b7157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610bfc5760018401600081815260046020526040902054610bfa576000548114610bfa5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610c6f5760405162461bcd60e51b815260040161067a906118b5565b600d805460ff1916911515919091179055565b6008546001600160a01b03163314610cac5760405162461bcd60e51b815260040161067a906118b5565b6000610cc06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d0a576040519150601f19603f3d011682016040523d82523d6000602084013e610d0f565b606091505b5050905080610d1d57600080fd5b50565b6109cb83838360405180602001604052806000815250610f04565b6008546001600160a01b03163314610d655760405162461bcd60e51b815260040161067a906118b5565b6109cb600983836114dc565b600061064a826110da565b60006001600160a01b038216610da5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610df55760405162461bcd60e51b815260040161067a906118b5565b610dff600061113b565b565b6008546001600160a01b03163314610e2b5760405162461bcd60e51b815260040161067a906118b5565b600b55565b6008546001600160a01b03163314610e5a5760405162461bcd60e51b815260040161067a906118b5565b600c55565b60606003805461077e906118ea565b6001600160a01b038216331415610e985760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f0f848484610ab4565b6001600160a01b0383163b15610f4857610f2b8484848461118d565b610f48576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f59826110b3565b610fa55760405162461bcd60e51b815260206004820181905260248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e2e604482015260640161067a565b6000610faf611285565b90506000815111610fcf5760405180602001604052806000815250610ffa565b80610fd984611294565b604051602001610fea929190611989565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461102b5760405162461bcd60e51b815260040161067a906118b5565b6001600160a01b0381166110905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067a565b610d1d8161113b565b61076b828260405180602001604052806000815250611392565b600080548210801561064a575050600090815260046020526040902054600160e01b161590565b60008160005481101561112257600081815260046020526040902054600160e01b8116611120575b80610ffa575060001901600081815260046020526040902054611102565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111c29033908990889088906004016119c8565b602060405180830381600087803b1580156111dc57600080fd5b505af192505050801561120c575060408051601f3d908101601f1916820190925261120991810190611a05565b60015b611267573d80801561123a576040519150601f19603f3d011682016040523d82523d6000602084013e61123f565b606091505b50805161125f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461077e906118ea565b6060816112b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112e257806112cc81611a22565b91506112db9050600a83611a53565b91506112bc565b60008167ffffffffffffffff8111156112fd576112fd611799565b6040519080825280601f01601f191660200182016040528015611327576020820181803683370190505b5090505b841561127d5761133c600183611953565b9150611349600a86611a67565b61135490603061193b565b60f81b81838151811061136957611369611a7b565b60200101906001600160f81b031916908160001a90535061138b600a86611a53565b945061132b565b61139c83836113ff565b6001600160a01b0383163b156109cb576000548281035b6113c6600086838060010194508661118d565b6113e3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113b35781600054146113f857600080fd5b5050505050565b6000546001600160a01b03831661142857604051622e076360e81b815260040160405180910390fd5b816114465760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114905760005550505050565b8280546114e8906118ea565b90600052602060002090601f01602090048101928261150a5760008555611550565b82601f106115235782800160ff19823516178555611550565b82800160010185558215611550579182015b82811115611550578235825591602001919060010190611535565b5061155c929150611560565b5090565b5b8082111561155c5760008155600101611561565b6001600160e01b031981168114610d1d57600080fd5b60006020828403121561159d57600080fd5b8135610ffa81611575565b6000602082840312156115ba57600080fd5b5035919050565b60005b838110156115dc5781810151838201526020016115c4565b83811115610f485750506000910152565b600081518084526116058160208601602086016115c1565b601f01601f19169290920160200192915050565b602081526000610ffa60208301846115ed565b80356001600160a01b038116811461164357600080fd5b919050565b6000806040838503121561165b57600080fd5b6116648361162c565b946020939093013593505050565b60006020828403121561168457600080fd5b610ffa8261162c565b6000806000606084860312156116a257600080fd5b6116ab8461162c565b92506116b96020850161162c565b9150604084013590509250925092565b8035801515811461164357600080fd5b6000602082840312156116eb57600080fd5b610ffa826116c9565b6000806020838503121561170757600080fd5b823567ffffffffffffffff8082111561171f57600080fd5b818501915085601f83011261173357600080fd5b81358181111561174257600080fd5b86602082850101111561175457600080fd5b60209290920196919550909350505050565b6000806040838503121561177957600080fd5b6117828361162c565b9150611790602084016116c9565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117c557600080fd5b6117ce8561162c565b93506117dc6020860161162c565b925060408501359150606085013567ffffffffffffffff8082111561180057600080fd5b818701915087601f83011261181457600080fd5b81358181111561182657611826611799565b604051601f8201601f19908116603f0116810190838211818310171561184e5761184e611799565b816040528281528a602084870101111561186757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561189e57600080fd5b6118a78361162c565b91506117906020840161162c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806118fe57607f821691505b6020821081141561191f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561194e5761194e611925565b500190565b60008282101561196557611965611925565b500390565b600081600019048311821515161561198457611984611925565b500290565b6000835161199b8184602088016115c1565b8351908301906119af8183602088016115c1565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119fb908301846115ed565b9695505050505050565b600060208284031215611a1757600080fd5b8151610ffa81611575565b6000600019821415611a3657611a36611925565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611a6257611a62611a3d565b500490565b600082611a7657611a76611a3d565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a694bc35be8de8d0321637e889904d2e81695975eb13ee85983192d6257db46264736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58665565655771544a774d487759554542386f6b4a424b39633843464171427156354b535a46396d537531322f00000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610565578063e985e9c51461057b578063f2fde38b146105c4578063f71143ca146105e457600080fd5b8063b88d4fde146104e9578063c1ab22ec14610509578063c87b56dd1461051f578063caa3b19d1461053f57600080fd5b806391b7f5ed116100d157806391b7f5ed1461047e57806395d89b411461049e578063a035b1fe146104b3578063a22cb465146104c957600080fd5b806370a082311461040b578063715018a61461042b5780637f953a22146104405780638da5cb5b1461046057600080fd5b806318160ddd1161017a5780633ccfd60b116101495780633ccfd60b1461039657806342842e0e146103ab57806355f804b3146103cb5780636352211e146103eb57600080fd5b806318160ddd1461032757806323b872dd146103405780633a467e3d146103605780633c4c7bb41461037657600080fd5b806307883703116101b65780630788370314610281578063081812fc14610294578063095ea7b3146102cc578063106c46b6146102ec57600080fd5b806301ffc9a7146101e85780630426c1fa1461021d5780630562b9f71461023f57806306fdde031461025f575b600080fd5b3480156101f457600080fd5b5061020861020336600461158b565b6105fe565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d6102383660046115a8565b610650565b005b34801561024b57600080fd5b5061023d61025a3660046115a8565b610688565b34801561026b57600080fd5b5061027461076f565b6040516102149190611619565b61023d61028f3660046115a8565b610801565b3480156102a057600080fd5b506102b46102af3660046115a8565b6109d0565b6040516001600160a01b039091168152602001610214565b3480156102d857600080fd5b5061023d6102e7366004611648565b610a14565b3480156102f857600080fd5b50610319610307366004611672565b600f6020526000908152604090205481565b604051908152602001610214565b34801561033357600080fd5b5060015460005403610319565b34801561034c57600080fd5b5061023d61035b36600461168d565b610ab4565b34801561036c57600080fd5b50610319600b5481565b34801561038257600080fd5b5061023d6103913660046116d9565b610c45565b3480156103a257600080fd5b5061023d610c82565b3480156103b757600080fd5b5061023d6103c636600461168d565b610d20565b3480156103d757600080fd5b5061023d6103e63660046116f4565b610d3b565b3480156103f757600080fd5b506102b46104063660046115a8565b610d71565b34801561041757600080fd5b50610319610426366004611672565b610d7c565b34801561043757600080fd5b5061023d610dcb565b34801561044c57600080fd5b5061023d61045b3660046115a8565b610e01565b34801561046c57600080fd5b506008546001600160a01b03166102b4565b34801561048a57600080fd5b5061023d6104993660046115a8565b610e30565b3480156104aa57600080fd5b50610274610e5f565b3480156104bf57600080fd5b50610319600c5481565b3480156104d557600080fd5b5061023d6104e4366004611766565b610e6e565b3480156104f557600080fd5b5061023d6105043660046117af565b610f04565b34801561051557600080fd5b50610319600e5481565b34801561052b57600080fd5b5061027461053a3660046115a8565b610f4e565b34801561054b57600080fd5b50600e54336000908152600f602052604090205410610208565b34801561057157600080fd5b50610319600a5481565b34801561058757600080fd5b5061020861059636600461188b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d057600080fd5b5061023d6105df366004611672565b611001565b3480156105f057600080fd5b50600d546102089060ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061062f57506380ac58cd60e01b6001600160e01b03198316145b8061064a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106835760405162461bcd60e51b815260040161067a906118b5565b60405180910390fd5b600e55565b6008546001600160a01b031633146106b25760405162461bcd60e51b815260040161067a906118b5565b478111156106fa5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a102130b630b731b29760591b604482015260640161067a565b600061070e6008546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610758576040519150601f19603f3d011682016040523d82523d6000602084013e61075d565b606091505b505090508061076b57600080fd5b5050565b60606002805461077e906118ea565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa906118ea565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b600d5460ff16151560011461084c5760405162461bcd60e51b815260206004820152601160248201527053616c65206973206e6f74206c6976652160781b604482015260640161067a565b6000811161089c5760405162461bcd60e51b815260206004820181905260248201527f596f75206d757374206d696e742061746c65617374206f6e6520746f6b656e2e604482015260640161067a565b60006108ab6001546000540390565b600a549091506108bb838361193b565b11156108f55760405162461bcd60e51b8152602060048201526009602482015268536f6c64204f75742160b81b604482015260640161067a565b600b548290158015906109185750600e54336000908152600f6020526040902054105b1561096e57600e54336000908152600f60205260408120805490919061093f90849061193b565b9091555050600e54600b8054600090610959908490611953565b9091555050600e5461096b9082611953565b90505b80600c5461097c919061196a565b3410156109c15760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742045746865722160681b604482015260640161067a565b6109cb3384611099565b505050565b60006109db826110b3565b6109f8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a1f82610d71565b9050336001600160a01b03821614610a5857610a3b8133610596565b610a58576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610abf826110da565b9050836001600160a01b0316816001600160a01b031614610af25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b3f57610b228633610596565b610b3f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b6657604051633a954ecd60e21b815260040160405180910390fd5b8015610b7157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610bfc5760018401600081815260046020526040902054610bfa576000548114610bfa5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610c6f5760405162461bcd60e51b815260040161067a906118b5565b600d805460ff1916911515919091179055565b6008546001600160a01b03163314610cac5760405162461bcd60e51b815260040161067a906118b5565b6000610cc06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d0a576040519150601f19603f3d011682016040523d82523d6000602084013e610d0f565b606091505b5050905080610d1d57600080fd5b50565b6109cb83838360405180602001604052806000815250610f04565b6008546001600160a01b03163314610d655760405162461bcd60e51b815260040161067a906118b5565b6109cb600983836114dc565b600061064a826110da565b60006001600160a01b038216610da5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610df55760405162461bcd60e51b815260040161067a906118b5565b610dff600061113b565b565b6008546001600160a01b03163314610e2b5760405162461bcd60e51b815260040161067a906118b5565b600b55565b6008546001600160a01b03163314610e5a5760405162461bcd60e51b815260040161067a906118b5565b600c55565b60606003805461077e906118ea565b6001600160a01b038216331415610e985760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f0f848484610ab4565b6001600160a01b0383163b15610f4857610f2b8484848461118d565b610f48576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f59826110b3565b610fa55760405162461bcd60e51b815260206004820181905260248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e2e604482015260640161067a565b6000610faf611285565b90506000815111610fcf5760405180602001604052806000815250610ffa565b80610fd984611294565b604051602001610fea929190611989565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461102b5760405162461bcd60e51b815260040161067a906118b5565b6001600160a01b0381166110905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067a565b610d1d8161113b565b61076b828260405180602001604052806000815250611392565b600080548210801561064a575050600090815260046020526040902054600160e01b161590565b60008160005481101561112257600081815260046020526040902054600160e01b8116611120575b80610ffa575060001901600081815260046020526040902054611102565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111c29033908990889088906004016119c8565b602060405180830381600087803b1580156111dc57600080fd5b505af192505050801561120c575060408051601f3d908101601f1916820190925261120991810190611a05565b60015b611267573d80801561123a576040519150601f19603f3d011682016040523d82523d6000602084013e61123f565b606091505b50805161125f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461077e906118ea565b6060816112b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112e257806112cc81611a22565b91506112db9050600a83611a53565b91506112bc565b60008167ffffffffffffffff8111156112fd576112fd611799565b6040519080825280601f01601f191660200182016040528015611327576020820181803683370190505b5090505b841561127d5761133c600183611953565b9150611349600a86611a67565b61135490603061193b565b60f81b81838151811061136957611369611a7b565b60200101906001600160f81b031916908160001a90535061138b600a86611a53565b945061132b565b61139c83836113ff565b6001600160a01b0383163b156109cb576000548281035b6113c6600086838060010194508661118d565b6113e3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113b35781600054146113f857600080fd5b5050505050565b6000546001600160a01b03831661142857604051622e076360e81b815260040160405180910390fd5b816114465760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114905760005550505050565b8280546114e8906118ea565b90600052602060002090601f01602090048101928261150a5760008555611550565b82601f106115235782800160ff19823516178555611550565b82800160010185558215611550579182015b82811115611550578235825591602001919060010190611535565b5061155c929150611560565b5090565b5b8082111561155c5760008155600101611561565b6001600160e01b031981168114610d1d57600080fd5b60006020828403121561159d57600080fd5b8135610ffa81611575565b6000602082840312156115ba57600080fd5b5035919050565b60005b838110156115dc5781810151838201526020016115c4565b83811115610f485750506000910152565b600081518084526116058160208601602086016115c1565b601f01601f19169290920160200192915050565b602081526000610ffa60208301846115ed565b80356001600160a01b038116811461164357600080fd5b919050565b6000806040838503121561165b57600080fd5b6116648361162c565b946020939093013593505050565b60006020828403121561168457600080fd5b610ffa8261162c565b6000806000606084860312156116a257600080fd5b6116ab8461162c565b92506116b96020850161162c565b9150604084013590509250925092565b8035801515811461164357600080fd5b6000602082840312156116eb57600080fd5b610ffa826116c9565b6000806020838503121561170757600080fd5b823567ffffffffffffffff8082111561171f57600080fd5b818501915085601f83011261173357600080fd5b81358181111561174257600080fd5b86602082850101111561175457600080fd5b60209290920196919550909350505050565b6000806040838503121561177957600080fd5b6117828361162c565b9150611790602084016116c9565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117c557600080fd5b6117ce8561162c565b93506117dc6020860161162c565b925060408501359150606085013567ffffffffffffffff8082111561180057600080fd5b818701915087601f83011261181457600080fd5b81358181111561182657611826611799565b604051601f8201601f19908116603f0116810190838211818310171561184e5761184e611799565b816040528281528a602084870101111561186757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561189e57600080fd5b6118a78361162c565b91506117906020840161162c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806118fe57607f821691505b6020821081141561191f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561194e5761194e611925565b500190565b60008282101561196557611965611925565b500390565b600081600019048311821515161561198457611984611925565b500290565b6000835161199b8184602088016115c1565b8351908301906119af8183602088016115c1565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119fb908301846115ed565b9695505050505050565b600060208284031215611a1757600080fd5b8151610ffa81611575565b6000600019821415611a3657611a36611925565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611a6257611a62611a3d565b500490565b600082611a7657611a76611a3d565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a694bc35be8de8d0321637e889904d2e81695975eb13ee85983192d6257db46264736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58665565655771544a774d487759554542386f6b4a424b39633843464171427156354b535a46396d537531322f00000000000000000000
-----Decoded View---------------
Arg [0] : _URI (string): ipfs://QmXfUeeWqTJwMHwYUEB8okJBK9c8CFAqBqV5KSZF9mSu12/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d58665565655771544a774d487759554542386f6b4a424b
Arg [3] : 39633843464171427156354b535a46396d537531322f00000000000000000000
Deployed Bytecode Sourcemap
50375:2786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20174:615;;;;;;;;;;-1:-1:-1;20174:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20174:615:0;;;;;;;;52181:130;;;;;;;;;;-1:-1:-1;52181:130:0;;;;;:::i;:::-;;:::i;:::-;;52919:239;;;;;;;;;;-1:-1:-1;52919:239:0;;;;;:::i;:::-;;:::i;25821:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51228:695::-;;;;;;:::i;:::-;;:::i;27767:204::-;;;;;;;;;;-1:-1:-1;27767:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27767:204:0;1528:203:1;27315:386:0;;;;;;;;;;-1:-1:-1;27315:386:0;;;;;:::i;:::-;;:::i;50678:50::-;;;;;;;;;;-1:-1:-1;50678:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;50678:50:0;2364:177:1;19228:315:0;;;;;;;;;;-1:-1:-1;19494:12:0;;19281:7;19478:13;:28;19228:315;;37032:2800;;;;;;;;;;-1:-1:-1;37032:2800:0;;;;;:::i;:::-;;:::i;50525:35::-;;;;;;;;;;;;;;;;52319:93;;;;;;;;;;-1:-1:-1;52319:93:0;;;;;:::i;:::-;;:::i;52766:147::-;;;;;;;;;;;;;:::i;28657:185::-;;;;;;;;;;-1:-1:-1;28657:185:0;;;;;:::i;:::-;;:::i;52518:114::-;;;;;;;;;;-1:-1:-1;52518:114:0;;;;;:::i;:::-;;:::i;25610:144::-;;;;;;;;;;-1:-1:-1;25610:144:0;;;;;:::i;:::-;;:::i;20853:224::-;;;;;;;;;;-1:-1:-1;20853:224:0;;;;;:::i;:::-;;:::i;4765:103::-;;;;;;;;;;;;;:::i;52069:104::-;;;;;;;;;;-1:-1:-1;52069:104:0;;;;;:::i;:::-;;:::i;4114:87::-;;;;;;;;;;-1:-1:-1;4187:6:0;;-1:-1:-1;;;;;4187:6:0;4114:87;;52420:90;;;;;;;;;;-1:-1:-1;52420:90:0;;;;;:::i;:::-;;:::i;25990:104::-;;;;;;;;;;;;;:::i;50567:20::-;;;;;;;;;;;;;;;;28043:308;;;;;;;;;;-1:-1:-1;28043:308:0;;;;;:::i;:::-;;:::i;28913:399::-;;;;;;;;;;-1:-1:-1;28913:399:0;;;;;:::i;:::-;;:::i;50635:36::-;;;;;;;;;;;;;;;;50848:372;;;;;;;;;;-1:-1:-1;50848:372:0;;;;;:::i;:::-;;:::i;51931:130::-;;;;;;;;;;-1:-1:-1;52036:17:0;;52022:10;51983:4;52006:27;;;:15;:27;;;;;;:47;51931:130;;50486:32;;;;;;;;;;;;;;;;28422:164;;;;;;;;;;-1:-1:-1;28422:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28543:25:0;;;28519:4;28543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28422:164;5023:201;;;;;;;;;;-1:-1:-1;5023:201:0;;;;;:::i;:::-;;:::i;50594:30::-;;;;;;;;;;-1:-1:-1;50594:30:0;;;;;;;;20174:615;20259:4;-1:-1:-1;;;;;;;;;20559:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20636:25:0;;;20559:102;:179;;;-1:-1:-1;;;;;;;;;;20713:25:0;;;20559:179;20539:199;20174:615;-1:-1:-1;;20174:615:0:o;52181:130::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;;;;;;;;;52262:17:::1;:33:::0;52181:130::o;52919:239::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;53008:21:::1;52998:6;:31;;52990:65;;;::::0;-1:-1:-1;;;52990:65:0;;6188:2:1;52990:65:0::1;::::0;::::1;6170:21:1::0;6227:2;6207:18;;;6200:30;-1:-1:-1;;;6246:18:1;;;6239:51;6307:18;;52990:65:0::1;5986:345:1::0;52990:65:0::1;53075:7;53096;4187:6:::0;;-1:-1:-1;;;;;4187:6:0;;4114:87;53096:7:::1;-1:-1:-1::0;;;;;53088:21:0::1;53117:6;53088:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53074:54;;;53147:2;53139:11;;;::::0;::::1;;52976:182;52919:239:::0;:::o;25821:100::-;25875:13;25908:5;25901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25821:100;:::o;51228:695::-;51291:10;;;;:18;;:10;:18;51283:47;;;;-1:-1:-1;;;51283:47:0;;7133:2:1;51283:47:0;;;7115:21:1;7172:2;7152:18;;;7145:30;-1:-1:-1;;;7191:18:1;;;7184:47;7248:18;;51283:47:0;6931:341:1;51283:47:0;51357:1;51349:5;:9;51341:53;;;;-1:-1:-1;;;51341:53:0;;7479:2:1;51341:53:0;;;7461:21:1;;;7498:18;;;7491:30;7557:34;7537:18;;;7530:62;7609:18;;51341:53:0;7277:356:1;51341:53:0;51405:14;51422:13;19494:12;;19281:7;19478:13;:28;;19228:315;51422:13;51472:9;;51405:30;;-1:-1:-1;51454:14:0;51463:5;51405:30;51454:14;:::i;:::-;:27;;51446:48;;;;-1:-1:-1;;;51446:48:0;;8105:2:1;51446:48:0;;;8087:21:1;8144:1;8124:18;;;8117:29;-1:-1:-1;;;8162:18:1;;;8155:39;8211:18;;51446:48:0;7903:332:1;51446:48:0;51549:14;;51527:5;;51549:18;;;;:43;;-1:-1:-1;52036:17:0;;52022:10;51983:4;52006:27;;;:15;:27;;;;;;:47;51571:21;51546:244;;;51666:17;;51651:10;51635:27;;;;:15;:27;;;;;:48;;:27;;;:48;;51666:17;;51635:48;:::i;:::-;;;;-1:-1:-1;;51716:17:0;;51698:14;:35;;:14;;:35;;51716:17;;51698:35;:::i;:::-;;;;-1:-1:-1;;51761:17:0;;51748:30;;;;:::i;:::-;;;51546:244;51845:9;51837:5;;:17;;;;:::i;:::-;51824:9;:30;;51816:61;;;;-1:-1:-1;;;51816:61:0;;8745:2:1;51816:61:0;;;8727:21:1;8784:2;8764:18;;;8757:30;-1:-1:-1;;;8803:18:1;;;8796:49;8862:18;;51816:61:0;8543:343:1;51816:61:0;51888:27;51898:10;51909:5;51888:9;:27::i;:::-;51272:651;;51228:695;:::o;27767:204::-;27835:7;27860:16;27868:7;27860;:16::i;:::-;27855:64;;27885:34;;-1:-1:-1;;;27885:34:0;;;;;;;;;;;27855:64;-1:-1:-1;27939:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27939:24:0;;27767:204::o;27315:386::-;27388:13;27404:16;27412:7;27404;:16::i;:::-;27388:32;-1:-1:-1;2918:10:0;-1:-1:-1;;;;;27437:28:0;;;27433:175;;27485:44;27502:5;2918:10;28422:164;:::i;27485:44::-;27480:128;;27557:35;;-1:-1:-1;;;27557:35:0;;;;;;;;;;;27480:128;27620:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27620:29:0;-1:-1:-1;;;;;27620:29:0;;;;;;;;;27665:28;;27620:24;;27665:28;;;;;;;27377:324;27315:386;;:::o;37032:2800::-;37166:27;37196;37215:7;37196:18;:27::i;:::-;37166:57;;37281:4;-1:-1:-1;;;;;37240:45:0;37256:19;-1:-1:-1;;;;;37240:45:0;;37236:86;;37294:28;;-1:-1:-1;;;37294:28:0;;;;;;;;;;;37236:86;37336:27;35762:21;;;35589:15;35804:4;35797:36;35886:4;35870:21;;35976:26;;2918:10;36729:30;;;-1:-1:-1;;;;;36427:26:0;;36708:19;;;36705:55;37515:174;;37602:43;37619:4;2918:10;28422:164;:::i;37602:43::-;37597:92;;37654:35;;-1:-1:-1;;;37654:35:0;;;;;;;;;;;37597:92;-1:-1:-1;;;;;37706:16:0;;37702:52;;37731:23;;-1:-1:-1;;;37731:23:0;;;;;;;;;;;37702:52;37903:15;37900:160;;;38043:1;38022:19;38015:30;37900:160;-1:-1:-1;;;;;38438:24:0;;;;;;;:18;:24;;;;;;38436:26;;-1:-1:-1;;38436:26:0;;;38507:22;;;;;;;;;38505:24;;-1:-1:-1;38505:24:0;;;25509:11;25485:22;25481:40;25468:62;-1:-1:-1;;;25468:62:0;38800:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;39094:46:0;;39090:626;;39198:1;39188:11;;39166:19;39321:30;;;:17;:30;;;;;;39317:384;;39459:13;;39444:11;:28;39440:242;;39606:30;;;;:17;:30;;;;;:52;;;39440:242;39147:569;39090:626;39763:7;39759:2;-1:-1:-1;;;;;39744:27:0;39753:4;-1:-1:-1;;;;;39744:27:0;;;;;;;;;;;37155:2677;;;37032:2800;;;:::o;52319:93::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;52379:10:::1;:17:::0;;-1:-1:-1;;52379:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52319:93::o;52766:147::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;52815:7:::1;52836;4187:6:::0;;-1:-1:-1;;;;;4187:6:0;;4114:87;52836:7:::1;-1:-1:-1::0;;;;;52828:21:0::1;52857;52828:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52814:69;;;52902:2;52894:11;;;::::0;::::1;;52803:110;52766:147::o:0;28657:185::-;28795:39;28812:4;28818:2;28822:7;28795:39;;;;;;;;;;;;:16;:39::i;52518:114::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;52593:23:::1;:13;52609:7:::0;;52593:23:::1;:::i;25610:144::-:0;25674:7;25717:27;25736:7;25717:18;:27::i;20853:224::-;20917:7;-1:-1:-1;;;;;20941:19:0;;20937:60;;20969:28;;-1:-1:-1;;;20969:28:0;;;;;;;;;;;20937:60;-1:-1:-1;;;;;;21015:25:0;;;;;:18;:25;;;;;;15408:13;21015:54;;20853:224::o;4765:103::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;4830:30:::1;4857:1;4830:18;:30::i;:::-;4765:103::o:0;52069:104::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;52137:14:::1;:20:::0;52069:104::o;52420:90::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;52485:5:::1;:17:::0;52420:90::o;25990:104::-;26046:13;26079:7;26072:14;;;;;:::i;28043:308::-;-1:-1:-1;;;;;28142:31:0;;2918:10;28142:31;28138:61;;;28182:17;;-1:-1:-1;;;28182:17:0;;;;;;;;;;;28138:61;2918:10;28212:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28212:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28212:60:0;;;;;;;;;;28288:55;;540:41:1;;;28212:49:0;;2918:10;28288:55;;513:18:1;28288:55:0;;;;;;;28043:308;;:::o;28913:399::-;29080:31;29093:4;29099:2;29103:7;29080:12;:31::i;:::-;-1:-1:-1;;;;;29126:14:0;;;:19;29122:183;;29165:56;29196:4;29202:2;29206:7;29215:5;29165:30;:56::i;:::-;29160:145;;29249:40;;-1:-1:-1;;;29249:40:0;;;;;;;;;;;29160:145;28913:399;;;;:::o;50848:372::-;50921:13;50955:16;50963:7;50955;:16::i;:::-;50947:60;;;;-1:-1:-1;;;50947:60:0;;9093:2:1;50947:60:0;;;9075:21:1;;;9112:18;;;9105:30;9171:34;9151:18;;;9144:62;9223:18;;50947:60:0;8891:356:1;50947:60:0;51018:28;51049:10;:8;:10::i;:::-;51018:41;;51108:1;51083:14;51077:28;:32;:127;;;;;;;;;;;;;;;;;51145:14;51161:18;:7;:16;:18::i;:::-;51128:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51077:127;51070:134;50848:372;-1:-1:-1;;;50848:372:0:o;5023:201::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5112:22:0;::::1;5104:73;;;::::0;-1:-1:-1;;;5104:73:0;;10096:2:1;5104:73:0::1;::::0;::::1;10078:21:1::0;10135:2;10115:18;;;10108:30;10174:34;10154:18;;;10147:62;-1:-1:-1;;;10225:18:1;;;10218:36;10271:19;;5104:73:0::1;9894:402:1::0;5104:73:0::1;5188:28;5207:8;5188:18;:28::i;29924:104::-:0;29993:27;30003:2;30007:8;29993:27;;;;;;;;;;;;:9;:27::i;29567:273::-;29624:4;29714:13;;29704:7;:23;29661:152;;;;-1:-1:-1;;29765:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29765:43:0;:48;;29567:273::o;22527:1129::-;22594:7;22629;22731:13;;22724:4;:20;22720:869;;;22769:14;22786:23;;;:17;:23;;;;;;-1:-1:-1;;;22875:23:0;;22871:699;;23394:113;23401:11;23394:113;;-1:-1:-1;;;23472:6:0;23454:25;;;;:17;:25;;;;;;23394:113;;22871:699;22746:843;22720:869;23617:31;;-1:-1:-1;;;23617:31:0;;;;;;;;;;;5384:191;5477:6;;;-1:-1:-1;;;;;5494:17:0;;;-1:-1:-1;;;;;;5494:17:0;;;;;;;5527:40;;5477:6;;;5494:17;5477:6;;5527:40;;5458:16;;5527:40;5447:128;5384:191;:::o;43783:716::-;43967:88;;-1:-1:-1;;;43967:88:0;;43946:4;;-1:-1:-1;;;;;43967:45:0;;;;;:88;;2918:10;;44034:4;;44040:7;;44049:5;;43967:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43967:88:0;;;;;;;;-1:-1:-1;;43967:88:0;;;;;;;;;;;;:::i;:::-;;;43963:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44250:13:0;;44246:235;;44296:40;;-1:-1:-1;;;44296:40:0;;;;;;;;;;;44246:235;44439:6;44433:13;44424:6;44420:2;44416:15;44409:38;43963:529;-1:-1:-1;;;;;;44126:64:0;-1:-1:-1;;;44126:64:0;;-1:-1:-1;43963:529:0;43783:716;;;;;;:::o;52640:114::-;52700:13;52733;52726:20;;;;;:::i;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;30444:681;30567:19;30573:2;30577:8;30567:5;:19::i;:::-;-1:-1:-1;;;;;30628:14:0;;;:19;30624:483;;30668:11;30682:13;30730:14;;;30763:233;30794:62;30833:1;30837:2;30841:7;;;;;;30850:5;30794:30;:62::i;:::-;30789:167;;30892:40;;-1:-1:-1;;;30892:40:0;;;;;;;;;;;30789:167;30991:3;30983:5;:11;30763:233;;31078:3;31061:13;;:20;31057:34;;31083:8;;;31057:34;30649:458;;30444:681;;;:::o;31398:1529::-;31463:20;31486:13;-1:-1:-1;;;;;31514:16:0;;31510:48;;31539:19;;-1:-1:-1;;;31539:19:0;;;;;;;;;;;31510:48;31573:13;31569:44;;31595:18;;-1:-1:-1;;;31595:18:0;;;;;;;;;;;31569:44;-1:-1:-1;;;;;32101:22:0;;;;;;:18;:22;;15545:2;32101:22;;:70;;32139:31;32127:44;;32101:70;;;25509:11;25485:22;25481:40;-1:-1:-1;27219:15:0;;27194:23;27190:45;25478:51;25468:62;32414:31;;;;:17;:31;;;;;:173;32432:12;32663:23;;;32701:101;32728:35;;32753:9;;;;;-1:-1:-1;;;;;32728:35:0;;;32745:1;;32728:35;;32745:1;;32728:35;32797:3;32787:7;:13;32701:101;;32818:13;:19;-1:-1:-1;51272:651:0;;51228:695;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:160::-;2944:20;;3000:13;;2993:21;2983:32;;2973:60;;3029:1;3026;3019:12;3044:180;3100:6;3153:2;3141:9;3132:7;3128:23;3124:32;3121:52;;;3169:1;3166;3159:12;3121:52;3192:26;3208:9;3192:26;:::i;3229:592::-;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3417:9;3404:23;3446:18;3487:2;3479:6;3476:14;3473:34;;;3503:1;3500;3493:12;3473:34;3541:6;3530:9;3526:22;3516:32;;3586:7;3579:4;3575:2;3571:13;3567:27;3557:55;;3608:1;3605;3598:12;3557:55;3648:2;3635:16;3674:2;3666:6;3663:14;3660:34;;;3690:1;3687;3680:12;3660:34;3735:7;3730:2;3721:6;3717:2;3713:15;3709:24;3706:37;3703:57;;;3756:1;3753;3746:12;3703:57;3787:2;3779:11;;;;;3809:6;;-1:-1:-1;3229:592:1;;-1:-1:-1;;;;3229:592:1:o;3826:254::-;3891:6;3899;3952:2;3940:9;3931:7;3927:23;3923:32;3920:52;;;3968:1;3965;3958:12;3920:52;3991:29;4010:9;3991:29;:::i;:::-;3981:39;;4039:35;4070:2;4059:9;4055:18;4039:35;:::i;:::-;4029:45;;3826:254;;;;;:::o;4085:127::-;4146:10;4141:3;4137:20;4134:1;4127:31;4177:4;4174:1;4167:15;4201:4;4198:1;4191:15;4217:1138;4312:6;4320;4328;4336;4389:3;4377:9;4368:7;4364:23;4360:33;4357:53;;;4406:1;4403;4396:12;4357:53;4429:29;4448:9;4429:29;:::i;:::-;4419:39;;4477:38;4511:2;4500:9;4496:18;4477:38;:::i;:::-;4467:48;;4562:2;4551:9;4547:18;4534:32;4524:42;;4617:2;4606:9;4602:18;4589:32;4640:18;4681:2;4673:6;4670:14;4667:34;;;4697:1;4694;4687:12;4667:34;4735:6;4724:9;4720:22;4710:32;;4780:7;4773:4;4769:2;4765:13;4761:27;4751:55;;4802:1;4799;4792:12;4751:55;4838:2;4825:16;4860:2;4856;4853:10;4850:36;;;4866:18;;:::i;:::-;4941:2;4935:9;4909:2;4995:13;;-1:-1:-1;;4991:22:1;;;5015:2;4987:31;4983:40;4971:53;;;5039:18;;;5059:22;;;5036:46;5033:72;;;5085:18;;:::i;:::-;5125:10;5121:2;5114:22;5160:2;5152:6;5145:18;5200:7;5195:2;5190;5186;5182:11;5178:20;5175:33;5172:53;;;5221:1;5218;5211:12;5172:53;5277:2;5272;5268;5264:11;5259:2;5251:6;5247:15;5234:46;5322:1;5317:2;5312;5304:6;5300:15;5296:24;5289:35;5343:6;5333:16;;;;;;;4217:1138;;;;;;;:::o;5360:260::-;5428:6;5436;5489:2;5477:9;5468:7;5464:23;5460:32;5457:52;;;5505:1;5502;5495:12;5457:52;5528:29;5547:9;5528:29;:::i;:::-;5518:39;;5576:38;5610:2;5599:9;5595:18;5576:38;:::i;5625:356::-;5827:2;5809:21;;;5846:18;;;5839:30;5905:34;5900:2;5885:18;;5878:62;5972:2;5957:18;;5625:356::o;6546:380::-;6625:1;6621:12;;;;6668;;;6689:61;;6743:4;6735:6;6731:17;6721:27;;6689:61;6796:2;6788:6;6785:14;6765:18;6762:38;6759:161;;;6842:10;6837:3;6833:20;6830:1;6823:31;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6759:161;;6546:380;;;:::o;7638:127::-;7699:10;7694:3;7690:20;7687:1;7680:31;7730:4;7727:1;7720:15;7754:4;7751:1;7744:15;7770:128;7810:3;7841:1;7837:6;7834:1;7831:13;7828:39;;;7847:18;;:::i;:::-;-1:-1:-1;7883:9:1;;7770:128::o;8240:125::-;8280:4;8308:1;8305;8302:8;8299:34;;;8313:18;;:::i;:::-;-1:-1:-1;8350:9:1;;8240:125::o;8370:168::-;8410:7;8476:1;8472;8468:6;8464:14;8461:1;8458:21;8453:1;8446:9;8439:17;8435:45;8432:71;;;8483:18;;:::i;:::-;-1:-1:-1;8523:9:1;;8370:168::o;9252:637::-;9532:3;9570:6;9564:13;9586:53;9632:6;9627:3;9620:4;9612:6;9608:17;9586:53;:::i;:::-;9702:13;;9661:16;;;;9724:57;9702:13;9661:16;9758:4;9746:17;;9724:57;:::i;:::-;-1:-1:-1;;;9803:20:1;;9832:22;;;9881:1;9870:13;;9252:637;-1:-1:-1;;;;9252:637:1:o;10301:489::-;-1:-1:-1;;;;;10570:15:1;;;10552:34;;10622:15;;10617:2;10602:18;;10595:43;10669:2;10654:18;;10647:34;;;10717:3;10712:2;10697:18;;10690:31;;;10495:4;;10738:46;;10764:19;;10756:6;10738:46;:::i;:::-;10730:54;10301:489;-1:-1:-1;;;;;;10301:489:1:o;10795:249::-;10864:6;10917:2;10905:9;10896:7;10892:23;10888:32;10885:52;;;10933:1;10930;10923:12;10885:52;10965:9;10959:16;10984:30;11008:5;10984:30;:::i;11049:135::-;11088:3;-1:-1:-1;;11109:17:1;;11106:43;;;11129:18;;:::i;:::-;-1:-1:-1;11176:1:1;11165:13;;11049:135::o;11189:127::-;11250:10;11245:3;11241:20;11238:1;11231:31;11281:4;11278:1;11271:15;11305:4;11302:1;11295:15;11321:120;11361:1;11387;11377:35;;11392:18;;:::i;:::-;-1:-1:-1;11426:9:1;;11321:120::o;11446:112::-;11478:1;11504;11494:35;;11509:18;;:::i;:::-;-1:-1:-1;11543:9:1;;11446:112::o;11563:127::-;11624:10;11619:3;11615:20;11612:1;11605:31;11655:4;11652:1;11645:15;11679:4;11676:1;11669:15
Swarm Source
ipfs://a694bc35be8de8d0321637e889904d2e81695975eb13ee85983192d6257db462
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.