ERC-721
Overview
Max Total Supply
3,000 SudoVerse
Holders
25
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SudoVerseLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SudoVerse
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: Unlicense pragma solidity 0.8.4; // quu..__ // $$$b `---.__ // "$$b `--. ___.---uuudP // `$$b `.__.------.__ __.---' $$$$" . // "$b -' `-.-' $$$" .'| // ". d$" _.' | // `. / ..." .' | // `./ ..::-' _.' | // / .:::-' .-' .' // : ::''\ _.' | // .' .-. .-. `. .' | // : /'$$| .@"$\ `. .' _.-' // .'|$u$$| |$$,$$| | < _.-' // | `:$$:' :$$$$$: `. `. .-' // : `"--' | `-. \ // :##. == .###. `. `. `\ // |##: :###: | > > // |#' `..'`..' `###' x: / / // \ xXX| / ./ // \ xXXX'| / ./ // /`-. `. / / // : `- ..........., | / .' // | ``:::::::' . |< `. // | ``` | x| \ `.:``. // | .' /' xXX| `:`M`M':. // | | ; /:' xXXX'| -'MMMMM:' // `. .' : /:' |-'MMMM.-' // | | .' /' .'MMM.-' // `'`' : ,' |MMM< // | `' |tbap\ // \ :MM.-' // \ | .'' // \. `. / // / .:::::::.. : / // | .:::::::::::`. / // | .:::------------\ / // / .'' >::' / // `',: : .' // `:.:' // SudoVerse is an on chain ponzi game played directly from SudoSwap.xyz UI to explore SudoSwap contracts boundaries. // Full game contract and metadata will be deployed 48 hours after all NFTs are minted from the pool import "@openzeppelin/contracts/access/Ownable.sol"; import "./lib/ERC721Enumerable.sol"; import "base64-sol/base64.sol"; interface IRenderer { function render(uint256 id) external view returns (string calldata); function attributes(uint256 id) external view returns (string calldata); } contract SudoVerse is Ownable, ERC721iEnumerable { IRenderer public renderer; event ConsecutiveTransfer( uint256 indexed fromTokenId, uint256 toTokenId, address indexed fromAddress, address indexed toAddress ); constructor( string memory name, string memory symbol, uint256 maxSupply ) ERC721(name, symbol) { _maxSupply = maxSupply; } //can burn keys later if wanted function setRenderer(address _contract) external onlyOwner { renderer = IRenderer(_contract); } function _preMint() internal { // Update balance for initial owner, defined in ERC721.sol _balances[_preMintReceiver] = _maxSupply; // Emit the Consecutive Transfer Event emit ConsecutiveTransfer(1, _maxSupply, address(0), _preMintReceiver); } // set _preminter to sudo pool function mint(address _to) external onlyOwner { _preMintReceiver = _to; _preMint(); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { string memory descr = "SudoVerse is an on chain ponzi game played directly from SudoSwap.xyz UI to explore SudoSwap contracts boundaries."; string memory image = renderer.render(_tokenId); string memory attributes = renderer.attributes(_tokenId); return string( abi.encodePacked( "data:application/json;base64,", ( Base64.encode( bytes( ( abi.encodePacked( '{"name":"SudoVerse #', uint2str(_tokenId), '","image": ', '"', "data:image/svg+xml;base64,", Base64.encode(bytes(image)), '",', '"description":"', descr, '",', // "}" attributes ) ) ) ) ) ) ); } function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len; while (_i != 0) { k = k - 1; uint8 temp = (48 + uint8(_i - (_i / 10) * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } }
// 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 // Modified from: OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) // Modified by: Rob Secord (https://twitter.com/robsecord) // Co-founder @ Charged Particles - Visit: https://charged.fi // Co-founder @ Taggr - Visit: https://taggr.io pragma solidity ^0.8.0; import "./ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. * * @dev This implementation also includes support for pre-minting a max-supply of tokens up-front. * * Note on pre-mint: * Assumes a Max-Supply which is entirely pre-minted to initial address with sequential Token IDs. * For this reason, the "allTokens" state vars are unneccesary and have been removed. * Also defines 2 light-weight state vars: "_preMintReceiver" & "_maxSupply" * Overrides "ownerOf" & "_exists" */ abstract contract ERC721iEnumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Tracking for the Pre-Mint Receiver address internal _preMintReceiver; // Max-Supply for Pre-Mint uint256 internal _maxSupply; /** * @dev See {IERC165-supportsInterface}. * * Note on Pre-Mint: this implementation maintains the exact same interface for IERC721Enumerable */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); uint256 tokenId = _ownedTokens[owner][index]; // All indices within the Pre-Mint range are base-1 sequential and owned by the Pre-Mint Receiver. if (tokenId == 0 && owner == _preMintReceiver) { tokenId = index + 1; } return tokenId; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // The Total Supply is simply the Max Supply return _maxSupply; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < _maxSupply, "ERC721Enumerable: global index out of bounds" ); // Array index is 0-based, whereas Token ID is 1-based (sequential). return index + 1; } /** * @dev Override the ERC721 "ownerOf" function to account for the Pre-Mint Receiver. */ function ownerOf(uint256 tokenId) public view virtual override(IERC721, ERC721) returns (address) { // Anything beyond the Pre-Minted supply will use the standard "ownerOf" if (tokenId > _maxSupply) { return super.ownerOf(tokenId); } // Since we have Pre-Minted the Max-Supply to the "Pre-Mint Receiver" account, we know: // - if the "_owners" mapping has not been assigned, then the owner is the Pre-Mint Receiver. // - after the NFT is transferred, the "_owners" mapping will be updated with the new owner. address owner_ = _owners[tokenId]; if (owner_ == address(0)) { owner_ = _preMintReceiver; } return owner_; } /** * @dev Override the ERC721 "_exists" function to account for the Pre-Minted Max-Supply. */ function _exists(uint256 tokenId) internal view virtual override(ERC721) returns (bool) { // Anything beyond the Pre-Minted supply will use the standard "_exists" if (tokenId > _maxSupply) { return super._exists(tokenId); } // We know the Max-Supply has been Pre-Minted with Sequential Token IDs return (tokenId > 0 && tokenId <= _maxSupply); } /** * @dev See {IERC721Enumerable-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev See {IERC721Enumerable-_addTokenToOwnerEnumeration}. */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev See {IERC721Enumerable-_removeTokenFromOwnerEnumeration}. */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // Modifed from: OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) // Modified by: Rob Secord (https://twitter.com/robsecord) // Co-founder @ Charged Particles - Visit: https://charged.fi // Co-founder @ Taggr - Visit: https://taggr.io pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. * * NOTE: Pre-Mint: * The only changes made here are: * - change scope of "_owners" from private to internal * - change scope of "_balances" from private to internal * - remove "ERC721" scope-resolution from "ownerOf" calls in order to override "ownerOf" * - modify the _burn function to burn to an alternate Null Address (prevents reassignment back to Pre-Mint Receiver) */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) internal _owners; // Mapping owner address to token count mapping(address => uint256) internal _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: address zero is not a valid owner" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved" ); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; // Prevent re-assigning the token back to the Pre-Mint Receiver _owners[tokenId] = 0x000000000000000000000000000000000000dEaD; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "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":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renderer","outputs":[{"internalType":"contract IRenderer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setRenderer","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003c4338038062003c438339818101604052810190620000379190620002a2565b8282620000596200004d6200009d60201b60201c565b620000a560201b60201c565b81600190805190602001906200007192919062000169565b5080600290805190602001906200008a92919062000169565b50505080600a81905550505050620004be565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017790620003c9565b90600052602060002090601f0160209004810192826200019b5760008555620001e7565b82601f10620001b657805160ff1916838001178555620001e7565b82800160010185558215620001e7579182015b82811115620001e6578251825591602001919060010190620001c9565b5b509050620001f69190620001fa565b5090565b5b8082111562000215576000816000905550600101620001fb565b5090565b6000620002306200022a8462000353565b6200032a565b9050828152602081018484840111156200024957600080fd5b6200025684828562000393565b509392505050565b600082601f8301126200027057600080fd5b81516200028284826020860162000219565b91505092915050565b6000815190506200029c81620004a4565b92915050565b600080600060608486031215620002b857600080fd5b600084015167ffffffffffffffff811115620002d357600080fd5b620002e1868287016200025e565b935050602084015167ffffffffffffffff811115620002ff57600080fd5b6200030d868287016200025e565b925050604062000320868287016200028b565b9150509250925092565b60006200033662000349565b9050620003448282620003ff565b919050565b6000604051905090565b600067ffffffffffffffff82111562000371576200037062000464565b5b6200037c8262000493565b9050602081019050919050565b6000819050919050565b60005b83811015620003b357808201518184015260208101905062000396565b83811115620003c3576000848401525b50505050565b60006002820490506001821680620003e257607f821691505b60208210811415620003f957620003f862000435565b5b50919050565b6200040a8262000493565b810181811067ffffffffffffffff821117156200042c576200042b62000464565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620004af8162000389565b8114620004bb57600080fd5b50565b61377580620004ce6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636a627842116100b857806395d89b411161007c57806395d89b4114610375578063a22cb46514610393578063b88d4fde146103af578063c87b56dd146103cb578063e985e9c5146103fb578063f2fde38b1461042b57610142565b80636a627842146102e357806370a08231146102ff578063715018a61461032f5780638ada6b0f146103395780638da5cb5b1461035757610142565b806323b872dd1161010a57806323b872dd146101ff5780632f745c591461021b57806342842e0e1461024b5780634f6ccce71461026757806356d3163d146102975780636352211e146102b357610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c919061258d565b610447565b60405161016e9190612af8565b60405180910390f35b61017f6104c1565b60405161018c9190612b2e565b60405180910390f35b6101af60048036038101906101aa9190612620565b610553565b6040516101bc9190612a91565b60405180910390f35b6101df60048036038101906101da9190612551565b610599565b005b6101e96106b1565b6040516101f69190612cf0565b60405180910390f35b6102196004803603810190610214919061244b565b6106bb565b005b61023560048036038101906102309190612551565b61071b565b6040516102429190612cf0565b60405180910390f35b6102656004803603810190610260919061244b565b610838565b005b610281600480360381019061027c9190612620565b610858565b60405161028e9190612cf0565b60405180910390f35b6102b160048036038101906102ac91906123e6565b6108b2565b005b6102cd60048036038101906102c89190612620565b610972565b6040516102da9190612a91565b60405180910390f35b6102fd60048036038101906102f891906123e6565b610a2b565b005b610319600480360381019061031491906123e6565b610af3565b6040516103269190612cf0565b60405180910390f35b610337610bab565b005b610341610c33565b60405161034e9190612b13565b60405180910390f35b61035f610c59565b60405161036c9190612a91565b60405180910390f35b61037d610c82565b60405161038a9190612b2e565b60405180910390f35b6103ad60048036038101906103a89190612515565b610d14565b005b6103c960048036038101906103c4919061249a565b610d2a565b005b6103e560048036038101906103e09190612620565b610d8c565b6040516103f29190612b2e565b60405180910390f35b6104156004803603810190610410919061240f565b610f7a565b6040516104229190612af8565b60405180910390f35b610445600480360381019061044091906123e6565b61100e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ba57506104b982611106565b5b9050919050565b6060600180546104d090613008565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc90613008565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b600061055e826111e8565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105a482610972565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060c90612c90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610634611233565b73ffffffffffffffffffffffffffffffffffffffff16148061066357506106628161065d611233565b610f7a565b5b6106a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069990612c30565b60405180910390fd5b6106ac838361123b565b505050565b6000600a54905090565b6106cc6106c6611233565b826112f4565b61070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290612cd0565b60405180910390fd5b610716838383611389565b505050565b600061072683610af3565b8210610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e90612b50565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000205490506000811480156108195750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b1561082e5760018361082b9190612dd5565b90505b8091505092915050565b61085383838360405180602001604052806000815250610d2a565b505050565b6000600a54821061089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590612cb0565b60405180910390fd5b6001826108ab9190612dd5565b9050919050565b6108ba611233565b73ffffffffffffffffffffffffffffffffffffffff166108d8610c59565b73ffffffffffffffffffffffffffffffffffffffff161461092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590612c50565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a5482111561098e57610987826115f0565b9050610a26565b60006003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2157600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b809150505b919050565b610a33611233565b73ffffffffffffffffffffffffffffffffffffffff16610a51610c59565b73ffffffffffffffffffffffffffffffffffffffff1614610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90612c50565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610af06116a2565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90612c10565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bb3611233565b73ffffffffffffffffffffffffffffffffffffffff16610bd1610c59565b73ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90612c50565b60405180910390fd5b610c316000611798565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610c9190613008565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbd90613008565b8015610d0a5780601f10610cdf57610100808354040283529160200191610d0a565b820191906000526020600020905b815481529060010190602001808311610ced57829003601f168201915b5050505050905090565b610d26610d1f611233565b838361185c565b5050565b610d3b610d35611233565b836112f4565b610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190612cd0565b60405180910390fd5b610d86848484846119c9565b50505050565b606060006040518060a001604052806072815260200161368e6072913990506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c321118c856040518263ffffffff1660e01b8152600401610e089190612cf0565b60006040518083038186803b158015610e2057600080fd5b505afa158015610e34573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e5d91906125df565b90506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d05dcc6a866040518263ffffffff1660e01b8152600401610ebc9190612cf0565b60006040518083038186803b158015610ed457600080fd5b505afa158015610ee8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610f1191906125df565b9050610f51610f1f86611a25565b610f2884611bfa565b8584604051602001610f3d9493929190612a06565b604051602081830303815290604052611bfa565b604051602001610f6191906129e4565b6040516020818303038152906040529350505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611016611233565b73ffffffffffffffffffffffffffffffffffffffff16611034610c59565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190612c50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612b90565b60405180910390fd5b61110381611798565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111e157506111e082611d99565b5b9050919050565b6111f181611e03565b611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790612c70565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112ae83610972565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061130083610972565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061134257506113418185610f7a565b5b8061138057508373ffffffffffffffffffffffffffffffffffffffff1661136884610553565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113a982610972565b73ffffffffffffffffffffffffffffffffffffffff16146113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690612bb0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690612bd0565b60405180910390fd5b61147a838383611e39565b61148560008261123b565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d59190612eed565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461152c9190612dd5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115eb838383611e91565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090612c70565b60405180910390fd5b80915050919050565b600a5460046000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1660017fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d600a5460405161178e9190612cf0565b60405180910390a4565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290612bf0565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119bc9190612af8565b60405180910390a3505050565b6119d4848484611389565b6119e084848484611e96565b611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690612b70565b60405180910390fd5b50505050565b60606000821415611a6d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611bf5565b600082905060005b60008214611a9f578080611a889061306b565b915050600a82611a989190612e62565b9150611a75565b60008167ffffffffffffffff811115611ae1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b135781602001600182028036833780820191505090505b50905060008290505b60008614611bed57600181611b319190612eed565b90506000600a8088611b439190612e62565b611b4d9190612e93565b87611b589190612eed565b6030611b649190612e2b565b905060008160f81b905080848481518110611ba8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611be49190612e62565b97505050611b1c565b819450505050505b919050565b6060600082511415611c1d57604051806020016040528060008152509050611d94565b60006040518060600160405280604081526020016137006040913990506000600360028551611c4c9190612dd5565b611c569190612e62565b6004611c629190612e93565b90506000602082611c739190612dd5565b67ffffffffffffffff811115611cb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce45781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611d53576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611cf8565b600389510660018114611d6d5760028114611d7d57611d88565b613d3d60f01b6002830352611d88565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600a54821115611e1f57611e188261202d565b9050611e34565b600082118015611e315750600a548211155b90505b919050565b611e44838383612099565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e8c57611e81838261209e565b611e8b828261220b565b5b505050565b505050565b6000611eb78473ffffffffffffffffffffffffffffffffffffffff1661228a565b15612020578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ee0611233565b8786866040518563ffffffff1660e01b8152600401611f029493929190612aac565b602060405180830381600087803b158015611f1c57600080fd5b505af1925050508015611f4d57506040513d601f19601f82011682018060405250810190611f4a91906125b6565b60015b611fd0573d8060008114611f7d576040519150601f19603f3d011682016040523d82523d6000602084013e611f82565b606091505b50600081511415611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90612b70565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612025565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600060016120ab84610af3565b6120b59190612eed565b905060006008600084815260200190815260200160002054905081811461219a576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600061221683610af3565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006122c06122bb84612d30565b612d0b565b9050828152602081018484840111156122d857600080fd5b6122e3848285612fc6565b509392505050565b60006122fe6122f984612d61565b612d0b565b90508281526020810184848401111561231657600080fd5b612321848285612fd5565b509392505050565b60008135905061233881613631565b92915050565b60008135905061234d81613648565b92915050565b6000813590506123628161365f565b92915050565b6000815190506123778161365f565b92915050565b600082601f83011261238e57600080fd5b813561239e8482602086016122ad565b91505092915050565b600082601f8301126123b857600080fd5b81516123c88482602086016122eb565b91505092915050565b6000813590506123e081613676565b92915050565b6000602082840312156123f857600080fd5b600061240684828501612329565b91505092915050565b6000806040838503121561242257600080fd5b600061243085828601612329565b925050602061244185828601612329565b9150509250929050565b60008060006060848603121561246057600080fd5b600061246e86828701612329565b935050602061247f86828701612329565b9250506040612490868287016123d1565b9150509250925092565b600080600080608085870312156124b057600080fd5b60006124be87828801612329565b94505060206124cf87828801612329565b93505060406124e0878288016123d1565b925050606085013567ffffffffffffffff8111156124fd57600080fd5b6125098782880161237d565b91505092959194509250565b6000806040838503121561252857600080fd5b600061253685828601612329565b92505060206125478582860161233e565b9150509250929050565b6000806040838503121561256457600080fd5b600061257285828601612329565b9250506020612583858286016123d1565b9150509250929050565b60006020828403121561259f57600080fd5b60006125ad84828501612353565b91505092915050565b6000602082840312156125c857600080fd5b60006125d684828501612368565b91505092915050565b6000602082840312156125f157600080fd5b600082015167ffffffffffffffff81111561260b57600080fd5b612617848285016123a7565b91505092915050565b60006020828403121561263257600080fd5b6000612640848285016123d1565b91505092915050565b61265281612f21565b82525050565b61266181612f33565b82525050565b600061267282612d92565b61267c8185612da8565b935061268c818560208601612fd5565b61269581613170565b840191505092915050565b6126a981612fa2565b82525050565b60006126ba82612d9d565b6126c48185612db9565b93506126d4818560208601612fd5565b6126dd81613170565b840191505092915050565b60006126f382612d9d565b6126fd8185612dca565b935061270d818560208601612fd5565b80840191505092915050565b6000612726602b83612db9565b915061273182613181565b604082019050919050565b6000612749603283612db9565b9150612754826131d0565b604082019050919050565b600061276c600f83612dca565b91506127778261321f565b600f82019050919050565b600061278f602683612db9565b915061279a82613248565b604082019050919050565b60006127b2600283612dca565b91506127bd82613297565b600282019050919050565b60006127d5602583612db9565b91506127e0826132c0565b604082019050919050565b60006127f8602483612db9565b91506128038261330f565b604082019050919050565b600061281b601983612db9565b91506128268261335e565b602082019050919050565b600061283e602983612db9565b915061284982613387565b604082019050919050565b6000612861600183612dca565b915061286c826133d6565b600182019050919050565b6000612884603e83612db9565b915061288f826133ff565b604082019050919050565b60006128a7602083612db9565b91506128b28261344e565b602082019050919050565b60006128ca600b83612dca565b91506128d582613477565b600b82019050919050565b60006128ed601883612db9565b91506128f8826134a0565b602082019050919050565b6000612910602183612db9565b915061291b826134c9565b604082019050919050565b6000612933601d83612dca565b915061293e82613518565b601d82019050919050565b6000612956601483612dca565b915061296182613541565b601482019050919050565b6000612979602c83612db9565b91506129848261356a565b604082019050919050565b600061299c602e83612db9565b91506129a7826135b9565b604082019050919050565b60006129bf601a83612dca565b91506129ca82613608565b601a82019050919050565b6129de81612f8b565b82525050565b60006129ef82612926565b91506129fb82846126e8565b915081905092915050565b6000612a1182612949565b9150612a1d82876126e8565b9150612a28826128bd565b9150612a3382612854565b9150612a3e826129b2565b9150612a4a82866126e8565b9150612a55826127a5565b9150612a608261275f565b9150612a6c82856126e8565b9150612a77826127a5565b9150612a8382846126e8565b915081905095945050505050565b6000602082019050612aa66000830184612649565b92915050565b6000608082019050612ac16000830187612649565b612ace6020830186612649565b612adb60408301856129d5565b8181036060830152612aed8184612667565b905095945050505050565b6000602082019050612b0d6000830184612658565b92915050565b6000602082019050612b2860008301846126a0565b92915050565b60006020820190508181036000830152612b4881846126af565b905092915050565b60006020820190508181036000830152612b6981612719565b9050919050565b60006020820190508181036000830152612b898161273c565b9050919050565b60006020820190508181036000830152612ba981612782565b9050919050565b60006020820190508181036000830152612bc9816127c8565b9050919050565b60006020820190508181036000830152612be9816127eb565b9050919050565b60006020820190508181036000830152612c098161280e565b9050919050565b60006020820190508181036000830152612c2981612831565b9050919050565b60006020820190508181036000830152612c4981612877565b9050919050565b60006020820190508181036000830152612c698161289a565b9050919050565b60006020820190508181036000830152612c89816128e0565b9050919050565b60006020820190508181036000830152612ca981612903565b9050919050565b60006020820190508181036000830152612cc98161296c565b9050919050565b60006020820190508181036000830152612ce98161298f565b9050919050565b6000602082019050612d0560008301846129d5565b92915050565b6000612d15612d26565b9050612d21828261303a565b919050565b6000604051905090565b600067ffffffffffffffff821115612d4b57612d4a613141565b5b612d5482613170565b9050602081019050919050565b600067ffffffffffffffff821115612d7c57612d7b613141565b5b612d8582613170565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612de082612f8b565b9150612deb83612f8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e2057612e1f6130b4565b5b828201905092915050565b6000612e3682612f95565b9150612e4183612f95565b92508260ff03821115612e5757612e566130b4565b5b828201905092915050565b6000612e6d82612f8b565b9150612e7883612f8b565b925082612e8857612e876130e3565b5b828204905092915050565b6000612e9e82612f8b565b9150612ea983612f8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee257612ee16130b4565b5b828202905092915050565b6000612ef882612f8b565b9150612f0383612f8b565b925082821015612f1657612f156130b4565b5b828203905092915050565b6000612f2c82612f6b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612fad82612fb4565b9050919050565b6000612fbf82612f6b565b9050919050565b82818337600083830152505050565b60005b83811015612ff3578082015181840152602081019050612fd8565b83811115613002576000848401525b50505050565b6000600282049050600182168061302057607f821691505b6020821081141561303457613033613112565b5b50919050565b61304382613170565b810181811067ffffffffffffffff8211171561306257613061613141565b5b80604052505050565b600061307682612f8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130a9576130a86130b4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f226465736372697074696f6e223a220000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f222c22696d616765223a20000000000000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f7b226e616d65223a225375646f56657273652023000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b61363a81612f21565b811461364557600080fd5b50565b61365181612f33565b811461365c57600080fd5b50565b61366881612f3f565b811461367357600080fd5b50565b61367f81612f8b565b811461368a57600080fd5b5056fe5375646f566572736520697320616e206f6e20636861696e20706f6e7a692067616d6520706c61796564206469726563746c792066726f6d205375646f537761702e78797a20554920746f206578706c6f7265205375646f5377617020636f6e74726163747320626f756e6461726965732e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212203aabfecf1699221e56613fc872e79c9bb6e122357dca8613d004c92697f72bcb64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000095375646f5665727365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095375646f56657273650000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636a627842116100b857806395d89b411161007c57806395d89b4114610375578063a22cb46514610393578063b88d4fde146103af578063c87b56dd146103cb578063e985e9c5146103fb578063f2fde38b1461042b57610142565b80636a627842146102e357806370a08231146102ff578063715018a61461032f5780638ada6b0f146103395780638da5cb5b1461035757610142565b806323b872dd1161010a57806323b872dd146101ff5780632f745c591461021b57806342842e0e1461024b5780634f6ccce71461026757806356d3163d146102975780636352211e146102b357610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c919061258d565b610447565b60405161016e9190612af8565b60405180910390f35b61017f6104c1565b60405161018c9190612b2e565b60405180910390f35b6101af60048036038101906101aa9190612620565b610553565b6040516101bc9190612a91565b60405180910390f35b6101df60048036038101906101da9190612551565b610599565b005b6101e96106b1565b6040516101f69190612cf0565b60405180910390f35b6102196004803603810190610214919061244b565b6106bb565b005b61023560048036038101906102309190612551565b61071b565b6040516102429190612cf0565b60405180910390f35b6102656004803603810190610260919061244b565b610838565b005b610281600480360381019061027c9190612620565b610858565b60405161028e9190612cf0565b60405180910390f35b6102b160048036038101906102ac91906123e6565b6108b2565b005b6102cd60048036038101906102c89190612620565b610972565b6040516102da9190612a91565b60405180910390f35b6102fd60048036038101906102f891906123e6565b610a2b565b005b610319600480360381019061031491906123e6565b610af3565b6040516103269190612cf0565b60405180910390f35b610337610bab565b005b610341610c33565b60405161034e9190612b13565b60405180910390f35b61035f610c59565b60405161036c9190612a91565b60405180910390f35b61037d610c82565b60405161038a9190612b2e565b60405180910390f35b6103ad60048036038101906103a89190612515565b610d14565b005b6103c960048036038101906103c4919061249a565b610d2a565b005b6103e560048036038101906103e09190612620565b610d8c565b6040516103f29190612b2e565b60405180910390f35b6104156004803603810190610410919061240f565b610f7a565b6040516104229190612af8565b60405180910390f35b610445600480360381019061044091906123e6565b61100e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ba57506104b982611106565b5b9050919050565b6060600180546104d090613008565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc90613008565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b600061055e826111e8565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105a482610972565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060c90612c90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610634611233565b73ffffffffffffffffffffffffffffffffffffffff16148061066357506106628161065d611233565b610f7a565b5b6106a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069990612c30565b60405180910390fd5b6106ac838361123b565b505050565b6000600a54905090565b6106cc6106c6611233565b826112f4565b61070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290612cd0565b60405180910390fd5b610716838383611389565b505050565b600061072683610af3565b8210610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e90612b50565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000205490506000811480156108195750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b1561082e5760018361082b9190612dd5565b90505b8091505092915050565b61085383838360405180602001604052806000815250610d2a565b505050565b6000600a54821061089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590612cb0565b60405180910390fd5b6001826108ab9190612dd5565b9050919050565b6108ba611233565b73ffffffffffffffffffffffffffffffffffffffff166108d8610c59565b73ffffffffffffffffffffffffffffffffffffffff161461092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590612c50565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a5482111561098e57610987826115f0565b9050610a26565b60006003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2157600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b809150505b919050565b610a33611233565b73ffffffffffffffffffffffffffffffffffffffff16610a51610c59565b73ffffffffffffffffffffffffffffffffffffffff1614610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90612c50565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610af06116a2565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90612c10565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bb3611233565b73ffffffffffffffffffffffffffffffffffffffff16610bd1610c59565b73ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90612c50565b60405180910390fd5b610c316000611798565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610c9190613008565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbd90613008565b8015610d0a5780601f10610cdf57610100808354040283529160200191610d0a565b820191906000526020600020905b815481529060010190602001808311610ced57829003601f168201915b5050505050905090565b610d26610d1f611233565b838361185c565b5050565b610d3b610d35611233565b836112f4565b610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190612cd0565b60405180910390fd5b610d86848484846119c9565b50505050565b606060006040518060a001604052806072815260200161368e6072913990506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c321118c856040518263ffffffff1660e01b8152600401610e089190612cf0565b60006040518083038186803b158015610e2057600080fd5b505afa158015610e34573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e5d91906125df565b90506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d05dcc6a866040518263ffffffff1660e01b8152600401610ebc9190612cf0565b60006040518083038186803b158015610ed457600080fd5b505afa158015610ee8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610f1191906125df565b9050610f51610f1f86611a25565b610f2884611bfa565b8584604051602001610f3d9493929190612a06565b604051602081830303815290604052611bfa565b604051602001610f6191906129e4565b6040516020818303038152906040529350505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611016611233565b73ffffffffffffffffffffffffffffffffffffffff16611034610c59565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190612c50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612b90565b60405180910390fd5b61110381611798565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111e157506111e082611d99565b5b9050919050565b6111f181611e03565b611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790612c70565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112ae83610972565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061130083610972565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061134257506113418185610f7a565b5b8061138057508373ffffffffffffffffffffffffffffffffffffffff1661136884610553565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113a982610972565b73ffffffffffffffffffffffffffffffffffffffff16146113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690612bb0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690612bd0565b60405180910390fd5b61147a838383611e39565b61148560008261123b565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d59190612eed565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461152c9190612dd5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115eb838383611e91565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090612c70565b60405180910390fd5b80915050919050565b600a5460046000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1660017fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d600a5460405161178e9190612cf0565b60405180910390a4565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290612bf0565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119bc9190612af8565b60405180910390a3505050565b6119d4848484611389565b6119e084848484611e96565b611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690612b70565b60405180910390fd5b50505050565b60606000821415611a6d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611bf5565b600082905060005b60008214611a9f578080611a889061306b565b915050600a82611a989190612e62565b9150611a75565b60008167ffffffffffffffff811115611ae1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b135781602001600182028036833780820191505090505b50905060008290505b60008614611bed57600181611b319190612eed565b90506000600a8088611b439190612e62565b611b4d9190612e93565b87611b589190612eed565b6030611b649190612e2b565b905060008160f81b905080848481518110611ba8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611be49190612e62565b97505050611b1c565b819450505050505b919050565b6060600082511415611c1d57604051806020016040528060008152509050611d94565b60006040518060600160405280604081526020016137006040913990506000600360028551611c4c9190612dd5565b611c569190612e62565b6004611c629190612e93565b90506000602082611c739190612dd5565b67ffffffffffffffff811115611cb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce45781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611d53576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611cf8565b600389510660018114611d6d5760028114611d7d57611d88565b613d3d60f01b6002830352611d88565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600a54821115611e1f57611e188261202d565b9050611e34565b600082118015611e315750600a548211155b90505b919050565b611e44838383612099565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e8c57611e81838261209e565b611e8b828261220b565b5b505050565b505050565b6000611eb78473ffffffffffffffffffffffffffffffffffffffff1661228a565b15612020578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ee0611233565b8786866040518563ffffffff1660e01b8152600401611f029493929190612aac565b602060405180830381600087803b158015611f1c57600080fd5b505af1925050508015611f4d57506040513d601f19601f82011682018060405250810190611f4a91906125b6565b60015b611fd0573d8060008114611f7d576040519150601f19603f3d011682016040523d82523d6000602084013e611f82565b606091505b50600081511415611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90612b70565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612025565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600060016120ab84610af3565b6120b59190612eed565b905060006008600084815260200190815260200160002054905081811461219a576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600061221683610af3565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006122c06122bb84612d30565b612d0b565b9050828152602081018484840111156122d857600080fd5b6122e3848285612fc6565b509392505050565b60006122fe6122f984612d61565b612d0b565b90508281526020810184848401111561231657600080fd5b612321848285612fd5565b509392505050565b60008135905061233881613631565b92915050565b60008135905061234d81613648565b92915050565b6000813590506123628161365f565b92915050565b6000815190506123778161365f565b92915050565b600082601f83011261238e57600080fd5b813561239e8482602086016122ad565b91505092915050565b600082601f8301126123b857600080fd5b81516123c88482602086016122eb565b91505092915050565b6000813590506123e081613676565b92915050565b6000602082840312156123f857600080fd5b600061240684828501612329565b91505092915050565b6000806040838503121561242257600080fd5b600061243085828601612329565b925050602061244185828601612329565b9150509250929050565b60008060006060848603121561246057600080fd5b600061246e86828701612329565b935050602061247f86828701612329565b9250506040612490868287016123d1565b9150509250925092565b600080600080608085870312156124b057600080fd5b60006124be87828801612329565b94505060206124cf87828801612329565b93505060406124e0878288016123d1565b925050606085013567ffffffffffffffff8111156124fd57600080fd5b6125098782880161237d565b91505092959194509250565b6000806040838503121561252857600080fd5b600061253685828601612329565b92505060206125478582860161233e565b9150509250929050565b6000806040838503121561256457600080fd5b600061257285828601612329565b9250506020612583858286016123d1565b9150509250929050565b60006020828403121561259f57600080fd5b60006125ad84828501612353565b91505092915050565b6000602082840312156125c857600080fd5b60006125d684828501612368565b91505092915050565b6000602082840312156125f157600080fd5b600082015167ffffffffffffffff81111561260b57600080fd5b612617848285016123a7565b91505092915050565b60006020828403121561263257600080fd5b6000612640848285016123d1565b91505092915050565b61265281612f21565b82525050565b61266181612f33565b82525050565b600061267282612d92565b61267c8185612da8565b935061268c818560208601612fd5565b61269581613170565b840191505092915050565b6126a981612fa2565b82525050565b60006126ba82612d9d565b6126c48185612db9565b93506126d4818560208601612fd5565b6126dd81613170565b840191505092915050565b60006126f382612d9d565b6126fd8185612dca565b935061270d818560208601612fd5565b80840191505092915050565b6000612726602b83612db9565b915061273182613181565b604082019050919050565b6000612749603283612db9565b9150612754826131d0565b604082019050919050565b600061276c600f83612dca565b91506127778261321f565b600f82019050919050565b600061278f602683612db9565b915061279a82613248565b604082019050919050565b60006127b2600283612dca565b91506127bd82613297565b600282019050919050565b60006127d5602583612db9565b91506127e0826132c0565b604082019050919050565b60006127f8602483612db9565b91506128038261330f565b604082019050919050565b600061281b601983612db9565b91506128268261335e565b602082019050919050565b600061283e602983612db9565b915061284982613387565b604082019050919050565b6000612861600183612dca565b915061286c826133d6565b600182019050919050565b6000612884603e83612db9565b915061288f826133ff565b604082019050919050565b60006128a7602083612db9565b91506128b28261344e565b602082019050919050565b60006128ca600b83612dca565b91506128d582613477565b600b82019050919050565b60006128ed601883612db9565b91506128f8826134a0565b602082019050919050565b6000612910602183612db9565b915061291b826134c9565b604082019050919050565b6000612933601d83612dca565b915061293e82613518565b601d82019050919050565b6000612956601483612dca565b915061296182613541565b601482019050919050565b6000612979602c83612db9565b91506129848261356a565b604082019050919050565b600061299c602e83612db9565b91506129a7826135b9565b604082019050919050565b60006129bf601a83612dca565b91506129ca82613608565b601a82019050919050565b6129de81612f8b565b82525050565b60006129ef82612926565b91506129fb82846126e8565b915081905092915050565b6000612a1182612949565b9150612a1d82876126e8565b9150612a28826128bd565b9150612a3382612854565b9150612a3e826129b2565b9150612a4a82866126e8565b9150612a55826127a5565b9150612a608261275f565b9150612a6c82856126e8565b9150612a77826127a5565b9150612a8382846126e8565b915081905095945050505050565b6000602082019050612aa66000830184612649565b92915050565b6000608082019050612ac16000830187612649565b612ace6020830186612649565b612adb60408301856129d5565b8181036060830152612aed8184612667565b905095945050505050565b6000602082019050612b0d6000830184612658565b92915050565b6000602082019050612b2860008301846126a0565b92915050565b60006020820190508181036000830152612b4881846126af565b905092915050565b60006020820190508181036000830152612b6981612719565b9050919050565b60006020820190508181036000830152612b898161273c565b9050919050565b60006020820190508181036000830152612ba981612782565b9050919050565b60006020820190508181036000830152612bc9816127c8565b9050919050565b60006020820190508181036000830152612be9816127eb565b9050919050565b60006020820190508181036000830152612c098161280e565b9050919050565b60006020820190508181036000830152612c2981612831565b9050919050565b60006020820190508181036000830152612c4981612877565b9050919050565b60006020820190508181036000830152612c698161289a565b9050919050565b60006020820190508181036000830152612c89816128e0565b9050919050565b60006020820190508181036000830152612ca981612903565b9050919050565b60006020820190508181036000830152612cc98161296c565b9050919050565b60006020820190508181036000830152612ce98161298f565b9050919050565b6000602082019050612d0560008301846129d5565b92915050565b6000612d15612d26565b9050612d21828261303a565b919050565b6000604051905090565b600067ffffffffffffffff821115612d4b57612d4a613141565b5b612d5482613170565b9050602081019050919050565b600067ffffffffffffffff821115612d7c57612d7b613141565b5b612d8582613170565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612de082612f8b565b9150612deb83612f8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e2057612e1f6130b4565b5b828201905092915050565b6000612e3682612f95565b9150612e4183612f95565b92508260ff03821115612e5757612e566130b4565b5b828201905092915050565b6000612e6d82612f8b565b9150612e7883612f8b565b925082612e8857612e876130e3565b5b828204905092915050565b6000612e9e82612f8b565b9150612ea983612f8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee257612ee16130b4565b5b828202905092915050565b6000612ef882612f8b565b9150612f0383612f8b565b925082821015612f1657612f156130b4565b5b828203905092915050565b6000612f2c82612f6b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612fad82612fb4565b9050919050565b6000612fbf82612f6b565b9050919050565b82818337600083830152505050565b60005b83811015612ff3578082015181840152602081019050612fd8565b83811115613002576000848401525b50505050565b6000600282049050600182168061302057607f821691505b6020821081141561303457613033613112565b5b50919050565b61304382613170565b810181811067ffffffffffffffff8211171561306257613061613141565b5b80604052505050565b600061307682612f8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130a9576130a86130b4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f226465736372697074696f6e223a220000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f222c22696d616765223a20000000000000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f7b226e616d65223a225375646f56657273652023000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b61363a81612f21565b811461364557600080fd5b50565b61365181612f33565b811461365c57600080fd5b50565b61366881612f3f565b811461367357600080fd5b50565b61367f81612f8b565b811461368a57600080fd5b5056fe5375646f566572736520697320616e206f6e20636861696e20706f6e7a692067616d6520706c61796564206469726563746c792066726f6d205375646f537761702e78797a20554920746f206578706c6f7265205375646f5377617020636f6e74726163747320626f756e6461726965732e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212203aabfecf1699221e56613fc872e79c9bb6e122357dca8613d004c92697f72bcb64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000095375646f5665727365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095375646f56657273650000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): SudoVerse
Arg [1] : symbol (string): SudoVerse
Arg [2] : maxSupply (uint256): 3000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 5375646f56657273650000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 5375646f56657273650000000000000000000000000000000000000000000000
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.