ERC-721
Overview
Max Total Supply
0 CAPTAINAPEMOGENESISBYJOSEDELBO
Holders
138
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CAPTAINAPEMOGENESISBYJOSEDELBOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NiftyBuilderInstance
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-22 */ // File: contracts/interface/IERC165.sol /** * @title IERC165 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md */ interface IERC165 { /** * @notice Query if a contract implements an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @dev Interface identification is specified in ERC-165. This function * uses less than 30,000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: contracts/interface/IERC721.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`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: contracts/interface/IERC721Receiver.sol /** * @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); } // File: contracts/interface/IERC721Metadata.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); } // File: contracts/util/Context.sol /* * @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; } } // File: contracts/util/Strings.sol /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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); } } // File: contracts/standard/ERC165.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; } } // File: contracts/core/NiftyEntity.sol /** * @dev Authenticator of state mutating operations for Nifty Gateway contracts. * * addresses for stateful operations. * * Rinkeby: 0xCefBf44ff649B6E0Bc63785699c6F1690b8cF73b * Mainnet: 0x6e53130dDfF21E3BC963Ee902005223b9A202106 */ contract NiftyEntity { // Address of {NiftyRegistry} contract. address internal immutable niftyRegistryContract; /** * @dev Determines whether accounts are allowed to invoke state mutating operations on child contracts. */ modifier onlyValidSender() { NiftyRegistry niftyRegistry = NiftyRegistry(niftyRegistryContract); bool isValid = niftyRegistry.isValidNiftySender(msg.sender); require(isValid, "NiftyEntity: Invalid msg.sender"); _; } /** * @param _niftyRegistryContract Points to the repository of authenticated */ constructor(address _niftyRegistryContract) { niftyRegistryContract = _niftyRegistryContract; } } /** * @dev Defined to mediate interaction with externally deployed {NiftyRegistry} dependency. */ interface NiftyRegistry { function isValidNiftySender(address sending_key) external view returns (bool); } // File: contracts/core/ERC721.sol /** * @dev Nifty Gateway implementation of Non-Fungible Token Standard. */ contract ERC721 is NiftyEntity, Context, ERC165, IERC721, IERC721Metadata { // Tracked individual instance spawned by {BuilderShop} contract. uint immutable public _id; // Number of distinct NFTs housed in this contract. uint immutable public _typeCount; // Intial receiver of all newly minted NFTs. address immutable public _defaultOwner; // Component(s) of 'tokenId' calculation. uint immutable internal topLevelMultiplier; uint immutable internal midLevelMultiplier; // Token name. string private _name; // Token symbol. string private _symbol; // Token artifact location. string private _baseURI; // Mapping from Nifty type to name of token. mapping(uint256 => string) private _niftyTypeName; // Mapping from Nifty type to IPFS hash of canonical artifcat file. mapping(uint256 => string) private _niftyTypeIPFSHashes; // Mapping from token ID to owner address. mapping (uint256 => address) internal _owners; // Mapping owner address to token count, by aggregating all _typeCount NFTs in the contact. 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 token collection. * * @param name_ Of the collection being deployed. * @param symbol_ Shorthand token identifier, for wallets, etc. * @param id_ Number instance deployed by {BuilderShop} contract. * @param baseURI_ The location where the artifact assets are stored. * @param typeCount_ The number of different Nifty types (different * individual NFTs) associated with the deployed collection. * @param defaultOwner_ Intial receiver of all newly minted NFTs. * @param niftyRegistryContract Points to the repository of authenticated * addresses for stateful operations. */ constructor(string memory name_, string memory symbol_, uint id_, string memory baseURI_, uint typeCount_, address defaultOwner_, address niftyRegistryContract) NiftyEntity(niftyRegistryContract) { _name = name_; _symbol = symbol_; _id = id_; _baseURI = baseURI_; _typeCount = typeCount_; _defaultOwner = defaultOwner_; midLevelMultiplier = 10000; topLevelMultiplier = id_ * 100000000; } /** * @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: balance query for the zero address"); 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: owner query for nonexistent token"); 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 Returns the link to artificat location for a given token by 'tokenId'. * Throws if the token ID does not exist. May return an empty string. * @param tokenId uint256 ID of the token to query. * @return The location where the artifact assets are stored. */ function tokenURI(uint256 tokenId) external view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory tokenIdStr = Strings.toString(tokenId); return string(abi.encodePacked(_baseURI, tokenIdStr)); } /** * @dev Returns an IPFS hash for a given token ID. * Throws if the token ID does not exist. May return an empty string. * @param tokenId uint256 ID of the token to query. * @return IPFS hash for this (_typeCount) NFT. */ function tokenIPFSHash(uint256 tokenId) external view returns (string memory) { require(_exists(tokenId), "ERC721Metadata: IPFS hash query for nonexistent token"); uint niftyType = _getNiftyTypeId(tokenId); return _niftyTypeIPFSHashes[niftyType]; } /** * @dev Determine which NFT in the contract (_typeCount) is associated * with this 'tokenId'. */ function _getNiftyTypeId(uint tokenId) private view returns (uint) { return (tokenId - topLevelMultiplier) / midLevelMultiplier; } /** * @dev Returns the Name for a given token ID. * Throws if the token ID does not exist. May return an empty string. * @param tokenId uint256 ID of the token to query */ function tokenName(uint256 tokenId) external view returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Name query for nonexistent token"); uint niftyType = _getNiftyTypeId(tokenId); return _niftyTypeName[niftyType]; } /** * @dev Internal function to set the token IPFS hash for a nifty type. * @param niftyType uint256 ID component of the token to set its IPFS hash * @param ipfs_hash string IPFS link to assign */ function _setTokenIPFSHashNiftyType(uint256 niftyType, string memory ipfs_hash) internal { require(bytes(_niftyTypeIPFSHashes[niftyType]).length == 0, "ERC721Metadata: IPFS hash already set"); _niftyTypeIPFSHashes[niftyType] = ipfs_hash; } /** * @dev Internal function to set the name for a nifty type. * @param niftyType uint256 of nifty type name to be set * @param nifty_type_name name of nifty type */ function _setNiftyTypeName(uint256 niftyType, string memory nifty_type_name) internal { _niftyTypeName[niftyType] = nifty_type_name; } /** * @dev Base URI for computing {tokenURI}. */ function _setBaseURI(string memory baseURI_) internal { _baseURI = baseURI_; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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: transfer caller is not 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: transfer caller is not 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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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 (isContract(to)) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } // File: contracts/standard/ERC721Burnable.sol /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File: contracts/core/NiftyBuilderInstance.sol /** * @dev Nifty Gateway extension of customized NFT contract, encapsulates * logic for minting new tokens, and concluding the minting process. */ contract NiftyBuilderInstance is ERC721, ERC721Burnable { // The artist associated with the collection. string private _creator; // Number of NFTs minted for a given 'typeCount'. mapping (uint256 => uint256) public _mintCount; /** * @dev Serves as a gas cost optimized boolean flag * to indicate whether the minting process has been * concluded for a given 'typeCount', correspinds * to the {_getFinalized} and {setFinalized}. */ mapping (uint256 => bytes32) private _finalized; /** * @dev Emitted when tokens are created. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed fromAddress, address indexed toAddress); /** * @dev Ultimate instantiation of a Nifty Gateway NFT collection. * * @param name Of the collection being deployed. * @param symbol Shorthand token identifier, for wallets, etc. * @param id Number instance deployed by {BuilderShop} contract. * @param typeCount The number of different Nifty types (different * individual NFTs) associated with the deployed collection. * @param baseURI The location where the artifact assets are stored. * @param creator_ The artist associated with the collection. * @param niftyRegistryContract Points to the repository of authenticated * addresses for stateful operations. * @param defaultOwner Intial receiver of all newly minted NFTs. */ constructor( string memory name, string memory symbol, uint id, uint typeCount, string memory baseURI, string memory creator_, address niftyRegistryContract, address defaultOwner) ERC721(name, symbol, id, baseURI, typeCount, defaultOwner, niftyRegistryContract) { _creator = creator_; } /** * @dev Generate canonical Nifty Gateway token representation. * Nifty contracts have a data model called a 'niftyType' (typeCount) * The 'niftyType' refers to a specific nifty in our contract, note * that it gives no information about the edition size. In a given * contract, 'niftyType' 1 could be an edition of 10, while 'niftyType' * 2 is a 1/1, etc. * The token IDs are encoded as follows: {id}{niftyType}{edition #} * 'niftyType' has 4 digits, and edition number does as well, to allow * for 9999 possible 'niftyType' and 9999 of each edition in each contract. * Example token id: [500010270] * This is from contract #5, it is 'niftyType' 1 in the contract, and it is * edition #270 of 'niftyType' 1. */ function _encodeTokenId(uint niftyType, uint tokenNumber) private view returns (uint) { return (topLevelMultiplier + (niftyType * midLevelMultiplier) + tokenNumber); } /** * @dev Determine whether it is possible to mint additional NFTs for this 'niftyType'. */ function _getFinalized(uint256 niftyType) public view returns (bool) { bytes32 chunk = _finalized[niftyType / 256]; return (chunk & bytes32(1 << (niftyType % 256))) != 0x0; } /** * @dev Prevent the minting of additional NFTs of this 'niftyType'. */ function setFinalized(uint256 niftyType) public onlyValidSender { uint256 quotient = niftyType / 256; bytes32 chunk = _finalized[quotient]; _finalized[quotient] = chunk | bytes32(1 << (niftyType % 256)); } /** * @dev The artist of this collection. */ function creator() public view virtual returns (string memory) { return _creator; } /** * @dev Assign the root location where the artifact assets are stored. */ function setBaseURI(string memory baseURI) public onlyValidSender { _setBaseURI(baseURI); } /** * @dev Allow owner to change nifty name, by 'niftyType'. */ function setNiftyName(uint niftyType, string memory niftyName) public onlyValidSender { _setNiftyTypeName(niftyType, niftyName); } /** * @dev Assign the IPFS hash of canonical artifcat file, by 'niftyType'. */ function setNiftyIPFSHash(uint niftyType, string memory hashIPFS) public onlyValidSender { _setTokenIPFSHashNiftyType(niftyType, hashIPFS); } /** * @dev Create specified number of nifties en masse. * Once an NFT collection is spawned by the factory contract, we make calls to set the IPFS * hash (above) for each Nifty type in the collection. * Subsequently calls are issued to this function to mint the appropriate number of tokens * for the project. */ function mintNifty(uint niftyType, uint count) public onlyValidSender { require(!_getFinalized(niftyType), "NiftyBuilderInstance: minting concluded for nifty type"); uint tokenNumber = _mintCount[niftyType] + 1; uint tokenId00 = _encodeTokenId(niftyType, tokenNumber); uint tokenId01 = tokenId00 + count - 1; for (uint tokenId = tokenId00; tokenId <= tokenId01; tokenId++) { _owners[tokenId] = _defaultOwner; } //TODO: Assign _balances by niftyType to make _mintCount mapping redundant _mintCount[niftyType] += count; _balances[_defaultOwner] += count; emit ConsecutiveTransfer(tokenId00, tokenId01, address(0), _defaultOwner); } }
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":"id","type":"uint256"},{"internalType":"uint256","name":"typeCount","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"creator_","type":"string"},{"internalType":"address","name":"niftyRegistryContract","type":"address"},{"internalType":"address","name":"defaultOwner","type":"address"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_defaultOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"}],"name":"_getFinalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_typeCount","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintNifty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"}],"name":"setFinalized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"},{"internalType":"string","name":"hashIPFS","type":"string"}],"name":"setNiftyIPFSHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"},{"internalType":"string","name":"niftyName","type":"string"}],"name":"setNiftyName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIPFSHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b506040516200290138038062002901833981016040819052620000359162000275565b6001600160601b0319606083901b16608052875188908890889087908990869088906200006a9060009060208a0190620000fb565b50855162000080906001906020890190620000fb565b5060a085905283516200009b906002906020870190620000fb565b5060c08390526001600160601b0319606083901b1660e05261271061012052620000ca856305f5e10062000367565b6101005250508751620000ec9550600994506020890193509150620000fb9050565b505050505050505050620003e8565b828054620001099062000395565b90600052602060002090601f0160209004810192826200012d576000855562000178565b82601f106200014857805160ff191683800117855562000178565b8280016001018555821562000178579182015b82811115620001785782518255916020019190600101906200015b565b50620001869291506200018a565b5090565b5b808211156200018657600081556001016200018b565b80516001600160a01b0381168114620001b957600080fd5b919050565b600082601f830112620001d057600080fd5b81516001600160401b0380821115620001ed57620001ed620003d2565b604051601f8301601f19908116603f01168101908282118183101715620002185762000218620003d2565b816040528381526020925086838588010111156200023557600080fd5b600091505b838210156200025957858201830151818301840152908201906200023a565b838211156200026b5760008385830101525b9695505050505050565b600080600080600080600080610100898b0312156200029357600080fd5b88516001600160401b0380821115620002ab57600080fd5b620002b98c838d01620001be565b995060208b0151915080821115620002d057600080fd5b620002de8c838d01620001be565b985060408b0151975060608b0151965060808b01519150808211156200030357600080fd5b620003118c838d01620001be565b955060a08b01519150808211156200032857600080fd5b50620003378b828c01620001be565b9350506200034860c08a01620001a1565b91506200035860e08a01620001a1565b90509295985092959890939650565b60008160001904831182151516156200039057634e487b7160e01b600052601160045260246000fd5b500290565b600181811c90821680620003aa57607f821691505b60208210811415620003cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160c05160e05160601c61010051610120516124846200047d600039600081816119da0152611c10015260008181611a050152611c3401526000818161028f01528181610bb401528181610c1f0152610c72015260006102b60152600061021201526000818161084f015281816109ec01528181610ce301528181610f0b015261138b01526124846000f3fe608060405234801561001057600080fd5b50600436106101b85760003560e01c80634fba84ca116100f9578063a22cb46511610097578063d371663011610071578063d3716630146103e4578063d7a853be146103f7578063e725f8771461040a578063e985e9c51461041d57600080fd5b8063a22cb465146103ab578063b88d4fde146103be578063c87b56dd146103d157600080fd5b80636352211e116100d35780636352211e1461036a57806370a082311461037d57806395d89b41146103905780639dd5e4811461039857600080fd5b80634fba84ca1461032457806355f804b3146103375780635f2ef9dc1461034a57600080fd5b8063095ea7b31161016657806323b872dd1161014057806323b872dd146102d85780632b6db055146102eb57806342842e0e146102fe57806342966c681461031157600080fd5b8063095ea7b314610275578063139fed7c1461028a5780632276f3f2146102b157600080fd5b80630518023711610197578063051802371461020d57806306fdde0314610242578063081812fc1461024a57600080fd5b8062cd587c146101bd57806301ffc9a7146101e557806302d05d3f146101f8575b600080fd5b6101d06101cb36600461211a565b610459565b60405190151581526020015b60405180910390f35b6101d06101f33660046120ab565b610497565b610200610534565b6040516101dc91906122c7565b6102347f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016101dc565b6102006105c6565b61025d61025836600461211a565b6105d5565b6040516001600160a01b0390911681526020016101dc565b610288610283366004612064565b610680565b005b61025d7f000000000000000000000000000000000000000000000000000000000000000081565b6102347f000000000000000000000000000000000000000000000000000000000000000081565b6102886102e6366004611f75565b6107b2565b6102886102f9366004612133565b61083a565b61028861030c366004611f75565b610935565b61028861031f36600461211a565b610950565b61028861033236600461217a565b6109d7565b6102886103453660046120e5565b610cce565b61023461035836600461211a565b600a6020526000908152604090205481565b61025d61037836600461211a565b610dc2565b61023461038b366004611f27565b610e4d565b610200610ee7565b6102886103a636600461211a565b610ef6565b6102886103b936600461202d565b611029565b6102886103cc366004611fb1565b6110ee565b6102006103df36600461211a565b611176565b6102006103f236600461211a565b61123b565b610288610405366004612133565b611376565b61020061041836600461211a565b61146b565b6101d061042b366004611f42565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600080600b8161046b610100866122f2565b81526020019081526020016000205490506101008361048a91906123be565b6001901b16151592915050565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806104fa57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061052e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606009805461054390612368565b80601f016020809104026020016040519081016040528092919081815260200182805461056f90612368565b80156105bc5780601f10610591576101008083540402835291602001916105bc565b820191906000526020600020905b81548152906001019060200180831161059f57829003601f168201915b5050505050905090565b60606000805461054390612368565b6000818152600560205260408120546001600160a01b03166106645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061068b82610dc2565b9050806001600160a01b0316836001600160a01b031614156107155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161065b565b336001600160a01b03821614806107315750610731813361042b565b6107a35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161065b565b6107ad8383611520565b505050565b6107bd335b8261159b565b61082f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161065b565b6107ad8383836116a3565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b15801561089e57600080fd5b505afa1580156108b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d6919061208e565b9050806109255760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b61092f848461187d565b50505050565b6107ad838383604051806020016040528060008152506110ee565b610959336107b7565b6109cb5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000606482015260840161065b565b6109d48161192a565b50565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610a3b57600080fd5b505afa158015610a4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a73919061208e565b905080610ac25760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b610acb84610459565b15610b3e5760405162461bcd60e51b815260206004820152603660248201527f4e696674794275696c646572496e7374616e63653a206d696e74696e6720636f60448201527f6e636c7564656420666f72206e69667479207479706500000000000000000000606482015260840161065b565b6000848152600a6020526040812054610b589060016122da565b90506000610b6686836119d2565b905060006001610b7687846122da565b610b809190612325565b9050815b818111610bf1576000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031617905580610be9816123a3565b915050610b84565b506000878152600a602052604081208054889290610c109084906122da565b90915550506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660009081526006602052604081208054889290610c5d9084906122da565b90915550506040518181526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169060009084907fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d9060200160405180910390a450505050505050565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610d3257600080fd5b505afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a919061208e565b905080610db95760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b6107ad83611a3a565b6000818152600560205260408120546001600160a01b03168061052e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161065b565b60006001600160a01b038216610ecb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161065b565b506001600160a01b031660009081526006602052604090205490565b60606001805461054390612368565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610f5a57600080fd5b505afa158015610f6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f92919061208e565b905080610fe15760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b6000610fef610100856122f2565b6000818152600b602052604090205490915061100d610100866123be565b6000928352600b6020526040909220600190921b179055505050565b6001600160a01b0382163314156110825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161065b565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f8338361159b565b61116a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161065b565b61092f84848484611a51565b6000818152600560205260409020546060906001600160a01b03166112035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161065b565b600061120e83611ada565b90506002816040516020016112249291906121e4565b604051602081830303815290604052915050919050565b6000818152600560205260409020546060906001600160a01b03166112c85760405162461bcd60e51b815260206004820152603560248201527f4552433732314d657461646174613a204950465320686173682071756572792060448201527f666f72206e6f6e6578697374656e7420746f6b656e0000000000000000000000606482015260840161065b565b60006112d383611c0c565b60008181526004602052604090208054919250906112f090612368565b80601f016020809104026020016040519081016040528092919081815260200182805461131c90612368565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b5050505050915050919050565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b1580156113da57600080fd5b505afa1580156113ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611412919061208e565b9050806114615760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b61092f8484611c63565b6000818152600560205260409020546060906001600160a01b03166114f85760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a204e616d6520717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000606482015260840161065b565b600061150383611c0c565b60008181526003602052604090208054919250906112f090612368565b6000818152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061156282610dc2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600560205260408120546001600160a01b03166116255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161065b565b600061163083610dc2565b9050806001600160a01b0316846001600160a01b0316148061166b5750836001600160a01b0316611660846105d5565b6001600160a01b0316145b8061169b57506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116b682610dc2565b6001600160a01b0316146117325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161065b565b6001600160a01b0382166117ad5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161065b565b6117b8600082611520565b6001600160a01b03831660009081526006602052604081208054600192906117e1908490612325565b90915550506001600160a01b038216600090815260066020526040812080546001929061180f9084906122da565b9091555050600081815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600460205260409020805461189690612368565b15905061190b5760405162461bcd60e51b815260206004820152602560248201527f4552433732314d657461646174613a2049504653206861736820616c7265616460448201527f7920736574000000000000000000000000000000000000000000000000000000606482015260840161065b565b600082815260046020908152604090912082516107ad92840190611ddc565b600061193582610dc2565b9050611942600083611520565b6001600160a01b038116600090815260066020526040812080546001929061196b908490612325565b9091555050600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000816119ff7f000000000000000000000000000000000000000000000000000000000000000085612306565b611a29907f00000000000000000000000000000000000000000000000000000000000000006122da565b611a3391906122da565b9392505050565b8051611a4d906002906020840190611ddc565b5050565b611a5c8484846116a3565b611a6884848484611c82565b61092f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161065b565b606081611b1a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b445780611b2e816123a3565b9150611b3d9050600a836122f2565b9150611b1e565b60008167ffffffffffffffff811115611b5f57611b5f612414565b6040519080825280601f01601f191660200182016040528015611b89576020820181803683370190505b5090505b841561169b57611b9e600183612325565b9150611bab600a866123be565b611bb69060306122da565b60f81b818381518110611bcb57611bcb6123fe565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c05600a866122f2565b9450611b8d565b60007f0000000000000000000000000000000000000000000000000000000000000000611c597f000000000000000000000000000000000000000000000000000000000000000084612325565b61052e91906122f2565b600082815260036020908152604090912082516107ad92840190611ddc565b6000833b15611dd157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cbd90339089908890889060040161228b565b602060405180830381600087803b158015611cd757600080fd5b505af1925050508015611d07575060408051601f3d908101601f19168201909252611d04918101906120c8565b60015b611db7573d808015611d35576040519150601f19603f3d011682016040523d82523d6000602084013e611d3a565b606091505b508051611daf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161065b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169b565b506001949350505050565b828054611de890612368565b90600052602060002090601f016020900481019282611e0a5760008555611e50565b82601f10611e2357805160ff1916838001178555611e50565b82800160010185558215611e50579182015b82811115611e50578251825591602001919060010190611e35565b50611e5c929150611e60565b5090565b5b80821115611e5c5760008155600101611e61565b600067ffffffffffffffff80841115611e9057611e90612414565b604051601f8501601f19908116603f01168101908282118183101715611eb857611eb8612414565b81604052809350858152868686011115611ed157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f0257600080fd5b919050565b600082601f830112611f1857600080fd5b611a3383833560208501611e75565b600060208284031215611f3957600080fd5b611a3382611eeb565b60008060408385031215611f5557600080fd5b611f5e83611eeb565b9150611f6c60208401611eeb565b90509250929050565b600080600060608486031215611f8a57600080fd5b611f9384611eeb565b9250611fa160208501611eeb565b9150604084013590509250925092565b60008060008060808587031215611fc757600080fd5b611fd085611eeb565b9350611fde60208601611eeb565b925060408501359150606085013567ffffffffffffffff81111561200157600080fd5b8501601f8101871361201257600080fd5b61202187823560208401611e75565b91505092959194509250565b6000806040838503121561204057600080fd5b61204983611eeb565b915060208301356120598161242a565b809150509250929050565b6000806040838503121561207757600080fd5b61208083611eeb565b946020939093013593505050565b6000602082840312156120a057600080fd5b8151611a338161242a565b6000602082840312156120bd57600080fd5b8135611a3381612438565b6000602082840312156120da57600080fd5b8151611a3381612438565b6000602082840312156120f757600080fd5b813567ffffffffffffffff81111561210e57600080fd5b61169b84828501611f07565b60006020828403121561212c57600080fd5b5035919050565b6000806040838503121561214657600080fd5b82359150602083013567ffffffffffffffff81111561216457600080fd5b61217085828601611f07565b9150509250929050565b6000806040838503121561218d57600080fd5b50508035926020909101359150565b600081518084526121b481602086016020860161233c565b601f01601f19169290920160200192915050565b600081516121da81856020860161233c565b9290920192915050565b600080845481600182811c91508083168061220057607f831692505b602080841082141561222057634e487b7160e01b86526022600452602486fd5b818015612234576001811461224557612272565b60ff19861689528489019650612272565b60008b81526020902060005b8681101561226a5781548b820152908501908301612251565b505084890196505b50505050505061228281856121c8565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122bd608083018461219c565b9695505050505050565b602081526000611a33602083018461219c565b600082198211156122ed576122ed6123d2565b500190565b600082612301576123016123e8565b500490565b6000816000190483118215151615612320576123206123d2565b500290565b600082821015612337576123376123d2565b500390565b60005b8381101561235757818101518382015260200161233f565b8381111561092f5750506000910152565b600181811c9082168061237c57607f821691505b6020821081141561239d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b7576123b76123d2565b5060010190565b6000826123cd576123cd6123e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146109d457600080fd5b6001600160e01b0319811681146109d457600080fdfea264697066735822122084cb93f1d50584cd83d27598c0729904f23c6ecd86e9e526947315bdf6862c3c64736f6c6343000806003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d500000000000000000000000000000000000000000000000000000000000000254361707461696e204170656d6f202d2047656e65736973206279204a6f73652044656c626f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e4341505441494e4150454d4f47454e4553495342594a4f534544454c424f0000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f6170692e6e69667479676174657761792e636f6d2f6170656d6f6a6f736564656c626f2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4a6f73652044656c626f00000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101b85760003560e01c80634fba84ca116100f9578063a22cb46511610097578063d371663011610071578063d3716630146103e4578063d7a853be146103f7578063e725f8771461040a578063e985e9c51461041d57600080fd5b8063a22cb465146103ab578063b88d4fde146103be578063c87b56dd146103d157600080fd5b80636352211e116100d35780636352211e1461036a57806370a082311461037d57806395d89b41146103905780639dd5e4811461039857600080fd5b80634fba84ca1461032457806355f804b3146103375780635f2ef9dc1461034a57600080fd5b8063095ea7b31161016657806323b872dd1161014057806323b872dd146102d85780632b6db055146102eb57806342842e0e146102fe57806342966c681461031157600080fd5b8063095ea7b314610275578063139fed7c1461028a5780632276f3f2146102b157600080fd5b80630518023711610197578063051802371461020d57806306fdde0314610242578063081812fc1461024a57600080fd5b8062cd587c146101bd57806301ffc9a7146101e557806302d05d3f146101f8575b600080fd5b6101d06101cb36600461211a565b610459565b60405190151581526020015b60405180910390f35b6101d06101f33660046120ab565b610497565b610200610534565b6040516101dc91906122c7565b6102347f000000000000000000000000000000000000000000000000000000000000004c81565b6040519081526020016101dc565b6102006105c6565b61025d61025836600461211a565b6105d5565b6040516001600160a01b0390911681526020016101dc565b610288610283366004612064565b610680565b005b61025d7f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d581565b6102347f000000000000000000000000000000000000000000000000000000000000000181565b6102886102e6366004611f75565b6107b2565b6102886102f9366004612133565b61083a565b61028861030c366004611f75565b610935565b61028861031f36600461211a565b610950565b61028861033236600461217a565b6109d7565b6102886103453660046120e5565b610cce565b61023461035836600461211a565b600a6020526000908152604090205481565b61025d61037836600461211a565b610dc2565b61023461038b366004611f27565b610e4d565b610200610ee7565b6102886103a636600461211a565b610ef6565b6102886103b936600461202d565b611029565b6102886103cc366004611fb1565b6110ee565b6102006103df36600461211a565b611176565b6102006103f236600461211a565b61123b565b610288610405366004612133565b611376565b61020061041836600461211a565b61146b565b6101d061042b366004611f42565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600080600b8161046b610100866122f2565b81526020019081526020016000205490506101008361048a91906123be565b6001901b16151592915050565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806104fa57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061052e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606009805461054390612368565b80601f016020809104026020016040519081016040528092919081815260200182805461056f90612368565b80156105bc5780601f10610591576101008083540402835291602001916105bc565b820191906000526020600020905b81548152906001019060200180831161059f57829003601f168201915b5050505050905090565b60606000805461054390612368565b6000818152600560205260408120546001600160a01b03166106645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061068b82610dc2565b9050806001600160a01b0316836001600160a01b031614156107155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161065b565b336001600160a01b03821614806107315750610731813361042b565b6107a35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161065b565b6107ad8383611520565b505050565b6107bd335b8261159b565b61082f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161065b565b6107ad8383836116a3565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b15801561089e57600080fd5b505afa1580156108b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d6919061208e565b9050806109255760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b61092f848461187d565b50505050565b6107ad838383604051806020016040528060008152506110ee565b610959336107b7565b6109cb5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000606482015260840161065b565b6109d48161192a565b50565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610a3b57600080fd5b505afa158015610a4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a73919061208e565b905080610ac25760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b610acb84610459565b15610b3e5760405162461bcd60e51b815260206004820152603660248201527f4e696674794275696c646572496e7374616e63653a206d696e74696e6720636f60448201527f6e636c7564656420666f72206e69667479207479706500000000000000000000606482015260840161065b565b6000848152600a6020526040812054610b589060016122da565b90506000610b6686836119d2565b905060006001610b7687846122da565b610b809190612325565b9050815b818111610bf1576000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19167f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d56001600160a01b031617905580610be9816123a3565b915050610b84565b506000878152600a602052604081208054889290610c109084906122da565b90915550506001600160a01b037f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d51660009081526006602052604081208054889290610c5d9084906122da565b90915550506040518181526001600160a01b037f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d5169060009084907fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d9060200160405180910390a450505050505050565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610d3257600080fd5b505afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a919061208e565b905080610db95760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b6107ad83611a3a565b6000818152600560205260408120546001600160a01b03168061052e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161065b565b60006001600160a01b038216610ecb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161065b565b506001600160a01b031660009081526006602052604090205490565b60606001805461054390612368565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610f5a57600080fd5b505afa158015610f6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f92919061208e565b905080610fe15760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b6000610fef610100856122f2565b6000818152600b602052604090205490915061100d610100866123be565b6000928352600b6020526040909220600190921b179055505050565b6001600160a01b0382163314156110825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161065b565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f8338361159b565b61116a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161065b565b61092f84848484611a51565b6000818152600560205260409020546060906001600160a01b03166112035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161065b565b600061120e83611ada565b90506002816040516020016112249291906121e4565b604051602081830303815290604052915050919050565b6000818152600560205260409020546060906001600160a01b03166112c85760405162461bcd60e51b815260206004820152603560248201527f4552433732314d657461646174613a204950465320686173682071756572792060448201527f666f72206e6f6e6578697374656e7420746f6b656e0000000000000000000000606482015260840161065b565b60006112d383611c0c565b60008181526004602052604090208054919250906112f090612368565b80601f016020809104026020016040519081016040528092919081815260200182805461131c90612368565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b5050505050915050919050565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b1580156113da57600080fd5b505afa1580156113ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611412919061208e565b9050806114615760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e64657200604482015260640161065b565b61092f8484611c63565b6000818152600560205260409020546060906001600160a01b03166114f85760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a204e616d6520717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000606482015260840161065b565b600061150383611c0c565b60008181526003602052604090208054919250906112f090612368565b6000818152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061156282610dc2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600560205260408120546001600160a01b03166116255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161065b565b600061163083610dc2565b9050806001600160a01b0316846001600160a01b0316148061166b5750836001600160a01b0316611660846105d5565b6001600160a01b0316145b8061169b57506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116b682610dc2565b6001600160a01b0316146117325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161065b565b6001600160a01b0382166117ad5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161065b565b6117b8600082611520565b6001600160a01b03831660009081526006602052604081208054600192906117e1908490612325565b90915550506001600160a01b038216600090815260066020526040812080546001929061180f9084906122da565b9091555050600081815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600460205260409020805461189690612368565b15905061190b5760405162461bcd60e51b815260206004820152602560248201527f4552433732314d657461646174613a2049504653206861736820616c7265616460448201527f7920736574000000000000000000000000000000000000000000000000000000606482015260840161065b565b600082815260046020908152604090912082516107ad92840190611ddc565b600061193582610dc2565b9050611942600083611520565b6001600160a01b038116600090815260066020526040812080546001929061196b908490612325565b9091555050600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000816119ff7f000000000000000000000000000000000000000000000000000000000000271085612306565b611a29907f00000000000000000000000000000000000000000000000000000001c4fecc006122da565b611a3391906122da565b9392505050565b8051611a4d906002906020840190611ddc565b5050565b611a5c8484846116a3565b611a6884848484611c82565b61092f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161065b565b606081611b1a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b445780611b2e816123a3565b9150611b3d9050600a836122f2565b9150611b1e565b60008167ffffffffffffffff811115611b5f57611b5f612414565b6040519080825280601f01601f191660200182016040528015611b89576020820181803683370190505b5090505b841561169b57611b9e600183612325565b9150611bab600a866123be565b611bb69060306122da565b60f81b818381518110611bcb57611bcb6123fe565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c05600a866122f2565b9450611b8d565b60007f0000000000000000000000000000000000000000000000000000000000002710611c597f00000000000000000000000000000000000000000000000000000001c4fecc0084612325565b61052e91906122f2565b600082815260036020908152604090912082516107ad92840190611ddc565b6000833b15611dd157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cbd90339089908890889060040161228b565b602060405180830381600087803b158015611cd757600080fd5b505af1925050508015611d07575060408051601f3d908101601f19168201909252611d04918101906120c8565b60015b611db7573d808015611d35576040519150601f19603f3d011682016040523d82523d6000602084013e611d3a565b606091505b508051611daf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161065b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169b565b506001949350505050565b828054611de890612368565b90600052602060002090601f016020900481019282611e0a5760008555611e50565b82601f10611e2357805160ff1916838001178555611e50565b82800160010185558215611e50579182015b82811115611e50578251825591602001919060010190611e35565b50611e5c929150611e60565b5090565b5b80821115611e5c5760008155600101611e61565b600067ffffffffffffffff80841115611e9057611e90612414565b604051601f8501601f19908116603f01168101908282118183101715611eb857611eb8612414565b81604052809350858152868686011115611ed157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f0257600080fd5b919050565b600082601f830112611f1857600080fd5b611a3383833560208501611e75565b600060208284031215611f3957600080fd5b611a3382611eeb565b60008060408385031215611f5557600080fd5b611f5e83611eeb565b9150611f6c60208401611eeb565b90509250929050565b600080600060608486031215611f8a57600080fd5b611f9384611eeb565b9250611fa160208501611eeb565b9150604084013590509250925092565b60008060008060808587031215611fc757600080fd5b611fd085611eeb565b9350611fde60208601611eeb565b925060408501359150606085013567ffffffffffffffff81111561200157600080fd5b8501601f8101871361201257600080fd5b61202187823560208401611e75565b91505092959194509250565b6000806040838503121561204057600080fd5b61204983611eeb565b915060208301356120598161242a565b809150509250929050565b6000806040838503121561207757600080fd5b61208083611eeb565b946020939093013593505050565b6000602082840312156120a057600080fd5b8151611a338161242a565b6000602082840312156120bd57600080fd5b8135611a3381612438565b6000602082840312156120da57600080fd5b8151611a3381612438565b6000602082840312156120f757600080fd5b813567ffffffffffffffff81111561210e57600080fd5b61169b84828501611f07565b60006020828403121561212c57600080fd5b5035919050565b6000806040838503121561214657600080fd5b82359150602083013567ffffffffffffffff81111561216457600080fd5b61217085828601611f07565b9150509250929050565b6000806040838503121561218d57600080fd5b50508035926020909101359150565b600081518084526121b481602086016020860161233c565b601f01601f19169290920160200192915050565b600081516121da81856020860161233c565b9290920192915050565b600080845481600182811c91508083168061220057607f831692505b602080841082141561222057634e487b7160e01b86526022600452602486fd5b818015612234576001811461224557612272565b60ff19861689528489019650612272565b60008b81526020902060005b8681101561226a5781548b820152908501908301612251565b505084890196505b50505050505061228281856121c8565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122bd608083018461219c565b9695505050505050565b602081526000611a33602083018461219c565b600082198211156122ed576122ed6123d2565b500190565b600082612301576123016123e8565b500490565b6000816000190483118215151615612320576123206123d2565b500290565b600082821015612337576123376123d2565b500390565b60005b8381101561235757818101518382015260200161233f565b8381111561092f5750506000910152565b600181811c9082168061237c57607f821691505b6020821081141561239d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b7576123b76123d2565b5060010190565b6000826123cd576123cd6123e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146109d457600080fd5b6001600160e01b0319811681146109d457600080fdfea264697066735822122084cb93f1d50584cd83d27598c0729904f23c6ecd86e9e526947315bdf6862c3c64736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d500000000000000000000000000000000000000000000000000000000000000254361707461696e204170656d6f202d2047656e65736973206279204a6f73652044656c626f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e4341505441494e4150454d4f47454e4553495342594a4f534544454c424f0000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f6170692e6e69667479676174657761792e636f6d2f6170656d6f6a6f736564656c626f2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4a6f73652044656c626f00000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Captain Apemo - Genesis by Jose Delbo
Arg [1] : symbol (string): CAPTAINAPEMOGENESISBYJOSEDELBO
Arg [2] : id (uint256): 76
Arg [3] : typeCount (uint256): 1
Arg [4] : baseURI (string): https://api.niftygateway.com/apemojosedelbo/
Arg [5] : creator_ (string): Jose Delbo
Arg [6] : niftyRegistryContract (address): 0x6e53130dDfF21E3BC963Ee902005223b9A202106
Arg [7] : defaultOwner (address): 0xE052113bd7D7700d623414a0a4585BCaE754E9d5
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [6] : 0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106
Arg [7] : 000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d5
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [9] : 4361707461696e204170656d6f202d2047656e65736973206279204a6f736520
Arg [10] : 44656c626f000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [12] : 4341505441494e4150454d4f47454e4553495342594a4f534544454c424f0000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [14] : 68747470733a2f2f6170692e6e69667479676174657761792e636f6d2f617065
Arg [15] : 6d6f6a6f736564656c626f2f0000000000000000000000000000000000000000
Arg [16] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [17] : 4a6f73652044656c626f00000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
26902:5540:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29908:197;;;;;;:::i;:::-;;:::i;:::-;;;7630:14:1;;7623:22;7605:41;;7593:2;7578:18;29908:197:0;;;;;;;;13433:292;;;;;;:::i;:::-;;:::i;30511:97::-;;;:::i;:::-;;;;;;;:::i;10825:25::-;;;;;;;;15368::1;;;15356:2;15341:18;10825:25:0;15323:76:1;14365:100:0;;;:::i;18094:219::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6882:55:1;;;6864:74;;6852:2;6837:18;18094:219:0;6819:125:1;17631:397:0;;;;;;:::i;:::-;;:::i;:::-;;11008:38;;;;;10917:32;;;;;18980:303;;;;;;:::i;:::-;;:::i;31155:155::-;;;;;;:::i;:::-;;:::i;19354:151::-;;;;;;:::i;:::-;;:::i;26443:245::-;;;;;;:::i;:::-;;:::i;31674:763::-;;;;;;:::i;:::-;;:::i;30710:105::-;;;;;;:::i;:::-;;:::i;27106:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;14059:239;;;;;;:::i;:::-;;:::i;13789:208::-;;;;;;:::i;:::-;;:::i;14534:104::-;;;:::i;30204:237::-;;;;;;:::i;:::-;;:::i;18385:293::-;;;;;;:::i;:::-;;:::i;19576:285::-;;;;;;:::i;:::-;;:::i;14947:304::-;;;;;;:::i;:::-;;:::i;15519:280::-;;;;;;:::i;:::-;;:::i;30904:144::-;;;;;;:::i;:::-;;:::i;16288:265::-;;;;;;:::i;:::-;;:::i;18749:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18870:25:0;;;18846:4;18870:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;18749:164;29908:197;29971:4;;30004:10;29971:4;30015:15;30027:3;30015:9;:15;:::i;:::-;30004:27;;;;;;;;;;;;29988:43;;30084:3;30072:9;:15;;;;:::i;:::-;30066:1;:22;;30050:39;30049:48;;;29908:197;-1:-1:-1;;29908:197:0:o;13433:292::-;13535:4;-1:-1:-1;;;;;;13559:40:0;;13574:25;13559:40;;:105;;-1:-1:-1;;;;;;;13616:48:0;;13631:33;13616:48;13559:105;:158;;;-1:-1:-1;9258:25:0;-1:-1:-1;;;;;;9243:40:0;;;13681:36;13552:165;13433:292;-1:-1:-1;;13433:292:0:o;30511:97::-;30559:13;30592:8;30585:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30511:97;:::o;14365:100::-;14419:13;14452:5;14445:12;;;;;:::i;18094:219::-;18170:7;21417:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21417:16:0;18190:73;;;;-1:-1:-1;;;18190:73:0;;12171:2:1;18190:73:0;;;12153:21:1;12210:2;12190:18;;;12183:30;12249:34;12229:18;;;12222:62;12320:14;12300:18;;;12293:42;12352:19;;18190:73:0;;;;;;;;;-1:-1:-1;18281:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;18281:24:0;;18094:219::o;17631:397::-;17712:13;17728:23;17743:7;17728:14;:23::i;:::-;17712:39;;17776:5;-1:-1:-1;;;;;17770:11:0;:2;-1:-1:-1;;;;;17770:11:0;;;17762:57;;;;-1:-1:-1;;;17762:57:0;;13770:2:1;17762:57:0;;;13752:21:1;13809:2;13789:18;;;13782:30;13848:34;13828:18;;;13821:62;13919:3;13899:18;;;13892:31;13940:19;;17762:57:0;13742:223:1;17762:57:0;7376:10;-1:-1:-1;;;;;17840:21:0;;;;:62;;-1:-1:-1;17865:37:0;17882:5;7376:10;18749:164;:::i;17865:37::-;17832:154;;;;-1:-1:-1;;;17832:154:0;;10519:2:1;17832:154:0;;;10501:21:1;10558:2;10538:18;;;10531:30;10597:34;10577:18;;;10570:62;10668:26;10648:18;;;10641:54;10712:19;;17832:154:0;10491:246:1;17832:154:0;17999:21;18008:2;18012:7;17999:8;:21::i;:::-;17701:327;17631:397;;:::o;18980:303::-;19141:41;7376:10;19160:12;19174:7;19141:18;:41::i;:::-;19133:103;;;;-1:-1:-1;;;19133:103:0;;14172:2:1;19133:103:0;;;14154:21:1;14211:2;14191:18;;;14184:30;14250:34;14230:18;;;14223:62;14321:19;14301:18;;;14294:47;14358:19;;19133:103:0;14144:239:1;19133:103:0;19247:28;19257:4;19263:2;19267:7;19247:9;:28::i;31155:155::-;9984:44;;-1:-1:-1;;;9984:44:0;;10017:10;9984:44;;;6864:74:1;9936:21:0;;9892:27;;-1:-1:-1;;;;;9984:32:0;;;;;6837:18:1;;9984:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9969:59;;10047:7;10039:51;;;;-1:-1:-1;;;10039:51:0;;13410:2:1;10039:51:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:33;13468:18;;;13461:61;13539:18;;10039:51:0;13382:181:1;10039:51:0;31255:47:::1;31282:9;31293:8;31255:26;:47::i;:::-;9881:229:::0;;31155:155;;:::o;19354:151::-;19458:39;19475:4;19481:2;19485:7;19458:39;;;;;;;;;;;;:16;:39::i;26443:245::-;26561:41;7376:10;26580:12;7296:98;26561:41;26553:102;;;;-1:-1:-1;;;26553:102:0;;14590:2:1;26553:102:0;;;14572:21:1;14629:2;14609:18;;;14602:30;14668:34;14648:18;;;14641:62;14739:18;14719;;;14712:46;14775:19;;26553:102:0;14562:238:1;26553:102:0;26666:14;26672:7;26666:5;:14::i;:::-;26443:245;:::o;31674:763::-;9984:44;;-1:-1:-1;;;9984:44:0;;10017:10;9984:44;;;6864:74:1;9936:21:0;;9892:27;;-1:-1:-1;;;;;9984:32:0;;;;;6837:18:1;;9984:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9969:59;;10047:7;10039:51;;;;-1:-1:-1;;;10039:51:0;;13410:2:1;10039:51:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:33;13468:18;;;13461:61;13539:18;;10039:51:0;13382:181:1;10039:51:0;31764:24:::1;31778:9;31764:13;:24::i;:::-;31763:25;31755:92;;;::::0;-1:-1:-1;;;31755:92:0;;8924:2:1;31755:92:0::1;::::0;::::1;8906:21:1::0;8963:2;8943:18;;;8936:30;9002:34;8982:18;;;8975:62;9073:24;9053:18;;;9046:52;9115:19;;31755:92:0::1;8896:244:1::0;31755:92:0::1;31872:16;31891:21:::0;;;:10:::1;:21;::::0;;;;;:25:::1;::::0;31915:1:::1;31891:25;:::i;:::-;31872:44;;31927:14;31944:38;31959:9;31970:11;31944:14;:38::i;:::-;31927:55:::0;-1:-1:-1;31993:14:0::1;32030:1;32010:17;32022:5:::0;31927:55;32010:17:::1;:::i;:::-;:21;;;;:::i;:::-;31993:38:::0;-1:-1:-1;32072:9:0;32052:123:::1;32094:9;32083:7;:20;32052:123;;32131:16;::::0;;;:7:::1;:16;::::0;;;;:32;;-1:-1:-1;;32131:32:0::1;32150:13;-1:-1:-1::0;;;;;32131:32:0::1;;::::0;;:16;32105:9:::1;32131:16:::0;32105:9:::1;:::i;:::-;;;;32052:123;;;-1:-1:-1::0;32269:21:0::1;::::0;;;:10:::1;:21;::::0;;;;:30;;32294:5;;32269:21;:30:::1;::::0;32294:5;;32269:30:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;32320:13:0::1;32310:24;;::::0;;;:9:::1;:24;::::0;;;;:33;;32338:5;;32310:24;:33:::1;::::0;32338:5;;32310:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;32361:68:0::1;::::0;15368:25:1;;;-1:-1:-1;;;;;32415:13:0::1;32361:68;::::0;32411:1:::1;::::0;32381:9;;32361:68:::1;::::0;15356:2:1;15341:18;32361:68:0::1;;;;;;;31744:693;;;9881:229:::0;;31674:763;;:::o;30710:105::-;9984:44;;-1:-1:-1;;;9984:44:0;;10017:10;9984:44;;;6864:74:1;9936:21:0;;9892:27;;-1:-1:-1;;;;;9984:32:0;;;;;6837:18:1;;9984:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9969:59;;10047:7;10039:51;;;;-1:-1:-1;;;10039:51:0;;13410:2:1;10039:51:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:33;13468:18;;;13461:61;13539:18;;10039:51:0;13382:181:1;10039:51:0;30787:20:::1;30799:7;30787:11;:20::i;14059:239::-:0;14131:7;14167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;14167:16:0;14202:19;14194:73;;;;-1:-1:-1;;;14194:73:0;;11355:2:1;14194:73:0;;;11337:21:1;11394:2;11374:18;;;11367:30;11433:34;11413:18;;;11406:62;11504:11;11484:18;;;11477:39;11533:19;;14194:73:0;11327:231:1;13789:208:0;13861:7;-1:-1:-1;;;;;13889:19:0;;13881:74;;;;-1:-1:-1;;;13881:74:0;;10944:2:1;13881:74:0;;;10926:21:1;10983:2;10963:18;;;10956:30;11022:34;11002:18;;;10995:62;11093:12;11073:18;;;11066:40;11123:19;;13881:74:0;10916:232:1;13881:74:0;-1:-1:-1;;;;;;13973:16:0;;;;;:9;:16;;;;;;;13789:208::o;14534:104::-;14590:13;14623:7;14616:14;;;;;:::i;30204:237::-;9984:44;;-1:-1:-1;;;9984:44:0;;10017:10;9984:44;;;6864:74:1;9936:21:0;;9892:27;;-1:-1:-1;;;;;9984:32:0;;;;;6837:18:1;;9984:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9969:59;;10047:7;10039:51;;;;-1:-1:-1;;;10039:51:0;;13410:2:1;10039:51:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:33;13468:18;;;13461:61;13539:18;;10039:51:0;13382:181:1;10039:51:0;30279:16:::1;30298:15;30310:3;30298:9:::0;:15:::1;:::i;:::-;30324:13;30340:20:::0;;;:10:::1;:20;::::0;;;;;30279:34;;-1:-1:-1;30416:15:0::1;30428:3;30416:9:::0;:15:::1;:::i;:::-;30402:31;30371:20:::0;;;:10:::1;:20;::::0;;;;;30410:1:::1;:22:::0;;::::1;30394:39;30371:62:::0;;-1:-1:-1;;;30204:237:0:o;18385:293::-;-1:-1:-1;;;;;18488:24:0;;7376:10;18488:24;;18480:62;;;;-1:-1:-1;;;18480:62:0;;9752:2:1;18480:62:0;;;9734:21:1;9791:2;9771:18;;;9764:30;9830:27;9810:18;;;9803:55;9875:18;;18480:62:0;9724:175:1;18480:62:0;7376:10;18553:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;18553:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;18553:53:0;;;;;;;;;;18622:48;;7605:41:1;;;18553:42:0;;7376:10;18622:48;;7578:18:1;18622:48:0;;;;;;;18385:293;;:::o;19576:285::-;19708:41;7376:10;19741:7;19708:18;:41::i;:::-;19700:103;;;;-1:-1:-1;;;19700:103:0;;14172:2:1;19700:103:0;;;14154:21:1;14211:2;14191:18;;;14184:30;14250:34;14230:18;;;14223:62;14321:19;14301:18;;;14294:47;14358:19;;19700:103:0;14144:239:1;19700:103:0;19814:39;19828:4;19834:2;19838:7;19847:5;19814:13;:39::i;14947:304::-;21393:4;21417:16;;;:7;:16;;;;;;15014:13;;-1:-1:-1;;;;;21417:16:0;15040:76;;;;-1:-1:-1;;;15040:76:0;;12994:2:1;15040:76:0;;;12976:21:1;13033:2;13013:18;;;13006:30;13072:34;13052:18;;;13045:62;13143:17;13123:18;;;13116:45;13178:19;;15040:76:0;12966:237:1;15040:76:0;15127:24;15154:25;15171:7;15154:16;:25::i;:::-;15127:52;;15221:8;15231:10;15204:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;15190:53;;;14947:304;;;:::o;15519:280::-;21393:4;21417:16;;;:7;:16;;;;;;15582:13;;-1:-1:-1;;;;;21417:16:0;15608:82;;;;-1:-1:-1;;;15608:82:0;;8083:2:1;15608:82:0;;;8065:21:1;8122:2;8102:18;;;8095:30;8161:34;8141:18;;;8134:62;8232:23;8212:18;;;8205:51;8273:19;;15608:82:0;8055:243:1;15608:82:0;15701:14;15718:24;15734:7;15718:15;:24::i;:::-;15760:31;;;;:20;:31;;;;;15753:38;;15701:41;;-1:-1:-1;15760:31:0;15753:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15519:280;;;:::o;30904:144::-;9984:44;;-1:-1:-1;;;9984:44:0;;10017:10;9984:44;;;6864:74:1;9936:21:0;;9892:27;;-1:-1:-1;;;;;9984:32:0;;;;;6837:18:1;;9984:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9969:59;;10047:7;10039:51;;;;-1:-1:-1;;;10039:51:0;;13410:2:1;10039:51:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:33;13468:18;;;13461:61;13539:18;;10039:51:0;13382:181:1;10039:51:0;31001:39:::1;31019:9;31030;31001:17;:39::i;16288:265::-:0;21393:4;21417:16;;;:7;:16;;;;;;16347:13;;-1:-1:-1;;;;;21417:16:0;16373:77;;;;-1:-1:-1;;;16373:77:0;;15007:2:1;16373:77:0;;;14989:21:1;15046:2;15026:18;;;15019:30;15085:34;15065:18;;;15058:62;15156:18;15136;;;15129:46;15192:19;;16373:77:0;14979:238:1;16373:77:0;16461:14;16478:24;16494:7;16478:15;:24::i;:::-;16520:25;;;;:14;:25;;;;;16513:32;;16461:41;;-1:-1:-1;16520:25:0;16513:32;;;:::i;23445:174::-;23520:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;23520:29:0;-1:-1:-1;;;;;23520:29:0;;;;;;;;:24;;23574:23;23520:24;23574:14;:23::i;:::-;-1:-1:-1;;;;;23565:46:0;;;;;;;;;;;23445:174;;:::o;21622:348::-;21715:4;21417:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21417:16:0;21732:73;;;;-1:-1:-1;;;21732:73:0;;10106:2:1;21732:73:0;;;10088:21:1;10145:2;10125:18;;;10118:30;10184:34;10164:18;;;10157:62;10255:14;10235:18;;;10228:42;10287:19;;21732:73:0;10078:234:1;21732:73:0;21816:13;21832:23;21847:7;21832:14;:23::i;:::-;21816:39;;21885:5;-1:-1:-1;;;;;21874:16:0;:7;-1:-1:-1;;;;;21874:16:0;;:51;;;;21918:7;-1:-1:-1;;;;;21894:31:0;:20;21906:7;21894:11;:20::i;:::-;-1:-1:-1;;;;;21894:31:0;;21874:51;:87;;;-1:-1:-1;;;;;;18870:25:0;;;18846:4;18870:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;21929:32;21866:96;21622:348;-1:-1:-1;;;;21622:348:0:o;22835:492::-;22960:4;-1:-1:-1;;;;;22933:31:0;:23;22948:7;22933:14;:23::i;:::-;-1:-1:-1;;;;;22933:31:0;;22925:85;;;;-1:-1:-1;;;22925:85:0;;12584:2:1;22925:85:0;;;12566:21:1;12623:2;12603:18;;;12596:30;12662:34;12642:18;;;12635:62;12733:11;12713:18;;;12706:39;12762:19;;22925:85:0;12556:231:1;22925:85:0;-1:-1:-1;;;;;23029:16:0;;23021:65;;;;-1:-1:-1;;;23021:65:0;;9347:2:1;23021:65:0;;;9329:21:1;9386:2;9366:18;;;9359:30;9425:34;9405:18;;;9398:62;9496:6;9476:18;;;9469:34;9520:19;;23021:65:0;9319:226:1;23021:65:0;23151:29;23168:1;23172:7;23151:8;:29::i;:::-;-1:-1:-1;;;;;23193:15:0;;;;;;:9;:15;;;;;:20;;23212:1;;23193:15;:20;;23212:1;;23193:20;:::i;:::-;;;;-1:-1:-1;;;;;;;23224:13:0;;;;;;:9;:13;;;;;:18;;23241:1;;23224:13;:18;;23241:1;;23224:18;:::i;:::-;;;;-1:-1:-1;;23253:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;23253:21:0;-1:-1:-1;;;;;23253:21:0;;;;;;;;;23292:27;;23253:16;;23292:27;;;;;;;22835:492;;;:::o;16790:262::-;16904:31;;;;:20;:31;;;;;16898:45;;;;;:::i;:::-;:50;;-1:-1:-1;16890:100:0;;;;-1:-1:-1;;;16890:100:0;;11765:2:1;16890:100:0;;;11747:21:1;11804:2;11784:18;;;11777:30;11843:34;11823:18;;;11816:62;11914:7;11894:18;;;11887:35;11939:19;;16890:100:0;11737:227:1;16890:100:0;17001:31;;;;:20;:31;;;;;;;;:43;;;;;;;;:::i;22199:299::-;22259:13;22275:23;22290:7;22275:14;:23::i;:::-;22259:39;;22339:29;22356:1;22360:7;22339:8;:29::i;:::-;-1:-1:-1;;;;;22381:16:0;;;;;;:9;:16;;;;;:21;;22401:1;;22381:16;:21;;22401:1;;22381:21;:::i;:::-;;;;-1:-1:-1;;22420:16:0;;;;:7;:16;;;;;;22413:23;;-1:-1:-1;;22413:23:0;;;22454:36;22428:7;;22420:16;-1:-1:-1;;;;;22454:36:0;;;;;22420:16;;22454:36;22248:250;22199:299;:::o;29609:181::-;29689:4;29770:11;29736:30;29748:18;29736:9;:30;:::i;:::-;29714:53;;:18;:53;:::i;:::-;:67;;;;:::i;:::-;29706:76;29609:181;-1:-1:-1;;;29609:181:0:o;17477:92::-;17542:19;;;;:8;;:19;;;;;:::i;:::-;;17477:92;:::o;20743:272::-;20857:28;20867:4;20873:2;20877:7;20857:9;:28::i;:::-;20904:48;20927:4;20933:2;20937:7;20946:5;20904:22;:48::i;:::-;20896:111;;;;-1:-1:-1;;;20896:111:0;;8505:2:1;20896:111:0;;;8487:21:1;8544:2;8524:18;;;8517:30;8583:34;8563:18;;;8556:62;8654:20;8634:18;;;8627:48;8692:19;;20896:111:0;8477:240:1;7662:723:0;7718:13;7939:10;7935:53;;-1:-1:-1;;7966:10:0;;;;;;;;;;;;;;;;;;7662:723::o;7935:53::-;8013:5;7998:12;8054:78;8061:9;;8054:78;;8087:8;;;;:::i;:::-;;-1:-1:-1;8110:10:0;;-1:-1:-1;8118:2:0;8110:10;;:::i;:::-;;;8054:78;;;8142:19;8174:6;8164:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8164:17:0;;8142:39;;8192:154;8199:10;;8192:154;;8226:11;8236:1;8226:11;;:::i;:::-;;-1:-1:-1;8295:10:0;8303:2;8295:5;:10;:::i;:::-;8282:24;;:2;:24;:::i;:::-;8269:39;;8252:6;8259;8252:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;8323:11:0;8332:2;8323:11;;:::i;:::-;;;8192:154;;15935:144;15996:4;16053:18;16021:28;16031:18;16021:7;:28;:::i;:::-;16020:51;;;;:::i;17255:148::-;17352:25;;;;:14;:25;;;;;;;;:43;;;;;;;;:::i;24184:842::-;24305:4;25988:20;;26027:8;24327:692;;24366:72;;-1:-1:-1;;;24366:72:0;;-1:-1:-1;;;;;24366:36:0;;;;;:72;;7376:10;;24417:4;;24423:7;;24432:5;;24366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24366:72:0;;;;;;;;-1:-1:-1;;24366:72:0;;;;;;;;;;;;:::i;:::-;;;24362:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24612:13:0;;24608:341;;24655:60;;-1:-1:-1;;;24655:60:0;;8505:2:1;24655:60:0;;;8487:21:1;8544:2;8524:18;;;8517:30;8583:34;8563:18;;;8556:62;8654:20;8634:18;;;8627:48;8692:19;;24655:60:0;8477:240:1;24608:341:0;24899:6;24893:13;24884:6;24880:2;24876:15;24869:38;24362:602;-1:-1:-1;;;;;;24489:55:0;-1:-1:-1;;;24489:55:0;;-1:-1:-1;24482:62:0;;24327:692;-1:-1:-1;25003:4:0;24184:842;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:221::-;894:5;947:3;940:4;932:6;928:17;924:27;914:2;;965:1;962;955:12;914:2;987:79;1062:3;1053:6;1040:20;1033:4;1025:6;1021:17;987:79;:::i;1077:186::-;1136:6;1189:2;1177:9;1168:7;1164:23;1160:32;1157:2;;;1205:1;1202;1195:12;1157:2;1228:29;1247:9;1228:29;:::i;1268:260::-;1336:6;1344;1397:2;1385:9;1376:7;1372:23;1368:32;1365:2;;;1413:1;1410;1403:12;1365:2;1436:29;1455:9;1436:29;:::i;:::-;1426:39;;1484:38;1518:2;1507:9;1503:18;1484:38;:::i;:::-;1474:48;;1355:173;;;;;:::o;1533:328::-;1610:6;1618;1626;1679:2;1667:9;1658:7;1654:23;1650:32;1647:2;;;1695:1;1692;1685:12;1647:2;1718:29;1737:9;1718:29;:::i;:::-;1708:39;;1766:38;1800:2;1789:9;1785:18;1766:38;:::i;:::-;1756:48;;1851:2;1840:9;1836:18;1823:32;1813:42;;1637:224;;;;;:::o;1866:666::-;1961:6;1969;1977;1985;2038:3;2026:9;2017:7;2013:23;2009:33;2006:2;;;2055:1;2052;2045:12;2006:2;2078:29;2097:9;2078:29;:::i;:::-;2068:39;;2126:38;2160:2;2149:9;2145:18;2126:38;:::i;:::-;2116:48;;2211:2;2200:9;2196:18;2183:32;2173:42;;2266:2;2255:9;2251:18;2238:32;2293:18;2285:6;2282:30;2279:2;;;2325:1;2322;2315:12;2279:2;2348:22;;2401:4;2393:13;;2389:27;-1:-1:-1;2379:2:1;;2430:1;2427;2420:12;2379:2;2453:73;2518:7;2513:2;2500:16;2495:2;2491;2487:11;2453:73;:::i;:::-;2443:83;;;1996:536;;;;;;;:::o;2537:315::-;2602:6;2610;2663:2;2651:9;2642:7;2638:23;2634:32;2631:2;;;2679:1;2676;2669:12;2631:2;2702:29;2721:9;2702:29;:::i;:::-;2692:39;;2781:2;2770:9;2766:18;2753:32;2794:28;2816:5;2794:28;:::i;:::-;2841:5;2831:15;;;2621:231;;;;;:::o;2857:254::-;2925:6;2933;2986:2;2974:9;2965:7;2961:23;2957:32;2954:2;;;3002:1;2999;2992:12;2954:2;3025:29;3044:9;3025:29;:::i;:::-;3015:39;3101:2;3086:18;;;;3073:32;;-1:-1:-1;;;2944:167:1:o;3116:245::-;3183:6;3236:2;3224:9;3215:7;3211:23;3207:32;3204:2;;;3252:1;3249;3242:12;3204:2;3284:9;3278:16;3303:28;3325:5;3303:28;:::i;3366:245::-;3424:6;3477:2;3465:9;3456:7;3452:23;3448:32;3445:2;;;3493:1;3490;3483:12;3445:2;3532:9;3519:23;3551:30;3575:5;3551:30;:::i;3616:249::-;3685:6;3738:2;3726:9;3717:7;3713:23;3709:32;3706:2;;;3754:1;3751;3744:12;3706:2;3786:9;3780:16;3805:30;3829:5;3805:30;:::i;3870:322::-;3939:6;3992:2;3980:9;3971:7;3967:23;3963:32;3960:2;;;4008:1;4005;3998:12;3960:2;4048:9;4035:23;4081:18;4073:6;4070:30;4067:2;;;4113:1;4110;4103:12;4067:2;4136:50;4178:7;4169:6;4158:9;4154:22;4136:50;:::i;4197:180::-;4256:6;4309:2;4297:9;4288:7;4284:23;4280:32;4277:2;;;4325:1;4322;4315:12;4277:2;-1:-1:-1;4348:23:1;;4267:110;-1:-1:-1;4267:110:1:o;4382:390::-;4460:6;4468;4521:2;4509:9;4500:7;4496:23;4492:32;4489:2;;;4537:1;4534;4527:12;4489:2;4573:9;4560:23;4550:33;;4634:2;4623:9;4619:18;4606:32;4661:18;4653:6;4650:30;4647:2;;;4693:1;4690;4683:12;4647:2;4716:50;4758:7;4749:6;4738:9;4734:22;4716:50;:::i;:::-;4706:60;;;4479:293;;;;;:::o;4777:248::-;4845:6;4853;4906:2;4894:9;4885:7;4881:23;4877:32;4874:2;;;4922:1;4919;4912:12;4874:2;-1:-1:-1;;4945:23:1;;;5015:2;5000:18;;;4987:32;;-1:-1:-1;4864:161:1:o;5030:257::-;5071:3;5109:5;5103:12;5136:6;5131:3;5124:19;5152:63;5208:6;5201:4;5196:3;5192:14;5185:4;5178:5;5174:16;5152:63;:::i;:::-;5269:2;5248:15;-1:-1:-1;;5244:29:1;5235:39;;;;5276:4;5231:50;;5079:208;-1:-1:-1;;5079:208:1:o;5292:185::-;5334:3;5372:5;5366:12;5387:52;5432:6;5427:3;5420:4;5413:5;5409:16;5387:52;:::i;:::-;5455:16;;;;;5342:135;-1:-1:-1;;5342:135:1:o;5482:1231::-;5658:3;5687:1;5720:6;5714:13;5750:3;5772:1;5800:9;5796:2;5792:18;5782:28;;5860:2;5849:9;5845:18;5882;5872:2;;5926:4;5918:6;5914:17;5904:27;;5872:2;5952;6000;5992:6;5989:14;5969:18;5966:38;5963:2;;;-1:-1:-1;;;6034:3:1;6027:90;6140:4;6137:1;6130:15;6170:4;6165:3;6158:17;5963:2;6201:18;6228:104;;;;6346:1;6341:320;;;;6194:467;;6228:104;-1:-1:-1;;6261:24:1;;6249:37;;6306:16;;;;-1:-1:-1;6228:104:1;;6341:320;15477:1;15470:14;;;15514:4;15501:18;;6436:1;6450:165;6464:6;6461:1;6458:13;6450:165;;;6542:14;;6529:11;;;6522:35;6585:16;;;;6479:10;;6450:165;;;6454:3;;6644:6;6639:3;6635:16;6628:23;;6194:467;;;;;;;6677:30;6703:3;6695:6;6677:30;:::i;:::-;6670:37;5666:1047;-1:-1:-1;;;;;5666:1047:1:o;6949:511::-;7143:4;-1:-1:-1;;;;;7253:2:1;7245:6;7241:15;7230:9;7223:34;7305:2;7297:6;7293:15;7288:2;7277:9;7273:18;7266:43;;7345:6;7340:2;7329:9;7325:18;7318:34;7388:3;7383:2;7372:9;7368:18;7361:31;7409:45;7449:3;7438:9;7434:19;7426:6;7409:45;:::i;:::-;7401:53;7152:308;-1:-1:-1;;;;;;7152:308:1:o;7657:219::-;7806:2;7795:9;7788:21;7769:4;7826:44;7866:2;7855:9;7851:18;7843:6;7826:44;:::i;15530:128::-;15570:3;15601:1;15597:6;15594:1;15591:13;15588:2;;;15607:18;;:::i;:::-;-1:-1:-1;15643:9:1;;15578:80::o;15663:120::-;15703:1;15729;15719:2;;15734:18;;:::i;:::-;-1:-1:-1;15768:9:1;;15709:74::o;15788:168::-;15828:7;15894:1;15890;15886:6;15882:14;15879:1;15876:21;15871:1;15864:9;15857:17;15853:45;15850:2;;;15901:18;;:::i;:::-;-1:-1:-1;15941:9:1;;15840:116::o;15961:125::-;16001:4;16029:1;16026;16023:8;16020:2;;;16034:18;;:::i;:::-;-1:-1:-1;16071:9:1;;16010:76::o;16091:258::-;16163:1;16173:113;16187:6;16184:1;16181:13;16173:113;;;16263:11;;;16257:18;16244:11;;;16237:39;16209:2;16202:10;16173:113;;;16304:6;16301:1;16298:13;16295:2;;;-1:-1:-1;;16339:1:1;16321:16;;16314:27;16144:205::o;16354:437::-;16433:1;16429:12;;;;16476;;;16497:2;;16551:4;16543:6;16539:17;16529:27;;16497:2;16604;16596:6;16593:14;16573:18;16570:38;16567:2;;;-1:-1:-1;;;16638:1:1;16631:88;16742:4;16739:1;16732:15;16770:4;16767:1;16760:15;16567:2;;16409:382;;;:::o;16796:135::-;16835:3;-1:-1:-1;;16856:17:1;;16853:2;;;16876:18;;:::i;:::-;-1:-1:-1;16923:1:1;16912:13;;16843:88::o;16936:112::-;16968:1;16994;16984:2;;16999:18;;:::i;:::-;-1:-1:-1;17033:9:1;;16974:74::o;17053:184::-;-1:-1:-1;;;17102:1:1;17095:88;17202:4;17199:1;17192:15;17226:4;17223:1;17216:15;17242:184;-1:-1:-1;;;17291:1:1;17284:88;17391:4;17388:1;17381:15;17415:4;17412:1;17405:15;17431:184;-1:-1:-1;;;17480:1:1;17473:88;17580:4;17577:1;17570:15;17604:4;17601:1;17594:15;17620:184;-1:-1:-1;;;17669:1:1;17662:88;17769:4;17766:1;17759:15;17793:4;17790:1;17783:15;17809:118;17895:5;17888:13;17881:21;17874:5;17871:32;17861:2;;17917:1;17914;17907:12;17932:177;-1:-1:-1;;;;;;18010:5:1;18006:78;17999:5;17996:89;17986:2;;18099:1;18096;18089:12
Swarm Source
ipfs://84cb93f1d50584cd83d27598c0729904f23c6ecd86e9e526947315bdf6862c3c
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.