ERC-721
Overview
Max Total Supply
1,999 youtherealceo
Holders
458
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 youtherealceoLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WhitelistNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
// contracts/Box.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "contracts/AzukiNFT.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract WhitelistNFT is AzukiNFT { uint16 public constant maxSupply = 1999; uint8 public maxMintAmountPerWallet = 10; uint8 public maxMintAmountPerMint = 5; bool public paused = false; bool public isPublicLive = false; mapping (address => uint8) public NFTPerAddress; bytes32 immutable public merkleRoot; constructor(string memory name_, string memory symbol_, uint256 initialMint, bytes32 _merkleRoot, string memory blindBoxTokenURI) AzukiNFT(name_, symbol_, initialMint, blindBoxTokenURI) { merkleRoot = _merkleRoot; } function mint(uint256 _mintAmount) override external payable { require(isPublicLive, "Sale not live"); require(!paused, "The contract is paused!"); require(_mintAmount <= maxMintAmountPerMint, "Exceeds max amount per mint."); uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); uint8 nft = NFTPerAddress[msg.sender]; require(_mintAmount + nft <= maxMintAmountPerWallet, "Exceeds max NFT allowed per Wallet."); _safeMint(msg.sender , _mintAmount); NFTPerAddress[msg.sender] = uint8(_mintAmount) + nft ; delete totalSupply; } function mintWhitelist(uint256 _mintAmount, bytes32[] calldata merkleProof) external payable { require(!paused, "The contract is paused!"); require(_mintAmount <= maxMintAmountPerMint, "Exceeds max amount per mint."); uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); uint8 nft = NFTPerAddress[msg.sender]; require(_mintAmount + nft <= maxMintAmountPerWallet, "Exceeds max NFT allowed per Wallet."); require(MerkleProof.verify(merkleProof, merkleRoot, toBytes32(msg.sender)) == true, "Invalid merkle proof"); _safeMint(msg.sender , _mintAmount); NFTPerAddress[msg.sender] = uint8(_mintAmount) + nft ; delete totalSupply; } function toBytes32(address addr) pure internal returns (bytes32) { return bytes32(uint256(uint160(addr))); } function reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function togglePaused() external onlyOwner { paused = !paused; } function togglePublicLive() external onlyOwner { isPublicLive = !isPublicLive; } function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{ maxMintAmountPerWallet = _maxtx; } function setMaxMintAmountPerMint(uint8 _maxtx) external onlyOwner{ maxMintAmountPerMint = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } }
// contracts/Box.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract AzukiNFT is ERC721A, Ownable { string private _tokenBaseURI = ''; string private _blindTokenURI = ''; bool private _revealed = false; constructor(string memory name_, string memory symbol_, uint256 initialMint, string memory blindBoxTokenURI) ERC721A(name_, symbol_) { _tokenBaseURI = blindBoxTokenURI; if(initialMint>0){ _mintERC2309(msg.sender, initialMint); } } function mint(uint256 quantity) virtual external payable { // `_mint`'s second argument now takes in a `quantity`, not a `tokenId`. _mint(msg.sender, quantity); } function _baseURI() internal view virtual override returns (string memory){ return _tokenBaseURI; } function reveal(string memory baseURI) public onlyOwner { _tokenBaseURI = baseURI; _revealed = true; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if(_revealed){ return string(abi.encodePacked(super.tokenURI(tokenId), '.json')); } return _baseURI(); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // 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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * `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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// 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 // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// 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) (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) } } }
// contracts/Box.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "contracts/AzukiNFT.sol"; contract GigaNFT is AzukiNFT { uint16 public constant maxSupply = 6666; uint8 public maxMintAmountPerWallet = 5; bool public paused = true; uint public cost = 0.0069 ether; mapping (address => uint8) public NFTPerAddress; constructor(string memory name_, string memory symbol_, uint256 initialMint, string memory blindBoxTokenURI) AzukiNFT(name_, symbol_, initialMint, blindBoxTokenURI) {} function mint(uint256 _mintAmount) override external payable { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); uint8 nft = NFTPerAddress[msg.sender]; require(_mintAmount + nft <= maxMintAmountPerWallet, "Exceeds max Nft allowed per Wallet."); require(!paused, "The contract is paused!"); if(nft >= 1 ) { require(msg.value >= cost * _mintAmount , "Insufficient Fundsss"); } else { require(msg.value >= cost * (_mintAmount - 1) , "Insufficient Fundsss"); } _safeMint(msg.sender , _mintAmount); NFTPerAddress[msg.sender] = uint8(_mintAmount) + nft ; delete totalSupply; } function reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function togglePaused() external onlyOwner { paused = !paused; } function setCost(uint _Cost) external onlyOwner { cost = _Cost; } function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{ maxMintAmountPerWallet = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MustarToken is ERC20, Ownable{ constructor() ERC20("MustarToken", "MUSTART"){} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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.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 (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 // 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); }
// contracts/Box.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; // Import Ownable from the OpenZeppelin Contracts library import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Make Box inherit from the Ownable contract contract MustarNFT is ERC721, Ownable { uint256 private _value; uint256 private increment; using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIds; mapping (uint256 => string) private _tokenURIs; event ValueChanged(uint256 value); event Minted(uint256 value, address receipient); // The onlyOwner modifier restricts who can call the store function function store(uint256 value) public onlyOwner { _value = value; emit ValueChanged(value); } function retrieve() public view returns (uint256) { return _tokenIds.current(); } function hardcoded() public returns (uint256) { increment += 1; return increment; } function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { _tokenURIs[tokenId] = _tokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; return _tokenURI; } function mint(address recipient, string memory uri) public returns (uint256) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(recipient, newItemId); _setTokenURI(newItemId, uri); emit Minted(newItemId, recipient); return newItemId; } constructor(string memory name, string memory symbol) ERC721(name, symbol) {} function approve(address to, uint256 tokenId) override public { super.approve(to, tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
{ "optimizer": { "enabled": true, "runs": 100 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialMint","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"string","name":"blindBoxTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","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":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040819052600060a08190526200001b9160099162000247565b506040805160208101918290526000908190526200003c91600a9162000247565b50600b805464ffffffffff191662050a001790553480156200005d57600080fd5b5060405162002116380380620021168339810160408190526200008091620003a0565b84848483838381600290805190602001906200009e92919062000247565b508051620000b490600390602084019062000247565b50506000805550620000c63362000104565b8051620000db90600990602084019062000247565b508115620000ef57620000ef338362000156565b50505060809290925250620004949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0383166200018057604051622e076360e81b815260040160405180910390fd5b816200019f5760405163b562e8dd60e01b815260040160405180910390fd5b611388821115620001c357604051633db1f9af60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600482528083206001871460e11b4260a01b17851790558051600019868801018152905185927fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d928290030190a40160005550565b828054620002559062000441565b90600052602060002090601f016020900481019282620002795760008555620002c4565b82601f106200029457805160ff1916838001178555620002c4565b82800160010185558215620002c4579182015b82811115620002c4578251825591602001919060010190620002a7565b50620002d2929150620002d6565b5090565b5b80821115620002d25760008155600101620002d7565b600082601f830112620002fe578081fd5b81516001600160401b03808211156200031b576200031b6200047e565b604051601f8301601f19908116603f011681019082821181831017156200034657620003466200047e565b8160405283815260209250868385880101111562000362578485fd5b8491505b8382101562000385578582018301518183018401529082019062000366565b838211156200039657848385830101525b9695505050505050565b600080600080600060a08688031215620003b8578081fd5b85516001600160401b0380821115620003cf578283fd5b620003dd89838a01620002ed565b96506020880151915080821115620003f3578283fd5b6200040189838a01620002ed565b95506040880151945060608801519350608088015191508082111562000425578283fd5b506200043488828901620002ed565b9150509295509295909350565b600181811c908216806200045657607f821691505b602082108114156200047857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051611c5f620004b760003960008181610301015261078b0152611c5f6000f3fe6080604052600436106101ae5760003560e01c80636352211e116100ed578063a345af6a11610090578063a345af6a146104ab578063b88d4fde146104dd578063bad0ba6f146104fd578063bc951b911461051d578063c87b56dd1461053c578063d5abeb011461055c578063dbd37cf414610585578063e985e9c5146105b5578063f2fde38b146105fe57600080fd5b80636352211e146103d057806370a08231146103f0578063715018a6146104105780638da5cb5b1461042557806395d89b4114610443578063a0712d6814610458578063a178bdc51461046b578063a22cb4651461048b57600080fd5b806328b60d151161015557806328b60d15146102cf5780632eb4a7ab146102ef57806336566f06146103235780633ccfd60b1461033857806342842e0e1461034d5780634c2612471461036d5780635c975abb1461038d5780635e5f3ce4146103ae57600080fd5b806301ffc9a7146101b3578063061431a8146101e857806306fdde03146101fd578063081812fc1461021f578063095ea7b31461025757806318160ddd146102775780631822c15a1461029a57806323b872dd146102af575b600080fd5b3480156101bf57600080fd5b506101d36101ce3660046117eb565b61061e565b60405190151581526020015b60405180910390f35b6101fb6101f63660046118a4565b610670565b005b34801561020957600080fd5b5061021261083f565b6040516101df9190611a00565b34801561022b57600080fd5b5061023f61023a36600461188c565b6108d1565b6040516001600160a01b0390911681526020016101df565b34801561026357600080fd5b506101fb6102723660046117c2565b610915565b34801561028357600080fd5b50600154600054035b6040519081526020016101df565b3480156102a657600080fd5b506101fb6109b5565b3480156102bb57600080fd5b506101fb6102ca3660046116d4565b6109e0565b3480156102db57600080fd5b506101fb6102ea36600461191e565b610b5f565b3480156102fb57600080fd5b5061028c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561032f57600080fd5b506101fb610b83565b34801561034457600080fd5b506101fb610bac565b34801561035957600080fd5b506101fb6103683660046116d4565b610be7565b34801561037957600080fd5b506101fb610388366004611823565b610c07565b34801561039957600080fd5b50600b546101d3906301000000900460ff1681565b3480156103ba57600080fd5b50600b546101d390640100000000900460ff1681565b3480156103dc57600080fd5b5061023f6103eb36600461188c565b610c33565b3480156103fc57600080fd5b5061028c61040b366004611688565b610c3e565b34801561041c57600080fd5b506101fb610c8d565b34801561043157600080fd5b506008546001600160a01b031661023f565b34801561044f57600080fd5b50610212610ca1565b6101fb61046636600461188c565b610cb0565b34801561047757600080fd5b506101fb61048636600461191e565b610e11565b34801561049757600080fd5b506101fb6104a6366004611788565b610e37565b3480156104b757600080fd5b50600b546104cb9062010000900460ff1681565b60405160ff90911681526020016101df565b3480156104e957600080fd5b506101fb6104f836600461170f565b610ecd565b34801561050957600080fd5b506101fb610518366004611869565b610f17565b34801561052957600080fd5b50600b546104cb90610100900460ff1681565b34801561054857600080fd5b5061021261055736600461188c565b610f93565b34801561056857600080fd5b506105726107cf81565b60405161ffff90911681526020016101df565b34801561059157600080fd5b506104cb6105a0366004611688565b600c6020526000908152604090205460ff1681565b3480156105c157600080fd5b506101d36105d03660046116a2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060a57600080fd5b506101fb610619366004611688565b610fd8565b60006301ffc9a760e01b6001600160e01b03198316148061064f57506380ac58cd60e01b6001600160e01b03198316145b8061066a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600b546301000000900460ff16156106a35760405162461bcd60e51b815260040161069a90611a56565b60405180910390fd5b600b5462010000900460ff168311156106ce5760405162461bcd60e51b815260040161069a90611ab4565b60006106dd6001546000540390565b90506107cf6106f08561ffff8416611b08565b111561070e5760405162461bcd60e51b815260040161069a90611a87565b336000908152600c6020526040902054600b5460ff91821691610100909104166107388287611b08565b11156107565760405162461bcd60e51b815260040161069a90611a13565b6107bb8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f000000000000000000000000000000000000000000000000000000000000000092503391506107b69050565b611051565b15156001146108035760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161069a565b61080d3386611067565b6108178186611b20565b336000908152600c60205260409020805460ff191660ff929092169190911790555050505050565b60606002805461084e90611b71565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90611b71565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108dc82611081565b6108f9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061092082610c33565b9050336001600160a01b038216146109595761093c81336105d0565b610959576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109bd6110a8565b600b805464ff000000001981166401000000009182900460ff1615909102179055565b60006109eb82611102565b9050836001600160a01b0316816001600160a01b031614610a1e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a6b57610a4e86336105d0565b610a6b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a9257604051633a954ecd60e21b815260040160405180910390fd5b8015610a9d57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b285760018401600081815260046020526040902054610b26576000548114610b265760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020611c0a83398151915260405160405180910390a4505050505050565b610b676110a8565b600b805460ff9092166101000261ff0019909216919091179055565b610b8b6110a8565b600b805463ff00000019811663010000009182900460ff1615909102179055565b610bb46110a8565b6040514790339082156108fc029083906000818181858888f19350505050158015610be3573d6000803e3d6000fd5b5050565b610c0283838360405180602001604052806000815250610ecd565b505050565b610c0f6110a8565b8051610c2290600990602084019061155d565b5050600b805460ff19166001179055565b600061066a82611102565b60006001600160a01b038216610c67576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c956110a8565b610c9f600061116a565b565b60606003805461084e90611b71565b600b54640100000000900460ff16610cfa5760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b604482015260640161069a565b600b546301000000900460ff1615610d245760405162461bcd60e51b815260040161069a90611a56565b600b5462010000900460ff16811115610d4f5760405162461bcd60e51b815260040161069a90611ab4565b6000610d5e6001546000540390565b90506107cf610d718361ffff8416611b08565b1115610d8f5760405162461bcd60e51b815260040161069a90611a87565b336000908152600c6020526040902054600b5460ff9182169161010090910416610db98285611b08565b1115610dd75760405162461bcd60e51b815260040161069a90611a13565b610de13384611067565b610deb8184611b20565b336000908152600c60205260409020805460ff191660ff92909216919091179055505050565b610e196110a8565b600b805460ff909216620100000262ff000019909216919091179055565b6001600160a01b038216331415610e615760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ed88484846109e0565b6001600160a01b0383163b15610f1157610ef4848484846111bc565b610f11576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f1f6110a8565b6000610f2e6001546000540390565b90506107cf610f3d8483611aeb565b61ffff161115610f855760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161069a565b610c02828461ffff16611067565b600b5460609060ff1615610fd057610faa826112b4565b604051602001610fba919061199a565b6040516020818303038152906040529050919050565b61066a611338565b610fe06110a8565b6001600160a01b0381166110455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069a565b61104e8161116a565b50565b60008261105e8584611347565b14949350505050565b610be38282604051806020016040528060008152506113a2565b600080548210801561066a575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610c9f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161069a565b60008160005481101561115157600081815260046020526040902054600160e01b811661114f575b8061114857506000190160008181526004602052604090205461112a565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111f19033908990889088906004016119c3565b602060405180830381600087803b15801561120b57600080fd5b505af192505050801561123b575060408051601f3d908101601f1916820190925261123891810190611807565b60015b611296573d808015611269576040519150601f19603f3d011682016040523d82523d6000602084013e61126e565b606091505b50805161128e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606112bf82611081565b6112dc57604051630a14c4b560e41b815260040160405180910390fd5b60006112e6611338565b90508051600014156113075760405180602001604052806000815250611148565b806113118461140f565b60405160200161132292919061196b565b6040516020818303038152906040529392505050565b60606009805461084e90611b71565b600081815b845181101561139a576113868286838151811061137957634e487b7160e01b600052603260045260246000fd5b602002602001015161145e565b91508061139281611bac565b91505061134c565b509392505050565b6113ac838361148a565b6001600160a01b0383163b15610c02576000548281035b6113d660008683806001019450866111bc565b6113f3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113c357816000541461140857600080fd5b5050505050565b604080516080810191829052607f0190826030600a8206018353600a90045b801561144c57600183039250600a81066030018353600a900461142e565b50819003601f19909101908152919050565b600081831061147a576000828152602084905260409020611148565b5060009182526020526040902090565b600054816114ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020611c0a8339815191528180a4600183015b8181146115365780836000600080516020611c0a833981519152600080a4600101611510565b508161155457604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461156990611b71565b90600052602060002090601f01602090048101928261158b57600085556115d1565b82601f106115a457805160ff19168380011785556115d1565b828001600101855582156115d1579182015b828111156115d15782518255916020019190600101906115b6565b506115dd9291506115e1565b5090565b5b808211156115dd57600081556001016115e2565b600067ffffffffffffffff8084111561161157611611611bdd565b604051601f8501601f19908116603f0116810190828211818310171561163957611639611bdd565b8160405280935085815286868601111561165257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461168357600080fd5b919050565b600060208284031215611699578081fd5b6111488261166c565b600080604083850312156116b4578081fd5b6116bd8361166c565b91506116cb6020840161166c565b90509250929050565b6000806000606084860312156116e8578081fd5b6116f18461166c565b92506116ff6020850161166c565b9150604084013590509250925092565b60008060008060808587031215611724578081fd5b61172d8561166c565b935061173b6020860161166c565b925060408501359150606085013567ffffffffffffffff81111561175d578182fd5b8501601f8101871361176d578182fd5b61177c878235602084016115f6565b91505092959194509250565b6000806040838503121561179a578182fd5b6117a38361166c565b9150602083013580151581146117b7578182fd5b809150509250929050565b600080604083850312156117d4578182fd5b6117dd8361166c565b946020939093013593505050565b6000602082840312156117fc578081fd5b813561114881611bf3565b600060208284031215611818578081fd5b815161114881611bf3565b600060208284031215611834578081fd5b813567ffffffffffffffff81111561184a578182fd5b8201601f8101841361185a578182fd5b6112ac848235602084016115f6565b6000806040838503121561187b578182fd5b823561ffff811681146116bd578283fd5b60006020828403121561189d578081fd5b5035919050565b6000806000604084860312156118b8578283fd5b83359250602084013567ffffffffffffffff808211156118d6578384fd5b818601915086601f8301126118e9578384fd5b8135818111156118f7578485fd5b8760208260051b850101111561190b578485fd5b6020830194508093505050509250925092565b60006020828403121561192f578081fd5b813560ff81168114611148578182fd5b60008151808452611957816020860160208601611b45565b601f01601f19169290920160200192915050565b6000835161197d818460208801611b45565b835190830190611991818360208801611b45565b01949350505050565b600082516119ac818460208701611b45565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119f69083018461193f565b9695505050505050565b602081526000611148602083018461193f565b60208082526023908201527f45786365656473206d6178204e465420616c6c6f776564207065722057616c6c60408201526232ba1760e91b606082015260800190565b60208082526017908201527654686520636f6e7472616374206973207061757365642160481b604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b6020808252601c908201527f45786365656473206d617820616d6f756e7420706572206d696e742e00000000604082015260600190565b600061ffff80831681851680830382111561199157611991611bc7565b60008219821115611b1b57611b1b611bc7565b500190565b600060ff821660ff84168060ff03821115611b3d57611b3d611bc7565b019392505050565b60005b83811015611b60578181015183820152602001611b48565b83811115610f115750506000910152565b600181811c90821680611b8557607f821691505b60208210811415611ba657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bc057611bc0611bc7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104e57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d15b6690bd5ee8ec44c4234b18e553df4db7a885b5577d9859c4e7e3824cd0e664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000e5f3201686897919be32956fe054a45dc1749222bde9c8baa62ae1325ebc5af00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000010596f7520546865205265616c2043454f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d796f757468657265616c63656f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569637970357678766b78616e71346b70736c6d6f6a6a36697934776c62726a6d34336b7a35666a333264336a776d65736762786269000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ae5760003560e01c80636352211e116100ed578063a345af6a11610090578063a345af6a146104ab578063b88d4fde146104dd578063bad0ba6f146104fd578063bc951b911461051d578063c87b56dd1461053c578063d5abeb011461055c578063dbd37cf414610585578063e985e9c5146105b5578063f2fde38b146105fe57600080fd5b80636352211e146103d057806370a08231146103f0578063715018a6146104105780638da5cb5b1461042557806395d89b4114610443578063a0712d6814610458578063a178bdc51461046b578063a22cb4651461048b57600080fd5b806328b60d151161015557806328b60d15146102cf5780632eb4a7ab146102ef57806336566f06146103235780633ccfd60b1461033857806342842e0e1461034d5780634c2612471461036d5780635c975abb1461038d5780635e5f3ce4146103ae57600080fd5b806301ffc9a7146101b3578063061431a8146101e857806306fdde03146101fd578063081812fc1461021f578063095ea7b31461025757806318160ddd146102775780631822c15a1461029a57806323b872dd146102af575b600080fd5b3480156101bf57600080fd5b506101d36101ce3660046117eb565b61061e565b60405190151581526020015b60405180910390f35b6101fb6101f63660046118a4565b610670565b005b34801561020957600080fd5b5061021261083f565b6040516101df9190611a00565b34801561022b57600080fd5b5061023f61023a36600461188c565b6108d1565b6040516001600160a01b0390911681526020016101df565b34801561026357600080fd5b506101fb6102723660046117c2565b610915565b34801561028357600080fd5b50600154600054035b6040519081526020016101df565b3480156102a657600080fd5b506101fb6109b5565b3480156102bb57600080fd5b506101fb6102ca3660046116d4565b6109e0565b3480156102db57600080fd5b506101fb6102ea36600461191e565b610b5f565b3480156102fb57600080fd5b5061028c7f0e5f3201686897919be32956fe054a45dc1749222bde9c8baa62ae1325ebc5af81565b34801561032f57600080fd5b506101fb610b83565b34801561034457600080fd5b506101fb610bac565b34801561035957600080fd5b506101fb6103683660046116d4565b610be7565b34801561037957600080fd5b506101fb610388366004611823565b610c07565b34801561039957600080fd5b50600b546101d3906301000000900460ff1681565b3480156103ba57600080fd5b50600b546101d390640100000000900460ff1681565b3480156103dc57600080fd5b5061023f6103eb36600461188c565b610c33565b3480156103fc57600080fd5b5061028c61040b366004611688565b610c3e565b34801561041c57600080fd5b506101fb610c8d565b34801561043157600080fd5b506008546001600160a01b031661023f565b34801561044f57600080fd5b50610212610ca1565b6101fb61046636600461188c565b610cb0565b34801561047757600080fd5b506101fb61048636600461191e565b610e11565b34801561049757600080fd5b506101fb6104a6366004611788565b610e37565b3480156104b757600080fd5b50600b546104cb9062010000900460ff1681565b60405160ff90911681526020016101df565b3480156104e957600080fd5b506101fb6104f836600461170f565b610ecd565b34801561050957600080fd5b506101fb610518366004611869565b610f17565b34801561052957600080fd5b50600b546104cb90610100900460ff1681565b34801561054857600080fd5b5061021261055736600461188c565b610f93565b34801561056857600080fd5b506105726107cf81565b60405161ffff90911681526020016101df565b34801561059157600080fd5b506104cb6105a0366004611688565b600c6020526000908152604090205460ff1681565b3480156105c157600080fd5b506101d36105d03660046116a2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060a57600080fd5b506101fb610619366004611688565b610fd8565b60006301ffc9a760e01b6001600160e01b03198316148061064f57506380ac58cd60e01b6001600160e01b03198316145b8061066a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600b546301000000900460ff16156106a35760405162461bcd60e51b815260040161069a90611a56565b60405180910390fd5b600b5462010000900460ff168311156106ce5760405162461bcd60e51b815260040161069a90611ab4565b60006106dd6001546000540390565b90506107cf6106f08561ffff8416611b08565b111561070e5760405162461bcd60e51b815260040161069a90611a87565b336000908152600c6020526040902054600b5460ff91821691610100909104166107388287611b08565b11156107565760405162461bcd60e51b815260040161069a90611a13565b6107bb8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f0e5f3201686897919be32956fe054a45dc1749222bde9c8baa62ae1325ebc5af92503391506107b69050565b611051565b15156001146108035760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161069a565b61080d3386611067565b6108178186611b20565b336000908152600c60205260409020805460ff191660ff929092169190911790555050505050565b60606002805461084e90611b71565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90611b71565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108dc82611081565b6108f9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061092082610c33565b9050336001600160a01b038216146109595761093c81336105d0565b610959576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109bd6110a8565b600b805464ff000000001981166401000000009182900460ff1615909102179055565b60006109eb82611102565b9050836001600160a01b0316816001600160a01b031614610a1e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a6b57610a4e86336105d0565b610a6b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a9257604051633a954ecd60e21b815260040160405180910390fd5b8015610a9d57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b285760018401600081815260046020526040902054610b26576000548114610b265760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020611c0a83398151915260405160405180910390a4505050505050565b610b676110a8565b600b805460ff9092166101000261ff0019909216919091179055565b610b8b6110a8565b600b805463ff00000019811663010000009182900460ff1615909102179055565b610bb46110a8565b6040514790339082156108fc029083906000818181858888f19350505050158015610be3573d6000803e3d6000fd5b5050565b610c0283838360405180602001604052806000815250610ecd565b505050565b610c0f6110a8565b8051610c2290600990602084019061155d565b5050600b805460ff19166001179055565b600061066a82611102565b60006001600160a01b038216610c67576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c956110a8565b610c9f600061116a565b565b60606003805461084e90611b71565b600b54640100000000900460ff16610cfa5760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b604482015260640161069a565b600b546301000000900460ff1615610d245760405162461bcd60e51b815260040161069a90611a56565b600b5462010000900460ff16811115610d4f5760405162461bcd60e51b815260040161069a90611ab4565b6000610d5e6001546000540390565b90506107cf610d718361ffff8416611b08565b1115610d8f5760405162461bcd60e51b815260040161069a90611a87565b336000908152600c6020526040902054600b5460ff9182169161010090910416610db98285611b08565b1115610dd75760405162461bcd60e51b815260040161069a90611a13565b610de13384611067565b610deb8184611b20565b336000908152600c60205260409020805460ff191660ff92909216919091179055505050565b610e196110a8565b600b805460ff909216620100000262ff000019909216919091179055565b6001600160a01b038216331415610e615760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ed88484846109e0565b6001600160a01b0383163b15610f1157610ef4848484846111bc565b610f11576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f1f6110a8565b6000610f2e6001546000540390565b90506107cf610f3d8483611aeb565b61ffff161115610f855760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161069a565b610c02828461ffff16611067565b600b5460609060ff1615610fd057610faa826112b4565b604051602001610fba919061199a565b6040516020818303038152906040529050919050565b61066a611338565b610fe06110a8565b6001600160a01b0381166110455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069a565b61104e8161116a565b50565b60008261105e8584611347565b14949350505050565b610be38282604051806020016040528060008152506113a2565b600080548210801561066a575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610c9f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161069a565b60008160005481101561115157600081815260046020526040902054600160e01b811661114f575b8061114857506000190160008181526004602052604090205461112a565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111f19033908990889088906004016119c3565b602060405180830381600087803b15801561120b57600080fd5b505af192505050801561123b575060408051601f3d908101601f1916820190925261123891810190611807565b60015b611296573d808015611269576040519150601f19603f3d011682016040523d82523d6000602084013e61126e565b606091505b50805161128e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606112bf82611081565b6112dc57604051630a14c4b560e41b815260040160405180910390fd5b60006112e6611338565b90508051600014156113075760405180602001604052806000815250611148565b806113118461140f565b60405160200161132292919061196b565b6040516020818303038152906040529392505050565b60606009805461084e90611b71565b600081815b845181101561139a576113868286838151811061137957634e487b7160e01b600052603260045260246000fd5b602002602001015161145e565b91508061139281611bac565b91505061134c565b509392505050565b6113ac838361148a565b6001600160a01b0383163b15610c02576000548281035b6113d660008683806001019450866111bc565b6113f3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113c357816000541461140857600080fd5b5050505050565b604080516080810191829052607f0190826030600a8206018353600a90045b801561144c57600183039250600a81066030018353600a900461142e565b50819003601f19909101908152919050565b600081831061147a576000828152602084905260409020611148565b5060009182526020526040902090565b600054816114ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020611c0a8339815191528180a4600183015b8181146115365780836000600080516020611c0a833981519152600080a4600101611510565b508161155457604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461156990611b71565b90600052602060002090601f01602090048101928261158b57600085556115d1565b82601f106115a457805160ff19168380011785556115d1565b828001600101855582156115d1579182015b828111156115d15782518255916020019190600101906115b6565b506115dd9291506115e1565b5090565b5b808211156115dd57600081556001016115e2565b600067ffffffffffffffff8084111561161157611611611bdd565b604051601f8501601f19908116603f0116810190828211818310171561163957611639611bdd565b8160405280935085815286868601111561165257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461168357600080fd5b919050565b600060208284031215611699578081fd5b6111488261166c565b600080604083850312156116b4578081fd5b6116bd8361166c565b91506116cb6020840161166c565b90509250929050565b6000806000606084860312156116e8578081fd5b6116f18461166c565b92506116ff6020850161166c565b9150604084013590509250925092565b60008060008060808587031215611724578081fd5b61172d8561166c565b935061173b6020860161166c565b925060408501359150606085013567ffffffffffffffff81111561175d578182fd5b8501601f8101871361176d578182fd5b61177c878235602084016115f6565b91505092959194509250565b6000806040838503121561179a578182fd5b6117a38361166c565b9150602083013580151581146117b7578182fd5b809150509250929050565b600080604083850312156117d4578182fd5b6117dd8361166c565b946020939093013593505050565b6000602082840312156117fc578081fd5b813561114881611bf3565b600060208284031215611818578081fd5b815161114881611bf3565b600060208284031215611834578081fd5b813567ffffffffffffffff81111561184a578182fd5b8201601f8101841361185a578182fd5b6112ac848235602084016115f6565b6000806040838503121561187b578182fd5b823561ffff811681146116bd578283fd5b60006020828403121561189d578081fd5b5035919050565b6000806000604084860312156118b8578283fd5b83359250602084013567ffffffffffffffff808211156118d6578384fd5b818601915086601f8301126118e9578384fd5b8135818111156118f7578485fd5b8760208260051b850101111561190b578485fd5b6020830194508093505050509250925092565b60006020828403121561192f578081fd5b813560ff81168114611148578182fd5b60008151808452611957816020860160208601611b45565b601f01601f19169290920160200192915050565b6000835161197d818460208801611b45565b835190830190611991818360208801611b45565b01949350505050565b600082516119ac818460208701611b45565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119f69083018461193f565b9695505050505050565b602081526000611148602083018461193f565b60208082526023908201527f45786365656473206d6178204e465420616c6c6f776564207065722057616c6c60408201526232ba1760e91b606082015260800190565b60208082526017908201527654686520636f6e7472616374206973207061757365642160481b604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b6020808252601c908201527f45786365656473206d617820616d6f756e7420706572206d696e742e00000000604082015260600190565b600061ffff80831681851680830382111561199157611991611bc7565b60008219821115611b1b57611b1b611bc7565b500190565b600060ff821660ff84168060ff03821115611b3d57611b3d611bc7565b019392505050565b60005b83811015611b60578181015183820152602001611b48565b83811115610f115750506000910152565b600181811c90821680611b8557607f821691505b60208210811415611ba657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bc057611bc0611bc7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104e57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d15b6690bd5ee8ec44c4234b18e553df4db7a885b5577d9859c4e7e3824cd0e664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000e5f3201686897919be32956fe054a45dc1749222bde9c8baa62ae1325ebc5af00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000010596f7520546865205265616c2043454f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d796f757468657265616c63656f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569637970357678766b78616e71346b70736c6d6f6a6a36697934776c62726a6d34336b7a35666a333264336a776d65736762786269000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): You The Real CEO
Arg [1] : symbol_ (string): youtherealceo
Arg [2] : initialMint (uint256): 0
Arg [3] : _merkleRoot (bytes32): 0x0e5f3201686897919be32956fe054a45dc1749222bde9c8baa62ae1325ebc5af
Arg [4] : blindBoxTokenURI (string): ipfs://bafkreicyp5vxvkxanq4kpslmojj6iy4wlbrjm43kz5fj32d3jwmesgbxbi
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0e5f3201686897919be32956fe054a45dc1749222bde9c8baa62ae1325ebc5af
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [6] : 596f7520546865205265616c2043454f00000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [8] : 796f757468657265616c63656f00000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [10] : 697066733a2f2f6261666b726569637970357678766b78616e71346b70736c6d
Arg [11] : 6f6a6a36697934776c62726a6d34336b7a35666a333264336a776d6573676278
Arg [12] : 6269000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
188:3157:19:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:20;;;;;;;;;;-1:-1:-1;9112:630:20;;;;;:::i;:::-;;:::i;:::-;;;7647:14:22;;7640:22;7622:41;;7610:2;7595:18;9112:630:20;;;;;;;;1472:790:19;;;;;;:::i;:::-;;:::i;:::-;;9996:98:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16309:214::-;;;;;;;;;;-1:-1:-1;16309:214:20;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6945:32:22;;;6927:51;;6915:2;6900:18;16309:214:20;6882:102:22;15769:390:20;;;;;;;;;;-1:-1:-1;15769:390:20;;;;;:::i;:::-;;:::i;5851:317::-;;;;;;;;;;-1:-1:-1;6121:12:20;;5912:7;6105:13;:28;5851:317;;;7820:25:22;;;7808:2;7793:18;5851:317:20;7775:76:22;2841:94:19;;;;;;;;;;;;;:::i;19918:2756:20:-;;;;;;;;;;-1:-1:-1;19918:2756:20;;;;;:::i;:::-;;:::i;2943:117:19:-;;;;;;;;;;-1:-1:-1;2943:117:19;;;;;:::i;:::-;;:::i;496:35::-;;;;;;;;;;;;;;;2755:78;;;;;;;;;;;;;:::i;3189:153::-;;;;;;;;;;;;;:::i;22765:179:20:-;;;;;;;;;;-1:-1:-1;22765:179:20;;;;;:::i;:::-;;:::i;951:125:15:-;;;;;;;;;;-1:-1:-1;951:125:15;;;;;:::i;:::-;;:::i;368:26:19:-;;;;;;;;;;-1:-1:-1;368:26:19;;;;;;;;;;;401:32;;;;;;;;;;-1:-1:-1;401:32:19;;;;;;;;;;;11348:150:20;;;;;;;;;;-1:-1:-1;11348:150:20;;;;;:::i;:::-;;:::i;7002:230::-;;;;;;;;;;-1:-1:-1;7002:230:20;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;1201:85::-;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;10165:102:20;;;;;;;;;;;;;:::i;777:687:19:-;;;;;;:::i;:::-;;:::i;3068:113::-;;;;;;;;;;-1:-1:-1;3068:113:19;;;;;:::i;:::-;;:::i;16850:303:20:-;;;;;;;;;;-1:-1:-1;16850:303:20;;;;;:::i;:::-;;:::i;324:37:19:-;;;;;;;;;;-1:-1:-1;324:37:19;;;;;;;;;;;;;;11895:4:22;11883:17;;;11865:36;;11853:2;11838:18;324:37:19;11820:87:22;23525:388:20;;;;;;;;;;-1:-1:-1;23525:388:20;;;;;:::i;:::-;;:::i;2400:347:19:-;;;;;;;;;;-1:-1:-1;2400:347:19;;;;;:::i;:::-;;:::i;277:40::-;;;;;;;;;;-1:-1:-1;277:40:19;;;;;;;;;;;1084:291:15;;;;;;;;;;-1:-1:-1;1084:291:15;;;;;:::i;:::-;;:::i;231:39:19:-;;;;;;;;;;;;266:4;231:39;;;;;11522:6:22;11510:19;;;11492:38;;11480:2;11465:18;231:39:19;11447:89:22;440:47:19;;;;;;;;;;-1:-1:-1;440:47:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;17303:162:20;;;;;;;;;;-1:-1:-1;17303:162:20;;;;;:::i;:::-;-1:-1:-1;;;;;17423:25:20;;;17400:4;17423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17303:162;2081:198:0;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;9112:630:20:-;9197:4;-1:-1:-1;;;;;;;;;9515:25:20;;;;:101;;-1:-1:-1;;;;;;;;;;9591:25:20;;;9515:101;:177;;;-1:-1:-1;;;;;;;;;;9667:25:20;;;9515:177;9496:196;9112:630;-1:-1:-1;;9112:630:20:o;1472:790:19:-;1585:6;;;;;;;1584:7;1576:43;;;;-1:-1:-1;;;1576:43:19;;;;;;;:::i;:::-;;;;;;;;;1653:20;;;;;;;1638:35;;;1630:76;;;;-1:-1:-1;;;1630:76:19;;;;;;;:::i;:::-;1717:18;1745:13;6121:12:20;;5912:7;6105:13;:28;;5851:317;1745:13:19;1717:42;-1:-1:-1;266:4:19;1778:25;1792:11;1778:38;:25;;;:::i;:::-;:38;;1770:70;;;;-1:-1:-1;;;1770:70:19;;;;;;;:::i;:::-;1879:10;1853:9;1865:25;;;:13;:25;;;;;;1931:22;;1865:25;;;;;;1931:22;;;;1909:17;1865:25;1909:11;:17;:::i;:::-;:44;;1901:92;;;;-1:-1:-1;;;1901:92:19;;;;;;;:::i;:::-;2012:66;2031:11;;2012:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2044:10:19;;-1:-1:-1;2066:10:19;;-1:-1:-1;2056:21:19;;-1:-1:-1;2270:122:19;2056:21;2012:18;:66::i;:::-;:74;;2082:4;2012:74;2004:107;;;;-1:-1:-1;;;2004:107:19;;10144:2:22;2004:107:19;;;10126:21:22;10183:2;10163:18;;;10156:30;-1:-1:-1;;;10202:18:22;;;10195:50;10262:18;;2004:107:19;10116:170:22;2004:107:19;2124:35;2134:10;2147:11;2124:9;:35::i;:::-;2200:24;2221:3;2206:11;2200:24;:::i;:::-;2186:10;2172:25;;;;:13;:25;;;;;:52;;-1:-1:-1;;2172:52:19;;;;;;;;;;;;-1:-1:-1;;;;;1472:790:19:o;9996:98:20:-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;-1:-1:-1;;;16434:34:20;;;;;;;;;;;16404:64;-1:-1:-1;16486:24:20;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16486:30:20;;16309:214::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;-1:-1:-1;39008:10:20;-1:-1:-1;;;;;15896:28:20;;;15892:172;;15943:44;15960:5;39008:10;17303:162;:::i;15943:44::-;15938:126;;16014:35;;-1:-1:-1;;;16014:35:20;;;;;;;;;;;15938:126;16074:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16074:35:20;-1:-1:-1;;;;;16074:35:20;;;;;;;;;16124:28;;16074:24;;16124:28;;;;;;;15769:390;;;:::o;2841:94:19:-;1094:13:0;:11;:13::i;:::-;2915:12:19::1;::::0;;-1:-1:-1;;2899:28:19;::::1;2915:12:::0;;;;::::1;;;2914:13;2899:28:::0;;::::1;;::::0;;2841:94::o;19918:2756:20:-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;-1:-1:-1;;;;;20119:45:20;20135:19;-1:-1:-1;;;;;20119:45:20;;20115:86;;20173:28;;-1:-1:-1;;;20173:28:20;;;;;;;;;;;20115:86;20213:27;19057:24;;;:15;:24;;;;;19275:26;;39008:10;18694:30;;;-1:-1:-1;;;;;18391:28:20;;18672:20;;;18669:56;20396:179;;20488:43;20505:4;39008:10;17303:162;:::i;20488:43::-;20483:92;;20540:35;;-1:-1:-1;;;20540:35:20;;;;;;;;;;;20483:92;-1:-1:-1;;;;;20590:16:20;;20586:52;;20615:23;;-1:-1:-1;;;20615:23:20;;;;;;;;;;;20586:52;20781:15;20778:2;;;20919:1;20898:19;20891:30;20778:2;-1:-1:-1;;;;;21307:24:20;;;;;;;:18;:24;;;;;;21305:26;;-1:-1:-1;;21305:26:20;;;21375:22;;;;;;;;;21373:24;;-1:-1:-1;21373:24:20;;;14660:11;14635:23;14631:41;14618:63;-1:-1:-1;;;14618:63:20;21661:26;;;;:17;:26;;;;;:172;-1:-1:-1;;;21950:47:20;;21946:617;;22054:1;22044:11;;22022:19;22175:30;;;:17;:30;;;;;;22171:378;;22311:13;;22296:11;:28;22292:239;;22456:30;;;;:17;:30;;;;;:52;;;22292:239;21946:617;;22607:7;22603:2;-1:-1:-1;;;;;22588:27:20;22597:4;-1:-1:-1;;;;;22588:27:20;-1:-1:-1;;;;;;;;;;;22588:27:20;;;;;;;;;19918:2756;;;;;;:::o;2943:117:19:-;1094:13:0;:11;:13::i;:::-;3021:22:19::1;:31:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;3021:31:19;;::::1;::::0;;;::::1;::::0;;2943:117::o;2755:78::-;1094:13:0;:11;:13::i;:::-;2819:6:19::1;::::0;;-1:-1:-1;;2809:16:19;::::1;2819:6:::0;;;;::::1;;;2818:7;2809:16:::0;;::::1;;::::0;;2755:78::o;3189:153::-;1094:13:0;:11;:13::i;:::-;3287:39:19::1;::::0;3255:21:::1;::::0;3295:10:::1;::::0;3287:39;::::1;;;::::0;3255:21;;3239:13:::1;3287:39:::0;3239:13;3287:39;3255:21;3295:10;3287:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1117:1:0;3189:153:19:o:0;22765:179:20:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;951:125:15:-;1094:13:0;:11;:13::i;:::-;1018:23:15;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;1052:9:15::1;:16:::0;;-1:-1:-1;;1052:16:15::1;1064:4;1052:16;::::0;;951:125::o;11348:150:20:-;11420:7;11462:27;11481:7;11462:18;:27::i;7002:230::-;7074:7;-1:-1:-1;;;;;7097:19:20;;7093:60;;7125:28;;-1:-1:-1;;;7125:28:20;;;;;;;;;;;7093:60;-1:-1:-1;;;;;;7170:25:20;;;;;:18;:25;;;;;;1317:13;7170:55;;7002:230::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;10165:102:20:-;10221:13;10253:7;10246:14;;;;;:::i;777:687:19:-;857:12;;;;;;;849:38;;;;-1:-1:-1;;;849:38:19;;9441:2:22;849:38:19;;;9423:21:22;9480:2;9460:18;;;9453:30;-1:-1:-1;;;9499:18:22;;;9492:43;9552:18;;849:38:19;9413:163:22;849:38:19;907:6;;;;;;;906:7;898:43;;;;-1:-1:-1;;;898:43:19;;;;;;;:::i;:::-;975:20;;;;;;;960:35;;;952:76;;;;-1:-1:-1;;;952:76:19;;;;;;;:::i;:::-;1039:18;1067:13;6121:12:20;;5912:7;6105:13;:28;;5851:317;1067:13:19;1039:42;-1:-1:-1;266:4:19;1102:25;1116:11;1102:38;:25;;;:::i;:::-;:38;;1094:70;;;;-1:-1:-1;;;1094:70:19;;;;;;;:::i;:::-;1201:10;1175:9;1187:25;;;:13;:25;;;;;;1253:22;;1187:25;;;;;;1253:22;;;;1231:17;1187:25;1231:11;:17;:::i;:::-;:44;;1223:92;;;;-1:-1:-1;;;1223:92:19;;;;;;;:::i;:::-;1326:35;1336:10;1349:11;1326:9;:35::i;:::-;1402:24;1423:3;1408:11;1402:24;:::i;:::-;1388:10;1374:25;;;;:13;:25;;;;;:52;;-1:-1:-1;;1374:52:19;;;;;;;;;;;;-1:-1:-1;;;777:687:19:o;3068:113::-;1094:13:0;:11;:13::i;:::-;3144:20:19::1;:29:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;3144:29:19;;::::1;::::0;;;::::1;::::0;;3068:113::o;16850:303:20:-;-1:-1:-1;;;;;16948:31:20;;39008:10;16948:31;16944:61;;;16988:17;;-1:-1:-1;;;16988:17:20;;;;;;;;;;;16944:61;39008:10;17016:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17016:49:20;;;;;;;;;;;;:60;;-1:-1:-1;;17016:60:20;;;;;;;;;;17091:55;;7622:41:22;;;17016:49:20;;39008:10;17091:55;;7595:18:22;17091:55:20;;;;;;;16850:303;;:::o;23525:388::-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;-1:-1:-1;;;;;23731:14:20;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;-1:-1:-1;;;23852:40:20;;;;;;;;;;;23764:143;23525:388;;;;:::o;2400:347:19:-;1094:13:0;:11;:13::i;:::-;2486:18:19::1;2514:13;6121:12:20::0;;5912:7;6105:13;:28;;5851:317;2514:13:19::1;2486:42:::0;-1:-1:-1;266:4:19::1;2547:25;2561:11:::0;2486:42;2547:25:::1;:::i;:::-;:38;;;;2539:70;;;::::0;-1:-1:-1;;;2539:70:19;;8282:2:22;2539:70:19::1;::::0;::::1;8264:21:22::0;8321:2;8301:18;;;8294:30;-1:-1:-1;;;8340:18:22;;;8333:49;8399:18;;2539:70:19::1;8254:169:22::0;2539:70:19::1;2620:34;2630:9;2642:11;2620:34;;:9;:34::i;1084:291:15:-:0;1236:9;;1202:13;;1236:9;;1233:105;;;1292:23;1307:7;1292:14;:23::i;:::-;1275:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;1261:65;;1084:291;;;:::o;1233:105::-;1357:10;:8;:10::i;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;8630:2:22;2161:73:0::1;::::0;::::1;8612:21:22::0;8669:2;8649:18;;;8642:30;8708:34;8688:18;;;8681:62;-1:-1:-1;;;8759:18:22;;;8752:36;8805:19;;2161:73:0::1;8602:228:22::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;1153:184:12:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;;1153:184;-1:-1:-1;;;;1153:184:12:o;32908:110:20:-;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;17714:277::-;17779:4;17866:13;;17856:7;:23;17814:151;;;;-1:-1:-1;;17916:26:20;;;;:17;:26;;;;;;-1:-1:-1;;;17916:44:20;:49;;17714:277::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;39008:10:20;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;9783:2:22;1414:68:0;;;9765:21:22;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;1414:68:0;9755:182:22;12472:1249:20;12539:7;12573;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:23;;;:17;:23;;;;;;-1:-1:-1;;;12812:24:20;;12808:831;;13467:111;13474:11;13467:111;;-1:-1:-1;;;13544:6:20;13526:25;;;;:17;:25;;;;;;13467:111;;;13610:6;12472:1249;-1:-1:-1;;;12472:1249:20:o;12808:831::-;12660:997;;13683:31;;-1:-1:-1;;;13683:31:20;;;;;;;;;;;2433:187:0;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2433:187;;:::o;25939:697:20:-;26117:88;;-1:-1:-1;;;26117:88:20;;26097:4;;-1:-1:-1;;;;;26117:45:20;;;;;:88;;39008:10;;26184:4;;26190:7;;26199:5;;26117:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26117:88:20;;;;;;;;-1:-1:-1;;26117:88:20;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26395:13:20;;26391:229;;26440:40;;-1:-1:-1;;;26440:40:20;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;-1:-1:-1;;;;;;26273:64:20;-1:-1:-1;;;26273:64:20;;-1:-1:-1;26113:517:20;25939:697;;;;;;:::o;10368:313::-;10441:13;10471:16;10479:7;10471;:16::i;:::-;10466:59;;10496:29;;-1:-1:-1;;;10496:29:20;;;;;;;;;;;10466:59;10536:21;10560:10;:8;:10::i;:::-;10536:34;;10593:7;10587:21;10612:1;10587:26;;:87;;;;;;;;;;;;;;;;;10640:7;10649:18;10659:7;10649:9;:18::i;:::-;10623:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10580:94;10368:313;-1:-1:-1;;;10368:313:20:o;830:113:15:-;890:13;922;915:20;;;;;:::i;1991:290:12:-;2074:7;2116:4;2074:7;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;-1:-1:-1;;;2226:8:12;;;;;;;;;;;;;;;2202:9;:33::i;:::-;2187:48;-1:-1:-1;2168:3:12;;;;:::i;:::-;;;;2130:116;;;-1:-1:-1;2262:12:12;1991:290;-1:-1:-1;;;1991:290:12:o;32160:669:20:-;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;-1:-1:-1;;;;;32344:14:20;;;:19;32340:473;;32383:11;32397:13;32444:14;;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;-1:-1:-1;;;32603:40:20;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;32764:34;32340:473;;32160:669;;;:::o;39122:1961::-;39593:4;39587:11;;39600:3;39583:21;;39676:17;;;;40359:11;;;40240:5;40522:2;40536;40526:13;;40518:22;40359:11;40505:36;40576:2;40566:13;;40134:715;40594:4;40134:715;;;40780:1;40775:3;40771:11;40764:18;;40830:2;40824:4;40820:13;40816:2;40812:22;40807:3;40799:36;40687:2;40677:13;;40134:715;;;-1:-1:-1;40877:13:20;;;-1:-1:-1;;40990:12:20;;;41048:19;;;40990:12;39225:1852;-1:-1:-1;39225:1852:20:o;8054:147:12:-;8117:7;8147:1;8143;:5;:51;;8275:13;8366:15;;;8401:4;8394:15;;;8447:4;8431:21;;8143:51;;;-1:-1:-1;8275:13:12;8366:15;;;8401:4;8394:15;8447:4;8431:21;;;8054:147::o;27082:2396:20:-;27154:20;27177:13;27204;27200:44;;27226:18;;-1:-1:-1;;;27226:18:20;;;;;;;;;;;27200:44;-1:-1:-1;;;;;27719:22:20;;;;;;:18;:22;;;;1452:2;27719:22;;;:71;;27757:32;27745:45;;27719:71;;;28026:31;;;:17;:31;;;;;-1:-1:-1;15080:15:20;;15054:24;15050:46;14660:11;14635:23;14631:41;14628:52;14618:63;;28026:170;;28255:23;;;;28026:31;;27719:22;;-1:-1:-1;;;;;;;;;;;27719:22:20;;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;-1:-1:-1;;;;;;;;;;;29216:1:20;29213;29208:59;29097:1;29084:15;28946:339;;;-1:-1:-1;29316:13:20;29312:45;;29338:19;;-1:-1:-1;;;29338:19:20;;;;;;;;;;;29312:45;29372:13;:19;-1:-1:-1;22765:179:20;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:22;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:22;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:22;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:22;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:22:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:22;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:366::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:2;;;4147:6;4139;4132:22;4094:2;4191:9;4178:23;4241:6;4234:5;4230:18;4223:5;4220:29;4210:2;;4268:6;4260;4253:22;4369:190;4428:6;4481:2;4469:9;4460:7;4456:23;4452:32;4449:2;;;4502:6;4494;4487:22;4449:2;-1:-1:-1;4530:23:22;;4439:120;-1:-1:-1;4439:120:22:o;4564:733::-;4659:6;4667;4675;4728:2;4716:9;4707:7;4703:23;4699:32;4696:2;;;4749:6;4741;4734:22;4696:2;4790:9;4777:23;4767:33;;4851:2;4840:9;4836:18;4823:32;4874:18;4915:2;4907:6;4904:14;4901:2;;;4936:6;4928;4921:22;4901:2;4979:6;4968:9;4964:22;4954:32;;5024:7;5017:4;5013:2;5009:13;5005:27;4995:2;;5051:6;5043;5036:22;4995:2;5096;5083:16;5122:2;5114:6;5111:14;5108:2;;;5143:6;5135;5128:22;5108:2;5201:7;5196:2;5186:6;5183:1;5179:14;5175:2;5171:23;5167:32;5164:45;5161:2;;;5227:6;5219;5212:22;5161:2;5263;5259;5255:11;5245:21;;5285:6;5275:16;;;;;4686:611;;;;;:::o;5302:289::-;5359:6;5412:2;5400:9;5391:7;5387:23;5383:32;5380:2;;;5433:6;5425;5418:22;5380:2;5477:9;5464:23;5527:4;5520:5;5516:16;5509:5;5506:27;5496:2;;5552:6;5544;5537:22;5596:257;5637:3;5675:5;5669:12;5702:6;5697:3;5690:19;5718:63;5774:6;5767:4;5762:3;5758:14;5751:4;5744:5;5740:16;5718:63;:::i;:::-;5835:2;5814:15;-1:-1:-1;;5810:29:22;5801:39;;;;5842:4;5797:50;;5645:208;-1:-1:-1;;5645:208:22:o;5858:470::-;6037:3;6075:6;6069:13;6091:53;6137:6;6132:3;6125:4;6117:6;6113:17;6091:53;:::i;:::-;6207:13;;6166:16;;;;6229:57;6207:13;6166:16;6263:4;6251:17;;6229:57;:::i;:::-;6302:20;;6045:283;-1:-1:-1;;;;6045:283:22:o;6333:443::-;6565:3;6603:6;6597:13;6619:53;6665:6;6660:3;6653:4;6645:6;6641:17;6619:53;:::i;:::-;-1:-1:-1;;;6694:16:22;;6719:22;;;-1:-1:-1;6768:1:22;6757:13;;6573:203;-1:-1:-1;6573:203:22:o;6989:488::-;-1:-1:-1;;;;;7258:15:22;;;7240:34;;7310:15;;7305:2;7290:18;;7283:43;7357:2;7342:18;;7335:34;;;7405:3;7400:2;7385:18;;7378:31;;;7183:4;;7426:45;;7451:19;;7443:6;7426:45;:::i;:::-;7418:53;7192:285;-1:-1:-1;;;;;;7192:285:22:o;7856:219::-;8005:2;7994:9;7987:21;7968:4;8025:44;8065:2;8054:9;8050:18;8042:6;8025:44;:::i;8835:399::-;9037:2;9019:21;;;9076:2;9056:18;;;9049:30;9115:34;9110:2;9095:18;;9088:62;-1:-1:-1;;;9181:2:22;9166:18;;9159:33;9224:3;9209:19;;9009:225::o;10291:347::-;10493:2;10475:21;;;10532:2;10512:18;;;10505:30;-1:-1:-1;;;10566:2:22;10551:18;;10544:53;10629:2;10614:18;;10465:173::o;10643:343::-;10845:2;10827:21;;;10884:2;10864:18;;;10857:30;-1:-1:-1;;;10918:2:22;10903:18;;10896:49;10977:2;10962:18;;10817:169::o;10991:352::-;11193:2;11175:21;;;11232:2;11212:18;;;11205:30;11271;11266:2;11251:18;;11244:58;11334:2;11319:18;;11165:178::o;11912:224::-;11951:3;11979:6;12012:2;12009:1;12005:10;12042:2;12039:1;12035:10;12073:3;12069:2;12065:12;12060:3;12057:21;12054:2;;;12081:18;;:::i;12141:128::-;12181:3;12212:1;12208:6;12205:1;12202:13;12199:2;;;12218:18;;:::i;:::-;-1:-1:-1;12254:9:22;;12189:80::o;12274:204::-;12312:3;12348:4;12345:1;12341:12;12380:4;12377:1;12373:12;12415:3;12409:4;12405:14;12400:3;12397:23;12394:2;;;12423:18;;:::i;:::-;12459:13;;12320:158;-1:-1:-1;;;12320:158:22:o;12483:258::-;12555:1;12565:113;12579:6;12576:1;12573:13;12565:113;;;12655:11;;;12649:18;12636:11;;;12629:39;12601:2;12594:10;12565:113;;;12696:6;12693:1;12690:13;12687:2;;;-1:-1:-1;;12731:1:22;12713:16;;12706:27;12536:205::o;12746:380::-;12825:1;12821:12;;;;12868;;;12889:2;;12943:4;12935:6;12931:17;12921:27;;12889:2;12996;12988:6;12985:14;12965:18;12962:38;12959:2;;;13042:10;13037:3;13033:20;13030:1;13023:31;13077:4;13074:1;13067:15;13105:4;13102:1;13095:15;12959:2;;12801:325;;;:::o;13131:135::-;13170:3;-1:-1:-1;;13191:17:22;;13188:2;;;13211:18;;:::i;:::-;-1:-1:-1;13258:1:22;13247:13;;13178:88::o;13271:127::-;13332:10;13327:3;13323:20;13320:1;13313:31;13363:4;13360:1;13353:15;13387:4;13384:1;13377:15;13403:127;13464:10;13459:3;13455:20;13452:1;13445:31;13495:4;13492:1;13485:15;13519:4;13516:1;13509:15;13535:131;-1:-1:-1;;;;;;13609:32:22;;13599:43;;13589:2;;13656:1;13653;13646:12
Swarm Source
ipfs://d15b6690bd5ee8ec44c4234b18e553df4db7a885b5577d9859c4e7e3824cd0e6
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.