Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
157
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Zooverse
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.8.10; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ERC721A.sol"; import "./interfaces/IMerkle.sol"; contract Zooverse is ERC721A, Ownable, ReentrancyGuard, Pausable { using Strings for uint256; uint256 public price = 0.12 ether; string public baseUri = "https://ipfs.io/ipfs/QmQxZiwrdHEJvsMTuDLF5tS7SfnfvosFw3qTnvpGQcxrfM/"; uint256 public supply = 444; string public extension = ".json"; bool public whitelistLive; address payable public paymentSplitter; uint256 public maxPerTx = 1; uint256 public maxPerWallet = 1; IMerkle public whitelist; mapping(address => uint256) whitelistLimitPerWallet; mapping(address => uint256) limitPerWallet; mapping(address => bool) admins; event WhitelistLive(bool live); constructor( string memory name, string memory symbol ) ERC721A(name, symbol, 10000) { _pause(); } function whitelistMint(uint256 count, bytes32[] memory proof) external payable nonReentrant { require(whitelistLive, "Not live"); require(msg.value >= price * count, "invalid price"); require(whitelist.verify(whitelist.leaf(msg.sender), proof), "not whitelisted"); require(whitelistLimitPerWallet[msg.sender] + count <= maxPerWallet, "Exceeds max"); require(count <= maxPerTx, "Exceeds max"); _callMint(count, msg.sender); whitelistLimitPerWallet[msg.sender] += count; } function mint(uint256 count) external payable nonReentrant whenNotPaused { require(msg.value >= price * count, "invalid price"); require(limitPerWallet[msg.sender] + count <= maxPerWallet, "Exceeds max"); require(count <= maxPerTx, "Exceeds max"); _callMint(count, msg.sender); limitPerWallet[msg.sender] += count; } function adminMint(uint256 count, address to) external adminOrOwner { _callMint(count, to); } function _callMint(uint256 count, address to) internal { uint256 total = totalSupply(); require(count > 0, "Count is 0"); require(total + count <= supply, "Sold out"); _safeMint(to, count); } function burn(uint256 tokenId) external { _burn(tokenId); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = baseUri; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), extension ) ) : ""; } function setSupply(uint256 _supply) external adminOrOwner { supply = _supply; } function setExtension(string memory _extension) external adminOrOwner { extension = _extension; } function setUri(string memory _uri) external adminOrOwner { baseUri = _uri; } function setPaused(bool _paused) external adminOrOwner attributesSet { if(_paused) { _pause(); } else { _unpause(); } } function toggleWhitelistLive() external adminOrOwner attributesSet { bool isLive = !whitelistLive; whitelistLive = isLive; emit WhitelistLive(isLive); } function setMerkle(IMerkle _whitelist) external adminOrOwner { whitelist = _whitelist; } function setPrice(uint256 _price) external adminOrOwner { price = _price; } function setMaxPerWallet(uint256 _maxPerWallet) external adminOrOwner { maxPerWallet = _maxPerWallet; } function setMaxPerTx(uint256 _maxPerTx) external adminOrOwner { maxPerTx = _maxPerTx; } function setPaymentSplitter(address payable _paymentSplitter) external adminOrOwner { paymentSplitter = _paymentSplitter; } function withdraw() external adminOrOwner { (bool success, ) = paymentSplitter.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function addAdmin(address _admin) external adminOrOwner { admins[_admin] = true; } function removeAdmin(address _admin) external adminOrOwner { delete admins[_admin]; } modifier adminOrOwner() { require(msg.sender == owner() || admins[msg.sender], "Unauthorized"); _; } modifier attributesSet() { require( supply != 0 && address(whitelist) != address(0x0) && price != 0 && maxPerWallet != 0 && maxPerTx != 0 && paymentSplitter != address(0x0), "Set everything before starting" ); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@divergencetech/ethier/contracts/thirdparty/opensea/OpenSeaGasFreeListing.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721A: balance query for the zero address" ); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require( _exists(tokenId), "ERC721A: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: 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] || OpenSeaGasFreeListing.isApprovedForAll(owner, operator); } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721A: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _burn(uint256 tokenId) internal virtual { _transfer(msg.sender, deadAddress, tokenId); } function isOwnerOf(address account, uint256[] calldata tokenIds) external view virtual returns (bool) { for (uint256 i; i < tokenIds.length; ++i) { if (ownershipOf(tokenIds[i]).addr != account) return false; } return true; } function transferBatch( address from, address to, uint256[] calldata tokenIds, bytes calldata data ) external { for (uint256 i; i < tokenIds.length; ++i) { safeTransferFrom(from, to, tokenIds[i], data); } } function walletOfOwner(address account) external view returns (uint256[] memory) { uint256 quantity = balanceOf(account); uint256[] memory wallet = new uint256[](quantity); for (uint256 i; i < quantity; ++i) { wallet[i] = tokenOfOwnerByIndex(account, i); } return wallet; } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
pragma solidity 0.8.10; interface IMerkle { function leaf(address) external pure returns (bytes32); function verify(bytes32 leaf, bytes32[] memory proof) external view returns (bool); function setRoot(bytes32 _root) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ 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; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier) pragma solidity >=0.8.0 <0.9.0; // Inspired by BaseOpenSea by Simon Fremaux (@dievardump) but without the need // to pass specific addresses depending on deployment network. // https://gist.github.com/dievardump/483eb43bc6ed30b14f01e01842e3339b/ import "./ProxyRegistry.sol"; /// @notice Library to achieve gas-free listings on OpenSea. library OpenSeaGasFreeListing { /** @notice Returns whether the operator is an OpenSea proxy for the owner, thus allowing it to list without the token owner paying gas. @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if this function returns true. */ function isApprovedForAll(address owner, address operator) internal view returns (bool) { address proxy = proxyFor(owner); return proxy != address(0) && proxy == operator; } /** @notice Returns the OpenSea proxy address for the owner. */ function proxyFor(address owner) internal view returns (address) { address registry; uint256 chainId; assembly { chainId := chainid() switch chainId // Production networks are placed higher to minimise the number of // checks performed and therefore reduce gas. By the same rationale, // mainnet comes before Polygon as it's more expensive. case 1 { // mainnet registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1 } case 137 { // polygon registry := 0x58807baD0B376efc12F5AD86aAc70E78ed67deaE } case 4 { // rinkeby registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317 } case 80001 { // mumbai registry := 0xff7Ca10aF37178BdD056628eF42fD7F799fAc77c } case 1337 { // The geth SimulatedBackend iff used with the ethier // openseatest package. This is mocked as a Wyvern proxy as it's // more complex than the 0x ones. registry := 0xE1a2bbc877b29ADBC56D2659DBcb0ae14ee62071 } } // Unlike Wyvern, the registry itself is the proxy for all owners on 0x // chains. if (registry == address(0) || chainId == 137 || chainId == 80001) { return registry; } return address(ProxyRegistry(registry).proxies(owner)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier) pragma solidity >=0.8.0 <0.9.0; /// @notice A minimal interface describing OpenSea's Wyvern proxy registry. contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** @dev This pattern of using an empty contract is cargo-culted directly from OpenSea's example code. TODO: it's likely that the above mapping can be changed to address => address without affecting anything, but further investigation is needed (i.e. is there a subtle reason that OpenSea released it like this?). */ contract OwnableDelegateProxy { }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"live","type":"bool"}],"name":"WhitelistLive","type":"event"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","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":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentSplitter","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_extension","type":"string"}],"name":"setExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMerkle","name":"_whitelist","type":"address"}],"name":"setMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_paymentSplitter","type":"address"}],"name":"setPaymentSplitter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"toggleWhitelistLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"contract IMerkle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600080805561dead60a0526007556701aa535d3d0c0000600b55610140604052604460c08181529062003c0660e03980516200004491600c9160209091019062000213565b506101bc600d5560408051808201909152600580825264173539b7b760d91b60209092019182526200007991600e9162000213565b50600160105560016011553480156200009157600080fd5b5060405162003c4a38038062003c4a833981016040819052620000b49162000386565b8181612710620000c8565b60405180910390fd5b8251620000dd90600190602086019062000213565b508151620000f390600290602085019062000213565b50608052506200010590503362000126565b6001600955600a805460ff191690556200011e62000178565b50506200042d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001c05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620000bf565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001f63390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200022190620003f0565b90600052602060002090601f01602090048101928262000245576000855562000290565b82601f106200026057805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200029057825182559160200191906001019062000273565b506200029e929150620002a2565b5090565b5b808211156200029e5760008155600101620002a3565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002e157600080fd5b81516001600160401b0380821115620002fe57620002fe620002b9565b604051601f8301601f19908116603f01168101908282118183101715620003295762000329620002b9565b816040528381526020925086838588010111156200034657600080fd5b600091505b838210156200036a57858201830151818301840152908201906200034b565b838211156200037c5760008385830101525b9695505050505050565b600080604083850312156200039a57600080fd5b82516001600160401b0380821115620003b257600080fd5b620003c086838701620002cf565b93506020850151915080821115620003d757600080fd5b50620003e685828601620002cf565b9150509250929050565b600181811c908216806200040557607f821691505b602082108114156200042757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161379e620004686000396000818161046501526124990152600081816125400152818161256a0152612b21015261379e6000f3fe6080604052600436106102e45760003560e01c80636b29b79f11610190578063a0712d68116100dc578063d2cab05611610095578063e985e9c51161006f578063e985e9c51461088a578063ed4a6b0c146108aa578063f2fde38b146108cf578063f968adbe146108ef57600080fd5b8063d2cab05614610841578063d7224ba014610854578063e268e4d31461086a57600080fd5b8063a0712d681461078e578063a22cb465146107a1578063b534a5c4146107c1578063b88d4fde146107e1578063c6f6f21614610801578063c87b56dd1461082157600080fd5b806391b7f5ed116101495780639979a194116101235780639979a194146107295780639abc8320146107435780639b642de114610758578063a035b1fe1461077857600080fd5b806391b7f5ed146106d457806393e59dc1146106f457806395d89b411461071457600080fd5b80636b29b79f14610621578063704802751461064157806370a0823114610661578063715018a6146106815780637e2285aa146106965780638da5cb5b146106b657600080fd5b80632f745c591161024f578063438b6300116102085780634f6ccce7116101e25780634f6ccce7146105b4578063568c32a3146105d45780635c975abb146105e95780636352211e1461060157600080fd5b8063438b630014610551578063453c23101461057e5780634d44660c1461059457600080fd5b80632f745c591461049c5780633b0403e6146104bc5780633b4c4b25146104dc5780633ccfd60b146104fc57806342842e0e1461051157806342966c681461053157600080fd5b806316c38b3c116102a157806316c38b3c146103de5780631785f53c146103fe57806318160ddd1461041e57806323b872dd1461043357806327c8f835146104535780632d5537b01461048757600080fd5b806301ffc9a7146102e9578063047fc9aa1461031e57806306fdde0314610342578063081812fc14610364578063095ea7b31461039c5780630dc28efe146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612de4565b610905565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610334600d5481565b604051908152602001610315565b34801561034e57600080fd5b50610357610972565b6040516103159190612e59565b34801561037057600080fd5b5061038461037f366004612e6c565b610a04565b6040516001600160a01b039091168152602001610315565b3480156103a857600080fd5b506103bc6103b7366004612e9a565b610a94565b005b3480156103ca57600080fd5b506103bc6103d9366004612ec6565b610bac565b3480156103ea57600080fd5b506103bc6103f9366004612f04565b610bfe565b34801561040a57600080fd5b506103bc610419366004612f21565b610d04565b34801561042a57600080fd5b50600054610334565b34801561043f57600080fd5b506103bc61044e366004612f3e565b610d69565b34801561045f57600080fd5b506103847f000000000000000000000000000000000000000000000000000000000000000081565b34801561049357600080fd5b50610357610d74565b3480156104a857600080fd5b506103346104b7366004612e9a565b610e02565b3480156104c857600080fd5b506103bc6104d7366004612f21565b610f6f565b3480156104e857600080fd5b506103bc6104f7366004612e6c565b610fd5565b34801561050857600080fd5b506103bc61101e565b34801561051d57600080fd5b506103bc61052c366004612f3e565b6110fd565b34801561053d57600080fd5b506103bc61054c366004612e6c565b611118565b34801561055d57600080fd5b5061057161056c366004612f21565b611121565b6040516103159190612f7f565b34801561058a57600080fd5b5061033460115481565b3480156105a057600080fd5b506103096105af36600461300e565b6111c0565b3480156105c057600080fd5b506103346105cf366004612e6c565b61122d565b3480156105e057600080fd5b506103bc61128f565b3480156105f557600080fd5b50600a5460ff16610309565b34801561060d57600080fd5b5061038461061c366004612e6c565b6113c6565b34801561062d57600080fd5b506103bc61063c366004612f21565b6113d8565b34801561064d57600080fd5b506103bc61065c366004612f21565b611444565b34801561066d57600080fd5b5061033461067c366004612f21565b6114ac565b34801561068d57600080fd5b506103bc61153d565b3480156106a257600080fd5b506103bc6106b13660046130ff565b6115a3565b3480156106c257600080fd5b506008546001600160a01b0316610384565b3480156106e057600080fd5b506103bc6106ef366004612e6c565b6115fa565b34801561070057600080fd5b50601254610384906001600160a01b031681565b34801561072057600080fd5b50610357611643565b34801561073557600080fd5b50600f546103099060ff1681565b34801561074f57600080fd5b50610357611652565b34801561076457600080fd5b506103bc6107733660046130ff565b61165f565b34801561078457600080fd5b50610334600b5481565b6103bc61079c366004612e6c565b6116b6565b3480156107ad57600080fd5b506103bc6107bc366004613147565b611835565b3480156107cd57600080fd5b506103bc6107dc366004613175565b6118fa565b3480156107ed57600080fd5b506103bc6107fc366004613235565b611978565b34801561080d57600080fd5b506103bc61081c366004612e6c565b6119b1565b34801561082d57600080fd5b5061035761083c366004612e6c565b6119fa565b6103bc61084f3660046132b4565b611b3e565b34801561086057600080fd5b5061033460075481565b34801561087657600080fd5b506103bc610885366004612e6c565b611dc6565b34801561089657600080fd5b506103096108a5366004613365565b611e0f565b3480156108b657600080fd5b50600f546103849061010090046001600160a01b031681565b3480156108db57600080fd5b506103bc6108ea366004612f21565b611e4a565b3480156108fb57600080fd5b5061033460105481565b60006001600160e01b031982166380ac58cd60e01b148061093657506001600160e01b03198216635b5e139f60e01b145b8061095157506001600160e01b0319821663780e9d6360e01b145b8061096c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461098190613393565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad90613393565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000610a11826000541190565b610a785760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a9f826113c6565b9050806001600160a01b0316836001600160a01b03161415610b0e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a6f565b336001600160a01b0382161480610b2a5750610b2a8133611e0f565b610b9c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a6f565b610ba7838383611f12565b505050565b6008546001600160a01b0316331480610bd457503360009081526015602052604090205460ff165b610bf05760405162461bcd60e51b8152600401610a6f906133ce565b610bfa8282611f6e565b5050565b6008546001600160a01b0316331480610c2657503360009081526015602052604090205460ff165b610c425760405162461bcd60e51b8152600401610a6f906133ce565b600d5415801590610c5d57506012546001600160a01b031615155b8015610c6a5750600b5415155b8015610c77575060115415155b8015610c84575060105415155b8015610c9f5750600f5461010090046001600160a01b031615155b610ceb5760405162461bcd60e51b815260206004820152601e60248201527f5365742065766572797468696e67206265666f7265207374617274696e6700006044820152606401610a6f565b8015610cfc57610cf9611ffb565b50565b610cf9612093565b6008546001600160a01b0316331480610d2c57503360009081526015602052604090205460ff165b610d485760405162461bcd60e51b8152600401610a6f906133ce565b6001600160a01b03166000908152601560205260409020805460ff19169055565b610ba783838361210d565b600e8054610d8190613393565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad90613393565b8015610dfa5780601f10610dcf57610100808354040283529160200191610dfa565b820191906000526020600020905b815481529060010190602001808311610ddd57829003601f168201915b505050505081565b6000610e0d836114ac565b8210610e665760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a6f565b600080549080805b83811015610f0f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610ec057805192505b876001600160a01b0316836001600160a01b03161415610efc5786841415610eee5750935061096c92505050565b83610ef88161340a565b9450505b5080610f078161340a565b915050610e6e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a6f565b6008546001600160a01b0316331480610f9757503360009081526015602052604090205460ff165b610fb35760405162461bcd60e51b8152600401610a6f906133ce565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331480610ffd57503360009081526015602052604090205460ff165b6110195760405162461bcd60e51b8152600401610a6f906133ce565b600d55565b6008546001600160a01b031633148061104657503360009081526015602052604090205460ff165b6110625760405162461bcd60e51b8152600401610a6f906133ce565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d80600081146110b4576040519150601f19603f3d011682016040523d82523d6000602084013e6110b9565b606091505b5050905080610cf95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610a6f565b610ba783838360405180602001604052806000815250611978565b610cf981612493565b6060600061112e836114ac565b90506000816001600160401b0381111561114a5761114a613062565b604051908082528060200260200182016040528015611173578160200160208202803683370190505b50905060005b828110156111b85761118b8582610e02565b82828151811061119d5761119d613425565b60209081029190910101526111b18161340a565b9050611179565b509392505050565b6000805b8281101561122057846001600160a01b03166111f78585848181106111eb576111eb613425565b905060200201356124be565b516001600160a01b031614611210576000915050611226565b6112198161340a565b90506111c4565b50600190505b9392505050565b60008054821061128b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a6f565b5090565b6008546001600160a01b03163314806112b757503360009081526015602052604090205460ff165b6112d35760405162461bcd60e51b8152600401610a6f906133ce565b600d54158015906112ee57506012546001600160a01b031615155b80156112fb5750600b5415155b8015611308575060115415155b8015611315575060105415155b80156113305750600f5461010090046001600160a01b031615155b61137c5760405162461bcd60e51b815260206004820152601e60248201527f5365742065766572797468696e67206265666f7265207374617274696e6700006044820152606401610a6f565b600f805460ff81161560ff1990911681179091556040518181527f033fcfd9cc0d1245d0975739b3bd6fa38727f20cfda54f4c8f817e2825ee7b8c9060200160405180910390a150565b60006113d1826124be565b5192915050565b6008546001600160a01b031633148061140057503360009081526015602052604090205460ff165b61141c5760405162461bcd60e51b8152600401610a6f906133ce565b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b031633148061146c57503360009081526015602052604090205460ff165b6114885760405162461bcd60e51b8152600401610a6f906133ce565b6001600160a01b03166000908152601560205260409020805460ff19166001179055565b60006001600160a01b0382166115185760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a6f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146115975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b6115a16000612667565b565b6008546001600160a01b03163314806115cb57503360009081526015602052604090205460ff165b6115e75760405162461bcd60e51b8152600401610a6f906133ce565b8051610bfa90600e906020840190612d3e565b6008546001600160a01b031633148061162257503360009081526015602052604090205460ff165b61163e5760405162461bcd60e51b8152600401610a6f906133ce565b600b55565b60606002805461098190613393565b600c8054610d8190613393565b6008546001600160a01b031633148061168757503360009081526015602052604090205460ff165b6116a35760405162461bcd60e51b8152600401610a6f906133ce565b8051610bfa90600c906020840190612d3e565b600260095414156117095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6f565b6002600955600a5460ff16156117545760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a6f565b80600b54611762919061343b565b3410156117a15760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420707269636560981b6044820152606401610a6f565b601154336000908152601460205260409020546117bf90839061345a565b11156117dd5760405162461bcd60e51b8152600401610a6f90613472565b6010548111156117ff5760405162461bcd60e51b8152600401610a6f90613472565b6118098133611f6e565b336000908152601460205260408120805483929061182890849061345a565b9091555050600160095550565b6001600160a01b03821633141561188e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a6f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b8381101561196f5761195f878787878581811061191c5761191c613425565b9050602002013586868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061197892505050565b6119688161340a565b90506118fd565b50505050505050565b61198384848461210d565b61198f848484846126b9565b6119ab5760405162461bcd60e51b8152600401610a6f90613497565b50505050565b6008546001600160a01b03163314806119d957503360009081526015602052604090205460ff165b6119f55760405162461bcd60e51b8152600401610a6f906133ce565b601055565b6060611a07826000541190565b611a5d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610a6f565b6000600c8054611a6c90613393565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9890613393565b8015611ae55780601f10611aba57610100808354040283529160200191611ae5565b820191906000526020600020905b815481529060010190602001808311611ac857829003601f168201915b505050505090506000815111611b0a5760405180602001604052806000815250611226565b80611b14846127b8565b600e604051602001611b28939291906134ea565b6040516020818303038152906040529392505050565b60026009541415611b915760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6f565b6002600955600f5460ff16611bd35760405162461bcd60e51b81526020600482015260086024820152674e6f74206c69766560c01b6044820152606401610a6f565b81600b54611be1919061343b565b341015611c205760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420707269636560981b6044820152606401610a6f565b60125460405163765fd1b360e01b81523360048201526001600160a01b0390911690636df4d24190829063765fd1b390602401602060405180830381865afa158015611c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9491906135ae565b836040518363ffffffff1660e01b8152600401611cb29291906135c7565b602060405180830381865afa158015611ccf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf39190613615565b611d315760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610a6f565b60115433600090815260136020526040902054611d4f90849061345a565b1115611d6d5760405162461bcd60e51b8152600401610a6f90613472565b601054821115611d8f5760405162461bcd60e51b8152600401610a6f90613472565b611d998233611f6e565b3360009081526013602052604081208054849290611db890849061345a565b909155505060016009555050565b6008546001600160a01b0316331480611dee57503360009081526015602052604090205460ff165b611e0a5760405162461bcd60e51b8152600401610a6f906133ce565b601155565b6001600160a01b03808316600090815260066020908152604080832093851683529290529081205460ff1680611226575061122683836128b5565b6008546001600160a01b03163314611ea45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b6001600160a01b038116611f095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6f565b610cf981612667565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60005482611fab5760405162461bcd60e51b815260206004820152600a6024820152690436f756e7420697320360b41b6044820152606401610a6f565b600d54611fb8848361345a565b1115611ff15760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610a6f565b610ba782846128f3565b600a5460ff16156120415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a6f565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120763390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff166120dc5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a6f565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33612076565b6000612118826124be565b80519091506000906001600160a01b0316336001600160a01b0316148061214f57503361214484610a04565b6001600160a01b0316145b80612161575081516121619033611e0f565b9050806121cb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a6f565b846001600160a01b031682600001516001600160a01b03161461223f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a6f565b6001600160a01b0384166122a35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a6f565b6122b36000848460000151611f12565b6001600160a01b03851660009081526004602052604081208054600192906122e59084906001600160801b0316613632565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926123319185911661365a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556123b884600161345a565b6000818152600360205260409020549091506001600160a01b0316612449576123e2816000541190565b156124495760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610cf9337f00000000000000000000000000000000000000000000000000000000000000008361210d565b60408051808201909152600080825260208201526124dd826000541190565b61253c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a6f565b60007f0000000000000000000000000000000000000000000000000000000000000000831061259d5761258f7f000000000000000000000000000000000000000000000000000000000000000084613685565b61259a90600161345a565b90505b825b818110612606576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156125f357949350505050565b50806125fe8161369c565b91505061259f565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a6f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156127ac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126fd9033908990889088906004016136b3565b6020604051808303816000875af1925050508015612738575060408051601f3d908101601f19168201909252612735918101906136f0565b60015b612792573d808015612766576040519150601f19603f3d011682016040523d82523d6000602084013e61276b565b606091505b50805161278a5760405162461bcd60e51b8152600401610a6f90613497565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127b0565b5060015b949350505050565b6060816127dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561280657806127f08161340a565b91506127ff9050600a83613723565b91506127e0565b6000816001600160401b0381111561282057612820613062565b6040519080825280601f01601f19166020018201604052801561284a576020820181803683370190505b5090505b84156127b05761285f600183613685565b915061286c600a86613737565b61287790603061345a565b60f81b81838151811061288c5761288c613425565b60200101906001600160f81b031916908160001a9053506128ae600a86613723565b945061284e565b6000806128c18461290d565b90506001600160a01b038116158015906127b05750826001600160a01b0316816001600160a01b031614949350505050565b610bfa828260405180602001604052806000815250612a64565b600080468060018114612942576089811461295e576004811461297a576201388181146129965761053981146129b2576129ca565b73a5409ec958c83c3f309868babaca7c86dcb077c192506129ca565b7358807bad0b376efc12f5ad86aac70e78ed67deae92506129ca565b73f57b2c51ded3a29e6891aba85459d600256cf31792506129ca565b73ff7ca10af37178bdd056628ef42fd7f799fac77c92506129ca565b73e1a2bbc877b29adbc56d2659dbcb0ae14ee6207192505b506001600160a01b03821615806129e15750806089145b806129ee57508062013881145b156129fa575092915050565b60405163c455279160e01b81526001600160a01b03858116600483015283169063c455279190602401602060405180830381865afa158015612a40573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b0919061374b565b6000546001600160a01b038416612ac75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a6f565b612ad2816000541190565b15612b1f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a6f565b7f0000000000000000000000000000000000000000000000000000000000000000831115612b9a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a6f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612bf690879061365a565b6001600160801b03168152602001858360200151612c14919061365a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612d335760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612cf760008884886126b9565b612d135760405162461bcd60e51b8152600401610a6f90613497565b81612d1d8161340a565b9250508080612d2b9061340a565b915050612caa565b50600081905561248b565b828054612d4a90613393565b90600052602060002090601f016020900481019282612d6c5760008555612db2565b82601f10612d8557805160ff1916838001178555612db2565b82800160010185558215612db2579182015b82811115612db2578251825591602001919060010190612d97565b5061128b9291505b8082111561128b5760008155600101612dba565b6001600160e01b031981168114610cf957600080fd5b600060208284031215612df657600080fd5b813561122681612dce565b60005b83811015612e1c578181015183820152602001612e04565b838111156119ab5750506000910152565b60008151808452612e45816020860160208601612e01565b601f01601f19169290920160200192915050565b6020815260006112266020830184612e2d565b600060208284031215612e7e57600080fd5b5035919050565b6001600160a01b0381168114610cf957600080fd5b60008060408385031215612ead57600080fd5b8235612eb881612e85565b946020939093013593505050565b60008060408385031215612ed957600080fd5b823591506020830135612eeb81612e85565b809150509250929050565b8015158114610cf957600080fd5b600060208284031215612f1657600080fd5b813561122681612ef6565b600060208284031215612f3357600080fd5b813561122681612e85565b600080600060608486031215612f5357600080fd5b8335612f5e81612e85565b92506020840135612f6e81612e85565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015612fb757835183529284019291840191600101612f9b565b50909695505050505050565b60008083601f840112612fd557600080fd5b5081356001600160401b03811115612fec57600080fd5b6020830191508360208260051b850101111561300757600080fd5b9250929050565b60008060006040848603121561302357600080fd5b833561302e81612e85565b925060208401356001600160401b0381111561304957600080fd5b61305586828701612fc3565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156130a0576130a0613062565b604052919050565b60006001600160401b038311156130c1576130c1613062565b6130d4601f8401601f1916602001613078565b90508281528383830111156130e857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561311157600080fd5b81356001600160401b0381111561312757600080fd5b8201601f8101841361313857600080fd5b6127b0848235602084016130a8565b6000806040838503121561315a57600080fd5b823561316581612e85565b91506020830135612eeb81612ef6565b6000806000806000806080878903121561318e57600080fd5b863561319981612e85565b955060208701356131a981612e85565b945060408701356001600160401b03808211156131c557600080fd5b6131d18a838b01612fc3565b909650945060608901359150808211156131ea57600080fd5b818901915089601f8301126131fe57600080fd5b81358181111561320d57600080fd5b8a602082850101111561321f57600080fd5b6020830194508093505050509295509295509295565b6000806000806080858703121561324b57600080fd5b843561325681612e85565b9350602085013561326681612e85565b92506040850135915060608501356001600160401b0381111561328857600080fd5b8501601f8101871361329957600080fd5b6132a8878235602084016130a8565b91505092959194509250565b600080604083850312156132c757600080fd5b823591506020808401356001600160401b03808211156132e657600080fd5b818601915086601f8301126132fa57600080fd5b81358181111561330c5761330c613062565b8060051b915061331d848301613078565b818152918301840191848101908984111561333757600080fd5b938501935b838510156133555784358252938501939085019061333c565b8096505050505050509250929050565b6000806040838503121561337857600080fd5b823561338381612e85565b91506020830135612eeb81612e85565b600181811c908216806133a757607f821691505b602082108114156133c857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600c908201526b155b985d5d1a1bdc9a5e995960a21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561341e5761341e6133f4565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613455576134556133f4565b500290565b6000821982111561346d5761346d6133f4565b500190565b6020808252600b908201526a08af0c6cacac8e640dac2f60ab1b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206134fd8285838a01612e01565b8551918401916135108184848a01612e01565b8554920191600090600181811c908083168061352d57607f831692505b85831081141561354b57634e487b7160e01b85526022600452602485fd5b80801561355f57600181146135705761359d565b60ff1985168852838801955061359d565b60008b81526020902060005b858110156135955781548a82015290840190880161357c565b505083880195505b50939b9a5050505050505050505050565b6000602082840312156135c057600080fd5b5051919050565b6000604082018483526020604081850152818551808452606086019150828701935060005b81811015613608578451835293830193918301916001016135ec565b5090979650505050505050565b60006020828403121561362757600080fd5b815161122681612ef6565b60006001600160801b0383811690831681811015613652576136526133f4565b039392505050565b60006001600160801b0380831681851680830382111561367c5761367c6133f4565b01949350505050565b600082821015613697576136976133f4565b500390565b6000816136ab576136ab6133f4565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136e690830184612e2d565b9695505050505050565b60006020828403121561370257600080fd5b815161122681612dce565b634e487b7160e01b600052601260045260246000fd5b6000826137325761373261370d565b500490565b6000826137465761374661370d565b500690565b60006020828403121561375d57600080fd5b815161122681612e8556fea26469706673582212200021837cd67885cfc35317c3d47b34ccffd6ec3bb38ef98c14c7e2e0cd97c1ee64736f6c634300080a003368747470733a2f2f697066732e696f2f697066732f516d51785a6977726448454a76734d5475444c463574533753666e66766f7346773371546e76704751637872664d2f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000085a6f6f766572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a4f4f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e45760003560e01c80636b29b79f11610190578063a0712d68116100dc578063d2cab05611610095578063e985e9c51161006f578063e985e9c51461088a578063ed4a6b0c146108aa578063f2fde38b146108cf578063f968adbe146108ef57600080fd5b8063d2cab05614610841578063d7224ba014610854578063e268e4d31461086a57600080fd5b8063a0712d681461078e578063a22cb465146107a1578063b534a5c4146107c1578063b88d4fde146107e1578063c6f6f21614610801578063c87b56dd1461082157600080fd5b806391b7f5ed116101495780639979a194116101235780639979a194146107295780639abc8320146107435780639b642de114610758578063a035b1fe1461077857600080fd5b806391b7f5ed146106d457806393e59dc1146106f457806395d89b411461071457600080fd5b80636b29b79f14610621578063704802751461064157806370a0823114610661578063715018a6146106815780637e2285aa146106965780638da5cb5b146106b657600080fd5b80632f745c591161024f578063438b6300116102085780634f6ccce7116101e25780634f6ccce7146105b4578063568c32a3146105d45780635c975abb146105e95780636352211e1461060157600080fd5b8063438b630014610551578063453c23101461057e5780634d44660c1461059457600080fd5b80632f745c591461049c5780633b0403e6146104bc5780633b4c4b25146104dc5780633ccfd60b146104fc57806342842e0e1461051157806342966c681461053157600080fd5b806316c38b3c116102a157806316c38b3c146103de5780631785f53c146103fe57806318160ddd1461041e57806323b872dd1461043357806327c8f835146104535780632d5537b01461048757600080fd5b806301ffc9a7146102e9578063047fc9aa1461031e57806306fdde0314610342578063081812fc14610364578063095ea7b31461039c5780630dc28efe146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612de4565b610905565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610334600d5481565b604051908152602001610315565b34801561034e57600080fd5b50610357610972565b6040516103159190612e59565b34801561037057600080fd5b5061038461037f366004612e6c565b610a04565b6040516001600160a01b039091168152602001610315565b3480156103a857600080fd5b506103bc6103b7366004612e9a565b610a94565b005b3480156103ca57600080fd5b506103bc6103d9366004612ec6565b610bac565b3480156103ea57600080fd5b506103bc6103f9366004612f04565b610bfe565b34801561040a57600080fd5b506103bc610419366004612f21565b610d04565b34801561042a57600080fd5b50600054610334565b34801561043f57600080fd5b506103bc61044e366004612f3e565b610d69565b34801561045f57600080fd5b506103847f000000000000000000000000000000000000000000000000000000000000dead81565b34801561049357600080fd5b50610357610d74565b3480156104a857600080fd5b506103346104b7366004612e9a565b610e02565b3480156104c857600080fd5b506103bc6104d7366004612f21565b610f6f565b3480156104e857600080fd5b506103bc6104f7366004612e6c565b610fd5565b34801561050857600080fd5b506103bc61101e565b34801561051d57600080fd5b506103bc61052c366004612f3e565b6110fd565b34801561053d57600080fd5b506103bc61054c366004612e6c565b611118565b34801561055d57600080fd5b5061057161056c366004612f21565b611121565b6040516103159190612f7f565b34801561058a57600080fd5b5061033460115481565b3480156105a057600080fd5b506103096105af36600461300e565b6111c0565b3480156105c057600080fd5b506103346105cf366004612e6c565b61122d565b3480156105e057600080fd5b506103bc61128f565b3480156105f557600080fd5b50600a5460ff16610309565b34801561060d57600080fd5b5061038461061c366004612e6c565b6113c6565b34801561062d57600080fd5b506103bc61063c366004612f21565b6113d8565b34801561064d57600080fd5b506103bc61065c366004612f21565b611444565b34801561066d57600080fd5b5061033461067c366004612f21565b6114ac565b34801561068d57600080fd5b506103bc61153d565b3480156106a257600080fd5b506103bc6106b13660046130ff565b6115a3565b3480156106c257600080fd5b506008546001600160a01b0316610384565b3480156106e057600080fd5b506103bc6106ef366004612e6c565b6115fa565b34801561070057600080fd5b50601254610384906001600160a01b031681565b34801561072057600080fd5b50610357611643565b34801561073557600080fd5b50600f546103099060ff1681565b34801561074f57600080fd5b50610357611652565b34801561076457600080fd5b506103bc6107733660046130ff565b61165f565b34801561078457600080fd5b50610334600b5481565b6103bc61079c366004612e6c565b6116b6565b3480156107ad57600080fd5b506103bc6107bc366004613147565b611835565b3480156107cd57600080fd5b506103bc6107dc366004613175565b6118fa565b3480156107ed57600080fd5b506103bc6107fc366004613235565b611978565b34801561080d57600080fd5b506103bc61081c366004612e6c565b6119b1565b34801561082d57600080fd5b5061035761083c366004612e6c565b6119fa565b6103bc61084f3660046132b4565b611b3e565b34801561086057600080fd5b5061033460075481565b34801561087657600080fd5b506103bc610885366004612e6c565b611dc6565b34801561089657600080fd5b506103096108a5366004613365565b611e0f565b3480156108b657600080fd5b50600f546103849061010090046001600160a01b031681565b3480156108db57600080fd5b506103bc6108ea366004612f21565b611e4a565b3480156108fb57600080fd5b5061033460105481565b60006001600160e01b031982166380ac58cd60e01b148061093657506001600160e01b03198216635b5e139f60e01b145b8061095157506001600160e01b0319821663780e9d6360e01b145b8061096c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461098190613393565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad90613393565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000610a11826000541190565b610a785760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a9f826113c6565b9050806001600160a01b0316836001600160a01b03161415610b0e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a6f565b336001600160a01b0382161480610b2a5750610b2a8133611e0f565b610b9c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a6f565b610ba7838383611f12565b505050565b6008546001600160a01b0316331480610bd457503360009081526015602052604090205460ff165b610bf05760405162461bcd60e51b8152600401610a6f906133ce565b610bfa8282611f6e565b5050565b6008546001600160a01b0316331480610c2657503360009081526015602052604090205460ff165b610c425760405162461bcd60e51b8152600401610a6f906133ce565b600d5415801590610c5d57506012546001600160a01b031615155b8015610c6a5750600b5415155b8015610c77575060115415155b8015610c84575060105415155b8015610c9f5750600f5461010090046001600160a01b031615155b610ceb5760405162461bcd60e51b815260206004820152601e60248201527f5365742065766572797468696e67206265666f7265207374617274696e6700006044820152606401610a6f565b8015610cfc57610cf9611ffb565b50565b610cf9612093565b6008546001600160a01b0316331480610d2c57503360009081526015602052604090205460ff165b610d485760405162461bcd60e51b8152600401610a6f906133ce565b6001600160a01b03166000908152601560205260409020805460ff19169055565b610ba783838361210d565b600e8054610d8190613393565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad90613393565b8015610dfa5780601f10610dcf57610100808354040283529160200191610dfa565b820191906000526020600020905b815481529060010190602001808311610ddd57829003601f168201915b505050505081565b6000610e0d836114ac565b8210610e665760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a6f565b600080549080805b83811015610f0f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610ec057805192505b876001600160a01b0316836001600160a01b03161415610efc5786841415610eee5750935061096c92505050565b83610ef88161340a565b9450505b5080610f078161340a565b915050610e6e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a6f565b6008546001600160a01b0316331480610f9757503360009081526015602052604090205460ff165b610fb35760405162461bcd60e51b8152600401610a6f906133ce565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331480610ffd57503360009081526015602052604090205460ff165b6110195760405162461bcd60e51b8152600401610a6f906133ce565b600d55565b6008546001600160a01b031633148061104657503360009081526015602052604090205460ff165b6110625760405162461bcd60e51b8152600401610a6f906133ce565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d80600081146110b4576040519150601f19603f3d011682016040523d82523d6000602084013e6110b9565b606091505b5050905080610cf95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610a6f565b610ba783838360405180602001604052806000815250611978565b610cf981612493565b6060600061112e836114ac565b90506000816001600160401b0381111561114a5761114a613062565b604051908082528060200260200182016040528015611173578160200160208202803683370190505b50905060005b828110156111b85761118b8582610e02565b82828151811061119d5761119d613425565b60209081029190910101526111b18161340a565b9050611179565b509392505050565b6000805b8281101561122057846001600160a01b03166111f78585848181106111eb576111eb613425565b905060200201356124be565b516001600160a01b031614611210576000915050611226565b6112198161340a565b90506111c4565b50600190505b9392505050565b60008054821061128b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a6f565b5090565b6008546001600160a01b03163314806112b757503360009081526015602052604090205460ff165b6112d35760405162461bcd60e51b8152600401610a6f906133ce565b600d54158015906112ee57506012546001600160a01b031615155b80156112fb5750600b5415155b8015611308575060115415155b8015611315575060105415155b80156113305750600f5461010090046001600160a01b031615155b61137c5760405162461bcd60e51b815260206004820152601e60248201527f5365742065766572797468696e67206265666f7265207374617274696e6700006044820152606401610a6f565b600f805460ff81161560ff1990911681179091556040518181527f033fcfd9cc0d1245d0975739b3bd6fa38727f20cfda54f4c8f817e2825ee7b8c9060200160405180910390a150565b60006113d1826124be565b5192915050565b6008546001600160a01b031633148061140057503360009081526015602052604090205460ff165b61141c5760405162461bcd60e51b8152600401610a6f906133ce565b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b031633148061146c57503360009081526015602052604090205460ff165b6114885760405162461bcd60e51b8152600401610a6f906133ce565b6001600160a01b03166000908152601560205260409020805460ff19166001179055565b60006001600160a01b0382166115185760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a6f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146115975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b6115a16000612667565b565b6008546001600160a01b03163314806115cb57503360009081526015602052604090205460ff165b6115e75760405162461bcd60e51b8152600401610a6f906133ce565b8051610bfa90600e906020840190612d3e565b6008546001600160a01b031633148061162257503360009081526015602052604090205460ff165b61163e5760405162461bcd60e51b8152600401610a6f906133ce565b600b55565b60606002805461098190613393565b600c8054610d8190613393565b6008546001600160a01b031633148061168757503360009081526015602052604090205460ff165b6116a35760405162461bcd60e51b8152600401610a6f906133ce565b8051610bfa90600c906020840190612d3e565b600260095414156117095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6f565b6002600955600a5460ff16156117545760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a6f565b80600b54611762919061343b565b3410156117a15760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420707269636560981b6044820152606401610a6f565b601154336000908152601460205260409020546117bf90839061345a565b11156117dd5760405162461bcd60e51b8152600401610a6f90613472565b6010548111156117ff5760405162461bcd60e51b8152600401610a6f90613472565b6118098133611f6e565b336000908152601460205260408120805483929061182890849061345a565b9091555050600160095550565b6001600160a01b03821633141561188e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a6f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b8381101561196f5761195f878787878581811061191c5761191c613425565b9050602002013586868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061197892505050565b6119688161340a565b90506118fd565b50505050505050565b61198384848461210d565b61198f848484846126b9565b6119ab5760405162461bcd60e51b8152600401610a6f90613497565b50505050565b6008546001600160a01b03163314806119d957503360009081526015602052604090205460ff165b6119f55760405162461bcd60e51b8152600401610a6f906133ce565b601055565b6060611a07826000541190565b611a5d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610a6f565b6000600c8054611a6c90613393565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9890613393565b8015611ae55780601f10611aba57610100808354040283529160200191611ae5565b820191906000526020600020905b815481529060010190602001808311611ac857829003601f168201915b505050505090506000815111611b0a5760405180602001604052806000815250611226565b80611b14846127b8565b600e604051602001611b28939291906134ea565b6040516020818303038152906040529392505050565b60026009541415611b915760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6f565b6002600955600f5460ff16611bd35760405162461bcd60e51b81526020600482015260086024820152674e6f74206c69766560c01b6044820152606401610a6f565b81600b54611be1919061343b565b341015611c205760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420707269636560981b6044820152606401610a6f565b60125460405163765fd1b360e01b81523360048201526001600160a01b0390911690636df4d24190829063765fd1b390602401602060405180830381865afa158015611c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9491906135ae565b836040518363ffffffff1660e01b8152600401611cb29291906135c7565b602060405180830381865afa158015611ccf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf39190613615565b611d315760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610a6f565b60115433600090815260136020526040902054611d4f90849061345a565b1115611d6d5760405162461bcd60e51b8152600401610a6f90613472565b601054821115611d8f5760405162461bcd60e51b8152600401610a6f90613472565b611d998233611f6e565b3360009081526013602052604081208054849290611db890849061345a565b909155505060016009555050565b6008546001600160a01b0316331480611dee57503360009081526015602052604090205460ff165b611e0a5760405162461bcd60e51b8152600401610a6f906133ce565b601155565b6001600160a01b03808316600090815260066020908152604080832093851683529290529081205460ff1680611226575061122683836128b5565b6008546001600160a01b03163314611ea45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b6001600160a01b038116611f095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6f565b610cf981612667565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60005482611fab5760405162461bcd60e51b815260206004820152600a6024820152690436f756e7420697320360b41b6044820152606401610a6f565b600d54611fb8848361345a565b1115611ff15760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610a6f565b610ba782846128f3565b600a5460ff16156120415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a6f565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120763390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff166120dc5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a6f565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33612076565b6000612118826124be565b80519091506000906001600160a01b0316336001600160a01b0316148061214f57503361214484610a04565b6001600160a01b0316145b80612161575081516121619033611e0f565b9050806121cb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a6f565b846001600160a01b031682600001516001600160a01b03161461223f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a6f565b6001600160a01b0384166122a35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a6f565b6122b36000848460000151611f12565b6001600160a01b03851660009081526004602052604081208054600192906122e59084906001600160801b0316613632565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926123319185911661365a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556123b884600161345a565b6000818152600360205260409020549091506001600160a01b0316612449576123e2816000541190565b156124495760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610cf9337f000000000000000000000000000000000000000000000000000000000000dead8361210d565b60408051808201909152600080825260208201526124dd826000541190565b61253c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a6f565b60007f0000000000000000000000000000000000000000000000000000000000002710831061259d5761258f7f000000000000000000000000000000000000000000000000000000000000271084613685565b61259a90600161345a565b90505b825b818110612606576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156125f357949350505050565b50806125fe8161369c565b91505061259f565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a6f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156127ac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126fd9033908990889088906004016136b3565b6020604051808303816000875af1925050508015612738575060408051601f3d908101601f19168201909252612735918101906136f0565b60015b612792573d808015612766576040519150601f19603f3d011682016040523d82523d6000602084013e61276b565b606091505b50805161278a5760405162461bcd60e51b8152600401610a6f90613497565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127b0565b5060015b949350505050565b6060816127dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561280657806127f08161340a565b91506127ff9050600a83613723565b91506127e0565b6000816001600160401b0381111561282057612820613062565b6040519080825280601f01601f19166020018201604052801561284a576020820181803683370190505b5090505b84156127b05761285f600183613685565b915061286c600a86613737565b61287790603061345a565b60f81b81838151811061288c5761288c613425565b60200101906001600160f81b031916908160001a9053506128ae600a86613723565b945061284e565b6000806128c18461290d565b90506001600160a01b038116158015906127b05750826001600160a01b0316816001600160a01b031614949350505050565b610bfa828260405180602001604052806000815250612a64565b600080468060018114612942576089811461295e576004811461297a576201388181146129965761053981146129b2576129ca565b73a5409ec958c83c3f309868babaca7c86dcb077c192506129ca565b7358807bad0b376efc12f5ad86aac70e78ed67deae92506129ca565b73f57b2c51ded3a29e6891aba85459d600256cf31792506129ca565b73ff7ca10af37178bdd056628ef42fd7f799fac77c92506129ca565b73e1a2bbc877b29adbc56d2659dbcb0ae14ee6207192505b506001600160a01b03821615806129e15750806089145b806129ee57508062013881145b156129fa575092915050565b60405163c455279160e01b81526001600160a01b03858116600483015283169063c455279190602401602060405180830381865afa158015612a40573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b0919061374b565b6000546001600160a01b038416612ac75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a6f565b612ad2816000541190565b15612b1f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a6f565b7f0000000000000000000000000000000000000000000000000000000000002710831115612b9a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a6f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612bf690879061365a565b6001600160801b03168152602001858360200151612c14919061365a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612d335760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612cf760008884886126b9565b612d135760405162461bcd60e51b8152600401610a6f90613497565b81612d1d8161340a565b9250508080612d2b9061340a565b915050612caa565b50600081905561248b565b828054612d4a90613393565b90600052602060002090601f016020900481019282612d6c5760008555612db2565b82601f10612d8557805160ff1916838001178555612db2565b82800160010185558215612db2579182015b82811115612db2578251825591602001919060010190612d97565b5061128b9291505b8082111561128b5760008155600101612dba565b6001600160e01b031981168114610cf957600080fd5b600060208284031215612df657600080fd5b813561122681612dce565b60005b83811015612e1c578181015183820152602001612e04565b838111156119ab5750506000910152565b60008151808452612e45816020860160208601612e01565b601f01601f19169290920160200192915050565b6020815260006112266020830184612e2d565b600060208284031215612e7e57600080fd5b5035919050565b6001600160a01b0381168114610cf957600080fd5b60008060408385031215612ead57600080fd5b8235612eb881612e85565b946020939093013593505050565b60008060408385031215612ed957600080fd5b823591506020830135612eeb81612e85565b809150509250929050565b8015158114610cf957600080fd5b600060208284031215612f1657600080fd5b813561122681612ef6565b600060208284031215612f3357600080fd5b813561122681612e85565b600080600060608486031215612f5357600080fd5b8335612f5e81612e85565b92506020840135612f6e81612e85565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015612fb757835183529284019291840191600101612f9b565b50909695505050505050565b60008083601f840112612fd557600080fd5b5081356001600160401b03811115612fec57600080fd5b6020830191508360208260051b850101111561300757600080fd5b9250929050565b60008060006040848603121561302357600080fd5b833561302e81612e85565b925060208401356001600160401b0381111561304957600080fd5b61305586828701612fc3565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156130a0576130a0613062565b604052919050565b60006001600160401b038311156130c1576130c1613062565b6130d4601f8401601f1916602001613078565b90508281528383830111156130e857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561311157600080fd5b81356001600160401b0381111561312757600080fd5b8201601f8101841361313857600080fd5b6127b0848235602084016130a8565b6000806040838503121561315a57600080fd5b823561316581612e85565b91506020830135612eeb81612ef6565b6000806000806000806080878903121561318e57600080fd5b863561319981612e85565b955060208701356131a981612e85565b945060408701356001600160401b03808211156131c557600080fd5b6131d18a838b01612fc3565b909650945060608901359150808211156131ea57600080fd5b818901915089601f8301126131fe57600080fd5b81358181111561320d57600080fd5b8a602082850101111561321f57600080fd5b6020830194508093505050509295509295509295565b6000806000806080858703121561324b57600080fd5b843561325681612e85565b9350602085013561326681612e85565b92506040850135915060608501356001600160401b0381111561328857600080fd5b8501601f8101871361329957600080fd5b6132a8878235602084016130a8565b91505092959194509250565b600080604083850312156132c757600080fd5b823591506020808401356001600160401b03808211156132e657600080fd5b818601915086601f8301126132fa57600080fd5b81358181111561330c5761330c613062565b8060051b915061331d848301613078565b818152918301840191848101908984111561333757600080fd5b938501935b838510156133555784358252938501939085019061333c565b8096505050505050509250929050565b6000806040838503121561337857600080fd5b823561338381612e85565b91506020830135612eeb81612e85565b600181811c908216806133a757607f821691505b602082108114156133c857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600c908201526b155b985d5d1a1bdc9a5e995960a21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561341e5761341e6133f4565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613455576134556133f4565b500290565b6000821982111561346d5761346d6133f4565b500190565b6020808252600b908201526a08af0c6cacac8e640dac2f60ab1b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206134fd8285838a01612e01565b8551918401916135108184848a01612e01565b8554920191600090600181811c908083168061352d57607f831692505b85831081141561354b57634e487b7160e01b85526022600452602485fd5b80801561355f57600181146135705761359d565b60ff1985168852838801955061359d565b60008b81526020902060005b858110156135955781548a82015290840190880161357c565b505083880195505b50939b9a5050505050505050505050565b6000602082840312156135c057600080fd5b5051919050565b6000604082018483526020604081850152818551808452606086019150828701935060005b81811015613608578451835293830193918301916001016135ec565b5090979650505050505050565b60006020828403121561362757600080fd5b815161122681612ef6565b60006001600160801b0383811690831681811015613652576136526133f4565b039392505050565b60006001600160801b0380831681851680830382111561367c5761367c6133f4565b01949350505050565b600082821015613697576136976133f4565b500390565b6000816136ab576136ab6133f4565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136e690830184612e2d565b9695505050505050565b60006020828403121561370257600080fd5b815161122681612dce565b634e487b7160e01b600052601260045260246000fd5b6000826137325761373261370d565b500490565b6000826137465761374661370d565b500690565b60006020828403121561375d57600080fd5b815161122681612e8556fea26469706673582212200021837cd67885cfc35317c3d47b34ccffd6ec3bb38ef98c14c7e2e0cd97c1ee64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000085a6f6f766572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a4f4f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Zooverse
Arg [1] : symbol (string): ZOO
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 5a6f6f7665727365000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5a4f4f0000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.