Overview
ETH Balance
0.066 ETH
Eth Value
$254.30 (@ $3,853.01/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 285 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 17789706 | 505 days ago | IN | 0 ETH | 0.00100954 | ||||
Safe Transfer Fr... | 17789700 | 505 days ago | IN | 0 ETH | 0.00092705 | ||||
Safe Transfer Fr... | 17789675 | 505 days ago | IN | 0 ETH | 0.00086261 | ||||
Set Approval For... | 16656555 | 665 days ago | IN | 0 ETH | 0.0012238 | ||||
Set Approval For... | 16624567 | 669 days ago | IN | 0 ETH | 0.00062775 | ||||
Mint | 16622799 | 669 days ago | IN | 0.033 ETH | 0.00115808 | ||||
Mint | 16499892 | 687 days ago | IN | 0.033 ETH | 0.00162132 | ||||
Set Approval For... | 16472277 | 691 days ago | IN | 0 ETH | 0.00040645 | ||||
Set Approval For... | 16367422 | 705 days ago | IN | 0 ETH | 0.00078557 | ||||
Safe Transfer Fr... | 16199928 | 729 days ago | IN | 0 ETH | 0.0006771 | ||||
Safe Transfer Fr... | 15935845 | 765 days ago | IN | 0 ETH | 0.00287482 | ||||
Withdraw | 15905735 | 770 days ago | IN | 0 ETH | 0.00093824 | ||||
Mint | 15904501 | 770 days ago | IN | 0.033 ETH | 0.00081545 | ||||
Set Approval For... | 15840794 | 779 days ago | IN | 0 ETH | 0.00049175 | ||||
Set Approval For... | 15840788 | 779 days ago | IN | 0 ETH | 0.0005029 | ||||
Set Approval For... | 15840785 | 779 days ago | IN | 0 ETH | 0.00050199 | ||||
Set Approval For... | 15840783 | 779 days ago | IN | 0 ETH | 0.00048089 | ||||
Set Approval For... | 15763065 | 790 days ago | IN | 0 ETH | 0.00059933 | ||||
Set Approval For... | 15748798 | 792 days ago | IN | 0 ETH | 0.00074978 | ||||
Set Approval For... | 15729649 | 794 days ago | IN | 0 ETH | 0.00080739 | ||||
Safe Transfer Fr... | 15725791 | 795 days ago | IN | 0 ETH | 0.00111476 | ||||
Set Approval For... | 15725789 | 795 days ago | IN | 0 ETH | 0.00112936 | ||||
Safe Transfer Fr... | 15695460 | 799 days ago | IN | 0 ETH | 0.00023356 | ||||
Safe Transfer Fr... | 15695457 | 799 days ago | IN | 0 ETH | 0.00024135 | ||||
Safe Transfer Fr... | 15663565 | 803 days ago | IN | 0 ETH | 0.00018106 |
Latest 10 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15905735 | 770 days ago | 0.1122 ETH | ||||
15905735 | 770 days ago | 1.0098 ETH | ||||
15347232 | 852 days ago | 0.033 ETH | ||||
15347232 | 852 days ago | 0.297 ETH | ||||
14673750 | 961 days ago | 0.0462 ETH | ||||
14673750 | 961 days ago | 0.4158 ETH | ||||
14433117 | 998 days ago | 0.2838 ETH | ||||
14433117 | 998 days ago | 2.5542 ETH | ||||
14275898 | 1023 days ago | 0.3003 ETH | ||||
14275898 | 1023 days ago | 2.7027 ETH |
Loading...
Loading
Contract Name:
AfroPunks
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BSD-3-Clausepragma solidity ^0.8.0;import "./GDXERC721Batch.sol";import "@openzeppelin/contracts/utils/Strings.sol";contract AfroPunks is GDXERC721Batch {using Strings for uint256;uint256 public MAX_ORDER = 20;uint256 public MAX_SUPPLY = 3333;uint256 public PRICE = 0.033 ether;bool public isMainsaleActive = false;string private _baseTokenURI = "";string private _tokenURISuffix = "";mapping(address => uint256) public presaleMap;address[] addresses = [0x5478D62322328cb1FA565E8847eCcD5e3428480B,0xB7edf3Cbb58ecb74BdE6298294c7AAb339F3cE4a];uint256[] splits = [90, 10];
123456789// SPDX-License-Identifier: BSD-3-Clausepragma solidity ^0.8.0;interface IERC721Batch {function isOwnerOf( address account, uint[] calldata tokenIds ) external view returns( bool );function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external;function walletOfOwner( address account ) external view returns( uint[] memory );}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BSD-3-Clausepragma solidity ^0.8.0;import "./GDXERC721.sol";import "@openzeppelin/contracts/interfaces/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.*/abstract contract GDXERC721Enumerable is GDXERC721, IERC721Enumerable {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, GDXERC721) returns (bool) {return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);}/*** @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view override returns (uint256 tokenId) {uint count;for( uint i; i < _owners.length; ++i ){
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BSD-3-Clausepragma solidity ^0.8.0;/***************************************** @author: squeebo_nft ** @team: GoldenXNFT *****************************************/import "./GDXERC721Enumerable.sol";import "./IERC721Batch.sol";abstract contract GDXERC721Batch is GDXERC721Enumerable, IERC721Batch {function isOwnerOf(address account, uint256[] calldata tokenIds)externalviewoverridereturns (bool){for (uint256 i; i < tokenIds.length; ++i) {if (_owners[tokenIds[i]] != account) return false;}return true;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BSD-3-Clausepragma solidity ^0.8.0;/***************************************** @author: squeebo_nft ** @team: GoldenXNFT ****************************************** Blimpie-ERC721 provides low-gas ** mints + transfers *****************************************/import "./Delegated.sol";import "@openzeppelin/contracts/utils/introspection/ERC165.sol";import "@openzeppelin/contracts/interfaces/IERC721.sol";import "@openzeppelin/contracts/interfaces/IERC721Metadata.sol";import "@openzeppelin/contracts/utils/Address.sol";import "@openzeppelin/contracts/utils/Context.sol";import "@openzeppelin/contracts/interfaces/IERC721Receiver.sol";abstract contract GDXERC721 isContext,Delegated,ERC165,IERC721,IERC721Metadata
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BSD-3-Clausepragma solidity ^0.8.0;/************************ @author: squeebo_nft *************************/import "@openzeppelin/contracts/access/Ownable.sol";contract Delegated is Ownable {mapping(address => bool) internal _delegates;constructor(){_delegates[owner()] = true;}modifier onlyDelegates {require(_delegates[msg.sender], "Invalid delegate" );_;}//onlyOwnerfunction isDelegate( address addr ) external view onlyOwner returns ( bool ){return _delegates[addr];}
12345678910111213141516171819202122232425// 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);}
1234567891011121314151617181920212223242526// 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) {
1234567891011121314151617181920212223242526// 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.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)pragma solidity ^0.8.0;/*** @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* ====*/
1234567891011121314151617181920212223242526// 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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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 tokenId);/*** @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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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);
123456// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Receiver.sol)pragma solidity ^0.8.0;import "../token/ERC721/IERC721Receiver.sol";
123456// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../token/ERC721/extensions/IERC721Metadata.sol";
123456// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Enumerable.sol)pragma solidity ^0.8.0;import "../token/ERC721/extensions/IERC721Enumerable.sol";
123456// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)pragma solidity ^0.8.0;import "../token/ERC721/IERC721.sol";
1234567891011121314151617181920212223242526// 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.
123456789101112131415161718192021{"remappings": [],"optimizer": {"enabled": true,"runs": 200},"evmVersion": "london","libraries": {},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_ORDER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMainsaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isMainsaleActive_","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxOrder","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256[]","name":"_splits","type":"uint256[]"}],"name":"setWithdrawalData","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":"tokenId","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":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6014600755610d0560085566753d533d968000600955600a805460ff1916905560a06040819052600060808190526200003b91600b91620001ff565b506040805160208101918290526000908190526200005c91600c91620001ff565b5060408051808201909152735478d62322328cb1fa565e8847eccd5e3428480b815273b7edf3cbb58ecb74bde6298294c7aab339f3ce4a6020820152620000a890600e9060026200028e565b5060408051808201909152605a8152600a6020820152620000ce90600f906002620002e6565b50348015620000dc57600080fd5b50604051806040016040528060098152602001684166726f50756e6b7360b81b815250604051806040016040528060048152602001634146504b60e01b8152506200013662000130620001ab60201b60201c565b620001af565b60018060006200014e6000546001600160a01b031690565b6001600160a01b03168152602080820192909252604001600020805460ff19169215159290921790915582516200018c9160029190850190620001ff565b508051620001a2906003906020840190620001ff565b5050506200037d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200020d9062000340565b90600052602060002090601f0160209004810192826200023157600085556200027c565b82601f106200024c57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027c5782518255916020019190600101906200025f565b506200028a92915062000329565b5090565b8280548282559060005260206000209081019282156200027c579160200282015b828111156200027c57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002af565b8280548282559060005260206000209081019282156200027c579160200282015b828111156200027c578251829060ff1690559160200191906001019062000307565b5b808211156200028a57600081556001016200032a565b600181811c908216806200035557607f821691505b602082108114156200037757634e487b7160e01b600052602260045260246000fd5b50919050565b6127a3806200038d6000396000f3fe6080604052600436106102115760003560e01c806350c5a00c1161011757806395d89b41116100a5578063b88d4fde1161006c578063b88d4fde1461062e578063c87b56dd1461064e578063e966d5121461066e578063e985e9c514610681578063f2fde38b146106ca57005b806395d89b41146105a6578063a0712d68146105bb578063a22cb465146105ce578063acec338a146105ee578063b534a5c41461060e57005b8063715018a6116100e9578063715018a6146105235780637f75c315146105385780638d859f3e146105525780638da5cb5b1461056857806391b7f5ed1461058657005b806350c5a00c146104ad5780636352211e146104c35780636790a9de146104e357806370a082311461050357005b806332cb6b0c1161019f578063438b630011610166578063438b63001461040d57806349231c4e1461042d5780634a994eef1461044d5780634d44660c1461046d5780634f6ccce71461048d57005b806332cb6b0c146103755780633b91ceef1461038b5780633ccfd60b146103ab57806340398d67146103c057806342842e0e146103ed57005b8063095ea7b3116101e3578063095ea7b3146102c957806318160ddd146102e957806319d5398e1461030857806323b872dd146103355780632f745c591461035557005b806301ffc9a71461021a57806306fdde031461024f5780630777962714610271578063081812fc1461029157005b3661021857005b005b34801561022657600080fd5b5061023a610235366004611e9c565b6106ea565b60405190151581526020015b60405180910390f35b34801561025b57600080fd5b50610264610715565b6040516102469190611f11565b34801561027d57600080fd5b5061023a61028c366004611f3b565b6107a7565b34801561029d57600080fd5b506102b16102ac366004611f56565b6107fe565b6040516001600160a01b039091168152602001610246565b3480156102d557600080fd5b506102186102e4366004611f6f565b610841565b3480156102f557600080fd5b506004545b604051908152602001610246565b34801561031457600080fd5b506102fa610323366004611f3b565b600d6020526000908152604090205481565b34801561034157600080fd5b50610218610350366004611f99565b610957565b34801561036157600080fd5b506102fa610370366004611f6f565b610988565b34801561038157600080fd5b506102fa60085481565b34801561039757600080fd5b506102186103a6366004611fd5565b610a54565b3480156103b757600080fd5b50610218610b0e565b3480156103cc57600080fd5b506103e06103db366004611f3b565b610bf0565b6040516102469190611ff7565b3480156103f957600080fd5b50610218610408366004611f99565b610bfb565b34801561041957600080fd5b506103e0610428366004611f3b565b610c16565b34801561043957600080fd5b50610218610448366004612087565b610cfc565b34801561045957600080fd5b50610218610468366004612103565b610daf565b34801561047957600080fd5b5061023a610488366004612136565b610e04565b34801561049957600080fd5b506102fa6104a8366004611f56565b610e86565b3480156104b957600080fd5b506102fa60075481565b3480156104cf57600080fd5b506102b16104de366004611f56565b610eae565b3480156104ef57600080fd5b506102186104fe3660046121cb565b610f03565b34801561050f57600080fd5b506102fa61051e366004611f3b565b610f4b565b34801561052f57600080fd5b50610218611019565b34801561054457600080fd5b50600a5461023a9060ff1681565b34801561055e57600080fd5b506102fa60095481565b34801561057457600080fd5b506000546001600160a01b03166102b1565b34801561059257600080fd5b506102186105a1366004611f56565b61104f565b3480156105b257600080fd5b50610264611090565b6102186105c9366004611f56565b61109f565b3480156105da57600080fd5b506102186105e9366004612103565b611255565b3480156105fa57600080fd5b5061021861060936600461222b565b61131a565b34801561061a57600080fd5b50610218610629366004612246565b61136c565b34801561063a57600080fd5b506102186106493660046122ed565b6113ea565b34801561065a57600080fd5b50610264610669366004611f56565b611422565b61021861067c366004612087565b6114c6565b34801561068d57600080fd5b5061023a61069c3660046123c9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106d657600080fd5b506102186106e5366004611f3b565b611675565b60006001600160e01b0319821663780e9d6360e01b148061070f575061070f826116ce565b92915050565b606060028054610724906123f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610750906123f3565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b600080546001600160a01b031633146107db5760405162461bcd60e51b81526004016107d29061242e565b60405180910390fd5b506001600160a01b03811660009081526001602052604090205460ff165b919050565b60006108098261171e565b6108255760405162461bcd60e51b81526004016107d290612463565b506000908152600560205260409020546001600160a01b031690565b600061084c82610eae565b9050806001600160a01b0316836001600160a01b031614156108ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107d2565b336001600160a01b03821614806108d657506108d6813361069c565b6109485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d2565b6109528383611768565b505050565b61096133826117d6565b61097d5760405162461bcd60e51b81526004016107d2906124a6565b61095283838361187b565b60008060005b6004548110156109f757600481815481106109ab576109ab6124f7565b6000918252602090912001546001600160a01b03868116911614156109e757838214156109db57915061070f9050565b6109e482612523565b91505b6109f081612523565b905061098e565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107d2565b3360009081526001602052604090205460ff16610a835760405162461bcd60e51b81526004016107d29061253e565b600454811015610aec5760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b60648201526084016107d2565b8160075414610afb5760078290555b8060085414610b0a5760088190555b5050565b3360009081526001602052604090205460ff16610b3d5760405162461bcd60e51b81526004016107d29061253e565b60004711610b4a57600080fd5b4760005b600e54811015610b0a57600e8181548110610b6b57610b6b6124f7565b600091825260209091200154600f80546001600160a01b03909216916108fc919084908110610b9c57610b9c6124f7565b9060005260206000200154606485610bb4919061257e565b610bbe9190612592565b6040518115909202916000818181858888f19350505050610bde57600080fd5b80610be881612523565b915050610b4e565b606061070f82610c16565b610952838383604051806020016040528060008152506113ea565b60606000610c2383610f4b565b90506000808267ffffffffffffffff811115610c4157610c416122d7565b604051908082528060200260200182016040528015610c6a578160200160208202803683370190505b50905060005b600454811015610cf35760048181548110610c8d57610c8d6124f7565b6000918252602090912001546001600160a01b0387811691161415610ce357808284610cb881612523565b955081518110610cca57610cca6124f7565b60200260200101818152505083831415610ce357610cf3565b610cec81612523565b9050610c70565b50949350505050565b3360009081526001602052604090205460ff16610d2b5760405162461bcd60e51b81526004016107d29061253e565b600f548314610d8f5760405162461bcd60e51b815260206004820152602a60248201527f4d69736d617463686564206e756d626572206f6620616464726573736573206160448201526937321039b83634ba399760b11b60648201526084016107d2565b610d9b600e8585611d64565b50610da8600f8383611dc3565b5050505050565b6000546001600160a01b03163314610dd95760405162461bcd60e51b81526004016107d29061242e565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b6000805b82811015610e7957846001600160a01b03166004858584818110610e2e57610e2e6124f7565b9050602002013581548110610e4557610e456124f7565b6000918252602090912001546001600160a01b031614610e69576000915050610e7f565b610e7281612523565b9050610e08565b50600190505b9392505050565b6004546000908210610eaa5760405162461bcd60e51b81526004016107d290612463565b5090565b6000610eb98261171e565b610ed55760405162461bcd60e51b81526004016107d290612463565b60048281548110610ee857610ee86124f7565b6000918252602090912001546001600160a01b031692915050565b3360009081526001602052604090205460ff16610f325760405162461bcd60e51b81526004016107d29061253e565b610f3e600b8585611dfe565b50610da8600c8383611dfe565b60006001600160a01b038216610fb65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107d2565b6000805b6004548110156110125760048181548110610fd757610fd76124f7565b6000918252602090912001546001600160a01b038581169116141561100257610fff82612523565b91505b61100b81612523565b9050610fba565b5092915050565b6000546001600160a01b031633146110435760405162461bcd60e51b81526004016107d29061242e565b61104d60006119d1565b565b3360009081526001602052604090205460ff1661107e5760405162461bcd60e51b81526004016107d29061253e565b806009541461108d5760098190555b50565b606060038054610724906123f3565b6007548111156110e15760405162461bcd60e51b815260206004820152600d60248201526c4f7264657220746f6f2062696760981b60448201526064016107d2565b60006110ec60045490565b6008549091506110fc83836125b1565b11156111465760405162461bcd60e51b81526020600482015260196024820152784d696e742f6f72646572206578636565647320737570706c7960381b60448201526064016107d2565b600a5460ff16156111f5578160095461115f9190612592565b3410156111ae5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016107d2565b6007548211156111f05760405162461bcd60e51b815260206004820152600d60248201526c4f7264657220746f6f2062696760981b60448201526064016107d2565b611232565b60405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107d2565b60005b828110156109525761124d3383806001019450611a21565b600101611235565b6001600160a01b0382163314156112ae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3360009081526001602052604090205460ff166113495760405162461bcd60e51b81526004016107d29061253e565b600a5460ff1615158115151461108d57600a805482151560ff1990911617905550565b60005b838110156113e1576113d1878787878581811061138e5761138e6124f7565b9050602002013586868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113ea92505050565b6113da81612523565b905061136f565b50505050505050565b6113f433836117d6565b6114105760405162461bcd60e51b81526004016107d2906124a6565b61141c84848484611a9d565b50505050565b606061142d8261171e565b6114915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107d2565b600b61149c83611ad0565b600c6040516020016114b093929190612663565b6040516020818303038152906040529050919050565b3360009081526001602052604090205460ff166114f55760405162461bcd60e51b81526004016107d29061253e565b8281146115595760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201526b6420726563697069656e747360a01b60648201526084016107d2565b60008061156560045490565b905060005b858110156115aa57868682818110611584576115846124f7565b905060200201358361159691906125b1565b9250806115a281612523565b91505061156a565b506008546115b883836125b1565b11156116025760405162461bcd60e51b81526020600482015260196024820152784d696e742f6f72646572206578636565647320737570706c7960381b60448201526064016107d2565b60005b838110156113e15760005b878783818110611622576116226124f7565b9050602002013581101561166c57611664868684818110611645576116456124f7565b905060200201602081019061165a9190611f3b565b6001850194611a21565b600101611610565b50600101611605565b6000546001600160a01b0316331461169f5760405162461bcd60e51b81526004016107d29061242e565b6001600160a01b0381166000908152600160208190526040909120805460ff1916909117905561108d81611bce565b60006001600160e01b031982166380ac58cd60e01b14806116ff57506001600160e01b03198216635b5e139f60e01b145b8061070f57506301ffc9a760e01b6001600160e01b031983161461070f565b6004546000908210801561070f575060006001600160a01b03166004838154811061174b5761174b6124f7565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179d82610eae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117e18261171e565b6117fd5760405162461bcd60e51b81526004016107d290612463565b600061180883610eae565b9050806001600160a01b0316846001600160a01b031614806118435750836001600160a01b0316611838846107fe565b6001600160a01b0316145b8061187357506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661188e82610eae565b6001600160a01b0316146118f65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107d2565b6001600160a01b0382166119585760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107d2565b611963600082611768565b8160048281548110611977576119776124f7565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611aa884848461187b565b611ab484848484611c66565b61141c5760405162461bcd60e51b81526004016107d290612696565b606081611af45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b1e5780611b0881612523565b9150611b179050600a8361257e565b9150611af8565b60008167ffffffffffffffff811115611b3957611b396122d7565b6040519080825280601f01601f191660200182016040528015611b63576020820181803683370190505b5090505b841561187357611b786001836126e8565b9150611b85600a866126ff565b611b909060306125b1565b60f81b818381518110611ba557611ba56124f7565b60200101906001600160f81b031916908160001a905350611bc7600a8661257e565b9450611b67565b6000546001600160a01b03163314611bf85760405162461bcd60e51b81526004016107d29061242e565b6001600160a01b038116611c5d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d2565b61108d816119d1565b60006001600160a01b0384163b15611d5957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611caa903390899088908890600401612713565b6020604051808303816000875af1925050508015611ce5575060408051601f3d908101601f19168201909252611ce291810190612750565b60015b611d3f573d808015611d13576040519150601f19603f3d011682016040523d82523d6000602084013e611d18565b606091505b508051611d375760405162461bcd60e51b81526004016107d290612696565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611873565b506001949350505050565b828054828255906000526020600020908101928215611db7579160200282015b82811115611db75781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611d84565b50610eaa929150611e71565b828054828255906000526020600020908101928215611db7579160200282015b82811115611db7578235825591602001919060010190611de3565b828054611e0a906123f3565b90600052602060002090601f016020900481019282611e2c5760008555611db7565b82601f10611e455782800160ff19823516178555611db7565b82800160010185558215611db75791820182811115611db7578235825591602001919060010190611de3565b5b80821115610eaa5760008155600101611e72565b6001600160e01b03198116811461108d57600080fd5b600060208284031215611eae57600080fd5b8135610e7f81611e86565b60005b83811015611ed4578181015183820152602001611ebc565b8381111561141c5750506000910152565b60008151808452611efd816020860160208601611eb9565b601f01601f19169290920160200192915050565b602081526000610e7f6020830184611ee5565b80356001600160a01b03811681146107f957600080fd5b600060208284031215611f4d57600080fd5b610e7f82611f24565b600060208284031215611f6857600080fd5b5035919050565b60008060408385031215611f8257600080fd5b611f8b83611f24565b946020939093013593505050565b600080600060608486031215611fae57600080fd5b611fb784611f24565b9250611fc560208501611f24565b9150604084013590509250925092565b60008060408385031215611fe857600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b8181101561202f57835183529284019291840191600101612013565b50909695505050505050565b60008083601f84011261204d57600080fd5b50813567ffffffffffffffff81111561206557600080fd5b6020830191508360208260051b850101111561208057600080fd5b9250929050565b6000806000806040858703121561209d57600080fd5b843567ffffffffffffffff808211156120b557600080fd5b6120c18883890161203b565b909650945060208701359150808211156120da57600080fd5b506120e78782880161203b565b95989497509550505050565b803580151581146107f957600080fd5b6000806040838503121561211657600080fd5b61211f83611f24565b915061212d602084016120f3565b90509250929050565b60008060006040848603121561214b57600080fd5b61215484611f24565b9250602084013567ffffffffffffffff81111561217057600080fd5b61217c8682870161203b565b9497909650939450505050565b60008083601f84011261219b57600080fd5b50813567ffffffffffffffff8111156121b357600080fd5b60208301915083602082850101111561208057600080fd5b600080600080604085870312156121e157600080fd5b843567ffffffffffffffff808211156121f957600080fd5b61220588838901612189565b9096509450602087013591508082111561221e57600080fd5b506120e787828801612189565b60006020828403121561223d57600080fd5b610e7f826120f3565b6000806000806000806080878903121561225f57600080fd5b61226887611f24565b955061227660208801611f24565b9450604087013567ffffffffffffffff8082111561229357600080fd5b61229f8a838b0161203b565b909650945060608901359150808211156122b857600080fd5b506122c589828a01612189565b979a9699509497509295939492505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561230357600080fd5b61230c85611f24565b935061231a60208601611f24565b925060408501359150606085013567ffffffffffffffff8082111561233e57600080fd5b818701915087601f83011261235257600080fd5b813581811115612364576123646122d7565b604051601f8201601f19908116603f0116810190838211818310171561238c5761238c6122d7565b816040528281528a60208487010111156123a557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123dc57600080fd5b6123e583611f24565b915061212d60208401611f24565b600181811c9082168061240757607f821691505b6020821081141561242857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60408201526235b2b760e91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156125375761253761250d565b5060010190565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261258d5761258d612568565b500490565b60008160001904831182151516156125ac576125ac61250d565b500290565b600082198211156125c4576125c461250d565b500190565b8054600090600181811c90808316806125e357607f831692505b602080841082141561260557634e487b7160e01b600052602260045260246000fd5b818015612619576001811461262a57612657565b60ff19861689528489019650612657565b60008881526020902060005b8681101561264f5781548b820152908501908301612636565b505084890196505b50505050505092915050565b600061266f82866125c9565b845161267f818360208901611eb9565b61268b818301866125c9565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000828210156126fa576126fa61250d565b500390565b60008261270e5761270e612568565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061274690830184611ee5565b9695505050505050565b60006020828403121561276257600080fd5b8151610e7f81611e8656fea2646970667358221220117b8010f442127e28c5a189d650a14c369196458d422ceea38c5cc0573950d564736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106102115760003560e01c806350c5a00c1161011757806395d89b41116100a5578063b88d4fde1161006c578063b88d4fde1461062e578063c87b56dd1461064e578063e966d5121461066e578063e985e9c514610681578063f2fde38b146106ca57005b806395d89b41146105a6578063a0712d68146105bb578063a22cb465146105ce578063acec338a146105ee578063b534a5c41461060e57005b8063715018a6116100e9578063715018a6146105235780637f75c315146105385780638d859f3e146105525780638da5cb5b1461056857806391b7f5ed1461058657005b806350c5a00c146104ad5780636352211e146104c35780636790a9de146104e357806370a082311461050357005b806332cb6b0c1161019f578063438b630011610166578063438b63001461040d57806349231c4e1461042d5780634a994eef1461044d5780634d44660c1461046d5780634f6ccce71461048d57005b806332cb6b0c146103755780633b91ceef1461038b5780633ccfd60b146103ab57806340398d67146103c057806342842e0e146103ed57005b8063095ea7b3116101e3578063095ea7b3146102c957806318160ddd146102e957806319d5398e1461030857806323b872dd146103355780632f745c591461035557005b806301ffc9a71461021a57806306fdde031461024f5780630777962714610271578063081812fc1461029157005b3661021857005b005b34801561022657600080fd5b5061023a610235366004611e9c565b6106ea565b60405190151581526020015b60405180910390f35b34801561025b57600080fd5b50610264610715565b6040516102469190611f11565b34801561027d57600080fd5b5061023a61028c366004611f3b565b6107a7565b34801561029d57600080fd5b506102b16102ac366004611f56565b6107fe565b6040516001600160a01b039091168152602001610246565b3480156102d557600080fd5b506102186102e4366004611f6f565b610841565b3480156102f557600080fd5b506004545b604051908152602001610246565b34801561031457600080fd5b506102fa610323366004611f3b565b600d6020526000908152604090205481565b34801561034157600080fd5b50610218610350366004611f99565b610957565b34801561036157600080fd5b506102fa610370366004611f6f565b610988565b34801561038157600080fd5b506102fa60085481565b34801561039757600080fd5b506102186103a6366004611fd5565b610a54565b3480156103b757600080fd5b50610218610b0e565b3480156103cc57600080fd5b506103e06103db366004611f3b565b610bf0565b6040516102469190611ff7565b3480156103f957600080fd5b50610218610408366004611f99565b610bfb565b34801561041957600080fd5b506103e0610428366004611f3b565b610c16565b34801561043957600080fd5b50610218610448366004612087565b610cfc565b34801561045957600080fd5b50610218610468366004612103565b610daf565b34801561047957600080fd5b5061023a610488366004612136565b610e04565b34801561049957600080fd5b506102fa6104a8366004611f56565b610e86565b3480156104b957600080fd5b506102fa60075481565b3480156104cf57600080fd5b506102b16104de366004611f56565b610eae565b3480156104ef57600080fd5b506102186104fe3660046121cb565b610f03565b34801561050f57600080fd5b506102fa61051e366004611f3b565b610f4b565b34801561052f57600080fd5b50610218611019565b34801561054457600080fd5b50600a5461023a9060ff1681565b34801561055e57600080fd5b506102fa60095481565b34801561057457600080fd5b506000546001600160a01b03166102b1565b34801561059257600080fd5b506102186105a1366004611f56565b61104f565b3480156105b257600080fd5b50610264611090565b6102186105c9366004611f56565b61109f565b3480156105da57600080fd5b506102186105e9366004612103565b611255565b3480156105fa57600080fd5b5061021861060936600461222b565b61131a565b34801561061a57600080fd5b50610218610629366004612246565b61136c565b34801561063a57600080fd5b506102186106493660046122ed565b6113ea565b34801561065a57600080fd5b50610264610669366004611f56565b611422565b61021861067c366004612087565b6114c6565b34801561068d57600080fd5b5061023a61069c3660046123c9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106d657600080fd5b506102186106e5366004611f3b565b611675565b60006001600160e01b0319821663780e9d6360e01b148061070f575061070f826116ce565b92915050565b606060028054610724906123f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610750906123f3565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b600080546001600160a01b031633146107db5760405162461bcd60e51b81526004016107d29061242e565b60405180910390fd5b506001600160a01b03811660009081526001602052604090205460ff165b919050565b60006108098261171e565b6108255760405162461bcd60e51b81526004016107d290612463565b506000908152600560205260409020546001600160a01b031690565b600061084c82610eae565b9050806001600160a01b0316836001600160a01b031614156108ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107d2565b336001600160a01b03821614806108d657506108d6813361069c565b6109485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d2565b6109528383611768565b505050565b61096133826117d6565b61097d5760405162461bcd60e51b81526004016107d2906124a6565b61095283838361187b565b60008060005b6004548110156109f757600481815481106109ab576109ab6124f7565b6000918252602090912001546001600160a01b03868116911614156109e757838214156109db57915061070f9050565b6109e482612523565b91505b6109f081612523565b905061098e565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107d2565b3360009081526001602052604090205460ff16610a835760405162461bcd60e51b81526004016107d29061253e565b600454811015610aec5760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b60648201526084016107d2565b8160075414610afb5760078290555b8060085414610b0a5760088190555b5050565b3360009081526001602052604090205460ff16610b3d5760405162461bcd60e51b81526004016107d29061253e565b60004711610b4a57600080fd5b4760005b600e54811015610b0a57600e8181548110610b6b57610b6b6124f7565b600091825260209091200154600f80546001600160a01b03909216916108fc919084908110610b9c57610b9c6124f7565b9060005260206000200154606485610bb4919061257e565b610bbe9190612592565b6040518115909202916000818181858888f19350505050610bde57600080fd5b80610be881612523565b915050610b4e565b606061070f82610c16565b610952838383604051806020016040528060008152506113ea565b60606000610c2383610f4b565b90506000808267ffffffffffffffff811115610c4157610c416122d7565b604051908082528060200260200182016040528015610c6a578160200160208202803683370190505b50905060005b600454811015610cf35760048181548110610c8d57610c8d6124f7565b6000918252602090912001546001600160a01b0387811691161415610ce357808284610cb881612523565b955081518110610cca57610cca6124f7565b60200260200101818152505083831415610ce357610cf3565b610cec81612523565b9050610c70565b50949350505050565b3360009081526001602052604090205460ff16610d2b5760405162461bcd60e51b81526004016107d29061253e565b600f548314610d8f5760405162461bcd60e51b815260206004820152602a60248201527f4d69736d617463686564206e756d626572206f6620616464726573736573206160448201526937321039b83634ba399760b11b60648201526084016107d2565b610d9b600e8585611d64565b50610da8600f8383611dc3565b5050505050565b6000546001600160a01b03163314610dd95760405162461bcd60e51b81526004016107d29061242e565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b6000805b82811015610e7957846001600160a01b03166004858584818110610e2e57610e2e6124f7565b9050602002013581548110610e4557610e456124f7565b6000918252602090912001546001600160a01b031614610e69576000915050610e7f565b610e7281612523565b9050610e08565b50600190505b9392505050565b6004546000908210610eaa5760405162461bcd60e51b81526004016107d290612463565b5090565b6000610eb98261171e565b610ed55760405162461bcd60e51b81526004016107d290612463565b60048281548110610ee857610ee86124f7565b6000918252602090912001546001600160a01b031692915050565b3360009081526001602052604090205460ff16610f325760405162461bcd60e51b81526004016107d29061253e565b610f3e600b8585611dfe565b50610da8600c8383611dfe565b60006001600160a01b038216610fb65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107d2565b6000805b6004548110156110125760048181548110610fd757610fd76124f7565b6000918252602090912001546001600160a01b038581169116141561100257610fff82612523565b91505b61100b81612523565b9050610fba565b5092915050565b6000546001600160a01b031633146110435760405162461bcd60e51b81526004016107d29061242e565b61104d60006119d1565b565b3360009081526001602052604090205460ff1661107e5760405162461bcd60e51b81526004016107d29061253e565b806009541461108d5760098190555b50565b606060038054610724906123f3565b6007548111156110e15760405162461bcd60e51b815260206004820152600d60248201526c4f7264657220746f6f2062696760981b60448201526064016107d2565b60006110ec60045490565b6008549091506110fc83836125b1565b11156111465760405162461bcd60e51b81526020600482015260196024820152784d696e742f6f72646572206578636565647320737570706c7960381b60448201526064016107d2565b600a5460ff16156111f5578160095461115f9190612592565b3410156111ae5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016107d2565b6007548211156111f05760405162461bcd60e51b815260206004820152600d60248201526c4f7264657220746f6f2062696760981b60448201526064016107d2565b611232565b60405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107d2565b60005b828110156109525761124d3383806001019450611a21565b600101611235565b6001600160a01b0382163314156112ae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3360009081526001602052604090205460ff166113495760405162461bcd60e51b81526004016107d29061253e565b600a5460ff1615158115151461108d57600a805482151560ff1990911617905550565b60005b838110156113e1576113d1878787878581811061138e5761138e6124f7565b9050602002013586868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113ea92505050565b6113da81612523565b905061136f565b50505050505050565b6113f433836117d6565b6114105760405162461bcd60e51b81526004016107d2906124a6565b61141c84848484611a9d565b50505050565b606061142d8261171e565b6114915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107d2565b600b61149c83611ad0565b600c6040516020016114b093929190612663565b6040516020818303038152906040529050919050565b3360009081526001602052604090205460ff166114f55760405162461bcd60e51b81526004016107d29061253e565b8281146115595760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201526b6420726563697069656e747360a01b60648201526084016107d2565b60008061156560045490565b905060005b858110156115aa57868682818110611584576115846124f7565b905060200201358361159691906125b1565b9250806115a281612523565b91505061156a565b506008546115b883836125b1565b11156116025760405162461bcd60e51b81526020600482015260196024820152784d696e742f6f72646572206578636565647320737570706c7960381b60448201526064016107d2565b60005b838110156113e15760005b878783818110611622576116226124f7565b9050602002013581101561166c57611664868684818110611645576116456124f7565b905060200201602081019061165a9190611f3b565b6001850194611a21565b600101611610565b50600101611605565b6000546001600160a01b0316331461169f5760405162461bcd60e51b81526004016107d29061242e565b6001600160a01b0381166000908152600160208190526040909120805460ff1916909117905561108d81611bce565b60006001600160e01b031982166380ac58cd60e01b14806116ff57506001600160e01b03198216635b5e139f60e01b145b8061070f57506301ffc9a760e01b6001600160e01b031983161461070f565b6004546000908210801561070f575060006001600160a01b03166004838154811061174b5761174b6124f7565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179d82610eae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117e18261171e565b6117fd5760405162461bcd60e51b81526004016107d290612463565b600061180883610eae565b9050806001600160a01b0316846001600160a01b031614806118435750836001600160a01b0316611838846107fe565b6001600160a01b0316145b8061187357506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661188e82610eae565b6001600160a01b0316146118f65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107d2565b6001600160a01b0382166119585760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107d2565b611963600082611768565b8160048281548110611977576119776124f7565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611aa884848461187b565b611ab484848484611c66565b61141c5760405162461bcd60e51b81526004016107d290612696565b606081611af45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b1e5780611b0881612523565b9150611b179050600a8361257e565b9150611af8565b60008167ffffffffffffffff811115611b3957611b396122d7565b6040519080825280601f01601f191660200182016040528015611b63576020820181803683370190505b5090505b841561187357611b786001836126e8565b9150611b85600a866126ff565b611b909060306125b1565b60f81b818381518110611ba557611ba56124f7565b60200101906001600160f81b031916908160001a905350611bc7600a8661257e565b9450611b67565b6000546001600160a01b03163314611bf85760405162461bcd60e51b81526004016107d29061242e565b6001600160a01b038116611c5d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d2565b61108d816119d1565b60006001600160a01b0384163b15611d5957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611caa903390899088908890600401612713565b6020604051808303816000875af1925050508015611ce5575060408051601f3d908101601f19168201909252611ce291810190612750565b60015b611d3f573d808015611d13576040519150601f19603f3d011682016040523d82523d6000602084013e611d18565b606091505b508051611d375760405162461bcd60e51b81526004016107d290612696565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611873565b506001949350505050565b828054828255906000526020600020908101928215611db7579160200282015b82811115611db75781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611d84565b50610eaa929150611e71565b828054828255906000526020600020908101928215611db7579160200282015b82811115611db7578235825591602001919060010190611de3565b828054611e0a906123f3565b90600052602060002090601f016020900481019282611e2c5760008555611db7565b82601f10611e455782800160ff19823516178555611db7565b82800160010185558215611db75791820182811115611db7578235825591602001919060010190611de3565b5b80821115610eaa5760008155600101611e72565b6001600160e01b03198116811461108d57600080fd5b600060208284031215611eae57600080fd5b8135610e7f81611e86565b60005b83811015611ed4578181015183820152602001611ebc565b8381111561141c5750506000910152565b60008151808452611efd816020860160208601611eb9565b601f01601f19169290920160200192915050565b602081526000610e7f6020830184611ee5565b80356001600160a01b03811681146107f957600080fd5b600060208284031215611f4d57600080fd5b610e7f82611f24565b600060208284031215611f6857600080fd5b5035919050565b60008060408385031215611f8257600080fd5b611f8b83611f24565b946020939093013593505050565b600080600060608486031215611fae57600080fd5b611fb784611f24565b9250611fc560208501611f24565b9150604084013590509250925092565b60008060408385031215611fe857600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b8181101561202f57835183529284019291840191600101612013565b50909695505050505050565b60008083601f84011261204d57600080fd5b50813567ffffffffffffffff81111561206557600080fd5b6020830191508360208260051b850101111561208057600080fd5b9250929050565b6000806000806040858703121561209d57600080fd5b843567ffffffffffffffff808211156120b557600080fd5b6120c18883890161203b565b909650945060208701359150808211156120da57600080fd5b506120e78782880161203b565b95989497509550505050565b803580151581146107f957600080fd5b6000806040838503121561211657600080fd5b61211f83611f24565b915061212d602084016120f3565b90509250929050565b60008060006040848603121561214b57600080fd5b61215484611f24565b9250602084013567ffffffffffffffff81111561217057600080fd5b61217c8682870161203b565b9497909650939450505050565b60008083601f84011261219b57600080fd5b50813567ffffffffffffffff8111156121b357600080fd5b60208301915083602082850101111561208057600080fd5b600080600080604085870312156121e157600080fd5b843567ffffffffffffffff808211156121f957600080fd5b61220588838901612189565b9096509450602087013591508082111561221e57600080fd5b506120e787828801612189565b60006020828403121561223d57600080fd5b610e7f826120f3565b6000806000806000806080878903121561225f57600080fd5b61226887611f24565b955061227660208801611f24565b9450604087013567ffffffffffffffff8082111561229357600080fd5b61229f8a838b0161203b565b909650945060608901359150808211156122b857600080fd5b506122c589828a01612189565b979a9699509497509295939492505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561230357600080fd5b61230c85611f24565b935061231a60208601611f24565b925060408501359150606085013567ffffffffffffffff8082111561233e57600080fd5b818701915087601f83011261235257600080fd5b813581811115612364576123646122d7565b604051601f8201601f19908116603f0116810190838211818310171561238c5761238c6122d7565b816040528281528a60208487010111156123a557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123dc57600080fd5b6123e583611f24565b915061212d60208401611f24565b600181811c9082168061240757607f821691505b6020821081141561242857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60408201526235b2b760e91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156125375761253761250d565b5060010190565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261258d5761258d612568565b500490565b60008160001904831182151516156125ac576125ac61250d565b500290565b600082198211156125c4576125c461250d565b500190565b8054600090600181811c90808316806125e357607f831692505b602080841082141561260557634e487b7160e01b600052602260045260246000fd5b818015612619576001811461262a57612657565b60ff19861689528489019650612657565b60008881526020902060005b8681101561264f5781548b820152908501908301612636565b505084890196505b50505050505092915050565b600061266f82866125c9565b845161267f818360208901611eb9565b61268b818301866125c9565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000828210156126fa576126fa61250d565b500390565b60008261270e5761270e612568565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061274690830184611ee5565b9695505050505050565b60006020828403121561276257600080fd5b8151610e7f81611e8656fea2646970667358221220117b8010f442127e28c5a189d650a14c369196458d422ceea38c5cc0573950d564736f6c634300080c0033
Loading...
Loading
Loading...
Loading
OVERVIEW
AfroPunks tell a story about where we’re from, about our culture—the joy, the vibes, the pain, and the sorrows of being African. With each element carrying its own distinctive meaning, we are telling this story through our art. There is talent in Africa and it’s time we show t...Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,851.91 | 0.066 | $254.23 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.