Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 BNC
Holders
172
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BNCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlockchainNuggets
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; //import "./ERC721Burnable.sol"; import "./ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** * @title Blockchain Nuggets contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract BlockchainNuggets is ERC721 { using Counters for Counters.Counter; enum Type { Standard, Copper, Silver, Gold, Home, Special } Counters.Counter private _tokenIdCounterStandard; Counters.Counter private _tokenIdCounterCopper; Counters.Counter private _tokenIdCounterSilver; Counters.Counter private _tokenIdCounterGold; Counters.Counter private _tokenIdCounterHome; Counters.Counter private _tokenIdCounterSpecial; bool public openMint = false; mapping (address => uint256) whitelist; mapping (address => uint256) numberMinted; struct PassSpec { uint256 maxSupply; uint256 startingTokenId; uint256 numberBurned; } mapping (Type => PassSpec) passSpecs; mapping (Type => mapping(address => uint256)) whitelistByType; string private _contractURI; string public baseURI = ""; uint256 public maxMintPerWL = 1; constructor() ERC721("Blockchain Nuggets Baby", "BNC") { passSpecs[Type.Standard] = PassSpec(6000, 1, 0); passSpecs[Type.Copper] = PassSpec(1500, 6001, 0); passSpecs[Type.Silver] = PassSpec(1000, 7501, 0); passSpecs[Type.Gold] = PassSpec(500, 8501, 0); passSpecs[Type.Home] = PassSpec(500, 9001, 0); passSpecs[Type.Special] = PassSpec(500, 9501, 0); } /******************** MODIFIER ********************/ modifier _notContract() { require(msg.sender == tx.origin, "no contracts please"); _; } modifier mintComplianceWithWL(Type typ) { require(openMint, "mint not open"); PassSpec memory pass = getSpec(typ); require(whitelist[msg.sender] < maxMintPerWL, "over WL limit"); require(whitelistByType[typ][msg.sender] > 0, "Address does not exist in the white list"); require(getCounter(typ).current() + maxMintPerWL <= pass.maxSupply, "over supply"); _; } /******************** OWNER SETTER ********************/ function seedWhitelist(Type typ, address[] memory addresses) external onlyOwner { if (typ != Type.Standard && typ != Type.Copper && typ != Type.Silver && typ != Type.Gold) { revert("invalid type"); } for (uint256 i = 0 ; i < addresses.length; i ++ ) { whitelistByType[typ][addresses[i]] = maxMintPerWL; } } //Set Base URI function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function flipMintState() public onlyOwner { openMint = !openMint; } function burn(uint256 tokenId) external virtual onlyOwner { _burnByTokenId(tokenId); } /******************** OVERRIDES ********************/ function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId))) : ""; } /******************** MINT ********************/ function mintWhitelist(Type typ) external { _mintWithWL(typ); } function mintForAddress(Type typ, address[] calldata receiver) external onlyOwner { for (uint256 i = 0 ; i < receiver.length; i ++ ) { _mintForAddress(typ, receiver[i]); } } function upgrade(Type typ, uint256 tokenId) external { require(ownerOf(tokenId) == msg.sender, "not owner this token"); require(whitelistByType[typ][msg.sender] > 0, "Address does not exist in the white list"); require(tokenId < getSpec(typ).startingTokenId, "Type not match"); _burnByTokenId(tokenId); _safeMintType(typ, msg.sender); whitelistByType[typ][msg.sender] --; } /******************** INTERNAL ********************/ function _mintWithWL(Type typ) internal _notContract mintComplianceWithWL(typ) { whitelist[msg.sender] ++; _safeMintType(typ, msg.sender); whitelistByType[typ][msg.sender] --; whitelist[msg.sender] ++; } function _mintForAddress(Type typ, address receiver) internal _notContract onlyOwner { PassSpec memory pass = getSpec(typ); require(getCounter(typ).current() + maxMintPerWL <= pass.maxSupply, "over supply"); _safeMintType(typ, receiver); } function _safeMintType(Type typ, address to) internal { uint256 tokenId = getCounter(typ).current() + getSpec(typ).startingTokenId; increaseSupplyByType(typ); _safeMint(to, tokenId); } function increaseSupplyByType(Type typ) internal { getCounter(typ).increment(); } function _burnByTokenId(uint256 tokenId) internal { if (tokenId >= getSpec(Type.Standard).startingTokenId && tokenId < getSpec(Type.Copper).startingTokenId) { passSpecs[Type.Standard].numberBurned ++; } else if (tokenId >= getSpec(Type.Copper).startingTokenId && tokenId < getSpec(Type.Silver).startingTokenId) { passSpecs[Type.Copper].numberBurned ++; } else if (tokenId >= getSpec(Type.Silver).startingTokenId && tokenId < getSpec(Type.Gold).startingTokenId) { passSpecs[Type.Silver].numberBurned ++; } else if (tokenId >= getSpec(Type.Gold).startingTokenId && tokenId < getSpec(Type.Home).startingTokenId) { passSpecs[Type.Gold].numberBurned ++; } else if (tokenId >= getSpec(Type.Home).startingTokenId && tokenId < getSpec(Type.Special).startingTokenId) { passSpecs[Type.Home].numberBurned ++; } else if (tokenId >= getSpec(Type.Special).startingTokenId) { passSpecs[Type.Special].numberBurned ++; } else { revert("invalid type"); } _burn(tokenId); } /******************** GETTER ********************/ function totalSupplyByType(Type typ) public view returns (uint256) { return getCounter(typ).current() - getSpec(typ).numberBurned; } function maxSupplyByType(Type typ) public view returns (uint) { return getSpec(typ).maxSupply; } function getSpec(Type typ) private view returns (PassSpec memory) { return passSpecs[typ]; } function getCounter(Type typ) private view returns (Counters.Counter storage) { if (typ == Type.Standard) { return _tokenIdCounterStandard; } if (typ == Type.Copper) { return _tokenIdCounterCopper; } if (typ == Type.Silver) { return _tokenIdCounterSilver; } if (typ == Type.Gold) { return _tokenIdCounterGold; } if (typ == Type.Home) { return _tokenIdCounterHome; } if (typ == Type.Special) { return _tokenIdCounterSpecial; } revert("invalid type"); } function checkWhitelist(Type typ, address addr) public view returns (bool) { return whitelistByType[typ][addr] > 0; } function walletOfOwner(Type typ, address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 ownedTokenIndex = 0; uint256 currentTokenId = getSpec(typ).startingTokenId; while (ownedTokenIndex < ownerTokenCount && currentTokenId < getCounter(typ).current() + getSpec(typ).startingTokenId) { if (ownerOf(currentTokenId) == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; unchecked{ ownedTokenIndex ++ ;} } unchecked{ currentTokenId ++ ;} } // 0 is not exist if (ownedTokenIndex == 0) { ownedTokenIds[ownedTokenIndex] = 0; } return ownedTokenIds; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, Ownable, Pausable { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); // require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override whenNotPaused { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override whenNotPaused { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override whenNotPaused { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any (single) token transfer. This includes minting and burning. * See {_beforeConsecutiveTokenTransfer}. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any (single) transfer of tokens. This includes minting and burning. * See {_afterConsecutiveTokenTransfer}. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called before consecutive token transfers. * Calling conditions are similar to {_beforeTokenTransfer}. * * The default implementation include balances updates that extensions such as {ERC721Consecutive} cannot perform * directly. */ function _beforeConsecutiveTokenTransfer( address from, address to, uint256, /*first*/ uint96 size ) internal virtual { if (from != address(0)) { _balances[from] -= size; } if (to != address(0)) { _balances[to] += size; } } /** * @dev Hook that is called after consecutive token transfers. * Calling conditions are similar to {_afterTokenTransfer}. */ function _afterConsecutiveTokenTransfer( address, /*from*/ address, /*to*/ uint256, /*first*/ uint96 /*size*/ ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum BlockchainNuggets.Type","name":"typ","type":"uint8"},{"internalType":"address","name":"addr","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BlockchainNuggets.Type","name":"typ","type":"uint8"}],"name":"maxSupplyByType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BlockchainNuggets.Type","name":"typ","type":"uint8"},{"internalType":"address[]","name":"receiver","type":"address[]"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum BlockchainNuggets.Type","name":"typ","type":"uint8"}],"name":"mintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"enum BlockchainNuggets.Type","name":"typ","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"seedWhitelist","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BlockchainNuggets.Type","name":"typ","type":"uint8"}],"name":"totalSupplyByType","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum BlockchainNuggets.Type","name":"typ","type":"uint8"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum BlockchainNuggets.Type","name":"typ","type":"uint8"},{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600d805460ff1916905560a060408190526000608081905262000025916013916200048b565b5060016014553480156200003857600080fd5b506040518060400160405280601781526020017f426c6f636b636861696e204e756767657473204261627900000000000000000081525060405180604001604052806003815260200162424e4360e81b815250620000a56200009f6200043760201b60201c565b6200043b565b6000805460ff60a01b191690558151620000c79060019060208501906200048b565b508051620000dd9060029060208401906200048b565b505060408051606080820183526117708252600160208084018281526000858701818152818052601080855296517f6e0956cda88cad152e89927e53611735b61a5c762d1428573c6931b0a5efcb015591517f6e0956cda88cad152e89927e53611735b61a5c762d1428573c6931b0a5efcb025590517f6e0956cda88cad152e89927e53611735b61a5c762d1428573c6931b0a5efcb0355855180850187526105dc815261177181840190815281880183815294835286845290517f8c6065603763fec3f5742441d3833f3f43b982453612d76adb39a885e3006b5f55517f8c6065603763fec3f5742441d3833f3f43b982453612d76adb39a885e3006b605591517f8c6065603763fec3f5742441d3833f3f43b982453612d76adb39a885e3006b6155845180840186526103e88152611d4d8183019081528187018481526002855286845291517f853b2fefe141400fef543280f93d98bd49996069f632d0d20236afeeed8e46a255517f853b2fefe141400fef543280f93d98bd49996069f632d0d20236afeeed8e46a355517f853b2fefe141400fef543280f93d98bd49996069f632d0d20236afeeed8e46a455845180840186526101f48082526121358284019081528288018581526003865287855292517fb3edd0d534d647cffdae9f1294f11ad21f3fcf2814bea44c92bbb8d384a57d9e55517fb3edd0d534d647cffdae9f1294f11ad21f3fcf2814bea44c92bbb8d384a57d9f5590517fb3edd0d534d647cffdae9f1294f11ad21f3fcf2814bea44c92bbb8d384a57da055855180850187528181526123298184019081528188018581526004865287855291517f1588ac671d87f82adc0e6ae8ab009c0de98f92a20243897597e566bc59b9c12655517f1588ac671d87f82adc0e6ae8ab009c0de98f92a20243897597e566bc59b9c12755517f1588ac671d87f82adc0e6ae8ab009c0de98f92a20243897597e566bc59b9c1285585519384018652835261251d838201908152948301828152600590925292909252517f61a7346ab5ebdac457db2a901eaf1b805239b6049a1b2f34bab85e2e274f39cb5590517f61a7346ab5ebdac457db2a901eaf1b805239b6049a1b2f34bab85e2e274f39cc55517f61a7346ab5ebdac457db2a901eaf1b805239b6049a1b2f34bab85e2e274f39cd55506200056e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620004999062000531565b90600052602060002090601f016020900481019282620004bd576000855562000508565b82601f10620004d857805160ff191683800117855562000508565b8280016001018555821562000508579182015b8281111562000508578251825591602001919060010190620004eb565b50620005169291506200051a565b5090565b5b808211156200051657600081556001016200051b565b600181811c908216806200054657607f821691505b602082108114156200056857634e487b7160e01b600052602260045260246000fd5b50919050565b61286c806200057e6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636352211e1161011a578063a22cb465116100ad578063c87b56dd1161007c578063c87b56dd146103fe578063d69e042014610411578063e985e9c514610431578063f2fde38b1461046d578063f6d0dad61461048057600080fd5b8063a22cb465146103b8578063b4a020dd146103cb578063b88d4fde146103de578063bce6d672146103f157600080fd5b80638456cb59116100e95780638456cb59146103845780638da5cb5b1461038c57806395d89b411461039d57806399bf54bf146103a557600080fd5b80636352211e1461034e5780636c0360eb1461036157806370a0823114610369578063715018a61461037c57600080fd5b80632c4889e41161019257806342966c681161016157806342966c681461030e57806355f804b31461032157806359c74f29146103345780635c975abb1461033c57600080fd5b80632c4889e4146102d75780632cf8be82146102e05780633f4ba83a146102f357806342842e0e146102fb57600080fd5b806315438e09116101ce57806315438e091461027d57806323b872dd1461029057806324ec277c146102a35780632c2fbb09146102b657600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004612068565b610493565b60405190151581526020015b60405180910390f35b6102306104e5565b60405161021f91906120dd565b61025061024b3660046120f0565b610577565b6040516001600160a01b03909116815260200161021f565b61027b610276366004612125565b61059e565b005b61027b61028b36600461215e565b6106b9565b61027b61029e3660046121e4565b610714565b61027b6102b1366004612220565b61074d565b6102c96102c4366004612220565b610759565b60405190815260200161021f565b6102c960145481565b6102136102ee36600461223b565b610782565b61027b6107e7565b61027b6103093660046121e4565b6107f9565b61027b61031c3660046120f0565b61081c565b61027b61032f36600461230d565b61082d565b61027b61084c565b600054600160a01b900460ff16610213565b61025061035c3660046120f0565b610868565b61023061088a565b6102c9610377366004612356565b610918565b61027b61099e565b61027b6109b0565b6000546001600160a01b0316610250565b6102306109c0565b61027b6103b3366004612371565b6109cf565b61027b6103c6366004612431565b610b1a565b6102c96103d9366004612220565b610b25565b61027b6103ec36600461246d565b610b37565b600d546102139060ff1681565b61023061040c3660046120f0565b610b71565b61042461041f36600461223b565b610c3d565b60405161021f91906124e9565b61021361043f36600461252d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61027b61047b366004612356565b610d5b565b61027b61048e366004612549565b610dd1565b60006001600160e01b031982166380ac58cd60e01b14806104c457506001600160e01b03198216635b5e139f60e01b145b806104df57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104f490612565565b80601f016020809104026020016040519081016040528092919081815260200182805461052090612565565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b600061058282610f44565b506000908152600560205260409020546001600160a01b031690565b60006105a982610868565b9050806001600160a01b0316836001600160a01b0316141561061c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106385750610638813361043f565b6106aa5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610613565b6106b48383610fa8565b505050565b6106c1611016565b60005b8181101561070e576106fc848484848181106106e2576106e26125a0565b90506020020160208101906106f79190612356565b611070565b80610706816125cc565b9150506106c4565b50505050565b61071c61112e565b610726338261117b565b6107425760405162461bcd60e51b8152600401610613906125e7565b6106b48383836111fa565b6107568161135e565b50565b6000610764826115a4565b604001516107786107748461162d565b5490565b6104df9190612634565b6000806011600085600581111561079b5761079b61264b565b60058111156107ac576107ac61264b565b81526020019081526020016000206000846001600160a01b03166001600160a01b031681526020019081526020016000205411905092915050565b6107ef611016565b6107f7611731565b565b61080161112e565b6106b483838360405180602001604052806000815250610b37565b610824611016565b61075681611786565b610835611016565b8051610848906013906020840190611fb9565b5050565b610854611016565b600d805460ff19811660ff90911615179055565b60008181526003602052604081205481906001600160a01b03165b9392505050565b6013805461089790612565565b80601f01602080910402602001604051908101604052809291908181526020018280546108c390612565565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b505050505081565b60006001600160a01b0382166109825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610613565b506001600160a01b031660009081526004602052604090205490565b6109a6611016565b6107f76000611903565b6109b8611016565b6107f7611953565b6060600280546104f490612565565b6109d7611016565b60008260058111156109eb576109eb61264b565b14158015610a0b57506001826005811115610a0857610a0861264b565b14155b8015610a2957506002826005811115610a2657610a2661264b565b14155b8015610a4757506003826005811115610a4457610a4461264b565b14155b15610a835760405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964207479706560a01b6044820152606401610613565b60005b81518110156106b45760145460116000856005811115610aa857610aa861264b565b6005811115610ab957610ab961264b565b81526020019081526020016000206000848481518110610adb57610adb6125a0565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610b12906125cc565b915050610a86565b610848338383611996565b6000610b30826115a4565b5192915050565b610b3f61112e565b610b49338361117b565b610b655760405162461bcd60e51b8152600401610613906125e7565b61070e84848484611a65565b6000818152600360205260409020546060906001600160a01b0316610be25760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610613565b6000610bec611a98565b90506000815111610c0c5760405180602001604052806000815250610883565b80610c1684611aa7565b604051602001610c27929190612661565b6040516020818303038152906040529392505050565b60606000610c4a83610918565b905060008167ffffffffffffffff811115610c6757610c6761226e565b604051908082528060200260200182016040528015610c90578160200160208202803683370190505b509050600080610c9f876115a4565b6020015190505b8382108015610cd65750610cb9876115a4565b60200151610cc96107748961162d565b610cd39190612690565b81105b15610d2a57856001600160a01b0316610cee82610868565b6001600160a01b03161415610d225780838381518110610d1057610d106125a0565b60209081029190910101526001909101905b600101610ca6565b81610d50576000838381518110610d4357610d436125a0565b6020026020010181815250505b509095945050505050565b610d63611016565b6001600160a01b038116610dc85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610613565b61075681611903565b33610ddb82610868565b6001600160a01b031614610e285760405162461bcd60e51b81526020600482015260146024820152733737ba1037bbb732b9103a3434b9903a37b5b2b760611b6044820152606401610613565b600060116000846005811115610e4057610e4061264b565b6005811115610e5157610e5161264b565b81526020808201929092526040908101600090812033825290925290205411610e8c5760405162461bcd60e51b8152600401610613906126a8565b610e95826115a4565b602001518110610ed85760405162461bcd60e51b815260206004820152600e60248201526d0a8f2e0ca40dcdee840dac2e8c6d60931b6044820152606401610613565b610ee181611786565b610eeb8233611ba5565b60116000836005811115610f0157610f0161264b565b6005811115610f1257610f1261264b565b8152602080820192909252604090810160009081203382529092528120805491610f3b836126f0565b91905055505050565b6000818152600360205260409020546001600160a01b03166107565760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610613565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fdd82610868565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000546001600160a01b031633146107f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610613565b3332146110b55760405162461bcd60e51b81526020600482015260136024820152726e6f20636f6e74726163747320706c6561736560681b6044820152606401610613565b6110bd611016565b60006110c8836115a4565b905080600001516014546110de6107748661162d565b6110e89190612690565b11156111245760405162461bcd60e51b815260206004820152600b60248201526a6f76657220737570706c7960a81b6044820152606401610613565b6106b48383611ba5565b600054600160a01b900460ff16156107f75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610613565b60008061118783610868565b9050806001600160a01b0316846001600160a01b031614806111ce57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806111f25750836001600160a01b03166111e784610577565b6001600160a01b0316145b949350505050565b826001600160a01b031661120d82610868565b6001600160a01b0316146112335760405162461bcd60e51b815260040161061390612707565b6001600160a01b0382166112955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610613565b826001600160a01b03166112a882610868565b6001600160a01b0316146112ce5760405162461bcd60e51b815260040161061390612707565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b3332146113a35760405162461bcd60e51b81526020600482015260136024820152726e6f20636f6e74726163747320706c6561736560681b6044820152606401610613565b600d54819060ff166113e75760405162461bcd60e51b815260206004820152600d60248201526c36b4b73a103737ba1037b832b760991b6044820152606401610613565b60006113f2826115a4565b601454336000908152600e6020526040902054919250116114455760405162461bcd60e51b815260206004820152600d60248201526c1bdd995c8815d3081b1a5b5a5d609a1b6044820152606401610613565b60006011600084600581111561145d5761145d61264b565b600581111561146e5761146e61264b565b815260208082019290925260409081016000908120338252909252902054116114a95760405162461bcd60e51b8152600401610613906126a8565b80516014546114ba6107748561162d565b6114c49190612690565b11156115005760405162461bcd60e51b815260206004820152600b60248201526a6f76657220737570706c7960a81b6044820152606401610613565b336000908152600e6020526040812080549161151b836125cc565b919050555061152a8333611ba5565b601160008460058111156115405761154061264b565b60058111156115515761155161264b565b815260208082019290925260409081016000908120338252909252812080549161157a836126f0565b9091555050336000908152600e6020526040812080549161159a836125cc565b9190505550505050565b6115c860405180606001604052806000815260200160008152602001600081525090565b601060008360058111156115de576115de61264b565b60058111156115ef576115ef61264b565b815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050919050565b6000808260058111156116425761164261264b565b141561165057506007919050565b60018260058111156116645761166461264b565b141561167257506008919050565b60028260058111156116865761168661264b565b141561169457506009919050565b60038260058111156116a8576116a861264b565b14156116b65750600a919050565b60048260058111156116ca576116ca61264b565b14156116d85750600b919050565b60058260058111156116ec576116ec61264b565b14156116fa5750600c919050565b60405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964207479706560a01b6044820152606401610613565b611739611bdf565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61179060006115a4565b6020015181101580156117af57506117a860016115a4565b6020015181105b156117f75760106000805b60058111156117cb576117cb61264b565b815260200190815260200160002060020160008154809291906117ed906125cc565b91905055506118fa565b61180160016115a4565b602001518110158015611820575061181960026115a4565b6020015181105b15611830576010600060016117ba565b61183a60026115a4565b602001518110158015611859575061185260036115a4565b6020015181105b15611869576010600060026117ba565b61187360036115a4565b602001518110158015611892575061188b60046115a4565b6020015181105b156118a2576010600060036117ba565b6118ac60046115a4565b6020015181101580156118cb57506118c460056115a4565b6020015181105b156118db576010600060046117ba565b6118e560056115a4565b6020015181106116fa576010600060056117ba565b61075681611c2f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61195b61112e565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117693390565b816001600160a01b0316836001600160a01b031614156119f85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610613565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a708484846111fa565b611a7c84848484611cc4565b61070e5760405162461bcd60e51b81526004016106139061274c565b6060601380546104f490612565565b606081611acb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611af55780611adf816125cc565b9150611aee9050600a836127b4565b9150611acf565b60008167ffffffffffffffff811115611b1057611b1061226e565b6040519080825280601f01601f191660200182016040528015611b3a576020820181803683370190505b5090505b84156111f257611b4f600183612634565b9150611b5c600a866127c8565b611b67906030612690565b60f81b818381518110611b7c57611b7c6125a0565b60200101906001600160f81b031916908160001a905350611b9e600a866127b4565b9450611b3e565b6000611bb0836115a4565b60200151611bc06107748561162d565b611bca9190612690565b9050611bd583611dd1565b6106b48282611de6565b600054600160a01b900460ff166107f75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610613565b6000611c3a82610868565b9050611c4582610868565b600083815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526004845282852080546000190190558785526003909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b15611dc657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d089033908990889088906004016127dc565b602060405180830381600087803b158015611d2257600080fd5b505af1925050508015611d52575060408051601f3d908101601f19168201909252611d4f91810190612819565b60015b611dac573d808015611d80576040519150601f19603f3d011682016040523d82523d6000602084013e611d85565b606091505b508051611da45760405162461bcd60e51b81526004016106139061274c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111f2565b506001949350505050565b610756611ddd8261162d565b80546001019055565b610848828260405180602001604052806000815250611e058383611e2e565b611e126000848484611cc4565b6106b45760405162461bcd60e51b81526004016106139061274c565b6001600160a01b038216611e845760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610613565b6000818152600360205260409020546001600160a01b031615611ee95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610613565b6000818152600360205260409020546001600160a01b031615611f4e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610613565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fc590612565565b90600052602060002090601f016020900481019282611fe7576000855561202d565b82601f1061200057805160ff191683800117855561202d565b8280016001018555821561202d579182015b8281111561202d578251825591602001919060010190612012565b5061203992915061203d565b5090565b5b80821115612039576000815560010161203e565b6001600160e01b03198116811461075657600080fd5b60006020828403121561207a57600080fd5b813561088381612052565b60005b838110156120a0578181015183820152602001612088565b8381111561070e5750506000910152565b600081518084526120c9816020860160208601612085565b601f01601f19169290920160200192915050565b60208152600061088360208301846120b1565b60006020828403121561210257600080fd5b5035919050565b80356001600160a01b038116811461212057600080fd5b919050565b6000806040838503121561213857600080fd5b61214183612109565b946020939093013593505050565b80356006811061212057600080fd5b60008060006040848603121561217357600080fd5b61217c8461214f565b9250602084013567ffffffffffffffff8082111561219957600080fd5b818601915086601f8301126121ad57600080fd5b8135818111156121bc57600080fd5b8760208260051b85010111156121d157600080fd5b6020830194508093505050509250925092565b6000806000606084860312156121f957600080fd5b61220284612109565b925061221060208501612109565b9150604084013590509250925092565b60006020828403121561223257600080fd5b6108838261214f565b6000806040838503121561224e57600080fd5b6122578361214f565b915061226560208401612109565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156122ad576122ad61226e565b604052919050565b600067ffffffffffffffff8311156122cf576122cf61226e565b6122e2601f8401601f1916602001612284565b90508281528383830111156122f657600080fd5b828260208301376000602084830101529392505050565b60006020828403121561231f57600080fd5b813567ffffffffffffffff81111561233657600080fd5b8201601f8101841361234757600080fd5b6111f2848235602084016122b5565b60006020828403121561236857600080fd5b61088382612109565b6000806040838503121561238457600080fd5b61238d8361214f565b915060208084013567ffffffffffffffff808211156123ab57600080fd5b818601915086601f8301126123bf57600080fd5b8135818111156123d1576123d161226e565b8060051b91506123e2848301612284565b81815291830184019184810190898411156123fc57600080fd5b938501935b838510156124215761241285612109565b82529385019390850190612401565b8096505050505050509250929050565b6000806040838503121561244457600080fd5b61244d83612109565b91506020830135801515811461246257600080fd5b809150509250929050565b6000806000806080858703121561248357600080fd5b61248c85612109565b935061249a60208601612109565b925060408501359150606085013567ffffffffffffffff8111156124bd57600080fd5b8501601f810187136124ce57600080fd5b6124dd878235602084016122b5565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561252157835183529284019291840191600101612505565b50909695505050505050565b6000806040838503121561254057600080fd5b61225783612109565b6000806040838503121561255c57600080fd5b6121418361214f565b600181811c9082168061257957607f821691505b6020821081141561259a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156125e0576125e06125b6565b5060010190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600082821015612646576126466125b6565b500390565b634e487b7160e01b600052602160045260246000fd5b60008351612673818460208801612085565b835190830190612687818360208801612085565b01949350505050565b600082198211156126a3576126a36125b6565b500190565b60208082526028908201527f4164647265737320646f6573206e6f7420657869737420696e207468652077686040820152671a5d19481b1a5cdd60c21b606082015260800190565b6000816126ff576126ff6125b6565b506000190190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826127c3576127c361279e565b500490565b6000826127d7576127d761279e565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280f908301846120b1565b9695505050505050565b60006020828403121561282b57600080fd5b81516108838161205256fea2646970667358221220af058c199c3679a867bb4dcb9f03a2fcdb7e2cfaa28e20a0641a8be59f3a0cea64736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636352211e1161011a578063a22cb465116100ad578063c87b56dd1161007c578063c87b56dd146103fe578063d69e042014610411578063e985e9c514610431578063f2fde38b1461046d578063f6d0dad61461048057600080fd5b8063a22cb465146103b8578063b4a020dd146103cb578063b88d4fde146103de578063bce6d672146103f157600080fd5b80638456cb59116100e95780638456cb59146103845780638da5cb5b1461038c57806395d89b411461039d57806399bf54bf146103a557600080fd5b80636352211e1461034e5780636c0360eb1461036157806370a0823114610369578063715018a61461037c57600080fd5b80632c4889e41161019257806342966c681161016157806342966c681461030e57806355f804b31461032157806359c74f29146103345780635c975abb1461033c57600080fd5b80632c4889e4146102d75780632cf8be82146102e05780633f4ba83a146102f357806342842e0e146102fb57600080fd5b806315438e09116101ce57806315438e091461027d57806323b872dd1461029057806324ec277c146102a35780632c2fbb09146102b657600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004612068565b610493565b60405190151581526020015b60405180910390f35b6102306104e5565b60405161021f91906120dd565b61025061024b3660046120f0565b610577565b6040516001600160a01b03909116815260200161021f565b61027b610276366004612125565b61059e565b005b61027b61028b36600461215e565b6106b9565b61027b61029e3660046121e4565b610714565b61027b6102b1366004612220565b61074d565b6102c96102c4366004612220565b610759565b60405190815260200161021f565b6102c960145481565b6102136102ee36600461223b565b610782565b61027b6107e7565b61027b6103093660046121e4565b6107f9565b61027b61031c3660046120f0565b61081c565b61027b61032f36600461230d565b61082d565b61027b61084c565b600054600160a01b900460ff16610213565b61025061035c3660046120f0565b610868565b61023061088a565b6102c9610377366004612356565b610918565b61027b61099e565b61027b6109b0565b6000546001600160a01b0316610250565b6102306109c0565b61027b6103b3366004612371565b6109cf565b61027b6103c6366004612431565b610b1a565b6102c96103d9366004612220565b610b25565b61027b6103ec36600461246d565b610b37565b600d546102139060ff1681565b61023061040c3660046120f0565b610b71565b61042461041f36600461223b565b610c3d565b60405161021f91906124e9565b61021361043f36600461252d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61027b61047b366004612356565b610d5b565b61027b61048e366004612549565b610dd1565b60006001600160e01b031982166380ac58cd60e01b14806104c457506001600160e01b03198216635b5e139f60e01b145b806104df57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104f490612565565b80601f016020809104026020016040519081016040528092919081815260200182805461052090612565565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b600061058282610f44565b506000908152600560205260409020546001600160a01b031690565b60006105a982610868565b9050806001600160a01b0316836001600160a01b0316141561061c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106385750610638813361043f565b6106aa5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610613565b6106b48383610fa8565b505050565b6106c1611016565b60005b8181101561070e576106fc848484848181106106e2576106e26125a0565b90506020020160208101906106f79190612356565b611070565b80610706816125cc565b9150506106c4565b50505050565b61071c61112e565b610726338261117b565b6107425760405162461bcd60e51b8152600401610613906125e7565b6106b48383836111fa565b6107568161135e565b50565b6000610764826115a4565b604001516107786107748461162d565b5490565b6104df9190612634565b6000806011600085600581111561079b5761079b61264b565b60058111156107ac576107ac61264b565b81526020019081526020016000206000846001600160a01b03166001600160a01b031681526020019081526020016000205411905092915050565b6107ef611016565b6107f7611731565b565b61080161112e565b6106b483838360405180602001604052806000815250610b37565b610824611016565b61075681611786565b610835611016565b8051610848906013906020840190611fb9565b5050565b610854611016565b600d805460ff19811660ff90911615179055565b60008181526003602052604081205481906001600160a01b03165b9392505050565b6013805461089790612565565b80601f01602080910402602001604051908101604052809291908181526020018280546108c390612565565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b505050505081565b60006001600160a01b0382166109825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610613565b506001600160a01b031660009081526004602052604090205490565b6109a6611016565b6107f76000611903565b6109b8611016565b6107f7611953565b6060600280546104f490612565565b6109d7611016565b60008260058111156109eb576109eb61264b565b14158015610a0b57506001826005811115610a0857610a0861264b565b14155b8015610a2957506002826005811115610a2657610a2661264b565b14155b8015610a4757506003826005811115610a4457610a4461264b565b14155b15610a835760405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964207479706560a01b6044820152606401610613565b60005b81518110156106b45760145460116000856005811115610aa857610aa861264b565b6005811115610ab957610ab961264b565b81526020019081526020016000206000848481518110610adb57610adb6125a0565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610b12906125cc565b915050610a86565b610848338383611996565b6000610b30826115a4565b5192915050565b610b3f61112e565b610b49338361117b565b610b655760405162461bcd60e51b8152600401610613906125e7565b61070e84848484611a65565b6000818152600360205260409020546060906001600160a01b0316610be25760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610613565b6000610bec611a98565b90506000815111610c0c5760405180602001604052806000815250610883565b80610c1684611aa7565b604051602001610c27929190612661565b6040516020818303038152906040529392505050565b60606000610c4a83610918565b905060008167ffffffffffffffff811115610c6757610c6761226e565b604051908082528060200260200182016040528015610c90578160200160208202803683370190505b509050600080610c9f876115a4565b6020015190505b8382108015610cd65750610cb9876115a4565b60200151610cc96107748961162d565b610cd39190612690565b81105b15610d2a57856001600160a01b0316610cee82610868565b6001600160a01b03161415610d225780838381518110610d1057610d106125a0565b60209081029190910101526001909101905b600101610ca6565b81610d50576000838381518110610d4357610d436125a0565b6020026020010181815250505b509095945050505050565b610d63611016565b6001600160a01b038116610dc85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610613565b61075681611903565b33610ddb82610868565b6001600160a01b031614610e285760405162461bcd60e51b81526020600482015260146024820152733737ba1037bbb732b9103a3434b9903a37b5b2b760611b6044820152606401610613565b600060116000846005811115610e4057610e4061264b565b6005811115610e5157610e5161264b565b81526020808201929092526040908101600090812033825290925290205411610e8c5760405162461bcd60e51b8152600401610613906126a8565b610e95826115a4565b602001518110610ed85760405162461bcd60e51b815260206004820152600e60248201526d0a8f2e0ca40dcdee840dac2e8c6d60931b6044820152606401610613565b610ee181611786565b610eeb8233611ba5565b60116000836005811115610f0157610f0161264b565b6005811115610f1257610f1261264b565b8152602080820192909252604090810160009081203382529092528120805491610f3b836126f0565b91905055505050565b6000818152600360205260409020546001600160a01b03166107565760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610613565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fdd82610868565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000546001600160a01b031633146107f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610613565b3332146110b55760405162461bcd60e51b81526020600482015260136024820152726e6f20636f6e74726163747320706c6561736560681b6044820152606401610613565b6110bd611016565b60006110c8836115a4565b905080600001516014546110de6107748661162d565b6110e89190612690565b11156111245760405162461bcd60e51b815260206004820152600b60248201526a6f76657220737570706c7960a81b6044820152606401610613565b6106b48383611ba5565b600054600160a01b900460ff16156107f75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610613565b60008061118783610868565b9050806001600160a01b0316846001600160a01b031614806111ce57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806111f25750836001600160a01b03166111e784610577565b6001600160a01b0316145b949350505050565b826001600160a01b031661120d82610868565b6001600160a01b0316146112335760405162461bcd60e51b815260040161061390612707565b6001600160a01b0382166112955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610613565b826001600160a01b03166112a882610868565b6001600160a01b0316146112ce5760405162461bcd60e51b815260040161061390612707565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b3332146113a35760405162461bcd60e51b81526020600482015260136024820152726e6f20636f6e74726163747320706c6561736560681b6044820152606401610613565b600d54819060ff166113e75760405162461bcd60e51b815260206004820152600d60248201526c36b4b73a103737ba1037b832b760991b6044820152606401610613565b60006113f2826115a4565b601454336000908152600e6020526040902054919250116114455760405162461bcd60e51b815260206004820152600d60248201526c1bdd995c8815d3081b1a5b5a5d609a1b6044820152606401610613565b60006011600084600581111561145d5761145d61264b565b600581111561146e5761146e61264b565b815260208082019290925260409081016000908120338252909252902054116114a95760405162461bcd60e51b8152600401610613906126a8565b80516014546114ba6107748561162d565b6114c49190612690565b11156115005760405162461bcd60e51b815260206004820152600b60248201526a6f76657220737570706c7960a81b6044820152606401610613565b336000908152600e6020526040812080549161151b836125cc565b919050555061152a8333611ba5565b601160008460058111156115405761154061264b565b60058111156115515761155161264b565b815260208082019290925260409081016000908120338252909252812080549161157a836126f0565b9091555050336000908152600e6020526040812080549161159a836125cc565b9190505550505050565b6115c860405180606001604052806000815260200160008152602001600081525090565b601060008360058111156115de576115de61264b565b60058111156115ef576115ef61264b565b815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050919050565b6000808260058111156116425761164261264b565b141561165057506007919050565b60018260058111156116645761166461264b565b141561167257506008919050565b60028260058111156116865761168661264b565b141561169457506009919050565b60038260058111156116a8576116a861264b565b14156116b65750600a919050565b60048260058111156116ca576116ca61264b565b14156116d85750600b919050565b60058260058111156116ec576116ec61264b565b14156116fa5750600c919050565b60405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964207479706560a01b6044820152606401610613565b611739611bdf565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61179060006115a4565b6020015181101580156117af57506117a860016115a4565b6020015181105b156117f75760106000805b60058111156117cb576117cb61264b565b815260200190815260200160002060020160008154809291906117ed906125cc565b91905055506118fa565b61180160016115a4565b602001518110158015611820575061181960026115a4565b6020015181105b15611830576010600060016117ba565b61183a60026115a4565b602001518110158015611859575061185260036115a4565b6020015181105b15611869576010600060026117ba565b61187360036115a4565b602001518110158015611892575061188b60046115a4565b6020015181105b156118a2576010600060036117ba565b6118ac60046115a4565b6020015181101580156118cb57506118c460056115a4565b6020015181105b156118db576010600060046117ba565b6118e560056115a4565b6020015181106116fa576010600060056117ba565b61075681611c2f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61195b61112e565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117693390565b816001600160a01b0316836001600160a01b031614156119f85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610613565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a708484846111fa565b611a7c84848484611cc4565b61070e5760405162461bcd60e51b81526004016106139061274c565b6060601380546104f490612565565b606081611acb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611af55780611adf816125cc565b9150611aee9050600a836127b4565b9150611acf565b60008167ffffffffffffffff811115611b1057611b1061226e565b6040519080825280601f01601f191660200182016040528015611b3a576020820181803683370190505b5090505b84156111f257611b4f600183612634565b9150611b5c600a866127c8565b611b67906030612690565b60f81b818381518110611b7c57611b7c6125a0565b60200101906001600160f81b031916908160001a905350611b9e600a866127b4565b9450611b3e565b6000611bb0836115a4565b60200151611bc06107748561162d565b611bca9190612690565b9050611bd583611dd1565b6106b48282611de6565b600054600160a01b900460ff166107f75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610613565b6000611c3a82610868565b9050611c4582610868565b600083815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526004845282852080546000190190558785526003909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b15611dc657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d089033908990889088906004016127dc565b602060405180830381600087803b158015611d2257600080fd5b505af1925050508015611d52575060408051601f3d908101601f19168201909252611d4f91810190612819565b60015b611dac573d808015611d80576040519150601f19603f3d011682016040523d82523d6000602084013e611d85565b606091505b508051611da45760405162461bcd60e51b81526004016106139061274c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111f2565b506001949350505050565b610756611ddd8261162d565b80546001019055565b610848828260405180602001604052806000815250611e058383611e2e565b611e126000848484611cc4565b6106b45760405162461bcd60e51b81526004016106139061274c565b6001600160a01b038216611e845760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610613565b6000818152600360205260409020546001600160a01b031615611ee95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610613565b6000818152600360205260409020546001600160a01b031615611f4e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610613565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fc590612565565b90600052602060002090601f016020900481019282611fe7576000855561202d565b82601f1061200057805160ff191683800117855561202d565b8280016001018555821561202d579182015b8281111561202d578251825591602001919060010190612012565b5061203992915061203d565b5090565b5b80821115612039576000815560010161203e565b6001600160e01b03198116811461075657600080fd5b60006020828403121561207a57600080fd5b813561088381612052565b60005b838110156120a0578181015183820152602001612088565b8381111561070e5750506000910152565b600081518084526120c9816020860160208601612085565b601f01601f19169290920160200192915050565b60208152600061088360208301846120b1565b60006020828403121561210257600080fd5b5035919050565b80356001600160a01b038116811461212057600080fd5b919050565b6000806040838503121561213857600080fd5b61214183612109565b946020939093013593505050565b80356006811061212057600080fd5b60008060006040848603121561217357600080fd5b61217c8461214f565b9250602084013567ffffffffffffffff8082111561219957600080fd5b818601915086601f8301126121ad57600080fd5b8135818111156121bc57600080fd5b8760208260051b85010111156121d157600080fd5b6020830194508093505050509250925092565b6000806000606084860312156121f957600080fd5b61220284612109565b925061221060208501612109565b9150604084013590509250925092565b60006020828403121561223257600080fd5b6108838261214f565b6000806040838503121561224e57600080fd5b6122578361214f565b915061226560208401612109565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156122ad576122ad61226e565b604052919050565b600067ffffffffffffffff8311156122cf576122cf61226e565b6122e2601f8401601f1916602001612284565b90508281528383830111156122f657600080fd5b828260208301376000602084830101529392505050565b60006020828403121561231f57600080fd5b813567ffffffffffffffff81111561233657600080fd5b8201601f8101841361234757600080fd5b6111f2848235602084016122b5565b60006020828403121561236857600080fd5b61088382612109565b6000806040838503121561238457600080fd5b61238d8361214f565b915060208084013567ffffffffffffffff808211156123ab57600080fd5b818601915086601f8301126123bf57600080fd5b8135818111156123d1576123d161226e565b8060051b91506123e2848301612284565b81815291830184019184810190898411156123fc57600080fd5b938501935b838510156124215761241285612109565b82529385019390850190612401565b8096505050505050509250929050565b6000806040838503121561244457600080fd5b61244d83612109565b91506020830135801515811461246257600080fd5b809150509250929050565b6000806000806080858703121561248357600080fd5b61248c85612109565b935061249a60208601612109565b925060408501359150606085013567ffffffffffffffff8111156124bd57600080fd5b8501601f810187136124ce57600080fd5b6124dd878235602084016122b5565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561252157835183529284019291840191600101612505565b50909695505050505050565b6000806040838503121561254057600080fd5b61225783612109565b6000806040838503121561255c57600080fd5b6121418361214f565b600181811c9082168061257957607f821691505b6020821081141561259a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156125e0576125e06125b6565b5060010190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600082821015612646576126466125b6565b500390565b634e487b7160e01b600052602160045260246000fd5b60008351612673818460208801612085565b835190830190612687818360208801612085565b01949350505050565b600082198211156126a3576126a36125b6565b500190565b60208082526028908201527f4164647265737320646f6573206e6f7420657869737420696e207468652077686040820152671a5d19481b1a5cdd60c21b606082015260800190565b6000816126ff576126ff6125b6565b506000190190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826127c3576127c361279e565b500490565b6000826127d7576127d761279e565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280f908301846120b1565b9695505050505050565b60006020828403121561282b57600080fd5b81516108838161205256fea2646970667358221220af058c199c3679a867bb4dcb9f03a2fcdb7e2cfaa28e20a0641a8be59f3a0cea64736f6c63430008090033
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.