Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,810 AIBear
Holders
845
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 AIBearLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OkayBearsAI
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; contract OkayBearsAI is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bytes32 public root; uint256 public maxSupply = 10000; uint256 public _price = 0.0069 ether; uint256 public whitelistReserved = 2000; uint256 public maxPerTx = 5; uint256 public maxPerWallet = 5; bool public paused = false; bool public revealed = false; bool public presaleM = true; address artist = 0x74e25c7C6B9Ac77Ed1e1aC8fB4bB1f6a3F61eb5d; string public baseURI; string public notRevealedUri = "ipfs://QmNanWoRJyLE5pXc2gb8owTy9C8GsZ8RoHeEDCWa6n8SN5/"; mapping(address => uint256) public _presaleClaimed; uint256 public totalFreeminted; constructor(bytes32 merkleroot) ERC721A("Okay Bears AI", "AIBear") ReentrancyGuard() { root = merkleroot; } function setBaseURI(string memory _tokenBaseURI) public onlyOwner { baseURI = _tokenBaseURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } function reveal() public onlyOwner { revealed = true; } function setMerkleRoot(bytes32 merkleroot) public onlyOwner { root = merkleroot; } modifier onlyAccounts () { require(msg.sender == tx.origin, "Not allowed origin"); _; } modifier isValidMerkleProof(bytes32[] calldata _proof) { require(MerkleProof.verify( _proof, root, keccak256(abi.encodePacked(msg.sender)) ) == true, "Not allowed origin"); _; } function toggleSale() public onlyOwner { paused = !paused; } function togglePresale() public onlyOwner { presaleM = !presaleM; } function setWhitelistReserved(uint256 _reserved) public onlyOwner { whitelistReserved = _reserved; } function setPrice(uint256 _newPrice) public onlyOwner { _price = _newPrice; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setMaxSupply(uint256 _newMaxSupply) public onlyOwner { maxSupply = _newMaxSupply; } function setMaxPerWallet(uint256 _amount) public onlyOwner{ maxPerWallet = _amount; } function devMint(uint256 _amount) public payable onlyOwner{ uint256 supply = totalSupply(); require(_amount > 0, "Cant mint 0." ); require(supply + _amount <= maxSupply, "Cant go over supply." ); totalFreeminted += _amount; _safeMint(msg.sender, _amount); delete supply; } function whitelistMint( address account, uint8 _amount, bytes32[] calldata _proof ) external payable isValidMerkleProof(_proof) onlyAccounts { uint256 supply = totalSupply(); require(_amount > 0, "Cant mint 0." ); require(paused, "Contract is paused"); require(presaleM, "WL sale is OFF"); if (_presaleClaimed[msg.sender] < 1) { require(msg.sender == account, "Not allowed"); require(_amount <= maxPerTx, "You can't mint so much tokens"); require(supply + _amount <= maxSupply, "Max supply exceeded"); require(balanceOf(msg.sender) + _amount <= maxPerWallet, "Max per wallet tokens exceeded"); require(_price * (_amount - 1) <= msg.value, "Not enough ethers sent"); require(1 + totalFreeminted <= whitelistReserved, "Free mints ended"); require(_amount - 1 <= maxSupply - whitelistReserved - (supply - totalFreeminted), "Rest supply is reserved"); _presaleClaimed[msg.sender]++; totalFreeminted++; } else { require(msg.sender == account, "Not allowed"); require(_amount <= maxPerTx, "You can't mint so much tokens"); require(supply + _amount <= maxSupply, "Max supply exceeded"); require(balanceOf(msg.sender) + _amount <= maxPerWallet, "Max per wallet tokens exceeded"); require(_price * _amount <= msg.value, "Not enough ethers sent"); require(_amount <= maxSupply - whitelistReserved - (supply - totalFreeminted), "Rest supply is reserved"); } _safeMint(msg.sender, _amount); delete supply; } function publicSaleMint(uint256 _amount) external payable onlyAccounts { uint256 supply = totalSupply(); if (presaleM) { require(_amount <= maxSupply - whitelistReserved - (supply - totalFreeminted), "Rest supply is reserved"); } else { require(_amount + supply <= maxSupply, "Max supply exceeded"); } require(_amount + supply <= maxSupply, "Max supply exceeded"); require(paused, "Contract is paused"); require(_amount > 0, "Zero amount"); require(_price * _amount <= msg.value, "Not enough ethers sent"); require(_amount <= maxPerTx, "You can't mint so much tokens"); require(balanceOf(msg.sender) + _amount <= maxPerWallet, "Max per wallet tokens exceeded"); _safeMint(msg.sender, _amount); delete supply; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } function withdraw() public payable onlyOwner { (bool hs, ) = payable(artist).call{value: address(this).balance * 40 / 100}(""); require(hs); (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree 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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // 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" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"merkleroot","type":"bytes32"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"payable","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":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleroot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserved","type":"uint256"}],"name":"setWhitelistReserved","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":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"},{"internalType":"uint8","name":"_amount","type":"uint8"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
612710600a556618838370f34000600b556107d0600c556005600d819055600e55600f80546001600160b81b0319167674e25c7c6b9ac77ed1e1ac8fb4bb1f6a3f61eb5d01000017905560e0604052603660808181529062002d9b60a039805162000073916011916020909101906200018e565b503480156200008157600080fd5b5060405162002dd138038062002dd1833981016040819052620000a49162000234565b604080518082018252600d81526c4f6b617920426561727320414960981b60208083019182528351808501909452600684526520a4a132b0b960d11b908401528151919291620000f7916001916200018e565b5080516200010d9060029060208401906200018e565b5050506200012a620001246200013860201b60201c565b6200013c565b60016008556009556200028b565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019c906200024e565b90600052602060002090601f016020900481019282620001c057600085556200020b565b82601f10620001db57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020b578251825591602001919060010190620001ee565b50620002199291506200021d565b5090565b5b808211156200021957600081556001016200021e565b6000602082840312156200024757600080fd5b5051919050565b600181811c908216806200026357607f821691505b602082108114156200028557634e487b7160e01b600052602260045260246000fd5b50919050565b612b00806200029b6000396000f3fe60806040526004361061027d5760003560e01c80636f8b44b01161014f578063a475b5dd116100c1578063e268e4d31161007a578063e268e4d3146106f8578063e985e9c514610718578063ebf0c71714610761578063f2c4ce1e14610777578063f2fde38b14610797578063f968adbe146107b757600080fd5b8063a475b5dd1461065a578063b35e3b2e1461066f578063b3ab66b01461068f578063b88d4fde146106a2578063c87b56dd146106c2578063d5abeb01146106e257600080fd5b806388039d8f1161011357806388039d8f146105a45780638cc4de19146105ba5780638da5cb5b146105e757806391b7f5ed1461060557806395d89b4114610625578063a22cb4651461063a57600080fd5b80636f8b44b01461051a57806370a082311461053a578063715018a61461055a5780637cb647591461056f5780637d8966e41461058f57600080fd5b8063375a069a116101f357806355f804b3116101ac57806355f804b3146104825780635c975abb146104a25780635f65b485146104bc5780635f834b7f146104cf5780636352211e146104e55780636c0360eb1461050557600080fd5b8063375a069a146103f25780633ccfd60b1461040557806342842e0e1461040d578063453c23101461042d5780634f6ccce714610443578063518302271461046357600080fd5b80631798d58b116102455780631798d58b1461034857806318160ddd14610368578063235b6ea11461038757806323b872dd1461039d5780632f745c59146103bd57806334393743146103dd57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123e8565b6107cd565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61083a565b6040516102ae919061245d565b3480156102e557600080fd5b506102f96102f4366004612470565b6108cc565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc61095c565b34801561033257600080fd5b506103466103413660046124a5565b6109ea565b005b34801561035457600080fd5b50600f546102a29062010000900460ff1681565b34801561037457600080fd5b506000545b6040519081526020016102ae565b34801561039357600080fd5b50610379600b5481565b3480156103a957600080fd5b506103466103b83660046124cf565b610b02565b3480156103c957600080fd5b506103796103d83660046124a5565b610b0d565b3480156103e957600080fd5b50610346610c6a565b610346610400366004612470565b610c91565b610346610d50565b34801561041957600080fd5b506103466104283660046124cf565b610e45565b34801561043957600080fd5b50610379600e5481565b34801561044f57600080fd5b5061037961045e366004612470565b610e60565b34801561046f57600080fd5b50600f546102a290610100900460ff1681565b34801561048e57600080fd5b5061034661049d366004612597565b610ec2565b3480156104ae57600080fd5b50600f546102a29060ff1681565b6103466104ca3660046125e0565b610edd565b3480156104db57600080fd5b5061037960135481565b3480156104f157600080fd5b506102f9610500366004612470565b6113c8565b34801561051157600080fd5b506102cc6113da565b34801561052657600080fd5b50610346610535366004612470565b6113e7565b34801561054657600080fd5b50610379610555366004612679565b6113f4565b34801561056657600080fd5b50610346611485565b34801561057b57600080fd5b5061034661058a366004612470565b611499565b34801561059b57600080fd5b506103466114a6565b3480156105b057600080fd5b50610379600c5481565b3480156105c657600080fd5b506103796105d5366004612679565b60126020526000908152604090205481565b3480156105f357600080fd5b506007546001600160a01b03166102f9565b34801561061157600080fd5b50610346610620366004612470565b6114c2565b34801561063157600080fd5b506102cc6114cf565b34801561064657600080fd5b50610346610655366004612694565b6114de565b34801561066657600080fd5b506103466115a3565b34801561067b57600080fd5b5061034661068a366004612470565b6115bc565b61034661069d366004612470565b6115c9565b3480156106ae57600080fd5b506103466106bd3660046126d0565b6117b0565b3480156106ce57600080fd5b506102cc6106dd366004612470565b6117e9565b3480156106ee57600080fd5b50610379600a5481565b34801561070457600080fd5b50610346610713366004612470565b611949565b34801561072457600080fd5b506102a261073336600461274c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076d57600080fd5b5061037960095481565b34801561078357600080fd5b50610346610792366004612597565b611956565b3480156107a357600080fd5b506103466107b2366004612679565b611971565b3480156107c357600080fd5b50610379600d5481565b60006001600160e01b031982166380ac58cd60e01b14806107fe57506001600160e01b03198216635b5e139f60e01b145b8061081957506001600160e01b0319821663780e9d6360e01b145b8061083457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108499061277f565b80601f01602080910402602001604051908101604052809291908181526020018280546108759061277f565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d9826000541190565b6109405760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b601180546109699061277f565b80601f01602080910402602001604051908101604052809291908181526020018280546109959061277f565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b505050505081565b60006109f5826113c8565b9050806001600160a01b0316836001600160a01b03161415610a645760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610937565b336001600160a01b0382161480610a805750610a808133610733565b610af25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610937565b610afd8383836119ea565b505050565b610afd838383611a46565b6000610b18836113f4565b8210610b715760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610937565b600080549080805b83811015610c0a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bcc57805192505b876001600160a01b0316836001600160a01b03161415610c015786841415610bfa5750935061083492505050565b6001909301925b50600101610b79565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610937565b610c72611d2b565b600f805462ff0000198116620100009182900460ff1615909102179055565b610c99611d2b565b60005481610cd85760405162461bcd60e51b815260206004820152600c60248201526b21b0b73a1036b4b73a10181760a11b6044820152606401610937565b600a54610ce583836127d0565b1115610d2a5760405162461bcd60e51b815260206004820152601460248201527321b0b73a1033b79037bb32b91039bab838363c9760611b6044820152606401610937565b8160136000828254610d3c91906127d0565b90915550610d4c90503383611d85565b5050565b610d58611d2b565b600f54600090630100000090046001600160a01b03166064610d7b4760286127e8565b610d85919061281d565b604051600081818185875af1925050503d8060008114610dc1576040519150601f19603f3d011682016040523d82523d6000602084013e610dc6565b606091505b5050905080610dd457600080fd5b6000610de86007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e32576040519150601f19603f3d011682016040523d82523d6000602084013e610e37565b606091505b5050905080610d4c57600080fd5b610afd838383604051806020016040528060008152506117b0565b600080548210610ebe5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610937565b5090565b610eca611d2b565b8051610d4c906010906020840190612342565b8181610f54828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611d9f565b1515600114610f755760405162461bcd60e51b815260040161093790612831565b333214610f945760405162461bcd60e51b815260040161093790612831565b60005460ff8616610fd65760405162461bcd60e51b815260206004820152600c60248201526b21b0b73a1036b4b73a10181760a11b6044820152606401610937565b600f5460ff1661101d5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610937565b600f5462010000900460ff166110665760405162461bcd60e51b815260206004820152600e60248201526d2ba61039b0b6329034b99027a32360911b6044820152606401610937565b336000908152601260205260409020546001111561126857336001600160a01b038816146110c45760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610937565b600d548660ff1611156110e95760405162461bcd60e51b81526004016109379061285d565b600a546110f960ff8816836127d0565b11156111175760405162461bcd60e51b815260040161093790612894565b600e548660ff16611127336113f4565b61113191906127d0565b111561114f5760405162461bcd60e51b8152600401610937906128c1565b3461115b6001886128f8565b60ff16600b5461116b91906127e8565b11156111895760405162461bcd60e51b81526004016109379061291b565b600c5460135461119a9060016127d0565b11156111db5760405162461bcd60e51b815260206004820152601060248201526f119c9959481b5a5b9d1cc8195b99195960821b6044820152606401610937565b6013546111e8908261294b565b600c54600a546111f8919061294b565b611202919061294b565b61120d6001886128f8565b60ff16111561122e5760405162461bcd60e51b815260040161093790612962565b33600090815260126020526040812080549161124983612999565b90915550506013805490600061125e83612999565b91905055506113b2565b336001600160a01b038816146112ae5760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610937565b600d548660ff1611156112d35760405162461bcd60e51b81526004016109379061285d565b600a546112e360ff8816836127d0565b11156113015760405162461bcd60e51b815260040161093790612894565b600e548660ff16611311336113f4565b61131b91906127d0565b11156113395760405162461bcd60e51b8152600401610937906128c1565b348660ff16600b5461134b91906127e8565b11156113695760405162461bcd60e51b81526004016109379061291b565b601354611376908261294b565b600c54600a54611386919061294b565b611390919061294b565b8660ff1611156113b25760405162461bcd60e51b815260040161093790612962565b6113bf338760ff16611d85565b50505050505050565b60006113d382611db5565b5192915050565b601080546109699061277f565b6113ef611d2b565b600a55565b60006001600160a01b0382166114605760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610937565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61148d611d2b565b6114976000611e8c565b565b6114a1611d2b565b600955565b6114ae611d2b565b600f805460ff19811660ff90911615179055565b6114ca611d2b565b600b55565b6060600280546108499061277f565b6001600160a01b0382163314156115375760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610937565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ab611d2b565b600f805461ff001916610100179055565b6115c4611d2b565b600c55565b3332146115e85760405162461bcd60e51b815260040161093790612831565b600054600f5462010000900460ff161561164757601354611609908261294b565b600c54600a54611619919061294b565b611623919061294b565b8211156116425760405162461bcd60e51b815260040161093790612962565b611672565b600a5461165482846127d0565b11156116725760405162461bcd60e51b815260040161093790612894565b600a5461167f82846127d0565b111561169d5760405162461bcd60e51b815260040161093790612894565b600f5460ff166116e45760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610937565b600082116117225760405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606401610937565b3482600b5461173191906127e8565b111561174f5760405162461bcd60e51b81526004016109379061291b565b600d548211156117715760405162461bcd60e51b81526004016109379061285d565b600e548261177e336113f4565b61178891906127d0565b11156117a65760405162461bcd60e51b8152600401610937906128c1565b610d4c3383611d85565b6117bb848484611a46565b6117c784848484611ede565b6117e35760405162461bcd60e51b8152600401610937906129b4565b50505050565b60606117f6826000541190565b61184c5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610937565b600f54610100900460ff166118ed57601180546118689061277f565b80601f01602080910402602001604051908101604052809291908181526020018280546118949061277f565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b50505050509050919050565b60006118f7611fec565b905060008151116119175760405180602001604052806000815250611942565b8061192184611ffb565b604051602001611932929190612a07565b6040516020818303038152906040525b9392505050565b611951611d2b565b600e55565b61195e611d2b565b8051610d4c906011906020840190612342565b611979611d2b565b6001600160a01b0381166119de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610937565b6119e781611e8c565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a5182611db5565b80519091506000906001600160a01b0316336001600160a01b03161480611a88575033611a7d846108cc565b6001600160a01b0316145b80611a9a57508151611a9a9033610733565b905080611b045760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610937565b846001600160a01b031682600001516001600160a01b031614611b785760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610937565b6001600160a01b038416611bdc5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610937565b611bec60008484600001516119ea565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611ce157611c94816000541190565b15611ce1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6007546001600160a01b031633146114975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610937565b610d4c8282604051806020016040528060008152506120f9565b600082611dac8584612106565b14949350505050565b6040805180820190915260008082526020820152611dd4826000541190565b611e335760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610937565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e82579392505050565b5060001901611e35565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611fe057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f22903390899088908890600401612a46565b602060405180830381600087803b158015611f3c57600080fd5b505af1925050508015611f6c575060408051601f3d908101601f19168201909252611f6991810190612a83565b60015b611fc6573d808015611f9a576040519150601f19603f3d011682016040523d82523d6000602084013e611f9f565b606091505b508051611fbe5760405162461bcd60e51b8152600401610937906129b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fe4565b5060015b949350505050565b6060601080546108499061277f565b60608161201f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612049578061203381612999565b91506120429050600a8361281d565b9150612023565b60008167ffffffffffffffff8111156120645761206461250b565b6040519080825280601f01601f19166020018201604052801561208e576020820181803683370190505b5090505b8415611fe4576120a360018361294b565b91506120b0600a86612aa0565b6120bb9060306127d0565b60f81b8183815181106120d0576120d0612ab4565b60200101906001600160f81b031916908160001a9053506120f2600a8661281d565b9450612092565b610afd8383836001612153565b600081815b845181101561214b576121378286838151811061212a5761212a612ab4565b6020026020010151612316565b91508061214381612999565b91505061210b565b509392505050565b6000546001600160a01b0385166121b65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610937565b836122145760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610937565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561230d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612301576122e56000888488611ede565b6123015760405162461bcd60e51b8152600401610937906129b4565b60019182019101612292565b50600055611d24565b6000818310612332576000828152602084905260409020611942565b5060009182526020526040902090565b82805461234e9061277f565b90600052602060002090601f01602090048101928261237057600085556123b6565b82601f1061238957805160ff19168380011785556123b6565b828001600101855582156123b6579182015b828111156123b657825182559160200191906001019061239b565b50610ebe9291505b80821115610ebe57600081556001016123be565b6001600160e01b0319811681146119e757600080fd5b6000602082840312156123fa57600080fd5b8135611942816123d2565b60005b83811015612420578181015183820152602001612408565b838111156117e35750506000910152565b60008151808452612449816020860160208601612405565b601f01601f19169290920160200192915050565b6020815260006119426020830184612431565b60006020828403121561248257600080fd5b5035919050565b80356001600160a01b03811681146124a057600080fd5b919050565b600080604083850312156124b857600080fd5b6124c183612489565b946020939093013593505050565b6000806000606084860312156124e457600080fd5b6124ed84612489565b92506124fb60208501612489565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561253c5761253c61250b565b604051601f8501601f19908116603f011681019082821181831017156125645761256461250b565b8160405280935085815286868601111561257d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125a957600080fd5b813567ffffffffffffffff8111156125c057600080fd5b8201601f810184136125d157600080fd5b611fe484823560208401612521565b600080600080606085870312156125f657600080fd5b6125ff85612489565b9350602085013560ff8116811461261557600080fd5b9250604085013567ffffffffffffffff8082111561263257600080fd5b818701915087601f83011261264657600080fd5b81358181111561265557600080fd5b8860208260051b850101111561266a57600080fd5b95989497505060200194505050565b60006020828403121561268b57600080fd5b61194282612489565b600080604083850312156126a757600080fd5b6126b083612489565b9150602083013580151581146126c557600080fd5b809150509250929050565b600080600080608085870312156126e657600080fd5b6126ef85612489565b93506126fd60208601612489565b925060408501359150606085013567ffffffffffffffff81111561272057600080fd5b8501601f8101871361273157600080fd5b61274087823560208401612521565b91505092959194509250565b6000806040838503121561275f57600080fd5b61276883612489565b915061277660208401612489565b90509250929050565b600181811c9082168061279357607f821691505b602082108114156127b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156127e3576127e36127ba565b500190565b6000816000190483118215151615612802576128026127ba565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261282c5761282c612807565b500490565b6020808252601290820152712737ba1030b63637bbb2b21037b934b3b4b760711b604082015260600190565b6020808252601d908201527f596f752063616e2774206d696e7420736f206d75636820746f6b656e73000000604082015260600190565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b6020808252601e908201527f4d6178207065722077616c6c657420746f6b656e732065786365656465640000604082015260600190565b600060ff821660ff841680821015612912576129126127ba565b90039392505050565b602080825260169082015275139bdd08195b9bdd59da08195d1a195c9cc81cd95b9d60521b604082015260600190565b60008282101561295d5761295d6127ba565b500390565b60208082526017908201527f5265737420737570706c79206973207265736572766564000000000000000000604082015260600190565b60006000198214156129ad576129ad6127ba565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612a19818460208801612405565b835190830190612a2d818360208801612405565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a7990830184612431565b9695505050505050565b600060208284031215612a9557600080fd5b8151611942816123d2565b600082612aaf57612aaf612807565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122072b113bdafdececf6f577f044cbc9271497e6ef3f5e14ef65f52f2c058d5604964736f6c63430008090033697066733a2f2f516d4e616e576f524a794c4535705863326762386f77547939433847735a38526f48654544435761366e38534e352f48454b96ce79284e72e5b735a6fba285b682a2f117f4190b67e0414673295888
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80636f8b44b01161014f578063a475b5dd116100c1578063e268e4d31161007a578063e268e4d3146106f8578063e985e9c514610718578063ebf0c71714610761578063f2c4ce1e14610777578063f2fde38b14610797578063f968adbe146107b757600080fd5b8063a475b5dd1461065a578063b35e3b2e1461066f578063b3ab66b01461068f578063b88d4fde146106a2578063c87b56dd146106c2578063d5abeb01146106e257600080fd5b806388039d8f1161011357806388039d8f146105a45780638cc4de19146105ba5780638da5cb5b146105e757806391b7f5ed1461060557806395d89b4114610625578063a22cb4651461063a57600080fd5b80636f8b44b01461051a57806370a082311461053a578063715018a61461055a5780637cb647591461056f5780637d8966e41461058f57600080fd5b8063375a069a116101f357806355f804b3116101ac57806355f804b3146104825780635c975abb146104a25780635f65b485146104bc5780635f834b7f146104cf5780636352211e146104e55780636c0360eb1461050557600080fd5b8063375a069a146103f25780633ccfd60b1461040557806342842e0e1461040d578063453c23101461042d5780634f6ccce714610443578063518302271461046357600080fd5b80631798d58b116102455780631798d58b1461034857806318160ddd14610368578063235b6ea11461038757806323b872dd1461039d5780632f745c59146103bd57806334393743146103dd57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123e8565b6107cd565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61083a565b6040516102ae919061245d565b3480156102e557600080fd5b506102f96102f4366004612470565b6108cc565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc61095c565b34801561033257600080fd5b506103466103413660046124a5565b6109ea565b005b34801561035457600080fd5b50600f546102a29062010000900460ff1681565b34801561037457600080fd5b506000545b6040519081526020016102ae565b34801561039357600080fd5b50610379600b5481565b3480156103a957600080fd5b506103466103b83660046124cf565b610b02565b3480156103c957600080fd5b506103796103d83660046124a5565b610b0d565b3480156103e957600080fd5b50610346610c6a565b610346610400366004612470565b610c91565b610346610d50565b34801561041957600080fd5b506103466104283660046124cf565b610e45565b34801561043957600080fd5b50610379600e5481565b34801561044f57600080fd5b5061037961045e366004612470565b610e60565b34801561046f57600080fd5b50600f546102a290610100900460ff1681565b34801561048e57600080fd5b5061034661049d366004612597565b610ec2565b3480156104ae57600080fd5b50600f546102a29060ff1681565b6103466104ca3660046125e0565b610edd565b3480156104db57600080fd5b5061037960135481565b3480156104f157600080fd5b506102f9610500366004612470565b6113c8565b34801561051157600080fd5b506102cc6113da565b34801561052657600080fd5b50610346610535366004612470565b6113e7565b34801561054657600080fd5b50610379610555366004612679565b6113f4565b34801561056657600080fd5b50610346611485565b34801561057b57600080fd5b5061034661058a366004612470565b611499565b34801561059b57600080fd5b506103466114a6565b3480156105b057600080fd5b50610379600c5481565b3480156105c657600080fd5b506103796105d5366004612679565b60126020526000908152604090205481565b3480156105f357600080fd5b506007546001600160a01b03166102f9565b34801561061157600080fd5b50610346610620366004612470565b6114c2565b34801561063157600080fd5b506102cc6114cf565b34801561064657600080fd5b50610346610655366004612694565b6114de565b34801561066657600080fd5b506103466115a3565b34801561067b57600080fd5b5061034661068a366004612470565b6115bc565b61034661069d366004612470565b6115c9565b3480156106ae57600080fd5b506103466106bd3660046126d0565b6117b0565b3480156106ce57600080fd5b506102cc6106dd366004612470565b6117e9565b3480156106ee57600080fd5b50610379600a5481565b34801561070457600080fd5b50610346610713366004612470565b611949565b34801561072457600080fd5b506102a261073336600461274c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076d57600080fd5b5061037960095481565b34801561078357600080fd5b50610346610792366004612597565b611956565b3480156107a357600080fd5b506103466107b2366004612679565b611971565b3480156107c357600080fd5b50610379600d5481565b60006001600160e01b031982166380ac58cd60e01b14806107fe57506001600160e01b03198216635b5e139f60e01b145b8061081957506001600160e01b0319821663780e9d6360e01b145b8061083457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108499061277f565b80601f01602080910402602001604051908101604052809291908181526020018280546108759061277f565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d9826000541190565b6109405760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b601180546109699061277f565b80601f01602080910402602001604051908101604052809291908181526020018280546109959061277f565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b505050505081565b60006109f5826113c8565b9050806001600160a01b0316836001600160a01b03161415610a645760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610937565b336001600160a01b0382161480610a805750610a808133610733565b610af25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610937565b610afd8383836119ea565b505050565b610afd838383611a46565b6000610b18836113f4565b8210610b715760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610937565b600080549080805b83811015610c0a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bcc57805192505b876001600160a01b0316836001600160a01b03161415610c015786841415610bfa5750935061083492505050565b6001909301925b50600101610b79565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610937565b610c72611d2b565b600f805462ff0000198116620100009182900460ff1615909102179055565b610c99611d2b565b60005481610cd85760405162461bcd60e51b815260206004820152600c60248201526b21b0b73a1036b4b73a10181760a11b6044820152606401610937565b600a54610ce583836127d0565b1115610d2a5760405162461bcd60e51b815260206004820152601460248201527321b0b73a1033b79037bb32b91039bab838363c9760611b6044820152606401610937565b8160136000828254610d3c91906127d0565b90915550610d4c90503383611d85565b5050565b610d58611d2b565b600f54600090630100000090046001600160a01b03166064610d7b4760286127e8565b610d85919061281d565b604051600081818185875af1925050503d8060008114610dc1576040519150601f19603f3d011682016040523d82523d6000602084013e610dc6565b606091505b5050905080610dd457600080fd5b6000610de86007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e32576040519150601f19603f3d011682016040523d82523d6000602084013e610e37565b606091505b5050905080610d4c57600080fd5b610afd838383604051806020016040528060008152506117b0565b600080548210610ebe5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610937565b5090565b610eca611d2b565b8051610d4c906010906020840190612342565b8181610f54828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611d9f565b1515600114610f755760405162461bcd60e51b815260040161093790612831565b333214610f945760405162461bcd60e51b815260040161093790612831565b60005460ff8616610fd65760405162461bcd60e51b815260206004820152600c60248201526b21b0b73a1036b4b73a10181760a11b6044820152606401610937565b600f5460ff1661101d5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610937565b600f5462010000900460ff166110665760405162461bcd60e51b815260206004820152600e60248201526d2ba61039b0b6329034b99027a32360911b6044820152606401610937565b336000908152601260205260409020546001111561126857336001600160a01b038816146110c45760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610937565b600d548660ff1611156110e95760405162461bcd60e51b81526004016109379061285d565b600a546110f960ff8816836127d0565b11156111175760405162461bcd60e51b815260040161093790612894565b600e548660ff16611127336113f4565b61113191906127d0565b111561114f5760405162461bcd60e51b8152600401610937906128c1565b3461115b6001886128f8565b60ff16600b5461116b91906127e8565b11156111895760405162461bcd60e51b81526004016109379061291b565b600c5460135461119a9060016127d0565b11156111db5760405162461bcd60e51b815260206004820152601060248201526f119c9959481b5a5b9d1cc8195b99195960821b6044820152606401610937565b6013546111e8908261294b565b600c54600a546111f8919061294b565b611202919061294b565b61120d6001886128f8565b60ff16111561122e5760405162461bcd60e51b815260040161093790612962565b33600090815260126020526040812080549161124983612999565b90915550506013805490600061125e83612999565b91905055506113b2565b336001600160a01b038816146112ae5760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610937565b600d548660ff1611156112d35760405162461bcd60e51b81526004016109379061285d565b600a546112e360ff8816836127d0565b11156113015760405162461bcd60e51b815260040161093790612894565b600e548660ff16611311336113f4565b61131b91906127d0565b11156113395760405162461bcd60e51b8152600401610937906128c1565b348660ff16600b5461134b91906127e8565b11156113695760405162461bcd60e51b81526004016109379061291b565b601354611376908261294b565b600c54600a54611386919061294b565b611390919061294b565b8660ff1611156113b25760405162461bcd60e51b815260040161093790612962565b6113bf338760ff16611d85565b50505050505050565b60006113d382611db5565b5192915050565b601080546109699061277f565b6113ef611d2b565b600a55565b60006001600160a01b0382166114605760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610937565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61148d611d2b565b6114976000611e8c565b565b6114a1611d2b565b600955565b6114ae611d2b565b600f805460ff19811660ff90911615179055565b6114ca611d2b565b600b55565b6060600280546108499061277f565b6001600160a01b0382163314156115375760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610937565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ab611d2b565b600f805461ff001916610100179055565b6115c4611d2b565b600c55565b3332146115e85760405162461bcd60e51b815260040161093790612831565b600054600f5462010000900460ff161561164757601354611609908261294b565b600c54600a54611619919061294b565b611623919061294b565b8211156116425760405162461bcd60e51b815260040161093790612962565b611672565b600a5461165482846127d0565b11156116725760405162461bcd60e51b815260040161093790612894565b600a5461167f82846127d0565b111561169d5760405162461bcd60e51b815260040161093790612894565b600f5460ff166116e45760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610937565b600082116117225760405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606401610937565b3482600b5461173191906127e8565b111561174f5760405162461bcd60e51b81526004016109379061291b565b600d548211156117715760405162461bcd60e51b81526004016109379061285d565b600e548261177e336113f4565b61178891906127d0565b11156117a65760405162461bcd60e51b8152600401610937906128c1565b610d4c3383611d85565b6117bb848484611a46565b6117c784848484611ede565b6117e35760405162461bcd60e51b8152600401610937906129b4565b50505050565b60606117f6826000541190565b61184c5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610937565b600f54610100900460ff166118ed57601180546118689061277f565b80601f01602080910402602001604051908101604052809291908181526020018280546118949061277f565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b50505050509050919050565b60006118f7611fec565b905060008151116119175760405180602001604052806000815250611942565b8061192184611ffb565b604051602001611932929190612a07565b6040516020818303038152906040525b9392505050565b611951611d2b565b600e55565b61195e611d2b565b8051610d4c906011906020840190612342565b611979611d2b565b6001600160a01b0381166119de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610937565b6119e781611e8c565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a5182611db5565b80519091506000906001600160a01b0316336001600160a01b03161480611a88575033611a7d846108cc565b6001600160a01b0316145b80611a9a57508151611a9a9033610733565b905080611b045760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610937565b846001600160a01b031682600001516001600160a01b031614611b785760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610937565b6001600160a01b038416611bdc5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610937565b611bec60008484600001516119ea565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611ce157611c94816000541190565b15611ce1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6007546001600160a01b031633146114975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610937565b610d4c8282604051806020016040528060008152506120f9565b600082611dac8584612106565b14949350505050565b6040805180820190915260008082526020820152611dd4826000541190565b611e335760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610937565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e82579392505050565b5060001901611e35565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611fe057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f22903390899088908890600401612a46565b602060405180830381600087803b158015611f3c57600080fd5b505af1925050508015611f6c575060408051601f3d908101601f19168201909252611f6991810190612a83565b60015b611fc6573d808015611f9a576040519150601f19603f3d011682016040523d82523d6000602084013e611f9f565b606091505b508051611fbe5760405162461bcd60e51b8152600401610937906129b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fe4565b5060015b949350505050565b6060601080546108499061277f565b60608161201f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612049578061203381612999565b91506120429050600a8361281d565b9150612023565b60008167ffffffffffffffff8111156120645761206461250b565b6040519080825280601f01601f19166020018201604052801561208e576020820181803683370190505b5090505b8415611fe4576120a360018361294b565b91506120b0600a86612aa0565b6120bb9060306127d0565b60f81b8183815181106120d0576120d0612ab4565b60200101906001600160f81b031916908160001a9053506120f2600a8661281d565b9450612092565b610afd8383836001612153565b600081815b845181101561214b576121378286838151811061212a5761212a612ab4565b6020026020010151612316565b91508061214381612999565b91505061210b565b509392505050565b6000546001600160a01b0385166121b65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610937565b836122145760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610937565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561230d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612301576122e56000888488611ede565b6123015760405162461bcd60e51b8152600401610937906129b4565b60019182019101612292565b50600055611d24565b6000818310612332576000828152602084905260409020611942565b5060009182526020526040902090565b82805461234e9061277f565b90600052602060002090601f01602090048101928261237057600085556123b6565b82601f1061238957805160ff19168380011785556123b6565b828001600101855582156123b6579182015b828111156123b657825182559160200191906001019061239b565b50610ebe9291505b80821115610ebe57600081556001016123be565b6001600160e01b0319811681146119e757600080fd5b6000602082840312156123fa57600080fd5b8135611942816123d2565b60005b83811015612420578181015183820152602001612408565b838111156117e35750506000910152565b60008151808452612449816020860160208601612405565b601f01601f19169290920160200192915050565b6020815260006119426020830184612431565b60006020828403121561248257600080fd5b5035919050565b80356001600160a01b03811681146124a057600080fd5b919050565b600080604083850312156124b857600080fd5b6124c183612489565b946020939093013593505050565b6000806000606084860312156124e457600080fd5b6124ed84612489565b92506124fb60208501612489565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561253c5761253c61250b565b604051601f8501601f19908116603f011681019082821181831017156125645761256461250b565b8160405280935085815286868601111561257d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125a957600080fd5b813567ffffffffffffffff8111156125c057600080fd5b8201601f810184136125d157600080fd5b611fe484823560208401612521565b600080600080606085870312156125f657600080fd5b6125ff85612489565b9350602085013560ff8116811461261557600080fd5b9250604085013567ffffffffffffffff8082111561263257600080fd5b818701915087601f83011261264657600080fd5b81358181111561265557600080fd5b8860208260051b850101111561266a57600080fd5b95989497505060200194505050565b60006020828403121561268b57600080fd5b61194282612489565b600080604083850312156126a757600080fd5b6126b083612489565b9150602083013580151581146126c557600080fd5b809150509250929050565b600080600080608085870312156126e657600080fd5b6126ef85612489565b93506126fd60208601612489565b925060408501359150606085013567ffffffffffffffff81111561272057600080fd5b8501601f8101871361273157600080fd5b61274087823560208401612521565b91505092959194509250565b6000806040838503121561275f57600080fd5b61276883612489565b915061277660208401612489565b90509250929050565b600181811c9082168061279357607f821691505b602082108114156127b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156127e3576127e36127ba565b500190565b6000816000190483118215151615612802576128026127ba565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261282c5761282c612807565b500490565b6020808252601290820152712737ba1030b63637bbb2b21037b934b3b4b760711b604082015260600190565b6020808252601d908201527f596f752063616e2774206d696e7420736f206d75636820746f6b656e73000000604082015260600190565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b6020808252601e908201527f4d6178207065722077616c6c657420746f6b656e732065786365656465640000604082015260600190565b600060ff821660ff841680821015612912576129126127ba565b90039392505050565b602080825260169082015275139bdd08195b9bdd59da08195d1a195c9cc81cd95b9d60521b604082015260600190565b60008282101561295d5761295d6127ba565b500390565b60208082526017908201527f5265737420737570706c79206973207265736572766564000000000000000000604082015260600190565b60006000198214156129ad576129ad6127ba565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612a19818460208801612405565b835190830190612a2d818360208801612405565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a7990830184612431565b9695505050505050565b600060208284031215612a9557600080fd5b8151611942816123d2565b600082612aaf57612aaf612807565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122072b113bdafdececf6f577f044cbc9271497e6ef3f5e14ef65f52f2c058d5604964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
48454b96ce79284e72e5b735a6fba285b682a2f117f4190b67e0414673295888
-----Decoded View---------------
Arg [0] : merkleroot (bytes32): 0x48454b96ce79284e72e5b735a6fba285b682a2f117f4190b67e0414673295888
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 48454b96ce79284e72e5b735a6fba285b682a2f117f4190b67e0414673295888
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.