ERC-721
Overview
Max Total Supply
1,637 FYV
Holders
250
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 FYVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Fairyverse
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /* DEGEN MINT TLDR; CALL mintPublic WITH A QUANTITY OF 0 AND VALUE OF 0 FOR JUST FREE MINT OTHERWISE ANY QUANTITY LESS THAN OR EQUAL TO 10 AND VALUE OF .005 * THAT QUANTITY, FREE MINT WILL BE ADDED ON TOP */ contract Fairyverse is ERC721A , Ownable{ string public constant AREAD_ME = "CALL mintPublic WITH A QUANTITY OF 0 AND VALUE OF 0 FOR JUST FREE MINT. OTHERWISE ANY QUANTITY LESS THAN OR EQUAL TO 10 AND VALUE OF .005 * THAT QUANTITY, FREE MINT WILL BE ADDED ON TOP"; uint256 public constant RESERVED_SUPPLY = 1; uint256 public constant MAX_SUPPLY = 6666; uint256 public constant MAX_PER_WALLET = 10; constructor() ERC721A("Fairyverse", "FYV") {} /** * Public sale mechanism */ bool public publicSale = false; uint256 public freeRedeemed = 0; uint256 public MINT_PRICE = .005 ether; uint256 public FREE_SUPPLY = 2000; bool public reserved = false; function setPublicSale(bool toggle) external onlyOwner { publicSale = toggle; } function increaseFreeSupply(uint256 amount) external onlyOwner { require(amount > FREE_SUPPLY); FREE_SUPPLY = amount; } function decreasePrice(uint256 price) external onlyOwner { require(price < MINT_PRICE); MINT_PRICE = price; } /** * Public minting */ mapping(address => uint256) public publicAddressMintCount; mapping(address => bool) public FreeClaimed; function mintPublic(uint256 _quantity) public payable { require(msg.sender == tx.origin); require(totalSupply() + _quantity <= MAX_SUPPLY, "Surpasses supply"); require( publicAddressMintCount[msg.sender] + _quantity <= MAX_PER_WALLET, "Surpasses max per wallet" ); require(publicSale, "Public sale not started"); require(msg.value == (_quantity) * MINT_PRICE); publicAddressMintCount[msg.sender] += _quantity; if (freeRedeemed < FREE_SUPPLY && !FreeClaimed[msg.sender]) { _quantity += 1; freeRedeemed += 1; FreeClaimed[msg.sender] = true; } require(_quantity > 0, "Free mint sold out"); _safeMint(msg.sender, _quantity); } function reserve() public onlyOwner { require(!reserved); reserved = true; _safeMint(msg.sender, RESERVED_SUPPLY); } /** * Base URI */ string private baseURI; function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /** * Withdrawal */ function withdraw() external onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(owner()), balance); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @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 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` 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 auxillary 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 auxillary 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; assembly { // Cast aux without masking. 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; } /** * 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 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); 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-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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 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) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); 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; } /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":[],"name":"AREAD_ME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FreeClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"decreasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeRedeemed","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":"uint256","name":"amount","type":"uint256"}],"name":"increaseFreeSupply","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setPublicSale","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"}]
Contract Creation Code
60806040526000600860146101000a81548160ff02191690831515021790555060006009556611c37937e08000600a556107d0600b556000600c60006101000a81548160ff0219169083151502179055503480156200005d57600080fd5b506040518060400160405280600a81526020017f46616972797665727365000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f46595600000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e29291906200020d565b508060039080519060200190620000fb9291906200020d565b506200010c6200013a60201b60201c565b600081905550505062000134620001286200013f60201b60201c565b6200014760201b60201c565b62000322565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b90620002bd565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec620002f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61339180620003326000396000f3fe6080604052600436106102045760003560e01c80635aca1bb611610118578063a22cb465116100a0578063cd3293de1161006f578063cd3293de14610757578063e985e9c51461076e578063efd0cbf9146107ab578063f2fde38b146107c7578063fe60d12c146107f057610204565b8063a22cb4651461069d578063b88d4fde146106c6578063c002d23d146106ef578063c87b56dd1461071a57610204565b80637ab13461116100e75780637ab13461146105c85780638b43adc1146105f15780638da5cb5b1461061c57806395d89b41146106475780639858cf191461067257610204565b80635aca1bb61461050e5780636352211e1461053757806370a0823114610574578063715018a6146105b157610204565b806323b872dd1161019b57806339bd17671161016a57806339bd17671461043d5780633ccfd60b1461047a57806342842e0e1461049157806350dd9d9e146104ba57806355f804b3146104e557610204565b806323b872dd1461039357806331a53e9a146103bc57806332cb6b0c146103e757806333bc1c5c1461041257610204565b8063081812fc116101d7578063081812fc146102d7578063095ea7b3146103145780630f2cdd6c1461033d57806318160ddd1461036857610204565b806301ffc9a71461020957806306fdde031461024657806307e4d480146102715780630811e2c0146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906128b4565b61081b565b60405161023d9190612c1b565b60405180910390f35b34801561025257600080fd5b5061025b6108ad565b6040516102689190612c36565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906126e4565b61093f565b6040516102a59190612d58565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612947565b610957565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612947565b6109eb565b60405161030b9190612bb4565b60405180910390f35b34801561032057600080fd5b5061033b6004803603810190610336919061284f565b610a67565b005b34801561034957600080fd5b50610352610c0e565b60405161035f9190612d58565b60405180910390f35b34801561037457600080fd5b5061037d610c13565b60405161038a9190612d58565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190612749565b610c2a565b005b3480156103c857600080fd5b506103d1610c3a565b6040516103de9190612d58565b60405180910390f35b3480156103f357600080fd5b506103fc610c3f565b6040516104099190612d58565b60405180910390f35b34801561041e57600080fd5b50610427610c45565b6040516104349190612c1b565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906126e4565b610c58565b6040516104719190612c1b565b60405180910390f35b34801561048657600080fd5b5061048f610c78565b005b34801561049d57600080fd5b506104b860048036038101906104b39190612749565b610d0d565b005b3480156104c657600080fd5b506104cf610d2d565b6040516104dc9190612d58565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190612906565b610d33565b005b34801561051a57600080fd5b506105356004803603810190610530919061288b565b610dc9565b005b34801561054357600080fd5b5061055e60048036038101906105599190612947565b610e62565b60405161056b9190612bb4565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906126e4565b610e74565b6040516105a89190612d58565b60405180910390f35b3480156105bd57600080fd5b506105c6610f2d565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612947565b610fb5565b005b3480156105fd57600080fd5b50610606611049565b6040516106139190612c36565b60405180910390f35b34801561062857600080fd5b50610631611065565b60405161063e9190612bb4565b60405180910390f35b34801561065357600080fd5b5061065c61108f565b6040516106699190612c36565b60405180910390f35b34801561067e57600080fd5b50610687611121565b6040516106949190612d58565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612813565b611127565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190612798565b61129f565b005b3480156106fb57600080fd5b50610704611312565b6040516107119190612d58565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190612947565b611318565b60405161074e9190612c36565b60405180910390f35b34801561076357600080fd5b5061076c6113b7565b005b34801561077a57600080fd5b506107956004803603810190610790919061270d565b611475565b6040516107a29190612c1b565b60405180910390f35b6107c560048036038101906107c09190612947565b611509565b005b3480156107d357600080fd5b506107ee60048036038101906107e991906126e4565b611818565b005b3480156107fc57600080fd5b50610805611910565b6040516108129190612c1b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108bc90612fae565b80601f01602080910402602001604051908101604052809291908181526020018280546108e890612fae565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b61095f611923565b73ffffffffffffffffffffffffffffffffffffffff1661097d611065565b73ffffffffffffffffffffffffffffffffffffffff16146109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612d18565b60405180910390fd5b600b5481116109e157600080fd5b80600b8190555050565b60006109f68261192b565b610a2c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a728261198a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ada576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af9611a58565b73ffffffffffffffffffffffffffffffffffffffff1614610b5c57610b2581610b20611a58565b611475565b610b5b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b6000610c1d611a60565b6001546000540303905090565b610c35838383611a65565b505050565b600181565b611a0a81565b600860149054906101000a900460ff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b610c80611923565b73ffffffffffffffffffffffffffffffffffffffff16610c9e611065565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90612d18565b60405180910390fd5b6000479050610d0a610d04611065565b82611e0f565b50565b610d288383836040518060200160405280600081525061129f565b505050565b60095481565b610d3b611923565b73ffffffffffffffffffffffffffffffffffffffff16610d59611065565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690612d18565b60405180910390fd5b80600f9080519060200190610dc5929190612508565b5050565b610dd1611923565b73ffffffffffffffffffffffffffffffffffffffff16610def611065565b73ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90612d18565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b6000610e6d8261198a565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610edc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f35611923565b73ffffffffffffffffffffffffffffffffffffffff16610f53611065565b73ffffffffffffffffffffffffffffffffffffffff1614610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090612d18565b60405180910390fd5b610fb36000611f03565b565b610fbd611923565b73ffffffffffffffffffffffffffffffffffffffff16610fdb611065565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890612d18565b60405180910390fd5b600a54811061103f57600080fd5b80600a8190555050565b6040518060e0016040528060b981526020016132a360b9913981565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109e90612fae565b80601f01602080910402602001604051908101604052809291908181526020018280546110ca90612fae565b80156111175780601f106110ec57610100808354040283529160200191611117565b820191906000526020600020905b8154815290600101906020018083116110fa57829003601f168201915b5050505050905090565b600b5481565b61112f611a58565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611194576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111a1611a58565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661124e611a58565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112939190612c1b565b60405180910390a35050565b6112aa848484611a65565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461130c576112d584848484611fc9565b61130b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b60606113238261192b565b611359576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611363612129565b905060008151141561138457604051806020016040528060008152506113af565b8061138e846121bb565b60405160200161139f929190612b7b565b6040516020818303038152906040525b915050919050565b6113bf611923565b73ffffffffffffffffffffffffffffffffffffffff166113dd611065565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90612d18565b60405180910390fd5b600c60009054906101000a900460ff161561144d57600080fd5b6001600c60006101000a81548160ff021916908315150217905550611473336001612215565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461154157600080fd5b611a0a8161154d610c13565b6115579190612e48565b1115611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90612d38565b60405180910390fd5b600a81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e59190612e48565b1115611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90612cf8565b60405180910390fd5b600860149054906101000a900460ff16611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612c98565b60405180910390fd5b600a54816116839190612e9e565b341461168e57600080fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116dd9190612e48565b92505081905550600b546009541080156117415750600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117c8576001816117539190612e48565b90506001600960008282546117689190612e48565b925050819055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000811161180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290612c78565b60405180910390fd5b6118153382612215565b50565b611820611923565b73ffffffffffffffffffffffffffffffffffffffff1661183e611065565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612d18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90612c58565b60405180910390fd5b61190d81611f03565b50565b600c60009054906101000a900460ff1681565b600033905090565b600081611936611a60565b11158015611945575060005482105b8015611983575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611999611a60565b11611a2157600054811015611a205760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a1e575b6000811415611a145760046000836001900393508381526020019081526020016000205490506119e9565b8092505050611a53565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611a708261198a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611af8611a58565b73ffffffffffffffffffffffffffffffffffffffff161480611b275750611b2685611b21611a58565b611475565b5b80611b6c5750611b35611a58565b73ffffffffffffffffffffffffffffffffffffffff16611b54846109eb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ba5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c0c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c198585856001612233565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611d1686612239565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611da0576000600184019050600060046000838152602001908152602001600020541415611d9e576000548114611d9d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e088585856001612243565b5050505050565b80471015611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990612cd8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e7890612b9f565b60006040518083038185875af1925050503d8060008114611eb5576040519150601f19603f3d011682016040523d82523d6000602084013e611eba565b606091505b5050905080611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590612cb8565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fef611a58565b8786866040518563ffffffff1660e01b81526004016120119493929190612bcf565b602060405180830381600087803b15801561202b57600080fd5b505af192505050801561205c57506040513d601f19601f8201168201806040525081019061205991906128dd565b60015b6120d6573d806000811461208c576040519150601f19603f3d011682016040523d82523d6000602084013e612091565b606091505b506000815114156120ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461213890612fae565b80601f016020809104026020016040519081016040528092919081815260200182805461216490612fae565b80156121b15780601f10612186576101008083540402835291602001916121b1565b820191906000526020600020905b81548152906001019060200180831161219457829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561220157600183039250600a81066030018353600a810490506121e1565b508181036020830392508083525050919050565b61222f828260405180602001604052806000815250612249565b5050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122b6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156122f1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122fe6000858386612233565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612363600185146124fe565b901b60a042901b61237386612239565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612477575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124276000878480600101955087611fc9565b61245d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123b857826000541461247257600080fd5b6124e2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612478575b8160008190555050506124f86000858386612243565b50505050565b6000819050919050565b82805461251490612fae565b90600052602060002090601f016020900481019282612536576000855561257d565b82601f1061254f57805160ff191683800117855561257d565b8280016001018555821561257d579182015b8281111561257c578251825591602001919060010190612561565b5b50905061258a919061258e565b5090565b5b808211156125a757600081600090555060010161258f565b5090565b60006125be6125b984612d98565b612d73565b9050828152602081018484840111156125d657600080fd5b6125e1848285612f6c565b509392505050565b60006125fc6125f784612dc9565b612d73565b90508281526020810184848401111561261457600080fd5b61261f848285612f6c565b509392505050565b60008135905061263681613246565b92915050565b60008135905061264b8161325d565b92915050565b60008135905061266081613274565b92915050565b60008151905061267581613274565b92915050565b600082601f83011261268c57600080fd5b813561269c8482602086016125ab565b91505092915050565b600082601f8301126126b657600080fd5b81356126c68482602086016125e9565b91505092915050565b6000813590506126de8161328b565b92915050565b6000602082840312156126f657600080fd5b600061270484828501612627565b91505092915050565b6000806040838503121561272057600080fd5b600061272e85828601612627565b925050602061273f85828601612627565b9150509250929050565b60008060006060848603121561275e57600080fd5b600061276c86828701612627565b935050602061277d86828701612627565b925050604061278e868287016126cf565b9150509250925092565b600080600080608085870312156127ae57600080fd5b60006127bc87828801612627565b94505060206127cd87828801612627565b93505060406127de878288016126cf565b925050606085013567ffffffffffffffff8111156127fb57600080fd5b6128078782880161267b565b91505092959194509250565b6000806040838503121561282657600080fd5b600061283485828601612627565b92505060206128458582860161263c565b9150509250929050565b6000806040838503121561286257600080fd5b600061287085828601612627565b9250506020612881858286016126cf565b9150509250929050565b60006020828403121561289d57600080fd5b60006128ab8482850161263c565b91505092915050565b6000602082840312156128c657600080fd5b60006128d484828501612651565b91505092915050565b6000602082840312156128ef57600080fd5b60006128fd84828501612666565b91505092915050565b60006020828403121561291857600080fd5b600082013567ffffffffffffffff81111561293257600080fd5b61293e848285016126a5565b91505092915050565b60006020828403121561295957600080fd5b6000612967848285016126cf565b91505092915050565b61297981612ef8565b82525050565b61298881612f0a565b82525050565b600061299982612dfa565b6129a38185612e10565b93506129b3818560208601612f7b565b6129bc8161309e565b840191505092915050565b60006129d282612e05565b6129dc8185612e2c565b93506129ec818560208601612f7b565b6129f58161309e565b840191505092915050565b6000612a0b82612e05565b612a158185612e3d565b9350612a25818560208601612f7b565b80840191505092915050565b6000612a3e602683612e2c565b9150612a49826130af565b604082019050919050565b6000612a61601283612e2c565b9150612a6c826130fe565b602082019050919050565b6000612a84601783612e2c565b9150612a8f82613127565b602082019050919050565b6000612aa7603a83612e2c565b9150612ab282613150565b604082019050919050565b6000612aca601d83612e2c565b9150612ad58261319f565b602082019050919050565b6000612aed601883612e2c565b9150612af8826131c8565b602082019050919050565b6000612b10602083612e2c565b9150612b1b826131f1565b602082019050919050565b6000612b33600083612e21565b9150612b3e8261321a565b600082019050919050565b6000612b56601083612e2c565b9150612b618261321d565b602082019050919050565b612b7581612f62565b82525050565b6000612b878285612a00565b9150612b938284612a00565b91508190509392505050565b6000612baa82612b26565b9150819050919050565b6000602082019050612bc96000830184612970565b92915050565b6000608082019050612be46000830187612970565b612bf16020830186612970565b612bfe6040830185612b6c565b8181036060830152612c10818461298e565b905095945050505050565b6000602082019050612c30600083018461297f565b92915050565b60006020820190508181036000830152612c5081846129c7565b905092915050565b60006020820190508181036000830152612c7181612a31565b9050919050565b60006020820190508181036000830152612c9181612a54565b9050919050565b60006020820190508181036000830152612cb181612a77565b9050919050565b60006020820190508181036000830152612cd181612a9a565b9050919050565b60006020820190508181036000830152612cf181612abd565b9050919050565b60006020820190508181036000830152612d1181612ae0565b9050919050565b60006020820190508181036000830152612d3181612b03565b9050919050565b60006020820190508181036000830152612d5181612b49565b9050919050565b6000602082019050612d6d6000830184612b6c565b92915050565b6000612d7d612d8e565b9050612d898282612fe0565b919050565b6000604051905090565b600067ffffffffffffffff821115612db357612db261306f565b5b612dbc8261309e565b9050602081019050919050565b600067ffffffffffffffff821115612de457612de361306f565b5b612ded8261309e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e5382612f62565b9150612e5e83612f62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9357612e92613011565b5b828201905092915050565b6000612ea982612f62565b9150612eb483612f62565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612eed57612eec613011565b5b828202905092915050565b6000612f0382612f42565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f99578082015181840152602081019050612f7e565b83811115612fa8576000848401525b50505050565b60006002820490506001821680612fc657607f821691505b60208210811415612fda57612fd9613040565b5b50919050565b612fe98261309e565b810181811067ffffffffffffffff821117156130085761300761306f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46726565206d696e7420736f6c64206f75740000000000000000000000000000600082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f537572706173736573206d6178207065722077616c6c65740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b61324f81612ef8565b811461325a57600080fd5b50565b61326681612f0a565b811461327157600080fd5b50565b61327d81612f16565b811461328857600080fd5b50565b61329481612f62565b811461329f57600080fd5b5056fe43414c4c206d696e745075626c696320574954482041205155414e54495459204f46203020414e442056414c5545204f46203020464f52204a5553542046524545204d494e542e204f544845525749534520414e59205155414e54495459204c455353205448414e204f5220455155414c20544f20313020414e442056414c5545204f46202e303035202a2054484154205155414e544954592c2046524545204d494e542057494c4c204245204144444544204f4e20544f50a264697066735822122065f54d790521a766c104438d6259aa2732f46c7cd230e18fbe230fa18db2818264736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102045760003560e01c80635aca1bb611610118578063a22cb465116100a0578063cd3293de1161006f578063cd3293de14610757578063e985e9c51461076e578063efd0cbf9146107ab578063f2fde38b146107c7578063fe60d12c146107f057610204565b8063a22cb4651461069d578063b88d4fde146106c6578063c002d23d146106ef578063c87b56dd1461071a57610204565b80637ab13461116100e75780637ab13461146105c85780638b43adc1146105f15780638da5cb5b1461061c57806395d89b41146106475780639858cf191461067257610204565b80635aca1bb61461050e5780636352211e1461053757806370a0823114610574578063715018a6146105b157610204565b806323b872dd1161019b57806339bd17671161016a57806339bd17671461043d5780633ccfd60b1461047a57806342842e0e1461049157806350dd9d9e146104ba57806355f804b3146104e557610204565b806323b872dd1461039357806331a53e9a146103bc57806332cb6b0c146103e757806333bc1c5c1461041257610204565b8063081812fc116101d7578063081812fc146102d7578063095ea7b3146103145780630f2cdd6c1461033d57806318160ddd1461036857610204565b806301ffc9a71461020957806306fdde031461024657806307e4d480146102715780630811e2c0146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906128b4565b61081b565b60405161023d9190612c1b565b60405180910390f35b34801561025257600080fd5b5061025b6108ad565b6040516102689190612c36565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906126e4565b61093f565b6040516102a59190612d58565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612947565b610957565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612947565b6109eb565b60405161030b9190612bb4565b60405180910390f35b34801561032057600080fd5b5061033b6004803603810190610336919061284f565b610a67565b005b34801561034957600080fd5b50610352610c0e565b60405161035f9190612d58565b60405180910390f35b34801561037457600080fd5b5061037d610c13565b60405161038a9190612d58565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190612749565b610c2a565b005b3480156103c857600080fd5b506103d1610c3a565b6040516103de9190612d58565b60405180910390f35b3480156103f357600080fd5b506103fc610c3f565b6040516104099190612d58565b60405180910390f35b34801561041e57600080fd5b50610427610c45565b6040516104349190612c1b565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906126e4565b610c58565b6040516104719190612c1b565b60405180910390f35b34801561048657600080fd5b5061048f610c78565b005b34801561049d57600080fd5b506104b860048036038101906104b39190612749565b610d0d565b005b3480156104c657600080fd5b506104cf610d2d565b6040516104dc9190612d58565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190612906565b610d33565b005b34801561051a57600080fd5b506105356004803603810190610530919061288b565b610dc9565b005b34801561054357600080fd5b5061055e60048036038101906105599190612947565b610e62565b60405161056b9190612bb4565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906126e4565b610e74565b6040516105a89190612d58565b60405180910390f35b3480156105bd57600080fd5b506105c6610f2d565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612947565b610fb5565b005b3480156105fd57600080fd5b50610606611049565b6040516106139190612c36565b60405180910390f35b34801561062857600080fd5b50610631611065565b60405161063e9190612bb4565b60405180910390f35b34801561065357600080fd5b5061065c61108f565b6040516106699190612c36565b60405180910390f35b34801561067e57600080fd5b50610687611121565b6040516106949190612d58565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612813565b611127565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190612798565b61129f565b005b3480156106fb57600080fd5b50610704611312565b6040516107119190612d58565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190612947565b611318565b60405161074e9190612c36565b60405180910390f35b34801561076357600080fd5b5061076c6113b7565b005b34801561077a57600080fd5b506107956004803603810190610790919061270d565b611475565b6040516107a29190612c1b565b60405180910390f35b6107c560048036038101906107c09190612947565b611509565b005b3480156107d357600080fd5b506107ee60048036038101906107e991906126e4565b611818565b005b3480156107fc57600080fd5b50610805611910565b6040516108129190612c1b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108bc90612fae565b80601f01602080910402602001604051908101604052809291908181526020018280546108e890612fae565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b61095f611923565b73ffffffffffffffffffffffffffffffffffffffff1661097d611065565b73ffffffffffffffffffffffffffffffffffffffff16146109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612d18565b60405180910390fd5b600b5481116109e157600080fd5b80600b8190555050565b60006109f68261192b565b610a2c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a728261198a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ada576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af9611a58565b73ffffffffffffffffffffffffffffffffffffffff1614610b5c57610b2581610b20611a58565b611475565b610b5b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b6000610c1d611a60565b6001546000540303905090565b610c35838383611a65565b505050565b600181565b611a0a81565b600860149054906101000a900460ff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b610c80611923565b73ffffffffffffffffffffffffffffffffffffffff16610c9e611065565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90612d18565b60405180910390fd5b6000479050610d0a610d04611065565b82611e0f565b50565b610d288383836040518060200160405280600081525061129f565b505050565b60095481565b610d3b611923565b73ffffffffffffffffffffffffffffffffffffffff16610d59611065565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690612d18565b60405180910390fd5b80600f9080519060200190610dc5929190612508565b5050565b610dd1611923565b73ffffffffffffffffffffffffffffffffffffffff16610def611065565b73ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90612d18565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b6000610e6d8261198a565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610edc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f35611923565b73ffffffffffffffffffffffffffffffffffffffff16610f53611065565b73ffffffffffffffffffffffffffffffffffffffff1614610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090612d18565b60405180910390fd5b610fb36000611f03565b565b610fbd611923565b73ffffffffffffffffffffffffffffffffffffffff16610fdb611065565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890612d18565b60405180910390fd5b600a54811061103f57600080fd5b80600a8190555050565b6040518060e0016040528060b981526020016132a360b9913981565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109e90612fae565b80601f01602080910402602001604051908101604052809291908181526020018280546110ca90612fae565b80156111175780601f106110ec57610100808354040283529160200191611117565b820191906000526020600020905b8154815290600101906020018083116110fa57829003601f168201915b5050505050905090565b600b5481565b61112f611a58565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611194576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111a1611a58565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661124e611a58565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112939190612c1b565b60405180910390a35050565b6112aa848484611a65565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461130c576112d584848484611fc9565b61130b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b60606113238261192b565b611359576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611363612129565b905060008151141561138457604051806020016040528060008152506113af565b8061138e846121bb565b60405160200161139f929190612b7b565b6040516020818303038152906040525b915050919050565b6113bf611923565b73ffffffffffffffffffffffffffffffffffffffff166113dd611065565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90612d18565b60405180910390fd5b600c60009054906101000a900460ff161561144d57600080fd5b6001600c60006101000a81548160ff021916908315150217905550611473336001612215565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461154157600080fd5b611a0a8161154d610c13565b6115579190612e48565b1115611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90612d38565b60405180910390fd5b600a81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e59190612e48565b1115611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90612cf8565b60405180910390fd5b600860149054906101000a900460ff16611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612c98565b60405180910390fd5b600a54816116839190612e9e565b341461168e57600080fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116dd9190612e48565b92505081905550600b546009541080156117415750600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117c8576001816117539190612e48565b90506001600960008282546117689190612e48565b925050819055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000811161180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290612c78565b60405180910390fd5b6118153382612215565b50565b611820611923565b73ffffffffffffffffffffffffffffffffffffffff1661183e611065565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90612d18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90612c58565b60405180910390fd5b61190d81611f03565b50565b600c60009054906101000a900460ff1681565b600033905090565b600081611936611a60565b11158015611945575060005482105b8015611983575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611999611a60565b11611a2157600054811015611a205760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a1e575b6000811415611a145760046000836001900393508381526020019081526020016000205490506119e9565b8092505050611a53565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611a708261198a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611af8611a58565b73ffffffffffffffffffffffffffffffffffffffff161480611b275750611b2685611b21611a58565b611475565b5b80611b6c5750611b35611a58565b73ffffffffffffffffffffffffffffffffffffffff16611b54846109eb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ba5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c0c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c198585856001612233565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611d1686612239565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611da0576000600184019050600060046000838152602001908152602001600020541415611d9e576000548114611d9d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e088585856001612243565b5050505050565b80471015611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990612cd8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e7890612b9f565b60006040518083038185875af1925050503d8060008114611eb5576040519150601f19603f3d011682016040523d82523d6000602084013e611eba565b606091505b5050905080611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590612cb8565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fef611a58565b8786866040518563ffffffff1660e01b81526004016120119493929190612bcf565b602060405180830381600087803b15801561202b57600080fd5b505af192505050801561205c57506040513d601f19601f8201168201806040525081019061205991906128dd565b60015b6120d6573d806000811461208c576040519150601f19603f3d011682016040523d82523d6000602084013e612091565b606091505b506000815114156120ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461213890612fae565b80601f016020809104026020016040519081016040528092919081815260200182805461216490612fae565b80156121b15780601f10612186576101008083540402835291602001916121b1565b820191906000526020600020905b81548152906001019060200180831161219457829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561220157600183039250600a81066030018353600a810490506121e1565b508181036020830392508083525050919050565b61222f828260405180602001604052806000815250612249565b5050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122b6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156122f1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122fe6000858386612233565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612363600185146124fe565b901b60a042901b61237386612239565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612477575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124276000878480600101955087611fc9565b61245d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123b857826000541461247257600080fd5b6124e2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612478575b8160008190555050506124f86000858386612243565b50505050565b6000819050919050565b82805461251490612fae565b90600052602060002090601f016020900481019282612536576000855561257d565b82601f1061254f57805160ff191683800117855561257d565b8280016001018555821561257d579182015b8281111561257c578251825591602001919060010190612561565b5b50905061258a919061258e565b5090565b5b808211156125a757600081600090555060010161258f565b5090565b60006125be6125b984612d98565b612d73565b9050828152602081018484840111156125d657600080fd5b6125e1848285612f6c565b509392505050565b60006125fc6125f784612dc9565b612d73565b90508281526020810184848401111561261457600080fd5b61261f848285612f6c565b509392505050565b60008135905061263681613246565b92915050565b60008135905061264b8161325d565b92915050565b60008135905061266081613274565b92915050565b60008151905061267581613274565b92915050565b600082601f83011261268c57600080fd5b813561269c8482602086016125ab565b91505092915050565b600082601f8301126126b657600080fd5b81356126c68482602086016125e9565b91505092915050565b6000813590506126de8161328b565b92915050565b6000602082840312156126f657600080fd5b600061270484828501612627565b91505092915050565b6000806040838503121561272057600080fd5b600061272e85828601612627565b925050602061273f85828601612627565b9150509250929050565b60008060006060848603121561275e57600080fd5b600061276c86828701612627565b935050602061277d86828701612627565b925050604061278e868287016126cf565b9150509250925092565b600080600080608085870312156127ae57600080fd5b60006127bc87828801612627565b94505060206127cd87828801612627565b93505060406127de878288016126cf565b925050606085013567ffffffffffffffff8111156127fb57600080fd5b6128078782880161267b565b91505092959194509250565b6000806040838503121561282657600080fd5b600061283485828601612627565b92505060206128458582860161263c565b9150509250929050565b6000806040838503121561286257600080fd5b600061287085828601612627565b9250506020612881858286016126cf565b9150509250929050565b60006020828403121561289d57600080fd5b60006128ab8482850161263c565b91505092915050565b6000602082840312156128c657600080fd5b60006128d484828501612651565b91505092915050565b6000602082840312156128ef57600080fd5b60006128fd84828501612666565b91505092915050565b60006020828403121561291857600080fd5b600082013567ffffffffffffffff81111561293257600080fd5b61293e848285016126a5565b91505092915050565b60006020828403121561295957600080fd5b6000612967848285016126cf565b91505092915050565b61297981612ef8565b82525050565b61298881612f0a565b82525050565b600061299982612dfa565b6129a38185612e10565b93506129b3818560208601612f7b565b6129bc8161309e565b840191505092915050565b60006129d282612e05565b6129dc8185612e2c565b93506129ec818560208601612f7b565b6129f58161309e565b840191505092915050565b6000612a0b82612e05565b612a158185612e3d565b9350612a25818560208601612f7b565b80840191505092915050565b6000612a3e602683612e2c565b9150612a49826130af565b604082019050919050565b6000612a61601283612e2c565b9150612a6c826130fe565b602082019050919050565b6000612a84601783612e2c565b9150612a8f82613127565b602082019050919050565b6000612aa7603a83612e2c565b9150612ab282613150565b604082019050919050565b6000612aca601d83612e2c565b9150612ad58261319f565b602082019050919050565b6000612aed601883612e2c565b9150612af8826131c8565b602082019050919050565b6000612b10602083612e2c565b9150612b1b826131f1565b602082019050919050565b6000612b33600083612e21565b9150612b3e8261321a565b600082019050919050565b6000612b56601083612e2c565b9150612b618261321d565b602082019050919050565b612b7581612f62565b82525050565b6000612b878285612a00565b9150612b938284612a00565b91508190509392505050565b6000612baa82612b26565b9150819050919050565b6000602082019050612bc96000830184612970565b92915050565b6000608082019050612be46000830187612970565b612bf16020830186612970565b612bfe6040830185612b6c565b8181036060830152612c10818461298e565b905095945050505050565b6000602082019050612c30600083018461297f565b92915050565b60006020820190508181036000830152612c5081846129c7565b905092915050565b60006020820190508181036000830152612c7181612a31565b9050919050565b60006020820190508181036000830152612c9181612a54565b9050919050565b60006020820190508181036000830152612cb181612a77565b9050919050565b60006020820190508181036000830152612cd181612a9a565b9050919050565b60006020820190508181036000830152612cf181612abd565b9050919050565b60006020820190508181036000830152612d1181612ae0565b9050919050565b60006020820190508181036000830152612d3181612b03565b9050919050565b60006020820190508181036000830152612d5181612b49565b9050919050565b6000602082019050612d6d6000830184612b6c565b92915050565b6000612d7d612d8e565b9050612d898282612fe0565b919050565b6000604051905090565b600067ffffffffffffffff821115612db357612db261306f565b5b612dbc8261309e565b9050602081019050919050565b600067ffffffffffffffff821115612de457612de361306f565b5b612ded8261309e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e5382612f62565b9150612e5e83612f62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9357612e92613011565b5b828201905092915050565b6000612ea982612f62565b9150612eb483612f62565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612eed57612eec613011565b5b828202905092915050565b6000612f0382612f42565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f99578082015181840152602081019050612f7e565b83811115612fa8576000848401525b50505050565b60006002820490506001821680612fc657607f821691505b60208210811415612fda57612fd9613040565b5b50919050565b612fe98261309e565b810181811067ffffffffffffffff821117156130085761300761306f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46726565206d696e7420736f6c64206f75740000000000000000000000000000600082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f537572706173736573206d6178207065722077616c6c65740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b61324f81612ef8565b811461325a57600080fd5b50565b61326681612f0a565b811461327157600080fd5b50565b61327d81612f16565b811461328857600080fd5b50565b61329481612f62565b811461329f57600080fd5b5056fe43414c4c206d696e745075626c696320574954482041205155414e54495459204f46203020414e442056414c5545204f46203020464f52204a5553542046524545204d494e542e204f544845525749534520414e59205155414e54495459204c455353205448414e204f5220455155414c20544f20313020414e442056414c5545204f46202e303035202a2054484154205155414e544954592c2046524545204d494e542057494c4c204245204144444544204f4e20544f50a264697066735822122065f54d790521a766c104438d6259aa2732f46c7cd230e18fbe230fa18db2818264736f6c63430008040033
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.