Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
5,050 LIZARD
Holders
1,632
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 LIZARDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Lizards
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@##%@@ @%&(((((@@#(((((&@ #@@@ @(#**@*@*@/#@ @@ /#/*@**@****(@&@@ @@ @. @(@**@/@*@/#@ &@ @ . @@. @@#(///(#@ @@ @@.... @@, @ @@..... @@@@ @ @...... @ @, @@ @... . . @@ @@..... &@ @@....... (@ @@....... @. @@....... @ @@.... @. @@... . @@ @@.... . @@ @....... @@ @......... @@ @@.......... @@ @@............. @@@@ @@ @................. (@@ @# @@................. @@ @@ @@................... @, &@ @@ @*.....*@................@.. @@ @@ @........@..................@@ @ @. @..........@.....................@@. @ /@ &@..........@@@@....................... @@@@ @, @ @@.........@@ @@...................... . @ %@ @ .@.........@. *@...................... .@ @@ @ @@........@ ,@@.....................@. @ @( @@@@@@@@@ @@@@@@@@@@@ @% .@ @@ @@ @@@@@@@@@& @@@ @@@@@@@@@@ @@@@@@@@ #@@@@@@@ @. @ @% .@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@@@@@@@@ @ @@@@@@@@@@ @@ @@ @@ @@ @@ @@ .@@@ @@ @@ @@@@@@ @. @ @% .@ @@ @@ @@ @@@@@@@@@ @@ @@@ @@ @@ @@ @. @ @% .@ @@ @@ @@ @@ @@ @@ @@ @@ @@ @@ %@ @@@@@@@@@@ @ @% .@ @@@@@@@@@ @@ @@@@@@@@@@@@@ @@ @@ @@ @@@@@# @@@@( + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + + Web: ethlizards.io Underground Lizard Lounge Discord: https://discord.com/invite/ethlizards Developer: Sp1cySauce - Discord: SpicySauce#1615 - Twitter: @SaucyCrypto Props: Chance - for Optimizations */ pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721Enumerable.sol"; contract Lizards is ERC721Enumerable, Ownable { string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; string public foundersURI; string public auctionURI; address public proxyRegistryAddress; address public bettyFromAccounting; bytes32 public OGMerkleRoot; bytes32 public whitelistMerkleRoot; mapping(address => bool) public projectProxy; mapping(address => uint256) public OGMinted; mapping(address => uint256) public WLMinted; uint256 public maxLizardSupply = 5051; //Actial Max Supply is 5050 uint256 public constant maxLizardPerMint = 11; //Actual Max Mint Amount is 10 uint256 public constant cost = 0.06 ether; uint256 public constant auctionReservations = 5; uint256 public constant teamReservations = 100; uint256 public constant foundersReservations = 10; bool public revealed = false; bool public onlyOGMints = false; bool public onlyWLMints = false; bool public publicMint = false; constructor( string memory _BaseURI, string memory _NotRevealedUri, string memory _FoundersURI, string memory _AuctionURI, address _proxyRegistryAddress, address _bettyFromAccounting ) ERC721("Ethlizards", "LIZARD") { setBaseURI(_BaseURI); setNotRevealedURI(_NotRevealedUri); setFoundersURI(_FoundersURI); setAuctionURI(_AuctionURI); proxyRegistryAddress = _proxyRegistryAddress; bettyFromAccounting = _bettyFromAccounting; } function _baseURI() internal view virtual returns (string memory) { return baseURI; } function _foundersURI() internal view virtual returns (string memory) { return foundersURI; } function _auctionURI() internal view virtual returns (string memory) { return auctionURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setFoundersURI(string memory _newFoundersURI) public onlyOwner { foundersURI = _newFoundersURI; } function setAuctionURI(string memory _newAuctionURI) public onlyOwner { auctionURI = _newAuctionURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner { proxyRegistryAddress = _proxyRegistryAddress; } function flipProxyState(address proxyAddress) public onlyOwner { projectProxy[proxyAddress] = !projectProxy[proxyAddress]; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Token does not exist"); if (tokenId < foundersReservations) { string memory currentfoundersURI = _foundersURI(); return bytes(currentfoundersURI).length > 0 ? string( abi.encodePacked( currentfoundersURI, Strings.toString(tokenId), baseExtension ) ) : ""; } if ( tokenId >= foundersReservations && tokenId < (foundersReservations + auctionReservations) ) { string memory currentAuctionURI = _auctionURI(); return bytes(currentAuctionURI).length > 0 ? string( abi.encodePacked( currentAuctionURI, Strings.toString(tokenId), baseExtension ) ) : ""; } if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), baseExtension ) ) : ""; } function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { whitelistMerkleRoot = _whitelistMerkleRoot; } function setOGMerkleRoot(bytes32 _OGMerkleRoot) external onlyOwner { OGMerkleRoot = _OGMerkleRoot; } function setOnlyOGMints(bool _state) public onlyOwner { onlyOGMints = _state; } function setOnlyWLMints(bool _state) public onlyOwner { onlyWLMints = _state; } function setPublicSale(bool _state) public onlyOwner { publicMint = _state; } function reveal(bool _state) public onlyOwner { revealed = _state; } function setMaxLizards(uint256 _maxLizardAmount) public onlyOwner { maxLizardSupply = _maxLizardAmount; } function _OGVerify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, OGMerkleRoot, leaf); } function OGmint( uint256 _mintAmount, uint256 allowance, bytes32[] calldata proof ) public payable { bytes32 OGLeaf = keccak256(abi.encodePacked(msg.sender, allowance)); require(_OGVerify(OGLeaf, proof), "Invalid Proof Supplied."); require( OGMinted[msg.sender] + _mintAmount <= allowance, "Exceeds OG mint allowance" ); require(onlyOGMints, "OG minting must be active to mint"); OGMinted[msg.sender] += _mintAmount; uint256 totalSupply = _owners.length; for (uint256 i; i < _mintAmount; i++) { _mint(_msgSender(), totalSupply + i); } } function _WlVerify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, whitelistMerkleRoot, leaf); } function WLmint( uint256 _mintAmount, uint256 allowance, bytes32[] calldata proof ) public payable { bytes32 WLLeaf = keccak256(abi.encodePacked(msg.sender, allowance)); require(_WlVerify(WLLeaf, proof), "Invalid Proof Supplied."); require( WLMinted[msg.sender] + _mintAmount <= allowance, "Exceeds white list mint Allowance" ); require(onlyWLMints, "White list minting must be active to mint"); require(msg.value == cost * _mintAmount, "Wrong amount of Ether sent"); WLMinted[msg.sender] += _mintAmount; uint256 totalSupply = _owners.length; for (uint256 i; i < _mintAmount; i++) { _mint(_msgSender(), totalSupply + i); } } function mint(uint256 _mintAmount) public payable { uint256 totalSupply = _owners.length; require(publicMint, "Public minting is not currently available"); //ensure Public Mint is on require( _mintAmount < maxLizardPerMint, "max mint amount per mint exceeded" ); require( totalSupply + _mintAmount < maxLizardSupply, "Sorry, this would exceed maximum Lizard mints" ); //require that the max number has not been exceeded require(msg.value == cost * _mintAmount, "Wrong amount of Ether sent"); for (uint256 i; i < _mintAmount; i++) { _mint(_msgSender(), totalSupply + i); } } function collectFoundersReserves() external onlyOwner { require(_owners.length == 0, "Reserves already taken."); for (uint256 i; i < foundersReservations; i++) { _mint(_msgSender(), i); } } function collectAuctionReserves() external onlyOwner { require( _owners.length == foundersReservations, "Reserves already taken." ); uint256 totalSupply = _owners.length; for (uint256 i; i < auctionReservations; i++) { _mint(_msgSender(), totalSupply + i); } } function collectTeamReserves() external onlyOwner { require( _owners.length == foundersReservations + auctionReservations, "Reserves already taken." ); uint256 totalSupply = _owners.length; for (uint256 i; i < teamReservations; i++) { _mint(_msgSender(), totalSupply + i); } } function withdraw() public { (bool success, ) = bettyFromAccounting.call{ value: address(this).balance }(""); require(success, "Failed to send to Betty."); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) return new uint256[](0); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function burn(uint256 tokenId) public { require( _isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn." ); _burn(tokenId); } function batchTransferFrom( address _from, address _to, uint256[] memory _tokenIds ) public { for (uint256 i = 0; i < _tokenIds.length; i++) { transferFrom(_from, _to, _tokenIds[i]); } } function batchSafeTransferFrom( address _from, address _to, uint256[] memory _tokenIds, bytes memory data_ ) public { for (uint256 i = 0; i < _tokenIds.length; i++) { safeTransferFrom(_from, _to, _tokenIds[i], data_); } } function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool) { for (uint256 i; i < _tokenIds.length; ++i) { if (_owners[_tokenIds[i]] != account) return false; } return true; } function isApprovedForAll(address _owner, address operator) public view override returns (bool) { OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry( proxyRegistryAddress ); if ( address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator] ) return true; return super.isApprovedForAll(_owner, operator); } function _mint(address to, uint256 tokenId) internal virtual override { _owners.push(to); emit Transfer(address(0), to, tokenId); } } contract OwnableDelegateProxy {} contract OpenSeaProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// 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 (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 pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "./Address.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; // Mapping from token ID to owner address address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ) ++count; } return count; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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 pragma solidity ^0.8.6; library Address { function isContract(address account) internal view returns (bool) { uint size; assembly { size := extcodesize(account) } return size > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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 (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/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/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 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_BaseURI","type":"string"},{"internalType":"string","name":"_NotRevealedUri","type":"string"},{"internalType":"string","name":"_FoundersURI","type":"string"},{"internalType":"string","name":"_AuctionURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_bettyFromAccounting","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OGMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OGMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"OGmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WLMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"WLmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auctionReservations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bettyFromAccounting","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectAuctionReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectFoundersReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectTeamReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"foundersReservations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foundersURI","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":"maxLizardPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLizardSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyOGMints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWLMints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newAuctionURI","type":"string"}],"name":"setAuctionURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newFoundersURI","type":"string"}],"name":"setFoundersURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLizardAmount","type":"uint256"}],"name":"setMaxLizards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_OGMerkleRoot","type":"bytes32"}],"name":"setOGMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyOGMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWLMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReservations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600791906200032b565b506113bb6012556013805463ffffffff191690553480156200004957600080fd5b5060405162003bb038038062003bb08339810160408190526200006c91620004a5565b604080518082018252600a8152694574686c697a6172647360b01b60208083019182528351808501909452600684526513125690549160d21b908401528151919291620000bc916000916200032b565b508051620000d29060019060208401906200032b565b505050620000ef620000e96200015260201b60201c565b62000156565b620000fa86620001a8565b620001058562000210565b620001108462000270565b6200011b83620002d0565b600b80546001600160a01b039384166001600160a01b031991821617909155600c805492909316911617905550620005d592505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001f75760405162461bcd60e51b8152602060048201819052602482015260008051602062003b9083398151915260448201526064015b60405180910390fd5b80516200020c9060069060208401906200032b565b5050565b6005546001600160a01b031633146200025b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003b908339815191526044820152606401620001ee565b80516200020c9060089060208401906200032b565b6005546001600160a01b03163314620002bb5760405162461bcd60e51b8152602060048201819052602482015260008051602062003b908339815191526044820152606401620001ee565b80516200020c9060099060208401906200032b565b6005546001600160a01b031633146200031b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003b908339815191526044820152606401620001ee565b80516200020c90600a9060208401905b828054620003399062000582565b90600052602060002090601f0160209004810192826200035d5760008555620003a8565b82601f106200037857805160ff1916838001178555620003a8565b82800160010185558215620003a8579182015b82811115620003a85782518255916020019190600101906200038b565b50620003b6929150620003ba565b5090565b5b80821115620003b65760008155600101620003bb565b80516001600160a01b0381168114620003e957600080fd5b919050565b600082601f8301126200040057600080fd5b81516001600160401b03808211156200041d576200041d620005bf565b604051601f8301601f19908116603f01168101908282118183101715620004485762000448620005bf565b816040528381526020925086838588010111156200046557600080fd5b600091505b838210156200048957858201830151818301840152908201906200046a565b838211156200049b5760008385830101525b9695505050505050565b60008060008060008060c08789031215620004bf57600080fd5b86516001600160401b0380821115620004d757600080fd5b620004e58a838b01620003ee565b97506020890151915080821115620004fc57600080fd5b6200050a8a838b01620003ee565b965060408901519150808211156200052157600080fd5b6200052f8a838b01620003ee565b955060608901519150808211156200054657600080fd5b506200055589828a01620003ee565b9350506200056660808801620003d1565b91506200057660a08801620003d1565b90509295509295509295565b600181811c908216806200059757607f821691505b60208210811415620005b957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6135ab80620005e56000396000f3fe6080604052600436106103e45760003560e01c806370a0823111610208578063c738e9c511610118578063e3821abf116100ab578063f3993d111161007a578063f3993d1114610b32578063f73c814b14610b52578063fa4418fd14610b72578063fb06668314610b92578063fbe809ef14610ba757600080fd5b8063e3821abf14610aa5578063e985e9c514610ad2578063f2c4ce1e14610af2578063f2fde38b14610b1257600080fd5b8063cd7c0326116100e7578063cd7c032614610a30578063d26ea6c014610a50578063da3ef23f14610a70578063e2036c2f14610a9057600080fd5b8063c738e9c5146109bd578063c87b56dd146109dd578063caea53aa146109fd578063cd13d21614610a1057600080fd5b8063998521231161019b578063b88d4fde1161016a578063b88d4fde14610933578063bb83221f14610953578063bd32fb6614610973578063c44ae70a14610993578063c6682862146109a857600080fd5b806399852123146108d5578063a0712d68146108ea578063a22cb465146108fd578063aa98e0c61461091d57600080fd5b80638ec48215116101d75780638ec4821514610878578063940cd05b1461088d57806395d89b41146108ad57806398f2fc1a146108c257600080fd5b806370a082311461080f578063715018a61461082f57806383df8d8d146108445780638da5cb5b1461085a57600080fd5b806342842e0e1161030357806351830227116102965780635bab26e2116102655780635bab26e2146107755780636352211e146107a55780636c0360eb146107c55780636e0db0ed146107da5780636f00c60f146107ef57600080fd5b806351830227146106fb57806355f804b3146107155780635a4fee30146107355780635aca1bb61461075557600080fd5b80634d44660c116102d25780634d44660c1461066e5780634e48340c1461068e5780634f6ccce7146106ae57806350a9f9c6146106ce57600080fd5b806342842e0e146105ec57806342966c681461060c578063438b63001461062c5780634a5a652d1461065957600080fd5b80631e18dc9d1161037b5780632f745c591161034a5780632f745c5914610583578063309e3414146105a35780633ccfd60b146105c25780633f7aec99146105d757600080fd5b80631e18dc9d1461050257806323b872dd1461052257806325c2c0201461054257806326092b831461056257600080fd5b8063095ea7b3116103b7578063095ea7b31461048d578063105e65b1146104af57806313faede6146104d257806318160ddd146104ed57600080fd5b806301ffc9a7146103e957806306fdde031461041e578063081812fc14610440578063081c8c4414610478575b600080fd5b3480156103f557600080fd5b50610409610404366004612ff8565b610bbd565b60405190151581526020015b60405180910390f35b34801561042a57600080fd5b50610433610be8565b604051610415919061325c565b34801561044c57600080fd5b5061046061045b366004612fdf565b610c7a565b6040516001600160a01b039091168152602001610415565b34801561048457600080fd5b50610433610d07565b34801561049957600080fd5b506104ad6104a8366004612f98565b610d95565b005b3480156104bb57600080fd5b506104c4600581565b604051908152602001610415565b3480156104de57600080fd5b506104c466d529ae9e86000081565b3480156104f957600080fd5b506002546104c4565b34801561050e57600080fd5b506104ad61051d366004612fdf565b610eab565b34801561052e57600080fd5b506104ad61053d366004612e6d565b610eda565b34801561054e57600080fd5b506104ad61055d366004612fdf565b610f0c565b34801561056e57600080fd5b50601354610409906301000000900460ff1681565b34801561058f57600080fd5b506104c461059e366004612f98565b610f3b565b3480156105af57600080fd5b5060135461040990610100900460ff1681565b3480156105ce57600080fd5b506104ad610fee565b3480156105e357600080fd5b506104ad611094565b3480156105f857600080fd5b506104ad610607366004612e6d565b611106565b34801561061857600080fd5b506104ad610627366004612fdf565b611121565b34801561063857600080fd5b5061064c610647366004612d2c565b611177565b6040516104159190613218565b34801561066557600080fd5b506104ad611230565b34801561067a57600080fd5b50610409610689366004612f0e565b6112b5565b34801561069a57600080fd5b506104ad6106a936600461304f565b611337565b3480156106ba57600080fd5b506104c46106c9366004612fdf565b611374565b3480156106da57600080fd5b506104c46106e9366004612d2c565b60106020526000908152604090205481565b34801561070757600080fd5b506013546104099060ff1681565b34801561072157600080fd5b506104ad61073036600461304f565b6113e1565b34801561074157600080fd5b506104ad610750366004612de4565b61141e565b34801561076157600080fd5b506104ad610770366004612fc4565b611468565b34801561078157600080fd5b50610409610790366004612d2c565b600f6020526000908152604090205460ff1681565b3480156107b157600080fd5b506104606107c0366004612fdf565b6114b0565b3480156107d157600080fd5b5061043361153c565b3480156107e657600080fd5b506104c4600a81565b3480156107fb57600080fd5b506104ad61080a366004612fc4565b611549565b34801561081b57600080fd5b506104c461082a366004612d2c565b61158d565b34801561083b57600080fd5b506104ad61165b565b34801561085057600080fd5b506104c4600d5481565b34801561086657600080fd5b506005546001600160a01b0316610460565b34801561088457600080fd5b50610433611691565b34801561089957600080fd5b506104ad6108a8366004612fc4565b61169e565b3480156108b957600080fd5b506104336116db565b6104ad6108d0366004613098565b6116ea565b3480156108e157600080fd5b506104336118cf565b6104ad6108f8366004612fdf565b6118dc565b34801561090957600080fd5b506104ad610918366004612f63565b611a99565b34801561092957600080fd5b506104c4600e5481565b34801561093f57600080fd5b506104ad61094e366004612eae565b611b5e565b34801561095f57600080fd5b50600c54610460906001600160a01b031681565b34801561097f57600080fd5b506104ad61098e366004612fdf565b611b96565b34801561099f57600080fd5b506104ad611bc5565b3480156109b457600080fd5b50610433611c45565b3480156109c957600080fd5b506104ad6109d836600461304f565b611c52565b3480156109e957600080fd5b506104336109f8366004612fdf565b611c8f565b6104ad610a0b366004613098565b611e14565b348015610a1c57600080fd5b506104ad610a2b366004612fc4565b612062565b348015610a3c57600080fd5b50600b54610460906001600160a01b031681565b348015610a5c57600080fd5b506104ad610a6b366004612d2c565b6120a8565b348015610a7c57600080fd5b506104ad610a8b36600461304f565b6120f4565b348015610a9c57600080fd5b506104c4606481565b348015610ab157600080fd5b506104c4610ac0366004612d2c565b60116020526000908152604090205481565b348015610ade57600080fd5b50610409610aed366004612d49565b612131565b348015610afe57600080fd5b506104ad610b0d36600461304f565b612224565b348015610b1e57600080fd5b506104ad610b2d366004612d2c565b612261565b348015610b3e57600080fd5b506104ad610b4d366004612d82565b6122f9565b348015610b5e57600080fd5b506104ad610b6d366004612d2c565b61233b565b348015610b7e57600080fd5b506013546104099062010000900460ff1681565b348015610b9e57600080fd5b506104c4600b81565b348015610bb357600080fd5b506104c460125481565b60006001600160e01b0319821663780e9d6360e01b1480610be25750610be28261238e565b92915050565b606060008054610bf790613488565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2390613488565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b5050505050905090565b6000610c85826123de565b610ceb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60088054610d1490613488565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4090613488565b8015610d8d5780601f10610d6257610100808354040283529160200191610d8d565b820191906000526020600020905b815481529060010190602001808311610d7057829003601f168201915b505050505081565b6000610da0826114b0565b9050806001600160a01b0316836001600160a01b03161415610e0e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ce2565b336001600160a01b0382161480610e2a5750610e2a8133612131565b610e9c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ce2565b610ea68383612428565b505050565b6005546001600160a01b03163314610ed55760405162461bcd60e51b8152600401610ce29061330c565b601255565b610ee5335b82612496565b610f015760405162461bcd60e51b8152600401610ce290613378565b610ea6838383612558565b6005546001600160a01b03163314610f365760405162461bcd60e51b8152600401610ce29061330c565b600d55565b6000610f468361158d565b8210610f645760405162461bcd60e51b8152600401610ce29061326f565b6000805b600254811015610fd55760028181548110610f8557610f8561351e565b6000918252602090912001546001600160a01b0386811691161415610fc35783821415610fb5579150610be29050565b81610fbf816134c3565b9250505b80610fcd816134c3565b915050610f68565b5060405162461bcd60e51b8152600401610ce29061326f565b600c546040516000916001600160a01b03169047908381818185875af1925050503d806000811461103b576040519150601f19603f3d011682016040523d82523d6000602084013e611040565b606091505b50509050806110915760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f2042657474792e00000000000000006044820152606401610ce2565b50565b6005546001600160a01b031633146110be5760405162461bcd60e51b8152600401610ce29061330c565b600254156110de5760405162461bcd60e51b8152600401610ce290613341565b60005b600a811015611091576110f433826126ae565b806110fe816134c3565b9150506110e1565b610ea683838360405180602001604052806000815250611b5e565b61112a33610edf565b61116e5760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610ce2565b6110918161272a565b606060006111848361158d565b9050806111a55760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156111c0576111c0613534565b6040519080825280602002602001820160405280156111e9578160200160208202803683370190505b50905060005b8281101561119d576112018582610f3b565b8282815181106112135761121361351e565b602090810291909101015280611228816134c3565b9150506111ef565b6005546001600160a01b0316331461125a5760405162461bcd60e51b8152600401610ce29061330c565b600254600a1461127c5760405162461bcd60e51b8152600401610ce290613341565b60025460005b60058110156112b15761129f335b61129a83856133fa565b6126ae565b806112a9816134c3565b915050611282565b5050565b6000805b8281101561132a57846001600160a01b031660028585848181106112df576112df61351e565b90506020020135815481106112f6576112f661351e565b6000918252602090912001546001600160a01b03161461131a576000915050611330565b611323816134c3565b90506112b9565b50600190505b9392505050565b6005546001600160a01b031633146113615760405162461bcd60e51b8152600401610ce29061330c565b80516112b190600a906020840190612b3d565b60025460009082106113dd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ce2565b5090565b6005546001600160a01b0316331461140b5760405162461bcd60e51b8152600401610ce29061330c565b80516112b1906006906020840190612b3d565b60005b82518110156114615761144f85858584815181106114415761144161351e565b602002602001015185611b5e565b80611459816134c3565b915050611421565b5050505050565b6005546001600160a01b031633146114925760405162461bcd60e51b8152600401610ce29061330c565b6013805491151563010000000263ff00000019909216919091179055565b600080600283815481106114c6576114c661351e565b6000918252602090912001546001600160a01b0316905080610be25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ce2565b60068054610d1490613488565b6005546001600160a01b031633146115735760405162461bcd60e51b8152600401610ce29061330c565b601380549115156101000261ff0019909216919091179055565b60006001600160a01b0382166115f85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ce2565b6000805b60025481101561165457600281815481106116195761161961351e565b6000918252602090912001546001600160a01b038581169116141561164457611641826134c3565b91505b61164d816134c3565b90506115fc565b5092915050565b6005546001600160a01b031633146116855760405162461bcd60e51b8152600401610ce29061330c565b61168f60006127ac565b565b60098054610d1490613488565b6005546001600160a01b031633146116c85760405162461bcd60e51b8152600401610ce29061330c565b6013805460ff1916911515919091179055565b606060018054610bf790613488565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050611767818484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506127fe92505050565b6117ad5760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210283937b7b31029bab8383634b2b21760491b6044820152606401610ce2565b3360009081526010602052604090205484906117ca9087906133fa565b11156118185760405162461bcd60e51b815260206004820152601960248201527f45786365656473204f47206d696e7420616c6c6f77616e6365000000000000006044820152606401610ce2565b601354610100900460ff166118795760405162461bcd60e51b815260206004820152602160248201527f4f47206d696e74696e67206d7573742062652061637469766520746f206d696e6044820152601d60fa1b6064820152608401610ce2565b33600090815260106020526040812080548792906118989084906133fa565b909155505060025460005b868110156118c6576118b433611290565b806118be816134c3565b9150506118a3565b50505050505050565b600a8054610d1490613488565b6002546013546301000000900460ff1661194a5760405162461bcd60e51b815260206004820152602960248201527f5075626c6963206d696e74696e67206973206e6f742063757272656e746c7920604482015268617661696c61626c6560b81b6064820152608401610ce2565b600b82106119a45760405162461bcd60e51b815260206004820152602160248201527f6d6178206d696e7420616d6f756e7420706572206d696e7420657863656564656044820152601960fa1b6064820152608401610ce2565b6012546119b183836133fa565b10611a145760405162461bcd60e51b815260206004820152602d60248201527f536f7272792c207468697320776f756c6420657863656564206d6178696d756d60448201526c204c697a617264206d696e747360981b6064820152608401610ce2565b611a258266d529ae9e860000613426565b3414611a735760405162461bcd60e51b815260206004820152601a60248201527f57726f6e6720616d6f756e74206f662045746865722073656e740000000000006044820152606401610ce2565b60005b82811015610ea657611a8733611290565b80611a91816134c3565b915050611a76565b6001600160a01b038216331415611af25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ce2565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b683383612496565b611b845760405162461bcd60e51b8152600401610ce290613378565b611b908484848461280d565b50505050565b6005546001600160a01b03163314611bc05760405162461bcd60e51b8152600401610ce29061330c565b600e55565b6005546001600160a01b03163314611bef5760405162461bcd60e51b8152600401610ce29061330c565b611bfb6005600a6133fa565b60025414611c1b5760405162461bcd60e51b8152600401610ce290613341565b60025460005b60648110156112b157611c3333611290565b80611c3d816134c3565b915050611c21565b60078054610d1490613488565b6005546001600160a01b03163314611c7c5760405162461bcd60e51b8152600401610ce29061330c565b80516112b1906009906020840190612b3d565b6060611c9a826123de565b611cdd5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610ce2565b600a821015611d44576000611cf0612840565b90506000815111611d105760405180602001604052806000815250611330565b80611d1a8461284f565b6007604051602001611d2e93929190613117565b6040516020818303038152906040529392505050565b600a8210158015611d5f5750611d5c6005600a6133fa565b82105b15611d6e576000611cf061294d565b60135460ff16611e0a5760088054611d8590613488565b80601f0160208091040260200160405190810160405280929190818152602001828054611db190613488565b8015611dfe5780601f10611dd357610100808354040283529160200191611dfe565b820191906000526020600020905b815481529060010190602001808311611de157829003601f168201915b50505050509050919050565b6000611cf061295c565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050611e918184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061296b92505050565b611ed75760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210283937b7b31029bab8383634b2b21760491b6044820152606401610ce2565b336000908152601160205260409020548490611ef49087906133fa565b1115611f4c5760405162461bcd60e51b815260206004820152602160248201527f45786365656473207768697465206c697374206d696e7420416c6c6f77616e636044820152606560f81b6064820152608401610ce2565b60135462010000900460ff16611fb65760405162461bcd60e51b815260206004820152602960248201527f5768697465206c697374206d696e74696e67206d75737420626520616374697660448201526819481d1bc81b5a5b9d60ba1b6064820152608401610ce2565b611fc78566d529ae9e860000613426565b34146120155760405162461bcd60e51b815260206004820152601a60248201527f57726f6e6720616d6f756e74206f662045746865722073656e740000000000006044820152606401610ce2565b33600090815260116020526040812080548792906120349084906133fa565b909155505060025460005b868110156118c65761205033611290565b8061205a816134c3565b91505061203f565b6005546001600160a01b0316331461208c5760405162461bcd60e51b8152600401610ce29061330c565b60138054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146120d25760405162461bcd60e51b8152600401610ce29061330c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461211e5760405162461bcd60e51b8152600401610ce29061330c565b80516112b1906007906020840190612b3d565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561217e57600080fd5b505afa158015612192573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b69190613032565b6001600160a01b031614806121e357506001600160a01b0383166000908152600f602052604090205460ff165b156121f2576001915050610be2565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b0316331461224e5760405162461bcd60e51b8152600401610ce29061330c565b80516112b1906008906020840190612b3d565b6005546001600160a01b0316331461228b5760405162461bcd60e51b8152600401610ce29061330c565b6001600160a01b0381166122f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce2565b611091816127ac565b60005b8151811015611b9057612329848484848151811061231c5761231c61351e565b6020026020010151610eda565b80612333816134c3565b9150506122fc565b6005546001600160a01b031633146123655760405162461bcd60e51b8152600401610ce29061330c565b6001600160a01b03166000908152600f60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b14806123bf57506001600160e01b03198216635b5e139f60e01b145b80610be257506301ffc9a760e01b6001600160e01b0319831614610be2565b60025460009082108015610be2575060006001600160a01b03166002838154811061240b5761240b61351e565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061245d826114b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124a1826123de565b6125025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ce2565b600061250d836114b0565b9050806001600160a01b0316846001600160a01b031614806125485750836001600160a01b031661253d84610c7a565b6001600160a01b0316145b8061221c575061221c8185612131565b826001600160a01b031661256b826114b0565b6001600160a01b0316146125d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ce2565b6001600160a01b0382166126355760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ce2565b612640600082612428565b81600282815481106126545761265461351e565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000612735826114b0565b9050612742600083612428565b6000600283815481106127575761275761351e565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061133082600d5485612976565b612818848484612558565b6128248484848461298c565b611b905760405162461bcd60e51b8152600401610ce2906132ba565b606060098054610bf790613488565b6060816128735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561289d5780612887816134c3565b91506128969050600a83613412565b9150612877565b60008167ffffffffffffffff8111156128b8576128b8613534565b6040519080825280601f01601f1916602001820160405280156128e2576020820181803683370190505b5090505b841561221c576128f7600183613445565b9150612904600a866134de565b61290f9060306133fa565b60f81b8183815181106129245761292461351e565b60200101906001600160f81b031916908160001a905350612946600a86613412565b94506128e6565b6060600a8054610bf790613488565b606060068054610bf790613488565b600061133082600e54855b6000826129838584612a99565b14949350505050565b60006001600160a01b0384163b15612a8e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129d09033908990889088906004016131db565b602060405180830381600087803b1580156129ea57600080fd5b505af1925050508015612a1a575060408051601f3d908101601f19168201909252612a1791810190613015565b60015b612a74573d808015612a48576040519150601f19603f3d011682016040523d82523d6000602084013e612a4d565b606091505b508051612a6c5760405162461bcd60e51b8152600401610ce2906132ba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061221c565b506001949350505050565b600081815b845181101561119d576000858281518110612abb57612abb61351e565b60200260200101519050808311612afd576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612b2a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612b35816134c3565b915050612a9e565b828054612b4990613488565b90600052602060002090601f016020900481019282612b6b5760008555612bb1565b82601f10612b8457805160ff1916838001178555612bb1565b82800160010185558215612bb1579182015b82811115612bb1578251825591602001919060010190612b96565b506113dd9291505b808211156113dd5760008155600101612bb9565b600067ffffffffffffffff831115612be757612be7613534565b612bfa601f8401601f19166020016133c9565b9050828152838383011115612c0e57600080fd5b828260208301376000602084830101529392505050565b60008083601f840112612c3757600080fd5b50813567ffffffffffffffff811115612c4f57600080fd5b6020830191508360208260051b8501011115612c6a57600080fd5b9250929050565b600082601f830112612c8257600080fd5b8135602067ffffffffffffffff821115612c9e57612c9e613534565b8160051b612cad8282016133c9565b838152828101908684018388018501891015612cc857600080fd5b600093505b85841015612ceb578035835260019390930192918401918401612ccd565b50979650505050505050565b80358015158114612d0757600080fd5b919050565b600082601f830112612d1d57600080fd5b61133083833560208501612bcd565b600060208284031215612d3e57600080fd5b81356113308161354a565b60008060408385031215612d5c57600080fd5b8235612d678161354a565b91506020830135612d778161354a565b809150509250929050565b600080600060608486031215612d9757600080fd5b8335612da28161354a565b92506020840135612db28161354a565b9150604084013567ffffffffffffffff811115612dce57600080fd5b612dda86828701612c71565b9150509250925092565b60008060008060808587031215612dfa57600080fd5b8435612e058161354a565b93506020850135612e158161354a565b9250604085013567ffffffffffffffff80821115612e3257600080fd5b612e3e88838901612c71565b93506060870135915080821115612e5457600080fd5b50612e6187828801612d0c565b91505092959194509250565b600080600060608486031215612e8257600080fd5b8335612e8d8161354a565b92506020840135612e9d8161354a565b929592945050506040919091013590565b60008060008060808587031215612ec457600080fd5b8435612ecf8161354a565b93506020850135612edf8161354a565b925060408501359150606085013567ffffffffffffffff811115612f0257600080fd5b612e6187828801612d0c565b600080600060408486031215612f2357600080fd5b8335612f2e8161354a565b9250602084013567ffffffffffffffff811115612f4a57600080fd5b612f5686828701612c25565b9497909650939450505050565b60008060408385031215612f7657600080fd5b8235612f818161354a565b9150612f8f60208401612cf7565b90509250929050565b60008060408385031215612fab57600080fd5b8235612fb68161354a565b946020939093013593505050565b600060208284031215612fd657600080fd5b61133082612cf7565b600060208284031215612ff157600080fd5b5035919050565b60006020828403121561300a57600080fd5b81356113308161355f565b60006020828403121561302757600080fd5b81516113308161355f565b60006020828403121561304457600080fd5b81516113308161354a565b60006020828403121561306157600080fd5b813567ffffffffffffffff81111561307857600080fd5b8201601f8101841361308957600080fd5b61221c84823560208401612bcd565b600080600080606085870312156130ae57600080fd5b8435935060208501359250604085013567ffffffffffffffff8111156130d357600080fd5b6130df87828801612c25565b95989497509550505050565b6000815180845261310381602086016020860161345c565b601f01601f19169290920160200192915050565b60008451602061312a8285838a0161345c565b85519184019161313d8184848a0161345c565b8554920191600090600181811c908083168061315a57607f831692505b85831081141561317857634e487b7160e01b85526022600452602485fd5b80801561318c576001811461319d576131ca565b60ff198516885283880195506131ca565b60008b81526020902060005b858110156131c25781548a8201529084019088016131a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061320e908301846130eb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561325057835183529284019291840191600101613234565b50909695505050505050565b60208152600061133060208301846130eb565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f526573657276657320616c72656164792074616b656e2e000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133f2576133f2613534565b604052919050565b6000821982111561340d5761340d6134f2565b500190565b60008261342157613421613508565b500490565b6000816000190483118215151615613440576134406134f2565b500290565b600082821015613457576134576134f2565b500390565b60005b8381101561347757818101518382015260200161345f565b83811115611b905750506000910152565b600181811c9082168061349c57607f821691505b602082108114156134bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134d7576134d76134f2565b5060010190565b6000826134ed576134ed613508565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461109157600080fd5b6001600160e01b03198116811461109157600080fdfea2646970667358221220dbf133dbfbdf80500fbef8fa56a0e7c3b46346a502607601644bb73ed037d3a764736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000f310af8e149d8bc306fcea7df041ee6086418fc00000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6167584d386e33797a485565736a68664556597369766445324a55706d34717a5835665563535275523344642f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6167584d386e33797a485565736a68664556597369766445324a55706d34717a5835665563535275523344642f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5561476841394276324b756e477950346f43674b79396e47467957454272476466655a546e514d74466844782f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6167584d386e33797a485565736a68664556597369766445324a55706d34717a5835665563535275523344642f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103e45760003560e01c806370a0823111610208578063c738e9c511610118578063e3821abf116100ab578063f3993d111161007a578063f3993d1114610b32578063f73c814b14610b52578063fa4418fd14610b72578063fb06668314610b92578063fbe809ef14610ba757600080fd5b8063e3821abf14610aa5578063e985e9c514610ad2578063f2c4ce1e14610af2578063f2fde38b14610b1257600080fd5b8063cd7c0326116100e7578063cd7c032614610a30578063d26ea6c014610a50578063da3ef23f14610a70578063e2036c2f14610a9057600080fd5b8063c738e9c5146109bd578063c87b56dd146109dd578063caea53aa146109fd578063cd13d21614610a1057600080fd5b8063998521231161019b578063b88d4fde1161016a578063b88d4fde14610933578063bb83221f14610953578063bd32fb6614610973578063c44ae70a14610993578063c6682862146109a857600080fd5b806399852123146108d5578063a0712d68146108ea578063a22cb465146108fd578063aa98e0c61461091d57600080fd5b80638ec48215116101d75780638ec4821514610878578063940cd05b1461088d57806395d89b41146108ad57806398f2fc1a146108c257600080fd5b806370a082311461080f578063715018a61461082f57806383df8d8d146108445780638da5cb5b1461085a57600080fd5b806342842e0e1161030357806351830227116102965780635bab26e2116102655780635bab26e2146107755780636352211e146107a55780636c0360eb146107c55780636e0db0ed146107da5780636f00c60f146107ef57600080fd5b806351830227146106fb57806355f804b3146107155780635a4fee30146107355780635aca1bb61461075557600080fd5b80634d44660c116102d25780634d44660c1461066e5780634e48340c1461068e5780634f6ccce7146106ae57806350a9f9c6146106ce57600080fd5b806342842e0e146105ec57806342966c681461060c578063438b63001461062c5780634a5a652d1461065957600080fd5b80631e18dc9d1161037b5780632f745c591161034a5780632f745c5914610583578063309e3414146105a35780633ccfd60b146105c25780633f7aec99146105d757600080fd5b80631e18dc9d1461050257806323b872dd1461052257806325c2c0201461054257806326092b831461056257600080fd5b8063095ea7b3116103b7578063095ea7b31461048d578063105e65b1146104af57806313faede6146104d257806318160ddd146104ed57600080fd5b806301ffc9a7146103e957806306fdde031461041e578063081812fc14610440578063081c8c4414610478575b600080fd5b3480156103f557600080fd5b50610409610404366004612ff8565b610bbd565b60405190151581526020015b60405180910390f35b34801561042a57600080fd5b50610433610be8565b604051610415919061325c565b34801561044c57600080fd5b5061046061045b366004612fdf565b610c7a565b6040516001600160a01b039091168152602001610415565b34801561048457600080fd5b50610433610d07565b34801561049957600080fd5b506104ad6104a8366004612f98565b610d95565b005b3480156104bb57600080fd5b506104c4600581565b604051908152602001610415565b3480156104de57600080fd5b506104c466d529ae9e86000081565b3480156104f957600080fd5b506002546104c4565b34801561050e57600080fd5b506104ad61051d366004612fdf565b610eab565b34801561052e57600080fd5b506104ad61053d366004612e6d565b610eda565b34801561054e57600080fd5b506104ad61055d366004612fdf565b610f0c565b34801561056e57600080fd5b50601354610409906301000000900460ff1681565b34801561058f57600080fd5b506104c461059e366004612f98565b610f3b565b3480156105af57600080fd5b5060135461040990610100900460ff1681565b3480156105ce57600080fd5b506104ad610fee565b3480156105e357600080fd5b506104ad611094565b3480156105f857600080fd5b506104ad610607366004612e6d565b611106565b34801561061857600080fd5b506104ad610627366004612fdf565b611121565b34801561063857600080fd5b5061064c610647366004612d2c565b611177565b6040516104159190613218565b34801561066557600080fd5b506104ad611230565b34801561067a57600080fd5b50610409610689366004612f0e565b6112b5565b34801561069a57600080fd5b506104ad6106a936600461304f565b611337565b3480156106ba57600080fd5b506104c46106c9366004612fdf565b611374565b3480156106da57600080fd5b506104c46106e9366004612d2c565b60106020526000908152604090205481565b34801561070757600080fd5b506013546104099060ff1681565b34801561072157600080fd5b506104ad61073036600461304f565b6113e1565b34801561074157600080fd5b506104ad610750366004612de4565b61141e565b34801561076157600080fd5b506104ad610770366004612fc4565b611468565b34801561078157600080fd5b50610409610790366004612d2c565b600f6020526000908152604090205460ff1681565b3480156107b157600080fd5b506104606107c0366004612fdf565b6114b0565b3480156107d157600080fd5b5061043361153c565b3480156107e657600080fd5b506104c4600a81565b3480156107fb57600080fd5b506104ad61080a366004612fc4565b611549565b34801561081b57600080fd5b506104c461082a366004612d2c565b61158d565b34801561083b57600080fd5b506104ad61165b565b34801561085057600080fd5b506104c4600d5481565b34801561086657600080fd5b506005546001600160a01b0316610460565b34801561088457600080fd5b50610433611691565b34801561089957600080fd5b506104ad6108a8366004612fc4565b61169e565b3480156108b957600080fd5b506104336116db565b6104ad6108d0366004613098565b6116ea565b3480156108e157600080fd5b506104336118cf565b6104ad6108f8366004612fdf565b6118dc565b34801561090957600080fd5b506104ad610918366004612f63565b611a99565b34801561092957600080fd5b506104c4600e5481565b34801561093f57600080fd5b506104ad61094e366004612eae565b611b5e565b34801561095f57600080fd5b50600c54610460906001600160a01b031681565b34801561097f57600080fd5b506104ad61098e366004612fdf565b611b96565b34801561099f57600080fd5b506104ad611bc5565b3480156109b457600080fd5b50610433611c45565b3480156109c957600080fd5b506104ad6109d836600461304f565b611c52565b3480156109e957600080fd5b506104336109f8366004612fdf565b611c8f565b6104ad610a0b366004613098565b611e14565b348015610a1c57600080fd5b506104ad610a2b366004612fc4565b612062565b348015610a3c57600080fd5b50600b54610460906001600160a01b031681565b348015610a5c57600080fd5b506104ad610a6b366004612d2c565b6120a8565b348015610a7c57600080fd5b506104ad610a8b36600461304f565b6120f4565b348015610a9c57600080fd5b506104c4606481565b348015610ab157600080fd5b506104c4610ac0366004612d2c565b60116020526000908152604090205481565b348015610ade57600080fd5b50610409610aed366004612d49565b612131565b348015610afe57600080fd5b506104ad610b0d36600461304f565b612224565b348015610b1e57600080fd5b506104ad610b2d366004612d2c565b612261565b348015610b3e57600080fd5b506104ad610b4d366004612d82565b6122f9565b348015610b5e57600080fd5b506104ad610b6d366004612d2c565b61233b565b348015610b7e57600080fd5b506013546104099062010000900460ff1681565b348015610b9e57600080fd5b506104c4600b81565b348015610bb357600080fd5b506104c460125481565b60006001600160e01b0319821663780e9d6360e01b1480610be25750610be28261238e565b92915050565b606060008054610bf790613488565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2390613488565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b5050505050905090565b6000610c85826123de565b610ceb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60088054610d1490613488565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4090613488565b8015610d8d5780601f10610d6257610100808354040283529160200191610d8d565b820191906000526020600020905b815481529060010190602001808311610d7057829003601f168201915b505050505081565b6000610da0826114b0565b9050806001600160a01b0316836001600160a01b03161415610e0e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ce2565b336001600160a01b0382161480610e2a5750610e2a8133612131565b610e9c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ce2565b610ea68383612428565b505050565b6005546001600160a01b03163314610ed55760405162461bcd60e51b8152600401610ce29061330c565b601255565b610ee5335b82612496565b610f015760405162461bcd60e51b8152600401610ce290613378565b610ea6838383612558565b6005546001600160a01b03163314610f365760405162461bcd60e51b8152600401610ce29061330c565b600d55565b6000610f468361158d565b8210610f645760405162461bcd60e51b8152600401610ce29061326f565b6000805b600254811015610fd55760028181548110610f8557610f8561351e565b6000918252602090912001546001600160a01b0386811691161415610fc35783821415610fb5579150610be29050565b81610fbf816134c3565b9250505b80610fcd816134c3565b915050610f68565b5060405162461bcd60e51b8152600401610ce29061326f565b600c546040516000916001600160a01b03169047908381818185875af1925050503d806000811461103b576040519150601f19603f3d011682016040523d82523d6000602084013e611040565b606091505b50509050806110915760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f2042657474792e00000000000000006044820152606401610ce2565b50565b6005546001600160a01b031633146110be5760405162461bcd60e51b8152600401610ce29061330c565b600254156110de5760405162461bcd60e51b8152600401610ce290613341565b60005b600a811015611091576110f433826126ae565b806110fe816134c3565b9150506110e1565b610ea683838360405180602001604052806000815250611b5e565b61112a33610edf565b61116e5760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610ce2565b6110918161272a565b606060006111848361158d565b9050806111a55760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156111c0576111c0613534565b6040519080825280602002602001820160405280156111e9578160200160208202803683370190505b50905060005b8281101561119d576112018582610f3b565b8282815181106112135761121361351e565b602090810291909101015280611228816134c3565b9150506111ef565b6005546001600160a01b0316331461125a5760405162461bcd60e51b8152600401610ce29061330c565b600254600a1461127c5760405162461bcd60e51b8152600401610ce290613341565b60025460005b60058110156112b15761129f335b61129a83856133fa565b6126ae565b806112a9816134c3565b915050611282565b5050565b6000805b8281101561132a57846001600160a01b031660028585848181106112df576112df61351e565b90506020020135815481106112f6576112f661351e565b6000918252602090912001546001600160a01b03161461131a576000915050611330565b611323816134c3565b90506112b9565b50600190505b9392505050565b6005546001600160a01b031633146113615760405162461bcd60e51b8152600401610ce29061330c565b80516112b190600a906020840190612b3d565b60025460009082106113dd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ce2565b5090565b6005546001600160a01b0316331461140b5760405162461bcd60e51b8152600401610ce29061330c565b80516112b1906006906020840190612b3d565b60005b82518110156114615761144f85858584815181106114415761144161351e565b602002602001015185611b5e565b80611459816134c3565b915050611421565b5050505050565b6005546001600160a01b031633146114925760405162461bcd60e51b8152600401610ce29061330c565b6013805491151563010000000263ff00000019909216919091179055565b600080600283815481106114c6576114c661351e565b6000918252602090912001546001600160a01b0316905080610be25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ce2565b60068054610d1490613488565b6005546001600160a01b031633146115735760405162461bcd60e51b8152600401610ce29061330c565b601380549115156101000261ff0019909216919091179055565b60006001600160a01b0382166115f85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ce2565b6000805b60025481101561165457600281815481106116195761161961351e565b6000918252602090912001546001600160a01b038581169116141561164457611641826134c3565b91505b61164d816134c3565b90506115fc565b5092915050565b6005546001600160a01b031633146116855760405162461bcd60e51b8152600401610ce29061330c565b61168f60006127ac565b565b60098054610d1490613488565b6005546001600160a01b031633146116c85760405162461bcd60e51b8152600401610ce29061330c565b6013805460ff1916911515919091179055565b606060018054610bf790613488565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050611767818484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506127fe92505050565b6117ad5760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210283937b7b31029bab8383634b2b21760491b6044820152606401610ce2565b3360009081526010602052604090205484906117ca9087906133fa565b11156118185760405162461bcd60e51b815260206004820152601960248201527f45786365656473204f47206d696e7420616c6c6f77616e6365000000000000006044820152606401610ce2565b601354610100900460ff166118795760405162461bcd60e51b815260206004820152602160248201527f4f47206d696e74696e67206d7573742062652061637469766520746f206d696e6044820152601d60fa1b6064820152608401610ce2565b33600090815260106020526040812080548792906118989084906133fa565b909155505060025460005b868110156118c6576118b433611290565b806118be816134c3565b9150506118a3565b50505050505050565b600a8054610d1490613488565b6002546013546301000000900460ff1661194a5760405162461bcd60e51b815260206004820152602960248201527f5075626c6963206d696e74696e67206973206e6f742063757272656e746c7920604482015268617661696c61626c6560b81b6064820152608401610ce2565b600b82106119a45760405162461bcd60e51b815260206004820152602160248201527f6d6178206d696e7420616d6f756e7420706572206d696e7420657863656564656044820152601960fa1b6064820152608401610ce2565b6012546119b183836133fa565b10611a145760405162461bcd60e51b815260206004820152602d60248201527f536f7272792c207468697320776f756c6420657863656564206d6178696d756d60448201526c204c697a617264206d696e747360981b6064820152608401610ce2565b611a258266d529ae9e860000613426565b3414611a735760405162461bcd60e51b815260206004820152601a60248201527f57726f6e6720616d6f756e74206f662045746865722073656e740000000000006044820152606401610ce2565b60005b82811015610ea657611a8733611290565b80611a91816134c3565b915050611a76565b6001600160a01b038216331415611af25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ce2565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b683383612496565b611b845760405162461bcd60e51b8152600401610ce290613378565b611b908484848461280d565b50505050565b6005546001600160a01b03163314611bc05760405162461bcd60e51b8152600401610ce29061330c565b600e55565b6005546001600160a01b03163314611bef5760405162461bcd60e51b8152600401610ce29061330c565b611bfb6005600a6133fa565b60025414611c1b5760405162461bcd60e51b8152600401610ce290613341565b60025460005b60648110156112b157611c3333611290565b80611c3d816134c3565b915050611c21565b60078054610d1490613488565b6005546001600160a01b03163314611c7c5760405162461bcd60e51b8152600401610ce29061330c565b80516112b1906009906020840190612b3d565b6060611c9a826123de565b611cdd5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610ce2565b600a821015611d44576000611cf0612840565b90506000815111611d105760405180602001604052806000815250611330565b80611d1a8461284f565b6007604051602001611d2e93929190613117565b6040516020818303038152906040529392505050565b600a8210158015611d5f5750611d5c6005600a6133fa565b82105b15611d6e576000611cf061294d565b60135460ff16611e0a5760088054611d8590613488565b80601f0160208091040260200160405190810160405280929190818152602001828054611db190613488565b8015611dfe5780601f10611dd357610100808354040283529160200191611dfe565b820191906000526020600020905b815481529060010190602001808311611de157829003601f168201915b50505050509050919050565b6000611cf061295c565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050611e918184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061296b92505050565b611ed75760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210283937b7b31029bab8383634b2b21760491b6044820152606401610ce2565b336000908152601160205260409020548490611ef49087906133fa565b1115611f4c5760405162461bcd60e51b815260206004820152602160248201527f45786365656473207768697465206c697374206d696e7420416c6c6f77616e636044820152606560f81b6064820152608401610ce2565b60135462010000900460ff16611fb65760405162461bcd60e51b815260206004820152602960248201527f5768697465206c697374206d696e74696e67206d75737420626520616374697660448201526819481d1bc81b5a5b9d60ba1b6064820152608401610ce2565b611fc78566d529ae9e860000613426565b34146120155760405162461bcd60e51b815260206004820152601a60248201527f57726f6e6720616d6f756e74206f662045746865722073656e740000000000006044820152606401610ce2565b33600090815260116020526040812080548792906120349084906133fa565b909155505060025460005b868110156118c65761205033611290565b8061205a816134c3565b91505061203f565b6005546001600160a01b0316331461208c5760405162461bcd60e51b8152600401610ce29061330c565b60138054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146120d25760405162461bcd60e51b8152600401610ce29061330c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461211e5760405162461bcd60e51b8152600401610ce29061330c565b80516112b1906007906020840190612b3d565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561217e57600080fd5b505afa158015612192573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b69190613032565b6001600160a01b031614806121e357506001600160a01b0383166000908152600f602052604090205460ff165b156121f2576001915050610be2565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b0316331461224e5760405162461bcd60e51b8152600401610ce29061330c565b80516112b1906008906020840190612b3d565b6005546001600160a01b0316331461228b5760405162461bcd60e51b8152600401610ce29061330c565b6001600160a01b0381166122f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce2565b611091816127ac565b60005b8151811015611b9057612329848484848151811061231c5761231c61351e565b6020026020010151610eda565b80612333816134c3565b9150506122fc565b6005546001600160a01b031633146123655760405162461bcd60e51b8152600401610ce29061330c565b6001600160a01b03166000908152600f60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b14806123bf57506001600160e01b03198216635b5e139f60e01b145b80610be257506301ffc9a760e01b6001600160e01b0319831614610be2565b60025460009082108015610be2575060006001600160a01b03166002838154811061240b5761240b61351e565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061245d826114b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124a1826123de565b6125025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ce2565b600061250d836114b0565b9050806001600160a01b0316846001600160a01b031614806125485750836001600160a01b031661253d84610c7a565b6001600160a01b0316145b8061221c575061221c8185612131565b826001600160a01b031661256b826114b0565b6001600160a01b0316146125d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ce2565b6001600160a01b0382166126355760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ce2565b612640600082612428565b81600282815481106126545761265461351e565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000612735826114b0565b9050612742600083612428565b6000600283815481106127575761275761351e565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061133082600d5485612976565b612818848484612558565b6128248484848461298c565b611b905760405162461bcd60e51b8152600401610ce2906132ba565b606060098054610bf790613488565b6060816128735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561289d5780612887816134c3565b91506128969050600a83613412565b9150612877565b60008167ffffffffffffffff8111156128b8576128b8613534565b6040519080825280601f01601f1916602001820160405280156128e2576020820181803683370190505b5090505b841561221c576128f7600183613445565b9150612904600a866134de565b61290f9060306133fa565b60f81b8183815181106129245761292461351e565b60200101906001600160f81b031916908160001a905350612946600a86613412565b94506128e6565b6060600a8054610bf790613488565b606060068054610bf790613488565b600061133082600e54855b6000826129838584612a99565b14949350505050565b60006001600160a01b0384163b15612a8e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129d09033908990889088906004016131db565b602060405180830381600087803b1580156129ea57600080fd5b505af1925050508015612a1a575060408051601f3d908101601f19168201909252612a1791810190613015565b60015b612a74573d808015612a48576040519150601f19603f3d011682016040523d82523d6000602084013e612a4d565b606091505b508051612a6c5760405162461bcd60e51b8152600401610ce2906132ba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061221c565b506001949350505050565b600081815b845181101561119d576000858281518110612abb57612abb61351e565b60200260200101519050808311612afd576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612b2a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612b35816134c3565b915050612a9e565b828054612b4990613488565b90600052602060002090601f016020900481019282612b6b5760008555612bb1565b82601f10612b8457805160ff1916838001178555612bb1565b82800160010185558215612bb1579182015b82811115612bb1578251825591602001919060010190612b96565b506113dd9291505b808211156113dd5760008155600101612bb9565b600067ffffffffffffffff831115612be757612be7613534565b612bfa601f8401601f19166020016133c9565b9050828152838383011115612c0e57600080fd5b828260208301376000602084830101529392505050565b60008083601f840112612c3757600080fd5b50813567ffffffffffffffff811115612c4f57600080fd5b6020830191508360208260051b8501011115612c6a57600080fd5b9250929050565b600082601f830112612c8257600080fd5b8135602067ffffffffffffffff821115612c9e57612c9e613534565b8160051b612cad8282016133c9565b838152828101908684018388018501891015612cc857600080fd5b600093505b85841015612ceb578035835260019390930192918401918401612ccd565b50979650505050505050565b80358015158114612d0757600080fd5b919050565b600082601f830112612d1d57600080fd5b61133083833560208501612bcd565b600060208284031215612d3e57600080fd5b81356113308161354a565b60008060408385031215612d5c57600080fd5b8235612d678161354a565b91506020830135612d778161354a565b809150509250929050565b600080600060608486031215612d9757600080fd5b8335612da28161354a565b92506020840135612db28161354a565b9150604084013567ffffffffffffffff811115612dce57600080fd5b612dda86828701612c71565b9150509250925092565b60008060008060808587031215612dfa57600080fd5b8435612e058161354a565b93506020850135612e158161354a565b9250604085013567ffffffffffffffff80821115612e3257600080fd5b612e3e88838901612c71565b93506060870135915080821115612e5457600080fd5b50612e6187828801612d0c565b91505092959194509250565b600080600060608486031215612e8257600080fd5b8335612e8d8161354a565b92506020840135612e9d8161354a565b929592945050506040919091013590565b60008060008060808587031215612ec457600080fd5b8435612ecf8161354a565b93506020850135612edf8161354a565b925060408501359150606085013567ffffffffffffffff811115612f0257600080fd5b612e6187828801612d0c565b600080600060408486031215612f2357600080fd5b8335612f2e8161354a565b9250602084013567ffffffffffffffff811115612f4a57600080fd5b612f5686828701612c25565b9497909650939450505050565b60008060408385031215612f7657600080fd5b8235612f818161354a565b9150612f8f60208401612cf7565b90509250929050565b60008060408385031215612fab57600080fd5b8235612fb68161354a565b946020939093013593505050565b600060208284031215612fd657600080fd5b61133082612cf7565b600060208284031215612ff157600080fd5b5035919050565b60006020828403121561300a57600080fd5b81356113308161355f565b60006020828403121561302757600080fd5b81516113308161355f565b60006020828403121561304457600080fd5b81516113308161354a565b60006020828403121561306157600080fd5b813567ffffffffffffffff81111561307857600080fd5b8201601f8101841361308957600080fd5b61221c84823560208401612bcd565b600080600080606085870312156130ae57600080fd5b8435935060208501359250604085013567ffffffffffffffff8111156130d357600080fd5b6130df87828801612c25565b95989497509550505050565b6000815180845261310381602086016020860161345c565b601f01601f19169290920160200192915050565b60008451602061312a8285838a0161345c565b85519184019161313d8184848a0161345c565b8554920191600090600181811c908083168061315a57607f831692505b85831081141561317857634e487b7160e01b85526022600452602485fd5b80801561318c576001811461319d576131ca565b60ff198516885283880195506131ca565b60008b81526020902060005b858110156131c25781548a8201529084019088016131a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061320e908301846130eb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561325057835183529284019291840191600101613234565b50909695505050505050565b60208152600061133060208301846130eb565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f526573657276657320616c72656164792074616b656e2e000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133f2576133f2613534565b604052919050565b6000821982111561340d5761340d6134f2565b500190565b60008261342157613421613508565b500490565b6000816000190483118215151615613440576134406134f2565b500290565b600082821015613457576134576134f2565b500390565b60005b8381101561347757818101518382015260200161345f565b83811115611b905750506000910152565b600181811c9082168061349c57607f821691505b602082108114156134bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134d7576134d76134f2565b5060010190565b6000826134ed576134ed613508565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461109157600080fd5b6001600160e01b03198116811461109157600080fdfea2646970667358221220dbf133dbfbdf80500fbef8fa56a0e7c3b46346a502607601644bb73ed037d3a764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000f310af8e149d8bc306fcea7df041ee6086418fc00000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6167584d386e33797a485565736a68664556597369766445324a55706d34717a5835665563535275523344642f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6167584d386e33797a485565736a68664556597369766445324a55706d34717a5835665563535275523344642f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5561476841394276324b756e477950346f43674b79396e47467957454272476466655a546e514d74466844782f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6167584d386e33797a485565736a68664556597369766445324a55706d34717a5835665563535275523344642f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _BaseURI (string): ipfs://QmagXM8n3yzHUesjhfEVYsivdE2JUpm4qzX5fUcSRuR3Dd/hidden.json
Arg [1] : _NotRevealedUri (string): ipfs://QmagXM8n3yzHUesjhfEVYsivdE2JUpm4qzX5fUcSRuR3Dd/hidden.json
Arg [2] : _FoundersURI (string): ipfs://QmUaGhA9Bv2KunGyP4oCgKy9nGFyWEBrGdfeZTnQMtFhDx/
Arg [3] : _AuctionURI (string): ipfs://QmagXM8n3yzHUesjhfEVYsivdE2JUpm4qzX5fUcSRuR3Dd/hidden.json
Arg [4] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [5] : _bettyFromAccounting (address): 0xf310af8e149d8Bc306fcEA7dF041eE6086418fc0
-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [4] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [5] : 000000000000000000000000f310af8e149d8bc306fcea7df041ee6086418fc0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [7] : 697066733a2f2f516d6167584d386e33797a485565736a686645565973697664
Arg [8] : 45324a55706d34717a5835665563535275523344642f68696464656e2e6a736f
Arg [9] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [11] : 697066733a2f2f516d6167584d386e33797a485565736a686645565973697664
Arg [12] : 45324a55706d34717a5835665563535275523344642f68696464656e2e6a736f
Arg [13] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [15] : 697066733a2f2f516d5561476841394276324b756e477950346f43674b79396e
Arg [16] : 47467957454272476466655a546e514d74466844782f00000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [18] : 697066733a2f2f516d6167584d386e33797a485565736a686645565973697664
Arg [19] : 45324a55706d34717a5835665563535275523344642f68696464656e2e6a736f
Arg [20] : 6e00000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.