ERC-721
Overview
Max Total Supply
124 TimithBeta
Holders
124
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TimithBetaLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TimithBeta
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity >=0.8.0 <0.9.0; //SPDX-License-Identifier: MIT import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TimithBeta is Ownable, ERC721A, ReentrancyGuard { using ECDSA for bytes32; /** * * Contract Events * */ event Minted(address indexed sender); /** * * Contract Values * */ mapping(address => bool) public hasMinted; address public signatureVerifier; string public _baseTokenURI; uint256 public mintPrice = 0.000 ether; constructor(string memory baseURI, address verifier) payable ERC721A("TimithBeta", "TimithBeta") { _baseTokenURI = baseURI; signatureVerifier = verifier; } /** * * Modifiers * */ modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } /** * * Minting Functions * */ function mithWithSignature(address to, bytes memory _signature) public callerIsUser nonReentrant { require(!hasMinted[to], "You have already claimed your nft"); bytes memory message = abi.encodePacked(to); bytes32 messageHash = ECDSA.toEthSignedMessageHash(keccak256(message)); address signer = ECDSA.recover(messageHash, _signature); require(signer == signatureVerifier, "Unrecognizable Hash"); _mint(to, 1); hasMinted[to] = true; emit Minted(to); } function ownerMint(uint256 amount) public payable onlyOwner { require(amount > 0, "You must send an amount"); _mint(msg.sender, amount); } /** * * Setting Functions * */ function setBaseURI(string memory newUri) public onlyOwner { _baseTokenURI = newUri; } function setMintPrice(uint256 newPrice) public onlyOwner { mintPrice = newPrice; } function setSignatureVerifier(address _signatureVerifier) external onlyOwner { signatureVerifier = _signatureVerifier; } /** * * Getters Functions * */ function getAddressHasMinted(address addr) public view virtual returns (bool) { return hasMinted[addr]; } /** * * Overriding Functions * */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "That token doesn't exist"); return bytes(_baseTokenURI).length > 0 ? string(abi.encodePacked(_baseTokenURI)) : ""; } /** * * Owner Functions * */ function withdraw() public onlyOwner { require(address(this).balance > 0, "Insufficient balance"); Address.sendValue(payable(msg.sender), address(this).balance); } function withdrawTo(uint256 amount, address payable to) public onlyOwner { require(address(this).balance > 0, "Insufficient balance"); Address.sendValue(to, amount); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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 { _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 { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _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)) } } } } /** * @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 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 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. 48 is the ASCII index of '0'. 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 v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // 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`. * * 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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"verifier","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"sender","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"addr","type":"address"}],"name":"getAddressHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mithWithSignature","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signatureVerifier","type":"address"}],"name":"setSignatureVerifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signatureVerifier","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600d55604051620021ec380380620021ec8339810160408190526200002b9162000217565b6040518060400160405280600a81526020016954696d6974684265746160b01b8152506040518060400160405280600a81526020016954696d6974684265746160b01b8152506200008b620000856200010060201b60201c565b62000104565b8151620000a090600390602085019062000154565b508051620000b690600490602084019062000154565b506000600190815560095550508151620000d890600c90602085019062000154565b50600b80546001600160a01b0319166001600160a01b03929092169190911790555062000355565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001629062000302565b90600052602060002090601f016020900481019282620001865760008555620001d1565b82601f10620001a157805160ff1916838001178555620001d1565b82800160010185558215620001d1579182015b82811115620001d1578251825591602001919060010190620001b4565b50620001df929150620001e3565b5090565b5b80821115620001df5760008155600101620001e4565b80516001600160a01b03811681146200021257600080fd5b919050565b600080604083850312156200022a578182fd5b82516001600160401b038082111562000241578384fd5b818501915085601f83011262000255578384fd5b8151818111156200026a576200026a6200033f565b604051601f8201601f19908116603f011681019083821181831017156200029557620002956200033f565b81604052828152602093508884848701011115620002b1578687fd5b8691505b82821015620002d45784820184015181830185015290830190620002b5565b82821115620002e557868484830101525b9550620002f7915050858201620001fa565b925050509250929050565b600181811c908216806200031757607f821691505b602082108114156200033957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e8780620003656000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063c884c85811610095578063f19e75d411610064578063f19e75d414610535578063f2fde38b14610548578063f4a0a52814610568578063fde919f61461058857600080fd5b8063c884c8581461047e578063cfc86f7b146104b7578063e08a6605146104cc578063e985e9c5146104ec57600080fd5b8063b10f2ce3116100d1578063b10f2ce3146103fe578063b88d4fde1461041e578063c86283c81461043e578063c87b56dd1461045e57600080fd5b80638da5cb5b146103ab57806395d89b41146103c9578063a22cb465146103de57600080fd5b80633ccfd60b116101645780636352211e1161013e5780636352211e146103405780636817c76c1461036057806370a0823114610376578063715018a61461039657600080fd5b80633ccfd60b146102eb57806342842e0e1461030057806355f804b31461032057600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b57806338e21cce146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611bb0565b6105a8565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105fa565b6040516101f39190611d8d565b34801561022a57600080fd5b5061023e610239366004611c2e565b61068c565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611b85565b6106d0565b005b34801561028457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b6366004611a5c565b6107a3565b3480156102c757600080fd5b506101e76102d6366004611a08565b600a6020526000908152604090205460ff1681565b3480156102f757600080fd5b506102766107b3565b34801561030c57600080fd5b5061027661031b366004611a5c565b610839565b34801561032c57600080fd5b5061027661033b366004611be8565b610854565b34801561034c57600080fd5b5061023e61035b366004611c2e565b610895565b34801561036c57600080fd5b5061028d600d5481565b34801561038257600080fd5b5061028d610391366004611a08565b6108a0565b3480156103a257600080fd5b506102766108ef565b3480156103b757600080fd5b506000546001600160a01b031661023e565b3480156103d557600080fd5b50610211610923565b3480156103ea57600080fd5b506102766103f9366004611b06565b610932565b34801561040a57600080fd5b50610276610419366004611b37565b6109c8565b34801561042a57600080fd5b50610276610439366004611a9c565b610c21565b34801561044a57600080fd5b50610276610459366004611c46565b610c6b565b34801561046a57600080fd5b50610211610479366004611c2e565b610ce6565b34801561048a57600080fd5b506101e7610499366004611a08565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156104c357600080fd5b50610211610d8f565b3480156104d857600080fd5b506102766104e7366004611a08565b610e1d565b3480156104f857600080fd5b506101e7610507366004611a24565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b610276610543366004611c2e565b610e69565b34801561055457600080fd5b50610276610563366004611a08565b610ef0565b34801561057457600080fd5b50610276610583366004611c2e565b610f88565b34801561059457600080fd5b50600b5461023e906001600160a01b031681565b60006301ffc9a760e01b6001600160e01b0319831614806105d957506380ac58cd60e01b6001600160e01b03198316145b806105f45750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461060990611dd5565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611dd5565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b600061069782610fb7565b6106b4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106db82610fdf565b9050806001600160a01b0316836001600160a01b031614156107105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107475761072a8133610507565b610747576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107ae838383611047565b505050565b6000546001600160a01b031633146107e65760405162461bcd60e51b81526004016107dd90611da0565b60405180910390fd5b6000471161082d5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016107dd565b61083733476111ea565b565b6107ae83838360405180602001604052806000815250610c21565b6000546001600160a01b0316331461087e5760405162461bcd60e51b81526004016107dd90611da0565b805161089190600c9060208401906118da565b5050565b60006105f482610fdf565b60006001600160a01b0382166108c9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146109195760405162461bcd60e51b81526004016107dd90611da0565b6108376000611303565b60606004805461060990611dd5565b6001600160a01b03821633141561095c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314610a175760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107dd565b60026009541415610a6a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107dd565b60026009556001600160a01b0382166000908152600a602052604090205460ff1615610ae25760405162461bcd60e51b815260206004820152602160248201527f596f75206861766520616c726561647920636c61696d656420796f7572206e666044820152601d60fa1b60648201526084016107dd565b60408051606084901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034830184528051818301207f19457468657265756d205369676e6564204d6573736167653a0a333200000000605485015260708085019190915284518085039091018152609090930190935281519101206000610b6b8285611353565b600b549091506001600160a01b03808316911614610bc15760405162461bcd60e51b81526020600482015260136024820152720aadce4cac6decedcd2f4c2c4d8ca4090c2e6d606b1b60448201526064016107dd565b610bcc856001611377565b6001600160a01b0385166000818152600a6020526040808220805460ff19166001179055517f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d89190a250506001600955505050565b610c2c848484611047565b6001600160a01b0383163b15610c6557610c4884848484611455565b610c65576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610c955760405162461bcd60e51b81526004016107dd90611da0565b60004711610cdc5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016107dd565b61089181836111ea565b6060610cf182610fb7565b610d3d5760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e2774206578697374000000000000000060448201526064016107dd565b6000600c8054610d4c90611dd5565b905011610d6857604051806020016040528060008152506105f4565b600c604051602001610d7a9190611cb5565b60405160208183030381529060405292915050565b600c8054610d9c90611dd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc890611dd5565b8015610e155780601f10610dea57610100808354040283529160200191610e15565b820191906000526020600020905b815481529060010190602001808311610df857829003601f168201915b505050505081565b6000546001600160a01b03163314610e475760405162461bcd60e51b81526004016107dd90611da0565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e935760405162461bcd60e51b81526004016107dd90611da0565b60008111610ee35760405162461bcd60e51b815260206004820152601760248201527f596f75206d7573742073656e6420616e20616d6f756e7400000000000000000060448201526064016107dd565b610eed3382611377565b50565b6000546001600160a01b03163314610f1a5760405162461bcd60e51b81526004016107dd90611da0565b6001600160a01b038116610f7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610eed81611303565b6000546001600160a01b03163314610fb25760405162461bcd60e51b81526004016107dd90611da0565b600d55565b6000600154821080156105f4575050600090815260056020526040902054600160e01b161590565b60008160015481101561102e57600081815260056020526040902054600160e01b811661102c575b80611025575060001901600081815260056020526040902054611007565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600061105282610fdf565b9050836001600160a01b0316816001600160a01b0316146110855760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110a357506110a38533610507565b806110be5750336110b38461068c565b6001600160a01b0316145b9050806110de57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661110557604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b8617811790915582166111a257600183016000818152600560205260409020546111a05760015481146111a05760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b8047101561123a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107dd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611287576040519150601f19603f3d011682016040523d82523d6000602084013e61128c565b606091505b50509050806107ae5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107dd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000611362858561154d565b9150915061136f816115bd565b509392505050565b6001546001600160a01b0383166113a057604051622e076360e81b815260040160405180910390fd5b816113be5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114095750600155505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061148a903390899088908890600401611d50565b602060405180830381600087803b1580156114a457600080fd5b505af19250505080156114d4575060408051601f3d908101601f191682019092526114d191810190611bcc565b60015b61152f573d808015611502576040519150601f19603f3d011682016040523d82523d6000602084013e611507565b606091505b508051611527576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000808251604114156115845760208301516040840151606085015160001a611578878285856117be565b945094505050506115b6565b8251604014156115ae57602083015160408401516115a38683836118ab565b9350935050506115b6565b506000905060025b9250929050565b60008160048111156115df57634e487b7160e01b600052602160045260246000fd5b14156115e85750565b600181600481111561160a57634e487b7160e01b600052602160045260246000fd5b14156116585760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107dd565b600281600481111561167a57634e487b7160e01b600052602160045260246000fd5b14156116c85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107dd565b60038160048111156116ea57634e487b7160e01b600052602160045260246000fd5b14156117435760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107dd565b600481600481111561176557634e487b7160e01b600052602160045260246000fd5b1415610eed5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016107dd565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156117f557506000905060036118a2565b8460ff16601b1415801561180d57508460ff16601c14155b1561181e57506000905060046118a2565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611872573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661189b576000600192509250506118a2565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016118cc878288856117be565b935093505050935093915050565b8280546118e690611dd5565b90600052602060002090601f016020900481019282611908576000855561194e565b82601f1061192157805160ff191683800117855561194e565b8280016001018555821561194e579182015b8281111561194e578251825591602001919060010190611933565b5061195a92915061195e565b5090565b5b8082111561195a576000815560010161195f565b600067ffffffffffffffff8084111561198e5761198e611e10565b604051601f8501601f19908116603f011681019082821181831017156119b6576119b6611e10565b816040528093508581528686860111156119cf57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126119f9578081fd5b61102583833560208501611973565b600060208284031215611a19578081fd5b813561102581611e26565b60008060408385031215611a36578081fd5b8235611a4181611e26565b91506020830135611a5181611e26565b809150509250929050565b600080600060608486031215611a70578081fd5b8335611a7b81611e26565b92506020840135611a8b81611e26565b929592945050506040919091013590565b60008060008060808587031215611ab1578081fd5b8435611abc81611e26565b93506020850135611acc81611e26565b925060408501359150606085013567ffffffffffffffff811115611aee578182fd5b611afa878288016119e9565b91505092959194509250565b60008060408385031215611b18578182fd5b8235611b2381611e26565b915060208301358015158114611a51578182fd5b60008060408385031215611b49578182fd5b8235611b5481611e26565b9150602083013567ffffffffffffffff811115611b6f578182fd5b611b7b858286016119e9565b9150509250929050565b60008060408385031215611b97578182fd5b8235611ba281611e26565b946020939093013593505050565b600060208284031215611bc1578081fd5b813561102581611e3b565b600060208284031215611bdd578081fd5b815161102581611e3b565b600060208284031215611bf9578081fd5b813567ffffffffffffffff811115611c0f578182fd5b8201601f81018413611c1f578182fd5b61154584823560208401611973565b600060208284031215611c3f578081fd5b5035919050565b60008060408385031215611c58578182fd5b823591506020830135611a5181611e26565b60008151808452815b81811015611c8f57602081850181015186830182015201611c73565b81811115611ca05782602083870101525b50601f01601f19169290920160200192915050565b600080835482600182811c915080831680611cd157607f831692505b6020808410821415611cf157634e487b7160e01b87526022600452602487fd5b818015611d055760018114611d1657611d42565b60ff19861689528489019650611d42565b60008a815260209020885b86811015611d3a5781548b820152908501908301611d21565b505084890196505b509498975050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d8390830184611c6a565b9695505050505050565b6020815260006110256020830184611c6a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611de957607f821691505b60208210811415611e0a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610eed57600080fd5b6001600160e01b031981168114610eed57600080fdfea2646970667358221220b3d5d86e8865beac1b61be074fe49b921f01c760e5c0597d8f1d74d0df25967664736f6c634300080400330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b3fd6c6ca4099438559deb3c9b2b0f6805762ad90000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d615176746a535a73727068524b4b56755a726374554665437970614e3534446553696f4b31774e52545275750000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063c884c85811610095578063f19e75d411610064578063f19e75d414610535578063f2fde38b14610548578063f4a0a52814610568578063fde919f61461058857600080fd5b8063c884c8581461047e578063cfc86f7b146104b7578063e08a6605146104cc578063e985e9c5146104ec57600080fd5b8063b10f2ce3116100d1578063b10f2ce3146103fe578063b88d4fde1461041e578063c86283c81461043e578063c87b56dd1461045e57600080fd5b80638da5cb5b146103ab57806395d89b41146103c9578063a22cb465146103de57600080fd5b80633ccfd60b116101645780636352211e1161013e5780636352211e146103405780636817c76c1461036057806370a0823114610376578063715018a61461039657600080fd5b80633ccfd60b146102eb57806342842e0e1461030057806355f804b31461032057600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b57806338e21cce146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611bb0565b6105a8565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105fa565b6040516101f39190611d8d565b34801561022a57600080fd5b5061023e610239366004611c2e565b61068c565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611b85565b6106d0565b005b34801561028457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b6366004611a5c565b6107a3565b3480156102c757600080fd5b506101e76102d6366004611a08565b600a6020526000908152604090205460ff1681565b3480156102f757600080fd5b506102766107b3565b34801561030c57600080fd5b5061027661031b366004611a5c565b610839565b34801561032c57600080fd5b5061027661033b366004611be8565b610854565b34801561034c57600080fd5b5061023e61035b366004611c2e565b610895565b34801561036c57600080fd5b5061028d600d5481565b34801561038257600080fd5b5061028d610391366004611a08565b6108a0565b3480156103a257600080fd5b506102766108ef565b3480156103b757600080fd5b506000546001600160a01b031661023e565b3480156103d557600080fd5b50610211610923565b3480156103ea57600080fd5b506102766103f9366004611b06565b610932565b34801561040a57600080fd5b50610276610419366004611b37565b6109c8565b34801561042a57600080fd5b50610276610439366004611a9c565b610c21565b34801561044a57600080fd5b50610276610459366004611c46565b610c6b565b34801561046a57600080fd5b50610211610479366004611c2e565b610ce6565b34801561048a57600080fd5b506101e7610499366004611a08565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156104c357600080fd5b50610211610d8f565b3480156104d857600080fd5b506102766104e7366004611a08565b610e1d565b3480156104f857600080fd5b506101e7610507366004611a24565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b610276610543366004611c2e565b610e69565b34801561055457600080fd5b50610276610563366004611a08565b610ef0565b34801561057457600080fd5b50610276610583366004611c2e565b610f88565b34801561059457600080fd5b50600b5461023e906001600160a01b031681565b60006301ffc9a760e01b6001600160e01b0319831614806105d957506380ac58cd60e01b6001600160e01b03198316145b806105f45750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461060990611dd5565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611dd5565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b600061069782610fb7565b6106b4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106db82610fdf565b9050806001600160a01b0316836001600160a01b031614156107105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107475761072a8133610507565b610747576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107ae838383611047565b505050565b6000546001600160a01b031633146107e65760405162461bcd60e51b81526004016107dd90611da0565b60405180910390fd5b6000471161082d5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016107dd565b61083733476111ea565b565b6107ae83838360405180602001604052806000815250610c21565b6000546001600160a01b0316331461087e5760405162461bcd60e51b81526004016107dd90611da0565b805161089190600c9060208401906118da565b5050565b60006105f482610fdf565b60006001600160a01b0382166108c9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146109195760405162461bcd60e51b81526004016107dd90611da0565b6108376000611303565b60606004805461060990611dd5565b6001600160a01b03821633141561095c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314610a175760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107dd565b60026009541415610a6a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107dd565b60026009556001600160a01b0382166000908152600a602052604090205460ff1615610ae25760405162461bcd60e51b815260206004820152602160248201527f596f75206861766520616c726561647920636c61696d656420796f7572206e666044820152601d60fa1b60648201526084016107dd565b60408051606084901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034830184528051818301207f19457468657265756d205369676e6564204d6573736167653a0a333200000000605485015260708085019190915284518085039091018152609090930190935281519101206000610b6b8285611353565b600b549091506001600160a01b03808316911614610bc15760405162461bcd60e51b81526020600482015260136024820152720aadce4cac6decedcd2f4c2c4d8ca4090c2e6d606b1b60448201526064016107dd565b610bcc856001611377565b6001600160a01b0385166000818152600a6020526040808220805460ff19166001179055517f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d89190a250506001600955505050565b610c2c848484611047565b6001600160a01b0383163b15610c6557610c4884848484611455565b610c65576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610c955760405162461bcd60e51b81526004016107dd90611da0565b60004711610cdc5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016107dd565b61089181836111ea565b6060610cf182610fb7565b610d3d5760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e2774206578697374000000000000000060448201526064016107dd565b6000600c8054610d4c90611dd5565b905011610d6857604051806020016040528060008152506105f4565b600c604051602001610d7a9190611cb5565b60405160208183030381529060405292915050565b600c8054610d9c90611dd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc890611dd5565b8015610e155780601f10610dea57610100808354040283529160200191610e15565b820191906000526020600020905b815481529060010190602001808311610df857829003601f168201915b505050505081565b6000546001600160a01b03163314610e475760405162461bcd60e51b81526004016107dd90611da0565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e935760405162461bcd60e51b81526004016107dd90611da0565b60008111610ee35760405162461bcd60e51b815260206004820152601760248201527f596f75206d7573742073656e6420616e20616d6f756e7400000000000000000060448201526064016107dd565b610eed3382611377565b50565b6000546001600160a01b03163314610f1a5760405162461bcd60e51b81526004016107dd90611da0565b6001600160a01b038116610f7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610eed81611303565b6000546001600160a01b03163314610fb25760405162461bcd60e51b81526004016107dd90611da0565b600d55565b6000600154821080156105f4575050600090815260056020526040902054600160e01b161590565b60008160015481101561102e57600081815260056020526040902054600160e01b811661102c575b80611025575060001901600081815260056020526040902054611007565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600061105282610fdf565b9050836001600160a01b0316816001600160a01b0316146110855760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110a357506110a38533610507565b806110be5750336110b38461068c565b6001600160a01b0316145b9050806110de57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661110557604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b8617811790915582166111a257600183016000818152600560205260409020546111a05760015481146111a05760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b8047101561123a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107dd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611287576040519150601f19603f3d011682016040523d82523d6000602084013e61128c565b606091505b50509050806107ae5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107dd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000611362858561154d565b9150915061136f816115bd565b509392505050565b6001546001600160a01b0383166113a057604051622e076360e81b815260040160405180910390fd5b816113be5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114095750600155505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061148a903390899088908890600401611d50565b602060405180830381600087803b1580156114a457600080fd5b505af19250505080156114d4575060408051601f3d908101601f191682019092526114d191810190611bcc565b60015b61152f573d808015611502576040519150601f19603f3d011682016040523d82523d6000602084013e611507565b606091505b508051611527576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000808251604114156115845760208301516040840151606085015160001a611578878285856117be565b945094505050506115b6565b8251604014156115ae57602083015160408401516115a38683836118ab565b9350935050506115b6565b506000905060025b9250929050565b60008160048111156115df57634e487b7160e01b600052602160045260246000fd5b14156115e85750565b600181600481111561160a57634e487b7160e01b600052602160045260246000fd5b14156116585760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107dd565b600281600481111561167a57634e487b7160e01b600052602160045260246000fd5b14156116c85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107dd565b60038160048111156116ea57634e487b7160e01b600052602160045260246000fd5b14156117435760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107dd565b600481600481111561176557634e487b7160e01b600052602160045260246000fd5b1415610eed5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016107dd565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156117f557506000905060036118a2565b8460ff16601b1415801561180d57508460ff16601c14155b1561181e57506000905060046118a2565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611872573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661189b576000600192509250506118a2565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016118cc878288856117be565b935093505050935093915050565b8280546118e690611dd5565b90600052602060002090601f016020900481019282611908576000855561194e565b82601f1061192157805160ff191683800117855561194e565b8280016001018555821561194e579182015b8281111561194e578251825591602001919060010190611933565b5061195a92915061195e565b5090565b5b8082111561195a576000815560010161195f565b600067ffffffffffffffff8084111561198e5761198e611e10565b604051601f8501601f19908116603f011681019082821181831017156119b6576119b6611e10565b816040528093508581528686860111156119cf57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126119f9578081fd5b61102583833560208501611973565b600060208284031215611a19578081fd5b813561102581611e26565b60008060408385031215611a36578081fd5b8235611a4181611e26565b91506020830135611a5181611e26565b809150509250929050565b600080600060608486031215611a70578081fd5b8335611a7b81611e26565b92506020840135611a8b81611e26565b929592945050506040919091013590565b60008060008060808587031215611ab1578081fd5b8435611abc81611e26565b93506020850135611acc81611e26565b925060408501359150606085013567ffffffffffffffff811115611aee578182fd5b611afa878288016119e9565b91505092959194509250565b60008060408385031215611b18578182fd5b8235611b2381611e26565b915060208301358015158114611a51578182fd5b60008060408385031215611b49578182fd5b8235611b5481611e26565b9150602083013567ffffffffffffffff811115611b6f578182fd5b611b7b858286016119e9565b9150509250929050565b60008060408385031215611b97578182fd5b8235611ba281611e26565b946020939093013593505050565b600060208284031215611bc1578081fd5b813561102581611e3b565b600060208284031215611bdd578081fd5b815161102581611e3b565b600060208284031215611bf9578081fd5b813567ffffffffffffffff811115611c0f578182fd5b8201601f81018413611c1f578182fd5b61154584823560208401611973565b600060208284031215611c3f578081fd5b5035919050565b60008060408385031215611c58578182fd5b823591506020830135611a5181611e26565b60008151808452815b81811015611c8f57602081850181015186830182015201611c73565b81811115611ca05782602083870101525b50601f01601f19169290920160200192915050565b600080835482600182811c915080831680611cd157607f831692505b6020808410821415611cf157634e487b7160e01b87526022600452602487fd5b818015611d055760018114611d1657611d42565b60ff19861689528489019650611d42565b60008a815260209020885b86811015611d3a5781548b820152908501908301611d21565b505084890196505b509498975050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d8390830184611c6a565b9695505050505050565b6020815260006110256020830184611c6a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611de957607f821691505b60208210811415611e0a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610eed57600080fd5b6001600160e01b031981168114610eed57600080fdfea2646970667358221220b3d5d86e8865beac1b61be074fe49b921f01c760e5c0597d8f1d74d0df25967664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b3fd6c6ca4099438559deb3c9b2b0f6805762ad90000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d615176746a535a73727068524b4b56755a726374554665437970614e3534446553696f4b31774e52545275750000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmaQvtjSZsrphRKKVuZrctUFeCypaN54DeSioK1wNRTRuu
Arg [1] : verifier (address): 0xb3fD6C6Ca4099438559Deb3C9b2B0f6805762ad9
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000b3fd6c6ca4099438559deb3c9b2b0f6805762ad9
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d615176746a535a73727068524b4b56755a726374554665
Arg [4] : 437970614e3534446553696f4b31774e52545275750000000000000000000000
Deployed Bytecode Sourcemap
336:3121:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:7;;;;;;;;;;-1:-1:-1;4880:607:7;;;;;:::i;:::-;;:::i;:::-;;;8785:14:9;;8778:22;8760:41;;8748:2;8733:18;4880:607:7;;;;;;;;9768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11769:200::-;;;;;;;;;;-1:-1:-1;11769:200:7;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8083:32:9;;;8065:51;;8053:2;8038:18;11769:200:7;8020:102:9;11245:463:7;;;;;;;;;;-1:-1:-1;11245:463:7;;;;;:::i;:::-;;:::i;:::-;;3963:309;;;;;;;;;;-1:-1:-1;4225:12:7;;4209:13;;:28;3963:309;;;15180:25:9;;;15168:2;15153:18;3963:309:7;15135:76:9;12629:164:7;;;;;;;;;;-1:-1:-1;12629:164:7;;;;;:::i;:::-;;:::i;577:41:6:-;;;;;;;;;;-1:-1:-1;577:41:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;3079:183;;;;;;;;;;;;;:::i;12859:179:7:-;;;;;;;;;;-1:-1:-1;12859:179:7;;;;;:::i;:::-;;:::i;1941:98:6:-;;;;;;;;;;-1:-1:-1;1941:98:6;;;;;:::i;:::-;;:::i;9564:142:7:-;;;;;;;;;;-1:-1:-1;9564:142:7;;;;;:::i;:::-;;:::i;696:38:6:-;;;;;;;;;;;;;;;;5546:221:7;;;;;;;;;;-1:-1:-1;5546:221:7;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;1036:85::-;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;9930:102:7;;;;;;;;;;;;;:::i;12036:303::-;;;;;;;;;;-1:-1:-1;12036:303:7;;;;;:::i;:::-;;:::i;1168:548:6:-;;;;;;;;;;-1:-1:-1;1168:548:6;;;;;:::i;:::-;;:::i;13104:385:7:-;;;;;;;;;;-1:-1:-1;13104:385:7;;;;;:::i;:::-;;:::i;3268:187:6:-;;;;;;;;;;-1:-1:-1;3268:187:6;;;;;:::i;:::-;;:::i;2693:327::-;;;;;;;;;;-1:-1:-1;2693:327:6;;;;;:::i;:::-;;:::i;2358:153::-;;;;;;;;;;-1:-1:-1;2358:153:6;;;;;:::i;:::-;-1:-1:-1;;;;;2489:15:6;2462:4;2489:15;;;:9;:15;;;;;;;;;2358:153;663:27;;;;;;;;;;;;;:::i;2145:152::-;;;;;;;;;;-1:-1:-1;2145:152:6;;;;;:::i;:::-;;:::i;12405:162:7:-;;;;;;;;;;-1:-1:-1;12405:162:7;;;;;:::i;:::-;-1:-1:-1;;;;;12525:25:7;;;12502:4;12525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12405:162;1722:158:6;;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;2045:94:6:-;;;;;;;;;;-1:-1:-1;2045:94:6;;;;;:::i;:::-;;:::i;625:32::-;;;;;;;;;;-1:-1:-1;625:32:6;;;;-1:-1:-1;;;;;625:32:6;;;4880:607:7;4965:4;-1:-1:-1;;;;;;;;;5260:25:7;;;;:101;;-1:-1:-1;;;;;;;;;;5336:25:7;;;5260:101;:177;;;-1:-1:-1;;;;;;;;;;5412:25:7;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:7:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11769:200::-;11837:7;11861:16;11869:7;11861;:16::i;:::-;11856:64;;11886:34;;-1:-1:-1;;;11886:34:7;;;;;;;;;;;11856:64;-1:-1:-1;11938:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;11938:24:7;;11769:200::o;11245:463::-;11317:13;11349:27;11368:7;11349:18;:27::i;:::-;11317:61;;11398:5;-1:-1:-1;;;;;11392:11:7;:2;-1:-1:-1;;;;;11392:11:7;;11388:48;;;11412:24;;-1:-1:-1;;;11412:24:7;;;;;;;;;;;11388:48;27446:10;-1:-1:-1;;;;;11451:28:7;;;11447:172;;11498:44;11515:5;27446:10;12405:162;:::i;11498:44::-;11493:126;;11569:35;;-1:-1:-1;;;11569:35:7;;;;;;;;;;;11493:126;11629:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11629:29:7;-1:-1:-1;;;;;11629:29:7;;;;;;;;;11673:28;;11629:24;;11673:28;;;;;;;11245:463;;;:::o;12629:164::-;12758:28;12768:4;12774:2;12778:7;12758:9;:28::i;:::-;12629:164;;;:::o;3079:183:6:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;3158:1:6::1;3134:21;:25;3126:58;;;::::0;-1:-1:-1;;;3126:58:6;;11109:2:9;3126:58:6::1;::::0;::::1;11091:21:9::0;11148:2;11128:18;;;11121:30;-1:-1:-1;;;11167:18:9;;;11160:50;11227:18;;3126:58:6::1;11081:170:9::0;3126:58:6::1;3194:61;3220:10;3233:21;3194:17;:61::i;:::-;3079:183::o:0;12859:179:7:-;12992:39;13009:4;13015:2;13019:7;12992:39;;;;;;;;;;;;:16;:39::i;1941:98:6:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2010:22:6;;::::1;::::0;:13:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1941:98:::0;:::o;9564:142:7:-;9628:7;9670:27;9689:7;9670:18;:27::i;5546:221::-;5610:7;-1:-1:-1;;;;;5633:19:7;;5629:60;;5661:28;;-1:-1:-1;;;5661:28:7;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:7;;;;;:18;:25;;;;;;1017:13;5706:54;;5546:221::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;9930:102:7:-:0;9986:13;10018:7;10011:14;;;;;:::i;12036:303::-;-1:-1:-1;;;;;12134:31:7;;27446:10;12134:31;12130:61;;;12174:17;;-1:-1:-1;;;12174:17:7;;;;;;;;;;;12130:61;27446:10;12202:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12202:49:7;;;;;;;;;;;;:60;;-1:-1:-1;;12202:60:7;;;;;;;;;;12277:55;;8760:41:9;;;12202:49:7;;27446:10;12277:55;;8733:18:9;12277:55:7;;;;;;;12036:303;;:::o;1168:548:6:-;1031:9;1044:10;1031:23;1023:66;;;;-1:-1:-1;;;1023:66:6;;12646:2:9;1023:66:6;;;12628:21:9;12685:2;12665:18;;;12658:30;12724:32;12704:18;;;12697:60;12774:18;;1023:66:6;12618:180:9;1023:66:6;1744:1:1::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:1;;14876:2:9;2317:63:1::1;::::0;::::1;14858:21:9::0;14915:2;14895:18;;;14888:30;14954:33;14934:18;;;14927:61;15005:18;;2317:63:1::1;14848:181:9::0;2317:63:1::1;1744:1;2455:7;:18:::0;-1:-1:-1;;;;;1312:13:6;::::2;;::::0;;;:9:::2;:13;::::0;;;;;::::2;;1311:14;1303:60;;;::::0;-1:-1:-1;;;1303:60:6;;13005:2:9;1303:60:6::2;::::0;::::2;12987:21:9::0;13044:2;13024:18;;;13017:30;13083:34;13063:18;;;13056:62;-1:-1:-1;;;13134:18:9;;;13127:31;13175:19;;1303:60:6::2;12977:223:9::0;1303:60:6::2;1396:20;::::0;;6131:2:9;6127:15;;;-1:-1:-1;;6123:53:9;1396:20:6::2;::::0;;::::2;6111:66:9::0;;;;1396:20:6;;;;;;;;;6193:12:9;;;1396:20:6;;1477:18;;;;::::2;::::0;7566:66:9;8239:58:5;;;7554:79:9;7649:12;;;;7642:28;;;;8239:58:5;;;;;;;;;;7686:12:9;;;;8239:58:5;;;8229:69;;;;;1506:14:6::2;1523:38;1537:11;1550:10;1523:13;:38::i;:::-;1590:17;::::0;1506:55;;-1:-1:-1;;;;;;1580:27:6;;::::2;1590:17:::0;::::2;1580:27;1572:59;;;::::0;-1:-1:-1;;;1572:59:6;;10761:2:9;1572:59:6::2;::::0;::::2;10743:21:9::0;10800:2;10780:18;;;10773:30;-1:-1:-1;;;10819:18:9;;;10812:49;10878:18;;1572:59:6::2;10733:169:9::0;1572:59:6::2;1641:12;1647:2;1651:1;1641:5;:12::i;:::-;-1:-1:-1::0;;;;;1664:13:6;::::2;;::::0;;;:9:::2;:13;::::0;;;;;:20;;-1:-1:-1;;1664:20:6::2;1680:4;1664:20;::::0;;1699:10;::::2;::::0;1664:13;1699:10:::2;-1:-1:-1::0;;1701:1:1::1;2628:7;:22:::0;-1:-1:-1;;;1168:548:6:o;13104:385:7:-;13265:28;13275:4;13281:2;13285:7;13265:9;:28::i;:::-;-1:-1:-1;;;;;13307:14:7;;;:19;13303:180;;13345:56;13376:4;13382:2;13386:7;13395:5;13345:30;:56::i;:::-;13340:143;;13428:40;;-1:-1:-1;;;13428:40:7;;;;;;;;;;;13340:143;13104:385;;;;:::o;3268:187:6:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3383:1:6::1;3359:21;:25;3351:58;;;::::0;-1:-1:-1;;;3351:58:6;;11109:2:9;3351:58:6::1;::::0;::::1;11091:21:9::0;11148:2;11128:18;;;11121:30;-1:-1:-1;;;11167:18:9;;;11160:50;11227:18;;3351:58:6::1;11081:170:9::0;3351:58:6::1;3419:29;3437:2;3441:6;3419:17;:29::i;2693:327::-:0;2791:13;2828:17;2836:8;2828:7;:17::i;:::-;2820:54;;;;-1:-1:-1;;;2820:54:6;;13810:2:9;2820:54:6;;;13792:21:9;13849:2;13829:18;;;13822:30;13888:26;13868:18;;;13861:54;13932:18;;2820:54:6;13782:174:9;2820:54:6;2933:1;2909:13;2903:27;;;;;:::i;:::-;;;:31;:110;;;;;;;;;;;;;;;;;2977:13;2960:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;2884:129;2693:327;-1:-1:-1;;2693:327:6:o;663:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2145:152::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2252:17:6::1;:38:::0;;-1:-1:-1;;;;;;2252:38:6::1;-1:-1:-1::0;;;;;2252:38:6;;;::::1;::::0;;;::::1;::::0;;2145:152::o;1722:158::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1809:1:6::1;1800:6;:10;1792:46;;;::::0;-1:-1:-1;;;1792:46:6;;14163:2:9;1792:46:6::1;::::0;::::1;14145:21:9::0;14202:2;14182:18;;;14175:30;14241:25;14221:18;;;14214:53;14284:18;;1792:46:6::1;14135:173:9::0;1792:46:6::1;1848:25;1854:10;1866:6;1848:5;:25::i;:::-;1722:158:::0;:::o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;10354:2:9;1998:73:0::1;::::0;::::1;10336:21:9::0;10393:2;10373:18;;;10366:30;10432:34;10412:18;;;10405:62;-1:-1:-1;;;10483:18:9;;;10476:36;10529:19;;1998:73:0::1;10326:228:9::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;2045:94:6:-:0;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2112:9:6::1;:20:::0;2045:94::o;13735:268:7:-;13792:4;13879:13;;13869:7;:23;13827:150;;;;-1:-1:-1;;13929:26:7;;;;:17;:26;;;;;;-1:-1:-1;;;13929:43:7;:48;;13735:268::o;7141:1105::-;7208:7;7242;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;-1:-1:-1;;;7481:23:7;;7477:687;;7992:111;7999:11;7992:111;;-1:-1:-1;;;8069:6:7;8051:25;;;;:17;:25;;;;;;7992:111;;;8135:6;7141:1105;-1:-1:-1;;;7141:1105:7:o;7477:687::-;7329:853;;8208:31;;-1:-1:-1;;;8208:31:7;;;;;;;;;;;18835:2460;18945:27;18975;18994:7;18975:18;:27::i;:::-;18945:57;;19058:4;-1:-1:-1;;;;;19017:45:7;19033:19;-1:-1:-1;;;;;19017:45:7;;19013:86;;19071:28;;-1:-1:-1;;;19071:28:7;;;;;;;;;;;19013:86;19110:22;27446:10;-1:-1:-1;;;;;19136:27:7;;;;:86;;-1:-1:-1;19179:43:7;19196:4;27446:10;12405:162;:::i;19179:43::-;19136:145;;;-1:-1:-1;27446:10:7;19238:20;19250:7;19238:11;:20::i;:::-;-1:-1:-1;;;;;19238:43:7;;19136:145;19110:172;;19298:17;19293:66;;19324:35;;-1:-1:-1;;;19324:35:7;;;;;;;;;;;19293:66;-1:-1:-1;;;;;19373:16:7;;19369:52;;19398:23;;-1:-1:-1;;;19398:23:7;;;;;;;;;;;19369:52;19545:24;;;;:15;:24;;;;;;;;19538:31;;-1:-1:-1;;;;;;19538:31:7;;;-1:-1:-1;;;;;19930:24:7;;;;;:18;:24;;;;;19928:26;;-1:-1:-1;;19928:26:7;;;19998:22;;;;;;;19996:24;;-1:-1:-1;19996:24:7;;;20284:26;;;:17;:26;;;;;-1:-1:-1;;;20370:15:7;1656:3;20370:41;20329:83;;:126;;20284:171;;;20572:46;;20568:616;;20675:1;20665:11;;20643:19;20796:30;;;:17;:30;;;;;;20792:378;;20932:13;;20917:11;:28;20913:239;;21077:30;;;;:17;:30;;;;;:52;;;20913:239;20568:616;;21228:7;21224:2;-1:-1:-1;;;;;21209:27:7;21218:4;-1:-1:-1;;;;;21209:27:7;;;;;;;;;;;18835:2460;;;;;:::o;2065:312:2:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:2;;12288:2:9;2146:73:2;;;12270:21:9;12327:2;12307:18;;;12300:30;12366:31;12346:18;;;12339:59;12415:18;;2146:73:2;12260:179:9;2146:73:2;2231:12;2249:9;-1:-1:-1;;;;;2249:14:2;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:2;;11458:2:9;2292:78:2;;;11440:21:9;11497:2;11477:18;;;11470:30;11536:34;11516:18;;;11509:62;11607:28;11587:18;;;11580:56;11653:19;;2292:78:2;11430:248:9;2270:187:0;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2270:187;;:::o;4293:227:5:-;4371:7;4391:17;4410:18;4432:27;4443:4;4449:9;4432:10;:27::i;:::-;4390:69;;;;4469:18;4481:5;4469:11;:18::i;:::-;-1:-1:-1;4504:9:5;4293:227;-1:-1:-1;;;4293:227:5:o;16975:1618:7:-;17062:13;;-1:-1:-1;;;;;17089:16:7;;17085:48;;17114:19;;-1:-1:-1;;;17114:19:7;;;;;;;;;;;17085:48;17147:13;17143:44;;17169:18;;-1:-1:-1;;;17169:18:7;;;;;;;;;;;17143:44;-1:-1:-1;;;;;17723:22:7;;;;;;:18;:22;;;;1151:2;17723:22;;;:70;;17761:31;17749:44;;17723:70;;;18029:31;;;:17;:31;;;;;18120:15;1656:3;18120:41;18079:83;;-1:-1:-1;18197:13:7;;1913:3;18182:56;18079:160;18029:210;;:31;18317:23;;;18355:109;18381:40;;18406:14;;;;;-1:-1:-1;;;;;18381:40:7;;;18398:1;;18381:40;;18398:1;;18381:40;18459:3;18444:12;:18;18355:109;;-1:-1:-1;18478:13:7;:28;12629:164;;;:::o;24900:697::-;25078:88;;-1:-1:-1;;;25078:88:7;;25058:4;;-1:-1:-1;;;;;25078:45:7;;;;;:88;;27446:10;;25145:4;;25151:7;;25160:5;;25078:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25078:88:7;;;;;;;;-1:-1:-1;;25078:88:7;;;;;;;;;;;;:::i;:::-;;;25074:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25356:13:7;;25352:229;;25401:40;;-1:-1:-1;;;25401:40:7;;;;;;;;;;;25352:229;25541:6;25535:13;25526:6;25522:2;25518:15;25511:38;25074:517;-1:-1:-1;;;;;;25234:64:7;-1:-1:-1;;;25234:64:7;;-1:-1:-1;25074:517:7;24900:697;;;;;;:::o;2228:1279:5:-;2309:7;2318:12;2539:9;:16;2559:2;2539:22;2535:966;;;2828:4;2813:20;;2807:27;2877:4;2862:20;;2856:27;2934:4;2919:20;;2913:27;2577:9;2905:36;2975:25;2986:4;2905:36;2807:27;2856;2975:10;:25::i;:::-;2968:32;;;;;;;;;2535:966;3021:9;:16;3041:2;3021:22;3017:484;;;3290:4;3275:20;;3269:27;3340:4;3325:20;;3319:27;3380:23;3391:4;3269:27;3319;3380:10;:23::i;:::-;3373:30;;;;;;;;3017:484;-1:-1:-1;3450:1:5;;-1:-1:-1;3454:35:5;3017:484;2228:1279;;;;;:::o;533:631::-;610:20;601:5;:29;;;;;;-1:-1:-1;;;601:29:5;;;;;;;;;;597:561;;;533:631;:::o;597:561::-;706:29;697:5;:38;;;;;;-1:-1:-1;;;697:38:5;;;;;;;;;;693:465;;;751:34;;-1:-1:-1;;;751:34:5;;9641:2:9;751:34:5;;;9623:21:9;9680:2;9660:18;;;9653:30;9719:26;9699:18;;;9692:54;9763:18;;751:34:5;9613:174:9;693:465:5;815:35;806:5;:44;;;;;;-1:-1:-1;;;806:44:5;;;;;;;;;;802:356;;;866:41;;-1:-1:-1;;;866:41:5;;9994:2:9;866:41:5;;;9976:21:9;10033:2;10013:18;;;10006:30;10072:33;10052:18;;;10045:61;10123:18;;866:41:5;9966:181:9;802:356:5;937:30;928:5;:39;;;;;;-1:-1:-1;;;928:39:5;;;;;;;;;;924:234;;;983:44;;-1:-1:-1;;;983:44:5;;11885:2:9;983:44:5;;;11867:21:9;11924:2;11904:18;;;11897:30;11963:34;11943:18;;;11936:62;-1:-1:-1;;;12014:18:9;;;12007:32;12056:19;;983:44:5;11857:224:9;924:234:5;1057:30;1048:5;:39;;;;;;-1:-1:-1;;;1048:39:5;;;;;;;;;;1044:114;;;1103:44;;-1:-1:-1;;;1103:44:5;;13407:2:9;1103:44:5;;;13389:21:9;13446:2;13426:18;;;13419:30;13485:34;13465:18;;;13458:62;-1:-1:-1;;;13536:18:9;;;13529:32;13578:19;;1103:44:5;13379:224:9;5744:1603:5;5870:7;;6794:66;6781:79;;6777:161;;;-1:-1:-1;6892:1:5;;-1:-1:-1;6896:30:5;6876:51;;6777:161;6951:1;:7;;6956:2;6951:7;;:18;;;;;6962:1;:7;;6967:2;6962:7;;6951:18;6947:100;;;-1:-1:-1;7001:1:5;;-1:-1:-1;7005:30:5;6985:51;;6947:100;7158:24;;;7141:14;7158:24;;;;;;;;;9039:25:9;;;9112:4;9100:17;;9080:18;;;9073:45;;;;9134:18;;;9127:34;;;9177:18;;;9170:34;;;7158:24:5;;9011:19:9;;7158:24:5;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7158:24:5;;-1:-1:-1;;7158:24:5;;;-1:-1:-1;;;;;;;7196:20:5;;7192:101;;7248:1;7252:29;7232:50;;;;;;;7192:101;7311:6;-1:-1:-1;7319:20:5;;-1:-1:-1;5744:1603:5;;;;;;;;:::o;4774:379::-;4884:7;;-1:-1:-1;;;;;4981:75:5;;5082:3;5078:12;;;5092:2;5074:21;5121:25;5132:4;5074:21;5141:1;4981:75;5121:10;:25::i;:::-;5114:32;;;;;;4774:379;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:9;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:9;;;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:228::-;692:5;745:3;738:4;730:6;726:17;722:27;712:2;;767:5;760;753:20;712:2;793:79;868:3;859:6;846:20;839:4;831:6;827:17;793:79;:::i;883:257::-;942:6;995:2;983:9;974:7;970:23;966:32;963:2;;;1016:6;1008;1001:22;963:2;1060:9;1047:23;1079:31;1104:5;1079:31;:::i;1145:398::-;1213:6;1221;1274:2;1262:9;1253:7;1249:23;1245:32;1242:2;;;1295:6;1287;1280:22;1242:2;1339:9;1326:23;1358:31;1383:5;1358:31;:::i;:::-;1408:5;-1:-1:-1;1465:2:9;1450:18;;1437:32;1478:33;1437:32;1478:33;:::i;:::-;1530:7;1520:17;;;1232:311;;;;;:::o;1548:466::-;1625:6;1633;1641;1694:2;1682:9;1673:7;1669:23;1665:32;1662:2;;;1715:6;1707;1700:22;1662:2;1759:9;1746:23;1778:31;1803:5;1778:31;:::i;:::-;1828:5;-1:-1:-1;1885:2:9;1870:18;;1857:32;1898:33;1857:32;1898:33;:::i;:::-;1652:362;;1950:7;;-1:-1:-1;;;2004:2:9;1989:18;;;;1976:32;;1652:362::o;2019:685::-;2114:6;2122;2130;2138;2191:3;2179:9;2170:7;2166:23;2162:33;2159:2;;;2213:6;2205;2198:22;2159:2;2257:9;2244:23;2276:31;2301:5;2276:31;:::i;:::-;2326:5;-1:-1:-1;2383:2:9;2368:18;;2355:32;2396:33;2355:32;2396:33;:::i;:::-;2448:7;-1:-1:-1;2502:2:9;2487:18;;2474:32;;-1:-1:-1;2557:2:9;2542:18;;2529:32;2584:18;2573:30;;2570:2;;;2621:6;2613;2606:22;2570:2;2649:49;2690:7;2681:6;2670:9;2666:22;2649:49;:::i;:::-;2639:59;;;2149:555;;;;;;;:::o;2709:436::-;2774:6;2782;2835:2;2823:9;2814:7;2810:23;2806:32;2803:2;;;2856:6;2848;2841:22;2803:2;2900:9;2887:23;2919:31;2944:5;2919:31;:::i;:::-;2969:5;-1:-1:-1;3026:2:9;3011:18;;2998:32;3068:15;;3061:23;3049:36;;3039:2;;3104:6;3096;3089:22;3150:475;3227:6;3235;3288:2;3276:9;3267:7;3263:23;3259:32;3256:2;;;3309:6;3301;3294:22;3256:2;3353:9;3340:23;3372:31;3397:5;3372:31;:::i;:::-;3422:5;-1:-1:-1;3478:2:9;3463:18;;3450:32;3505:18;3494:30;;3491:2;;;3542:6;3534;3527:22;3491:2;3570:49;3611:7;3602:6;3591:9;3587:22;3570:49;:::i;:::-;3560:59;;;3246:379;;;;;:::o;3630:325::-;3698:6;3706;3759:2;3747:9;3738:7;3734:23;3730:32;3727:2;;;3780:6;3772;3765:22;3727:2;3824:9;3811:23;3843:31;3868:5;3843:31;:::i;:::-;3893:5;3945:2;3930:18;;;;3917:32;;-1:-1:-1;;;3717:238:9:o;3960:255::-;4018:6;4071:2;4059:9;4050:7;4046:23;4042:32;4039:2;;;4092:6;4084;4077:22;4039:2;4136:9;4123:23;4155:30;4179:5;4155:30;:::i;4220:259::-;4289:6;4342:2;4330:9;4321:7;4317:23;4313:32;4310:2;;;4363:6;4355;4348:22;4310:2;4400:9;4394:16;4419:30;4443:5;4419:30;:::i;4484:480::-;4553:6;4606:2;4594:9;4585:7;4581:23;4577:32;4574:2;;;4627:6;4619;4612:22;4574:2;4672:9;4659:23;4705:18;4697:6;4694:30;4691:2;;;4742:6;4734;4727:22;4691:2;4770:22;;4823:4;4815:13;;4811:27;-1:-1:-1;4801:2:9;;4857:6;4849;4842:22;4801:2;4885:73;4950:7;4945:2;4932:16;4927:2;4923;4919:11;4885:73;:::i;4969:190::-;5028:6;5081:2;5069:9;5060:7;5056:23;5052:32;5049:2;;;5102:6;5094;5087:22;5049:2;-1:-1:-1;5130:23:9;;5039:120;-1:-1:-1;5039:120:9:o;5164:333::-;5240:6;5248;5301:2;5289:9;5280:7;5276:23;5272:32;5269:2;;;5322:6;5314;5307:22;5269:2;5363:9;5350:23;5340:33;;5423:2;5412:9;5408:18;5395:32;5436:31;5461:5;5436:31;:::i;5502:475::-;5543:3;5581:5;5575:12;5608:6;5603:3;5596:19;5633:3;5645:162;5659:6;5656:1;5653:13;5645:162;;;5721:4;5777:13;;;5773:22;;5767:29;5749:11;;;5745:20;;5738:59;5674:12;5645:162;;;5825:6;5822:1;5819:13;5816:2;;;5891:3;5884:4;5875:6;5870:3;5866:16;5862:27;5855:40;5816:2;-1:-1:-1;5959:2:9;5938:15;-1:-1:-1;;5934:29:9;5925:39;;;;5966:4;5921:50;;5551:426;-1:-1:-1;;5551:426:9:o;6216:1103::-;6344:3;6373;6408:6;6402:13;6438:3;6460:1;6488:9;6484:2;6480:18;6470:28;;6548:2;6537:9;6533:18;6570;6560:2;;6614:4;6606:6;6602:17;6592:27;;6560:2;6640;6688;6680:6;6677:14;6657:18;6654:38;6651:2;;;-1:-1:-1;;;6715:33:9;;6771:4;6768:1;6761:15;6801:4;6722:3;6789:17;6651:2;6832:18;6859:104;;;;6977:1;6972:322;;;;6825:469;;6859:104;-1:-1:-1;;6892:24:9;;6880:37;;6937:16;;;;-1:-1:-1;6859:104:9;;6972:322;15263:4;15282:17;;;15332:4;15316:21;;7067:3;7083:165;7097:6;7094:1;7091:13;7083:165;;;7175:14;;7162:11;;;7155:35;7218:16;;;;7112:10;;7083:165;;;7087:3;;7277:6;7272:3;7268:16;7261:23;;6825:469;-1:-1:-1;7310:3:9;;6352:967;-1:-1:-1;;;;;;;;6352:967:9:o;8127:488::-;-1:-1:-1;;;;;8396:15:9;;;8378:34;;8448:15;;8443:2;8428:18;;8421:43;8495:2;8480:18;;8473:34;;;8543:3;8538:2;8523:18;;8516:31;;;8321:4;;8564:45;;8589:19;;8581:6;8564:45;:::i;:::-;8556:53;8330:285;-1:-1:-1;;;;;;8330:285:9:o;9215:219::-;9364:2;9353:9;9346:21;9327:4;9384:44;9424:2;9413:9;9409:18;9401:6;9384:44;:::i;14313:356::-;14515:2;14497:21;;;14534:18;;;14527:30;14593:34;14588:2;14573:18;;14566:62;14660:2;14645:18;;14487:182::o;15348:380::-;15427:1;15423:12;;;;15470;;;15491:2;;15545:4;15537:6;15533:17;15523:27;;15491:2;15598;15590:6;15587:14;15567:18;15564:38;15561:2;;;15644:10;15639:3;15635:20;15632:1;15625:31;15679:4;15676:1;15669:15;15707:4;15704:1;15697:15;15561:2;;15403:325;;;:::o;15733:127::-;15794:10;15789:3;15785:20;15782:1;15775:31;15825:4;15822:1;15815:15;15849:4;15846:1;15839:15;15865:131;-1:-1:-1;;;;;15940:31:9;;15930:42;;15920:2;;15986:1;15983;15976:12;16001:131;-1:-1:-1;;;;;;16075:32:9;;16065:43;;16055:2;;16122:1;16119;16112:12
Swarm Source
ipfs://b3d5d86e8865beac1b61be074fe49b921f01c760e5c0597d8f1d74d0df259676
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.