ERC-721
Overview
Max Total Supply
794 SVCCV
Holders
736
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SVCCVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SVCCV
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721A.sol"; import "./Strings.sol"; contract SVCCV is Ownable, ERC721A, ReentrancyGuard { uint256 public MAX_NFT = 800; uint256 public MINTED_NFT; string public _baseTokenURI; constructor() ERC721A("SVCC Voxels", "SVCCV") {} function mintNFT(address[] calldata _to, uint256[] calldata _count) public onlyOwner{ require(_to.length == _count.length, "SVCCV: Length MisMatch"); for (uint256 i = 0; i < _to.length; i++) { require(MINTED_NFT + _count[i] <= MAX_NFT, "SVCCV: All NFT Minted"); _safeMint(_to[i], _count[i]); MINTED_NFT += _count[i]; } } function mintNFT(address[] calldata _to, uint256 _count) public onlyOwner{ for (uint256 i = 0; i < _to.length; i++) { require(MINTED_NFT + _count <= MAX_NFT, "SVCCV: All NFT Minted"); _safeMint(_to[i], _count); MINTED_NFT += _count; } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } function updateSupply(uint256 newSupply) external onlyOwner { require(newSupply >= MINTED_NFT, "Incorrect value"); MAX_NFT = newSupply; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTED_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006001556000600855610320600a553480156200002157600080fd5b506040518060400160405280600b81526020016a5356434320566f78656c7360a81b8152506040518060400160405280600581526020016429ab21a1ab60d91b8152506200007e62000078620000b760201b60201c565b620000bb565b8151620000939060029060208501906200010b565b508051620000a99060039060208401906200010b565b5050600160095550620001ee565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600281046001821680620001c657607f821691505b60208210811415620001e857634e487b7160e01b600052602260045260246000fd5b50919050565b6124f180620001fe6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a22cb465116100a2578063d7224ba011610071578063d7224ba0146103b6578063dc33e681146103be578063e985e9c5146103d1578063f2fde38b146103e4576101da565b8063a22cb46514610375578063b88d4fde14610388578063c87b56dd1461039b578063cfc86f7b146103ae576101da565b80638da5cb5b116100de5780638da5cb5b1461033d5780639231ab2a1461034557806395d89b41146103655780639c593ee21461036d576101da565b806370a082311461030f578063715018a614610322578063812e844d1461032a576101da565b80632f745c591161017c57806355f804b31161014b57806355f804b3146102ce5780636352211e146102e15780636bd08049146102f45780636fdaddf114610307576101da565b80632f745c591461028d5780633ccfd60b146102a057806342842e0e146102a85780634f6ccce7146102bb576101da565b8063095ea7b3116101b8578063095ea7b31461023d57806318160ddd146102525780631dad69441461026757806323b872dd1461027a576101da565b806301ffc9a7146101df57806306fdde0314610208578063081812fc1461021d575b600080fd5b6101f26101ed366004611b4a565b6103f7565b6040516101ff9190611cb3565b60405180910390f35b61021061045a565b6040516101ff9190611cbe565b61023061022b366004611bef565b6104ec565b6040516101ff9190611c62565b61025061024b366004611a6e565b610538565b005b61025a6105d1565b6040516101ff9190612320565b610250610275366004611a97565b6105d7565b61025061028836600461192d565b610750565b61025a61029b366004611a6e565b61075b565b610250610857565b6102506102b636600461192d565b6108c9565b61025a6102c9366004611bef565b6108e4565b6102506102dc366004611b82565b610910565b6102306102ef366004611bef565b61095b565b610250610302366004611bef565b61096d565b61025a6109d3565b61025a61031d3660046118e1565b6109d9565b610250610a26565b610250610338366004611b00565b610a71565b610230610b58565b610358610353366004611bef565b610b67565b6040516101ff91906122f6565b610210610b78565b61025a610b87565b610250610383366004611a34565b610b8d565b610250610396366004611968565b610c5b565b6102106103a9366004611bef565b610c8e565b610210610d11565b61025a610d9f565b61025a6103cc3660046118e1565b610da5565b6101f26103df3660046118fb565b610db0565b6102506103f23660046118e1565b610dde565b60006001600160e01b031982166380ac58cd60e01b148061042857506001600160e01b03198216635b5e139f60e01b145b8061044357506001600160e01b0319821663780e9d6360e01b145b80610452575061045282610e4f565b90505b919050565b606060028054610469906123f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610495906123f9565b80156104e25780601f106104b7576101008083540402835291602001916104e2565b820191906000526020600020905b8154815290600101906020018083116104c557829003601f168201915b5050505050905090565b60006104f782610e68565b61051c5760405162461bcd60e51b8152600401610513906122a9565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105438261095b565b9050806001600160a01b0316836001600160a01b031614156105775760405162461bcd60e51b8152600401610513906120ff565b806001600160a01b0316610589610e6f565b6001600160a01b031614806105a557506105a5816103df610e6f565b6105c15760405162461bcd60e51b815260040161051390611edb565b6105cc838383610e73565b505050565b60015490565b6105df610e6f565b6001600160a01b03166105f0610b58565b6001600160a01b0316146106165760405162461bcd60e51b815260040161051390611ff2565b8281146106355760405162461bcd60e51b815260040161051390611eab565b60005b8381101561074957600a5483838381811061066357634e487b7160e01b600052603260045260246000fd5b90506020020135600b54610677919061234b565b11156106955760405162461bcd60e51b815260040161051390611cd1565b6106f98585838181106106b857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906106cd91906118e1565b8484848181106106ed57634e487b7160e01b600052603260045260246000fd5b90506020020135610ecf565b82828281811061071957634e487b7160e01b600052603260045260246000fd5b90506020020135600b6000828254610731919061234b565b9091555081905061074181612434565b915050610638565b5050505050565b6105cc838383610ee9565b6000610766836109d9565b82106107845760405162461bcd60e51b815260040161051390611d00565b600061078e6105d1565b905060008060005b83811015610838576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156107e957805192505b876001600160a01b0316836001600160a01b0316141561082557868414156108175750935061085192505050565b8361082181612434565b9450505b508061083081612434565b915050610796565b5060405162461bcd60e51b81526004016105139061220c565b92915050565b61085f610e6f565b6001600160a01b0316610870610b58565b6001600160a01b0316146108965760405162461bcd60e51b815260040161051390611ff2565b6040514790339082156108fc029083906000818181858888f193505050501580156108c5573d6000803e3d6000fd5b5050565b6105cc83838360405180602001604052806000815250610c5b565b60006108ee6105d1565b821061090c5760405162461bcd60e51b815260040161051390611dd2565b5090565b610918610e6f565b6001600160a01b0316610929610b58565b6001600160a01b03161461094f5760405162461bcd60e51b815260040161051390611ff2565b6105cc600c83836117d5565b6000610966826111fd565b5192915050565b610975610e6f565b6001600160a01b0316610986610b58565b6001600160a01b0316146109ac5760405162461bcd60e51b815260040161051390611ff2565b600b548110156109ce5760405162461bcd60e51b815260040161051390611fc9565b600a55565b600a5481565b60006001600160a01b038216610a015760405162461bcd60e51b815260040161051390611f38565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b610a2e610e6f565b6001600160a01b0316610a3f610b58565b6001600160a01b031614610a655760405162461bcd60e51b815260040161051390611ff2565b610a6f60006112b1565b565b610a79610e6f565b6001600160a01b0316610a8a610b58565b6001600160a01b031614610ab05760405162461bcd60e51b815260040161051390611ff2565b60005b82811015610b5257600a5482600b54610acc919061234b565b1115610aea5760405162461bcd60e51b815260040161051390611cd1565b610b28848483818110610b0d57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b2291906118e1565b83610ecf565b81600b6000828254610b3a919061234b565b90915550819050610b4a81612434565b915050610ab3565b50505050565b6000546001600160a01b031690565b610b6f611855565b610452826111fd565b606060038054610469906123f9565b600b5481565b610b95610e6f565b6001600160a01b0316826001600160a01b03161415610bc65760405162461bcd60e51b815260040161051390612076565b8060076000610bd3610e6f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c17610e6f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c4f9190611cb3565b60405180910390a35050565b610c66848484610ee9565b610c7284848484611301565b610b525760405162461bcd60e51b815260040161051390612141565b6060610c9982610e68565b610cb55760405162461bcd60e51b815260040161051390612027565b6000610cbf61141d565b90506000815111610cdf5760405180602001604052806000815250610d0a565b80610ce98461142c565b604051602001610cfa929190611c33565b6040516020818303038152906040525b9392505050565b600c8054610d1e906123f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4a906123f9565b8015610d975780601f10610d6c57610100808354040283529160200191610d97565b820191906000526020600020905b815481529060010190602001808311610d7a57829003601f168201915b505050505081565b60085481565b600061045282611547565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610de6610e6f565b6001600160a01b0316610df7610b58565b6001600160a01b031614610e1d5760405162461bcd60e51b815260040161051390611ff2565b6001600160a01b038116610e435760405162461bcd60e51b815260040161051390611d42565b610e4c816112b1565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108c582826040518060200160405280600081525061159b565b6000610ef4826111fd565b9050600081600001516001600160a01b0316610f0e610e6f565b6001600160a01b03161480610f435750610f26610e6f565b6001600160a01b0316610f38846104ec565b6001600160a01b0316145b80610f5757508151610f57906103df610e6f565b905080610f765760405162461bcd60e51b8152600401610513906120ad565b846001600160a01b031682600001516001600160a01b031614610fab5760405162461bcd60e51b815260040161051390611f83565b6001600160a01b038416610fd15760405162461bcd60e51b815260040161051390611e15565b610fde8585856001610b52565b610fee6000848460000151610e73565b6001600160a01b03851660009081526005602052604081208054600192906110209084906001600160801b0316612377565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261106c91859116612329565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561110284600161234b565b6000818152600460205260409020549091506001600160a01b03166111a75761112a81610e68565b156111a75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111f58686866001610b52565b505050505050565b611205611855565b61120e82610e68565b61122a5760405162461bcd60e51b815260040161051390611d88565b6000825b818110611298576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611285579250610455915050565b5080611290816123e2565b91505061122e565b5060405162461bcd60e51b81526004016105139061225a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611315846001600160a01b03166117cf565b1561141157836001600160a01b031663150b7a02611331610e6f565b8786866040518563ffffffff1660e01b81526004016113539493929190611c76565b602060405180830381600087803b15801561136d57600080fd5b505af192505050801561139d575060408051601f3d908101601f1916820190925261139a91810190611b66565b60015b6113f7573d8080156113cb576040519150601f19603f3d011682016040523d82523d6000602084013e6113d0565b606091505b5080516113ef5760405162461bcd60e51b815260040161051390612141565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611415565b5060015b949350505050565b6060600c8054610469906123f9565b60608161145157506040805180820190915260018152600360fc1b6020820152610455565b8160005b811561147b578061146581612434565b91506114749050600a83612363565b9150611455565b60008167ffffffffffffffff8111156114a457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114ce576020820181803683370190505b5090505b8415611415576114e360018361239f565b91506114f0600a8661244f565b6114fb90603061234b565b60f81b81838151811061151e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611540600a86612363565b94506114d2565b60006001600160a01b03821661156f5760405162461bcd60e51b815260040161051390611e5a565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166115c45760405162461bcd60e51b8152600401610513906121cb565b6115cd81610e68565b156115ea5760405162461bcd60e51b815260040161051390612194565b6115f76000858386610b52565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611653908790612329565b6001600160801b031681526020018583602001516116719190612329565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156117bc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117806000888488611301565b61179c5760405162461bcd60e51b815260040161051390612141565b816117a681612434565b92505080806117b490612434565b915050611733565b5060018190556111f56000878588610b52565b3b151590565b8280546117e1906123f9565b90600052602060002090601f0160209004810192826118035760008555611849565b82601f1061181c5782800160ff19823516178555611849565b82800160010185558215611849579182015b8281111561184957823582559160200191906001019061182e565b5061090c92915061186c565b604080518082019091526000808252602082015290565b5b8082111561090c576000815560010161186d565b80356001600160a01b038116811461045557600080fd5b60008083601f8401126118a9578081fd5b50813567ffffffffffffffff8111156118c0578182fd5b60208301915083602080830285010111156118da57600080fd5b9250929050565b6000602082840312156118f2578081fd5b610d0a82611881565b6000806040838503121561190d578081fd5b61191683611881565b915061192460208401611881565b90509250929050565b600080600060608486031215611941578081fd5b61194a84611881565b925061195860208501611881565b9150604084013590509250925092565b6000806000806080858703121561197d578081fd5b61198685611881565b93506020611995818701611881565b935060408601359250606086013567ffffffffffffffff808211156119b8578384fd5b818801915088601f8301126119cb578384fd5b8135818111156119dd576119dd61248f565b604051601f8201601f1916810185018381118282101715611a0057611a0061248f565b60405281815283820185018b1015611a16578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611a46578182fd5b611a4f83611881565b915060208301358015158114611a63578182fd5b809150509250929050565b60008060408385031215611a80578182fd5b611a8983611881565b946020939093013593505050565b60008060008060408587031215611aac578384fd5b843567ffffffffffffffff80821115611ac3578586fd5b611acf88838901611898565b90965094506020870135915080821115611ae7578384fd5b50611af487828801611898565b95989497509550505050565b600080600060408486031215611b14578283fd5b833567ffffffffffffffff811115611b2a578384fd5b611b3686828701611898565b909790965060209590950135949350505050565b600060208284031215611b5b578081fd5b8135610d0a816124a5565b600060208284031215611b77578081fd5b8151610d0a816124a5565b60008060208385031215611b94578182fd5b823567ffffffffffffffff80821115611bab578384fd5b818501915085601f830112611bbe578384fd5b813581811115611bcc578485fd5b866020828501011115611bdd578485fd5b60209290920196919550909350505050565b600060208284031215611c00578081fd5b5035919050565b60008151808452611c1f8160208601602086016123b6565b601f01601f19169290920160200192915050565b60008351611c458184602088016123b6565b835190830190611c598183602088016123b6565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca990830184611c07565b9695505050505050565b901515815260200190565b600060208252610d0a6020830184611c07565b60208082526015908201527414d590d0d58e88105b1b0813919508135a5b9d1959605a1b604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601690820152750a6ac8686ac744098cadccee8d0409ad2e69ac2e8c6d60531b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b03808316818516808303821115611c5957611c59612463565b6000821982111561235e5761235e612463565b500190565b60008261237257612372612479565b500490565b60006001600160801b038381169083168181101561239757612397612463565b039392505050565b6000828210156123b1576123b1612463565b500390565b60005b838110156123d15781810151838201526020016123b9565b83811115610b525750506000910152565b6000816123f1576123f1612463565b506000190190565b60028104600182168061240d57607f821691505b6020821081141561242e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244857612448612463565b5060010190565b60008261245e5761245e612479565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e4c57600080fdfea26469706673582212207805c9f5ad375707815b59dec5210e1c3f5873a60fa8a0e9235c24c320e416ec64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a22cb465116100a2578063d7224ba011610071578063d7224ba0146103b6578063dc33e681146103be578063e985e9c5146103d1578063f2fde38b146103e4576101da565b8063a22cb46514610375578063b88d4fde14610388578063c87b56dd1461039b578063cfc86f7b146103ae576101da565b80638da5cb5b116100de5780638da5cb5b1461033d5780639231ab2a1461034557806395d89b41146103655780639c593ee21461036d576101da565b806370a082311461030f578063715018a614610322578063812e844d1461032a576101da565b80632f745c591161017c57806355f804b31161014b57806355f804b3146102ce5780636352211e146102e15780636bd08049146102f45780636fdaddf114610307576101da565b80632f745c591461028d5780633ccfd60b146102a057806342842e0e146102a85780634f6ccce7146102bb576101da565b8063095ea7b3116101b8578063095ea7b31461023d57806318160ddd146102525780631dad69441461026757806323b872dd1461027a576101da565b806301ffc9a7146101df57806306fdde0314610208578063081812fc1461021d575b600080fd5b6101f26101ed366004611b4a565b6103f7565b6040516101ff9190611cb3565b60405180910390f35b61021061045a565b6040516101ff9190611cbe565b61023061022b366004611bef565b6104ec565b6040516101ff9190611c62565b61025061024b366004611a6e565b610538565b005b61025a6105d1565b6040516101ff9190612320565b610250610275366004611a97565b6105d7565b61025061028836600461192d565b610750565b61025a61029b366004611a6e565b61075b565b610250610857565b6102506102b636600461192d565b6108c9565b61025a6102c9366004611bef565b6108e4565b6102506102dc366004611b82565b610910565b6102306102ef366004611bef565b61095b565b610250610302366004611bef565b61096d565b61025a6109d3565b61025a61031d3660046118e1565b6109d9565b610250610a26565b610250610338366004611b00565b610a71565b610230610b58565b610358610353366004611bef565b610b67565b6040516101ff91906122f6565b610210610b78565b61025a610b87565b610250610383366004611a34565b610b8d565b610250610396366004611968565b610c5b565b6102106103a9366004611bef565b610c8e565b610210610d11565b61025a610d9f565b61025a6103cc3660046118e1565b610da5565b6101f26103df3660046118fb565b610db0565b6102506103f23660046118e1565b610dde565b60006001600160e01b031982166380ac58cd60e01b148061042857506001600160e01b03198216635b5e139f60e01b145b8061044357506001600160e01b0319821663780e9d6360e01b145b80610452575061045282610e4f565b90505b919050565b606060028054610469906123f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610495906123f9565b80156104e25780601f106104b7576101008083540402835291602001916104e2565b820191906000526020600020905b8154815290600101906020018083116104c557829003601f168201915b5050505050905090565b60006104f782610e68565b61051c5760405162461bcd60e51b8152600401610513906122a9565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105438261095b565b9050806001600160a01b0316836001600160a01b031614156105775760405162461bcd60e51b8152600401610513906120ff565b806001600160a01b0316610589610e6f565b6001600160a01b031614806105a557506105a5816103df610e6f565b6105c15760405162461bcd60e51b815260040161051390611edb565b6105cc838383610e73565b505050565b60015490565b6105df610e6f565b6001600160a01b03166105f0610b58565b6001600160a01b0316146106165760405162461bcd60e51b815260040161051390611ff2565b8281146106355760405162461bcd60e51b815260040161051390611eab565b60005b8381101561074957600a5483838381811061066357634e487b7160e01b600052603260045260246000fd5b90506020020135600b54610677919061234b565b11156106955760405162461bcd60e51b815260040161051390611cd1565b6106f98585838181106106b857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906106cd91906118e1565b8484848181106106ed57634e487b7160e01b600052603260045260246000fd5b90506020020135610ecf565b82828281811061071957634e487b7160e01b600052603260045260246000fd5b90506020020135600b6000828254610731919061234b565b9091555081905061074181612434565b915050610638565b5050505050565b6105cc838383610ee9565b6000610766836109d9565b82106107845760405162461bcd60e51b815260040161051390611d00565b600061078e6105d1565b905060008060005b83811015610838576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156107e957805192505b876001600160a01b0316836001600160a01b0316141561082557868414156108175750935061085192505050565b8361082181612434565b9450505b508061083081612434565b915050610796565b5060405162461bcd60e51b81526004016105139061220c565b92915050565b61085f610e6f565b6001600160a01b0316610870610b58565b6001600160a01b0316146108965760405162461bcd60e51b815260040161051390611ff2565b6040514790339082156108fc029083906000818181858888f193505050501580156108c5573d6000803e3d6000fd5b5050565b6105cc83838360405180602001604052806000815250610c5b565b60006108ee6105d1565b821061090c5760405162461bcd60e51b815260040161051390611dd2565b5090565b610918610e6f565b6001600160a01b0316610929610b58565b6001600160a01b03161461094f5760405162461bcd60e51b815260040161051390611ff2565b6105cc600c83836117d5565b6000610966826111fd565b5192915050565b610975610e6f565b6001600160a01b0316610986610b58565b6001600160a01b0316146109ac5760405162461bcd60e51b815260040161051390611ff2565b600b548110156109ce5760405162461bcd60e51b815260040161051390611fc9565b600a55565b600a5481565b60006001600160a01b038216610a015760405162461bcd60e51b815260040161051390611f38565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b610a2e610e6f565b6001600160a01b0316610a3f610b58565b6001600160a01b031614610a655760405162461bcd60e51b815260040161051390611ff2565b610a6f60006112b1565b565b610a79610e6f565b6001600160a01b0316610a8a610b58565b6001600160a01b031614610ab05760405162461bcd60e51b815260040161051390611ff2565b60005b82811015610b5257600a5482600b54610acc919061234b565b1115610aea5760405162461bcd60e51b815260040161051390611cd1565b610b28848483818110610b0d57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b2291906118e1565b83610ecf565b81600b6000828254610b3a919061234b565b90915550819050610b4a81612434565b915050610ab3565b50505050565b6000546001600160a01b031690565b610b6f611855565b610452826111fd565b606060038054610469906123f9565b600b5481565b610b95610e6f565b6001600160a01b0316826001600160a01b03161415610bc65760405162461bcd60e51b815260040161051390612076565b8060076000610bd3610e6f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c17610e6f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c4f9190611cb3565b60405180910390a35050565b610c66848484610ee9565b610c7284848484611301565b610b525760405162461bcd60e51b815260040161051390612141565b6060610c9982610e68565b610cb55760405162461bcd60e51b815260040161051390612027565b6000610cbf61141d565b90506000815111610cdf5760405180602001604052806000815250610d0a565b80610ce98461142c565b604051602001610cfa929190611c33565b6040516020818303038152906040525b9392505050565b600c8054610d1e906123f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4a906123f9565b8015610d975780601f10610d6c57610100808354040283529160200191610d97565b820191906000526020600020905b815481529060010190602001808311610d7a57829003601f168201915b505050505081565b60085481565b600061045282611547565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610de6610e6f565b6001600160a01b0316610df7610b58565b6001600160a01b031614610e1d5760405162461bcd60e51b815260040161051390611ff2565b6001600160a01b038116610e435760405162461bcd60e51b815260040161051390611d42565b610e4c816112b1565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108c582826040518060200160405280600081525061159b565b6000610ef4826111fd565b9050600081600001516001600160a01b0316610f0e610e6f565b6001600160a01b03161480610f435750610f26610e6f565b6001600160a01b0316610f38846104ec565b6001600160a01b0316145b80610f5757508151610f57906103df610e6f565b905080610f765760405162461bcd60e51b8152600401610513906120ad565b846001600160a01b031682600001516001600160a01b031614610fab5760405162461bcd60e51b815260040161051390611f83565b6001600160a01b038416610fd15760405162461bcd60e51b815260040161051390611e15565b610fde8585856001610b52565b610fee6000848460000151610e73565b6001600160a01b03851660009081526005602052604081208054600192906110209084906001600160801b0316612377565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261106c91859116612329565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561110284600161234b565b6000818152600460205260409020549091506001600160a01b03166111a75761112a81610e68565b156111a75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111f58686866001610b52565b505050505050565b611205611855565b61120e82610e68565b61122a5760405162461bcd60e51b815260040161051390611d88565b6000825b818110611298576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611285579250610455915050565b5080611290816123e2565b91505061122e565b5060405162461bcd60e51b81526004016105139061225a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611315846001600160a01b03166117cf565b1561141157836001600160a01b031663150b7a02611331610e6f565b8786866040518563ffffffff1660e01b81526004016113539493929190611c76565b602060405180830381600087803b15801561136d57600080fd5b505af192505050801561139d575060408051601f3d908101601f1916820190925261139a91810190611b66565b60015b6113f7573d8080156113cb576040519150601f19603f3d011682016040523d82523d6000602084013e6113d0565b606091505b5080516113ef5760405162461bcd60e51b815260040161051390612141565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611415565b5060015b949350505050565b6060600c8054610469906123f9565b60608161145157506040805180820190915260018152600360fc1b6020820152610455565b8160005b811561147b578061146581612434565b91506114749050600a83612363565b9150611455565b60008167ffffffffffffffff8111156114a457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114ce576020820181803683370190505b5090505b8415611415576114e360018361239f565b91506114f0600a8661244f565b6114fb90603061234b565b60f81b81838151811061151e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611540600a86612363565b94506114d2565b60006001600160a01b03821661156f5760405162461bcd60e51b815260040161051390611e5a565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166115c45760405162461bcd60e51b8152600401610513906121cb565b6115cd81610e68565b156115ea5760405162461bcd60e51b815260040161051390612194565b6115f76000858386610b52565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611653908790612329565b6001600160801b031681526020018583602001516116719190612329565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156117bc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117806000888488611301565b61179c5760405162461bcd60e51b815260040161051390612141565b816117a681612434565b92505080806117b490612434565b915050611733565b5060018190556111f56000878588610b52565b3b151590565b8280546117e1906123f9565b90600052602060002090601f0160209004810192826118035760008555611849565b82601f1061181c5782800160ff19823516178555611849565b82800160010185558215611849579182015b8281111561184957823582559160200191906001019061182e565b5061090c92915061186c565b604080518082019091526000808252602082015290565b5b8082111561090c576000815560010161186d565b80356001600160a01b038116811461045557600080fd5b60008083601f8401126118a9578081fd5b50813567ffffffffffffffff8111156118c0578182fd5b60208301915083602080830285010111156118da57600080fd5b9250929050565b6000602082840312156118f2578081fd5b610d0a82611881565b6000806040838503121561190d578081fd5b61191683611881565b915061192460208401611881565b90509250929050565b600080600060608486031215611941578081fd5b61194a84611881565b925061195860208501611881565b9150604084013590509250925092565b6000806000806080858703121561197d578081fd5b61198685611881565b93506020611995818701611881565b935060408601359250606086013567ffffffffffffffff808211156119b8578384fd5b818801915088601f8301126119cb578384fd5b8135818111156119dd576119dd61248f565b604051601f8201601f1916810185018381118282101715611a0057611a0061248f565b60405281815283820185018b1015611a16578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611a46578182fd5b611a4f83611881565b915060208301358015158114611a63578182fd5b809150509250929050565b60008060408385031215611a80578182fd5b611a8983611881565b946020939093013593505050565b60008060008060408587031215611aac578384fd5b843567ffffffffffffffff80821115611ac3578586fd5b611acf88838901611898565b90965094506020870135915080821115611ae7578384fd5b50611af487828801611898565b95989497509550505050565b600080600060408486031215611b14578283fd5b833567ffffffffffffffff811115611b2a578384fd5b611b3686828701611898565b909790965060209590950135949350505050565b600060208284031215611b5b578081fd5b8135610d0a816124a5565b600060208284031215611b77578081fd5b8151610d0a816124a5565b60008060208385031215611b94578182fd5b823567ffffffffffffffff80821115611bab578384fd5b818501915085601f830112611bbe578384fd5b813581811115611bcc578485fd5b866020828501011115611bdd578485fd5b60209290920196919550909350505050565b600060208284031215611c00578081fd5b5035919050565b60008151808452611c1f8160208601602086016123b6565b601f01601f19169290920160200192915050565b60008351611c458184602088016123b6565b835190830190611c598183602088016123b6565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca990830184611c07565b9695505050505050565b901515815260200190565b600060208252610d0a6020830184611c07565b60208082526015908201527414d590d0d58e88105b1b0813919508135a5b9d1959605a1b604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601690820152750a6ac8686ac744098cadccee8d0409ad2e69ac2e8c6d60531b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b03808316818516808303821115611c5957611c59612463565b6000821982111561235e5761235e612463565b500190565b60008261237257612372612479565b500490565b60006001600160801b038381169083168181101561239757612397612463565b039392505050565b6000828210156123b1576123b1612463565b500390565b60005b838110156123d15781810151838201526020016123b9565b83811115610b525750506000910152565b6000816123f1576123f1612463565b506000190190565b60028104600182168061240d57607f821691505b6020821081141561242e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244857612448612463565b5060010190565b60008261245e5761245e612479565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e4c57600080fdfea26469706673582212207805c9f5ad375707815b59dec5210e1c3f5873a60fa8a0e9235c24c320e416ec64736f6c63430008000033
Deployed Bytecode Sourcemap
172:1636:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3090:370:3;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4720:94;;;:::i;:::-;;;;;;;:::i;6245:204::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5808:379::-;;;;;;:::i;:::-;;:::i;:::-;;1936:94;;;:::i;:::-;;;;;;;:::i;384:360:11:-;;;;;;:::i;:::-;;:::i;7095:142:3:-;;;;;;:::i;:::-;;:::i;2282:744::-;;;;;;:::i;:::-;;:::i;1249:141:11:-;;;:::i;7300:157:3:-;;;;;;:::i;:::-;;:::i;2099:177::-;;;;;;:::i;:::-;;:::i;1138:103:11:-;;;;;;:::i;:::-;;:::i;4543:118:3:-;;;;;;:::i;:::-;;:::i;1648:157:11:-;;;;;;:::i;:::-;;:::i;230:28::-;;;:::i;3516:211:3:-;;;;;;:::i;:::-;;:::i;1650:94:9:-;;;:::i;750:262:11:-;;;;;;:::i;:::-;;:::i;999:87:9:-;;;:::i;1514:128:11:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4875:98:3:-;;;:::i;262:25:11:-;;;:::i;6513:274:3:-;;;;;;:::i;:::-;;:::i;7520:311::-;;;;;;:::i;:::-;;:::i;5036:394::-;;;;;;:::i;:::-;;:::i;294:27:11:-;;;:::i;11857:43:3:-;;;:::i;1399:109:11:-;;;;;;:::i;:::-;;:::i;6850:186:3:-;;;;;;:::i;:::-;;:::i;1899:192:9:-;;;;;;:::i;:::-;;:::i;3090:370:3:-;3217:4;-1:-1:-1;;;;;;3247:40:3;;-1:-1:-1;;;3247:40:3;;:99;;-1:-1:-1;;;;;;;3298:48:3;;-1:-1:-1;;;3298:48:3;3247:99;:160;;;-1:-1:-1;;;;;;;3357:50:3;;-1:-1:-1;;;3357:50:3;3247:160;:207;;;;3418:36;3442:11;3418:23;:36::i;:::-;3233:221;;3090:370;;;;:::o;4720:94::-;4774:13;4803:5;4796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4720:94;:::o;6245:204::-;6313:7;6337:16;6345:7;6337;:16::i;:::-;6329:74;;;;-1:-1:-1;;;6329:74:3;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;6419:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;6419:24:3;;6245:204::o;5808:379::-;5877:13;5893:24;5909:7;5893:15;:24::i;:::-;5877:40;;5938:5;-1:-1:-1;;;;;5932:11:3;:2;-1:-1:-1;;;;;5932:11:3;;;5924:58;;;;-1:-1:-1;;;5924:58:3;;;;;;;:::i;:::-;6023:5;-1:-1:-1;;;;;6007:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6007:21:3;;:62;;;;6032:37;6049:5;6056:12;:10;:12::i;6032:37::-;5991:153;;;;-1:-1:-1;;;5991:153:3;;;;;;;:::i;:::-;6153:28;6162:2;6166:7;6175:5;6153:8;:28::i;:::-;5808:379;;;:::o;1936:94::-;2012:12;;1936:94;:::o;384:360:11:-;1230:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:9;;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;481:27:11;;::::1;473:62;;;;-1:-1:-1::0;;;473:62:11::1;;;;;;;:::i;:::-;549:9;544:196;564:14:::0;;::::1;544:196;;;627:7;;614:6;;621:1;614:9;;;;;-1:-1:-1::0;;;614:9:11::1;;;;;;;;;;;;;;;601:10;;:22;;;;:::i;:::-;:33;;593:67;;;;-1:-1:-1::0;;;593:67:11::1;;;;;;;:::i;:::-;675:28;685:3;;689:1;685:6;;;;;-1:-1:-1::0;;;685:6:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;693;;700:1;693:9;;;;;-1:-1:-1::0;;;693:9:11::1;;;;;;;;;;;;;;;675;:28::i;:::-;725:6;;732:1;725:9;;;;;-1:-1:-1::0;;;725:9:11::1;;;;;;;;;;;;;;;711:10;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;580:3:11;;-1:-1:-1;580:3:11::1;::::0;::::1;:::i;:::-;;;;544:196;;;;384:360:::0;;;;:::o;7095:142:3:-;7203:28;7213:4;7219:2;7223:7;7203:9;:28::i;2282:744::-;2391:7;2426:16;2436:5;2426:9;:16::i;:::-;2418:5;:24;2410:71;;;;-1:-1:-1;;;2410:71:3;;;;;;;:::i;:::-;2488:22;2513:13;:11;:13::i;:::-;2488:38;;2533:19;2563:25;2613:9;2608:350;2632:14;2628:1;:18;2608:350;;;2662:31;2696:14;;;:11;:14;;;;;;;;;2662:48;;;;;;;;;-1:-1:-1;;;;;2662:48:3;;;;;-1:-1:-1;;;2662:48:3;;;;;;;;;;;;2723:28;2719:89;;2784:14;;;-1:-1:-1;2719:89:3;2841:5;-1:-1:-1;;;;;2820:26:3;:17;-1:-1:-1;;;;;2820:26:3;;2816:135;;;2878:5;2863:11;:20;2859:59;;;-1:-1:-1;2905:1:3;-1:-1:-1;2898:8:3;;-1:-1:-1;;;2898:8:3;2859:59;2928:13;;;;:::i;:::-;;;;2816:135;-1:-1:-1;2648:3:3;;;;:::i;:::-;;;;2608:350;;;;2964:56;;-1:-1:-1;;;2964:56:3;;;;;;;:::i;2282:744::-;;;;;:::o;1249:141:11:-;1230:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:9;;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1345:37:11::1;::::0;1314:21:::1;::::0;1353:10:::1;::::0;1345:37;::::1;;;::::0;1314:21;;1296:15:::1;1345:37:::0;1296:15;1345:37;1314:21;1353:10;1345:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1290:1:9;1249:141:11:o:0;7300:157:3:-;7412:39;7429:4;7435:2;7439:7;7412:39;;;;;;;;;;;;:16;:39::i;2099:177::-;2166:7;2198:13;:11;:13::i;:::-;2190:5;:21;2182:69;;;;-1:-1:-1;;;2182:69:3;;;;;;;:::i;:::-;-1:-1:-1;2265:5:3;2099:177::o;1138:103:11:-;1230:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:9;;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1210:23:11::1;:13;1226:7:::0;;1210:23:::1;:::i;4543:118:3:-:0;4607:7;4630:20;4642:7;4630:11;:20::i;:::-;:25;;4543:118;-1:-1:-1;;4543:118:3:o;1648:157:11:-;1230:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:9;;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1737:10:11::1;;1724:9;:23;;1716:51;;;;-1:-1:-1::0;;;1716:51:11::1;;;;;;;:::i;:::-;1778:7;:19:::0;1648:157::o;230:28::-;;;;:::o;3516:211:3:-;3580:7;-1:-1:-1;;;;;3604:19:3;;3596:75;;;;-1:-1:-1;;;3596:75:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3693:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3693:27:3;;3516:211::o;1650:94:9:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:9;;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;750:262:11:-;1230:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:9;;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;833:9:11::1;828:180;848:14:::0;;::::1;828:180;;;908:7;;898:6;885:10;;:19;;;;:::i;:::-;:30;;877:64;;;;-1:-1:-1::0;;;877:64:11::1;;;;;;;:::i;:::-;949:25;959:3;;963:1;959:6;;;;;-1:-1:-1::0;;;959:6:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;967;949:9;:25::i;:::-;996:6;982:10;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;864:3:11;;-1:-1:-1;864:3:11::1;::::0;::::1;:::i;:::-;;;;828:180;;;;750:262:::0;;;:::o;999:87:9:-;1045:7;1072:6;-1:-1:-1;;;;;1072:6:9;999:87;:::o;1514:128:11:-;1580:21;;:::i;:::-;1617:20;1629:7;1617:11;:20::i;4875:98:3:-;4931:13;4960:7;4953:14;;;;;:::i;262:25:11:-;;;;:::o;6513:274:3:-;6616:12;:10;:12::i;:::-;-1:-1:-1;;;;;6604:24:3;:8;-1:-1:-1;;;;;6604:24:3;;;6596:63;;;;-1:-1:-1;;;6596:63:3;;;;;;;:::i;:::-;6713:8;6668:18;:32;6687:12;:10;:12::i;:::-;-1:-1:-1;;;;;6668:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;6668:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;6668:53:3;;;;;;;;;;;6748:12;:10;:12::i;:::-;-1:-1:-1;;;;;6733:48:3;;6772:8;6733:48;;;;;;:::i;:::-;;;;;;;;6513:274;;:::o;7520:311::-;7657:28;7667:4;7673:2;7677:7;7657:9;:28::i;:::-;7708:48;7731:4;7737:2;7741:7;7750:5;7708:22;:48::i;:::-;7692:133;;;;-1:-1:-1;;;7692:133:3;;;;;;;:::i;5036:394::-;5134:13;5175:16;5183:7;5175;:16::i;:::-;5159:97;;;;-1:-1:-1;;;5159:97:3;;;;;;;:::i;:::-;5265:21;5289:10;:8;:10::i;:::-;5265:34;;5344:1;5326:7;5320:21;:25;:104;;;;;;;;;;;;;;;;;5381:7;5390:18;:7;:16;:18::i;:::-;5364:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5320:104;5306:118;5036:394;-1:-1:-1;;;5036:394:3:o;294:27:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11857:43:3:-;;;;:::o;1399:109:11:-;1457:7;1480:20;1494:5;1480:13;:20::i;6850:186:3:-;-1:-1:-1;;;;;6995:25:3;;;6972:4;6995:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;6850:186::o;1899:192:9:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:9;;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:9;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:9::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;787:157:2:-;-1:-1:-1;;;;;;896:40:2;;-1:-1:-1;;;896:40:2;787:157;;;:::o;8070:105:3:-;8157:12;;-1:-1:-1;8147:22:3;8070:105::o;601:98:1:-;681:10;601:98;:::o;11679:172:3:-;11776:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11776:29:3;-1:-1:-1;;;;;11776:29:3;;;;;;;;;11817:28;;11776:24;;11817:28;;;;;;;11679:172;;;:::o;8181:98::-;8246:27;8256:2;8260:8;8246:27;;;;;;;;;;;;:9;:27::i;10044:1529::-;10141:35;10179:20;10191:7;10179:11;:20::i;:::-;10141:58;;10208:22;10250:13;:18;;;-1:-1:-1;;;;;10234:34:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;10234:34:3;;:81;;;;10303:12;:10;:12::i;:::-;-1:-1:-1;;;;;10279:36:3;:20;10291:7;10279:11;:20::i;:::-;-1:-1:-1;;;;;10279:36:3;;10234:81;:142;;;-1:-1:-1;10343:18:3;;10326:50;;10363:12;:10;:12::i;10326:50::-;10208:169;;10402:17;10386:101;;;;-1:-1:-1;;;10386:101:3;;;;;;;:::i;:::-;10534:4;-1:-1:-1;;;;;10512:26:3;:13;:18;;;-1:-1:-1;;;;;10512:26:3;;10496:98;;;;-1:-1:-1;;;10496:98:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10609:16:3;;10601:66;;;;-1:-1:-1;;;10601:66:3;;;;;;;:::i;:::-;10676:43;10698:4;10704:2;10708:7;10717:1;10676:21;:43::i;:::-;10776:49;10793:1;10797:7;10806:13;:18;;;10776:8;:49::i;:::-;-1:-1:-1;;;;;10834:18:3;;;;;;:12;:18;;;;;:31;;10864:1;;10834:18;:31;;10864:1;;-1:-1:-1;;;;;10834:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;10834:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;10872:16:3;;-1:-1:-1;10872:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;10872:16:3;;:29;;-1:-1:-1;;10872:29:3;;:::i;:::-;;;-1:-1:-1;;;;;10872:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10931:43:3;;;;;;;;-1:-1:-1;;;;;10931:43:3;;;;;;10957:15;10931:43;;;;;;;;;-1:-1:-1;10908:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;10908:66:3;-1:-1:-1;;;;10908:66:3;;;;-1:-1:-1;;;;;;10908:66:3;;;;;;;;11224:11;10920:7;-1:-1:-1;11224:11:3;:::i;:::-;11287:1;11246:24;;;:11;:24;;;;;:29;11202:33;;-1:-1:-1;;;;;;11246:29:3;11242:236;;11304:20;11312:11;11304:7;:20::i;:::-;11300:171;;;11364:97;;;;;;;;11391:18;;-1:-1:-1;;;;;11364:97:3;;;;;;11422:28;;;;11364:97;;;;;;;;;;-1:-1:-1;11337:24:3;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;11337:124:3;;;;;;;;;-1:-1:-1;;;;11337:124:3;-1:-1:-1;;;11337:124:3;;;;;;;;;;;;;;11300:171;11510:7;11506:2;-1:-1:-1;;;;;11491:27:3;11500:4;-1:-1:-1;;;;;11491:27:3;;;;;;;;;;;11525:42;11546:4;11552:2;11556:7;11565:1;11525:20;:42::i;:::-;10044:1529;;;;;;:::o;3979:510::-;4055:21;;:::i;:::-;4096:16;4104:7;4096;:16::i;:::-;4088:71;;;;-1:-1:-1;;;4088:71:3;;;;;;;:::i;:::-;4168:26;4224:7;4204:214;4241:18;4233:4;:26;4204:214;;4278:31;4312:17;;;:11;:17;;;;;;;;;4278:51;;;;;;;;;-1:-1:-1;;;;;4278:51:3;;;;;-1:-1:-1;;;4278:51:3;;;;;;;;;;;;4342:28;4338:73;;4392:9;-1:-1:-1;4385:16:3;;-1:-1:-1;;4385:16:3;4338:73;-1:-1:-1;4261:6:3;;;;:::i;:::-;;;;4204:214;;;;4426:57;;-1:-1:-1;;;4426:57:3;;;;;;;:::i;2099:173:9:-;2155:16;2174:6;;-1:-1:-1;;;;;2191:17:9;;;-1:-1:-1;;;;;;2191:17:9;;;;;;2224:40;;2174:6;;;;;;;2224:40;;2155:16;2224:40;2099:173;;:::o;13310:690:3:-;13447:4;13464:15;:2;-1:-1:-1;;;;;13464:13:3;;:15::i;:::-;13460:535;;;13519:2;-1:-1:-1;;;;;13503:36:3;;13540:12;:10;:12::i;:::-;13554:4;13560:7;13569:5;13503:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13503:72:3;;;;;;;;-1:-1:-1;;13503:72:3;;;;;;;;;;;;:::i;:::-;;;13490:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13734:13:3;;13730:215;;13767:61;;-1:-1:-1;;;13767:61:3;;;;;;;:::i;13730:215::-;13913:6;13907:13;13898:6;13894:2;13890:15;13883:38;13490:464;-1:-1:-1;;;;;;13625:55:3;-1:-1:-1;;;13625:55:3;;-1:-1:-1;13618:62:3;;13460:535;-1:-1:-1;13983:4:3;13460:535;13310:690;;;;;;:::o;1020:110:11:-;1080:13;1109;1102:20;;;;;:::i;288:723:12:-;344:13;565:10;561:53;;-1:-1:-1;592:10:12;;;;;;;;;;;;-1:-1:-1;;;592:10:12;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:12;;-1:-1:-1;744:2:12;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:12;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:12;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:12;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:12;;;;;;;;-1:-1:-1;949:11:12;958:2;949:11;;:::i;:::-;;;818:154;;3733:240:3;3794:7;-1:-1:-1;;;;;3826:19:3;;3810:102;;;;-1:-1:-1;;;3810:102:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3934:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;3934:32:3;;-1:-1:-1;;;;;3934:32:3;;3733:240::o;8618:1194::-;8746:12;;-1:-1:-1;;;;;8773:16:3;;8765:62;;;;-1:-1:-1;;;8765:62:3;;;;;;;:::i;:::-;8964:21;8972:12;8964:7;:21::i;:::-;8963:22;8955:64;;;;-1:-1:-1;;;8955:64:3;;;;;;;:::i;:::-;9028:61;9058:1;9062:2;9066:12;9080:8;9028:21;:61::i;:::-;-1:-1:-1;;;;;9131:16:3;;9098:30;9131:16;;;:12;:16;;;;;;;;;9098:49;;;;;;;;;-1:-1:-1;;;;;9098:49:3;;;;;-1:-1:-1;;;9098:49:3;;;;;;;;;;;9173:119;;;;;;;;9193:19;;9098:49;;9173:119;;;9193:39;;9223:8;;9193:39;:::i;:::-;-1:-1:-1;;;;;9173:119:3;;;;;9276:8;9241:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9173:119:3;;;;;;-1:-1:-1;;;;;9154:16:3;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;9154:138:3;;;;-1:-1:-1;;9154:138:3;;;;;;;;;;;;;;;;;9327:43;;;;;;;;;;;9353:15;9327:43;;;;;;;;9299:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9299:71:3;-1:-1:-1;;;;9299:71:3;;;;-1:-1:-1;;;;;;9299:71:3;;;;;;;;;;;;;;;9311:12;;9423:281;9447:8;9443:1;:12;9423:281;;;9476:38;;9501:12;;-1:-1:-1;;;;;9476:38:3;;;9493:1;;9476:38;;9493:1;;9476:38;9541:59;9572:1;9576:2;9580:12;9594:5;9541:22;:59::i;:::-;9523:150;;;;-1:-1:-1;;;9523:150:3;;;;;;;:::i;:::-;9682:14;;;;:::i;:::-;;;;9457:3;;;;;:::i;:::-;;;;9423:281;;;-1:-1:-1;9712:12:3;:27;;;9746:60;9775:1;9779:2;9783:12;9797:8;9746:20;:60::i;743:387:0:-;1066:20;1114:8;;;743:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:13;84:20;;-1:-1:-1;;;;;133:31:13;;123:42;;113:2;;179:1;176;169:12;194:400;;;327:3;320:4;312:6;308:17;304:27;294:2;;350:6;342;335:22;294:2;-1:-1:-1;378:20:13;;421:18;410:30;;407:2;;;460:8;450;443:26;407:2;504:4;496:6;492:17;480:29;;567:3;560:4;552;544:6;540:17;532:6;528:30;524:41;521:50;518:2;;;584:1;581;574:12;518:2;284:310;;;;;:::o;599:198::-;;711:2;699:9;690:7;686:23;682:32;679:2;;;732:6;724;717:22;679:2;760:31;781:9;760:31;:::i;802:274::-;;;931:2;919:9;910:7;906:23;902:32;899:2;;;952:6;944;937:22;899:2;980:31;1001:9;980:31;:::i;:::-;970:41;;1030:40;1066:2;1055:9;1051:18;1030:40;:::i;:::-;1020:50;;889:187;;;;;:::o;1081:342::-;;;;1227:2;1215:9;1206:7;1202:23;1198:32;1195:2;;;1248:6;1240;1233:22;1195:2;1276:31;1297:9;1276:31;:::i;:::-;1266:41;;1326:40;1362:2;1351:9;1347:18;1326:40;:::i;:::-;1316:50;;1413:2;1402:9;1398:18;1385:32;1375:42;;1185:238;;;;;:::o;1428:1178::-;;;;;1600:3;1588:9;1579:7;1575:23;1571:33;1568:2;;;1622:6;1614;1607:22;1568:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:2;1721:40;1757:2;1746:9;1742:18;1721:40;:::i;:::-;1711:50;;1808:2;1797:9;1793:18;1780:32;1770:42;;1863:2;1852:9;1848:18;1835:32;1886:18;1927:2;1919:6;1916:14;1913:2;;;1948:6;1940;1933:22;1913:2;1991:6;1980:9;1976:22;1966:32;;2036:7;2029:4;2025:2;2021:13;2017:27;2007:2;;2063:6;2055;2048:22;2007:2;2104;2091:16;2126:2;2122;2119:10;2116:2;;;2132:18;;:::i;:::-;2181:2;2175:9;2250:2;2231:13;;-1:-1:-1;;2227:27:13;2215:40;;2211:49;;2275:18;;;2295:22;;;2272:46;2269:2;;;2321:18;;:::i;:::-;2357:2;2350:22;2381:18;;;2418:11;;;2414:20;;2411:33;-1:-1:-1;2408:2:13;;;2462:6;2454;2447:22;2408:2;2523;2518;2514;2510:11;2505:2;2497:6;2493:15;2480:46;2546:15;;;2542:24;;;2535:40;;;;-1:-1:-1;1558:1048:13;;;;-1:-1:-1;1558:1048:13;;-1:-1:-1;;1558:1048:13:o;2611:369::-;;;2737:2;2725:9;2716:7;2712:23;2708:32;2705:2;;;2758:6;2750;2743:22;2705:2;2786:31;2807:9;2786:31;:::i;:::-;2776:41;;2867:2;2856:9;2852:18;2839:32;2914:5;2907:13;2900:21;2893:5;2890:32;2880:2;;2941:6;2933;2926:22;2880:2;2969:5;2959:15;;;2695:285;;;;;:::o;2985:266::-;;;3114:2;3102:9;3093:7;3089:23;3085:32;3082:2;;;3135:6;3127;3120:22;3082:2;3163:31;3184:9;3163:31;:::i;:::-;3153:41;3241:2;3226:18;;;;3213:32;;-1:-1:-1;;;3072:179:13:o;3256:815::-;;;;;3455:2;3443:9;3434:7;3430:23;3426:32;3423:2;;;3476:6;3468;3461:22;3423:2;3521:9;3508:23;3550:18;3591:2;3583:6;3580:14;3577:2;;;3612:6;3604;3597:22;3577:2;3656:76;3724:7;3715:6;3704:9;3700:22;3656:76;:::i;:::-;3751:8;;-1:-1:-1;3630:102:13;-1:-1:-1;3839:2:13;3824:18;;3811:32;;-1:-1:-1;3855:16:13;;;3852:2;;;3889:6;3881;3874:22;3852:2;;3933:78;4003:7;3992:8;3981:9;3977:24;3933:78;:::i;:::-;3413:658;;;;-1:-1:-1;4030:8:13;-1:-1:-1;;;;3413:658:13:o;4076:531::-;;;;4240:2;4228:9;4219:7;4215:23;4211:32;4208:2;;;4261:6;4253;4246:22;4208:2;4306:9;4293:23;4339:18;4331:6;4328:30;4325:2;;;4376:6;4368;4361:22;4325:2;4420:76;4488:7;4479:6;4468:9;4464:22;4420:76;:::i;:::-;4515:8;;4394:102;;-1:-1:-1;4597:2:13;4582:18;;;;4569:32;;4198:409;-1:-1:-1;;;;4198:409:13:o;4612:257::-;;4723:2;4711:9;4702:7;4698:23;4694:32;4691:2;;;4744:6;4736;4729:22;4691:2;4788:9;4775:23;4807:32;4833:5;4807:32;:::i;4874:261::-;;4996:2;4984:9;4975:7;4971:23;4967:32;4964:2;;;5017:6;5009;5002:22;4964:2;5054:9;5048:16;5073:32;5099:5;5073:32;:::i;5140:642::-;;;5272:2;5260:9;5251:7;5247:23;5243:32;5240:2;;;5293:6;5285;5278:22;5240:2;5338:9;5325:23;5367:18;5408:2;5400:6;5397:14;5394:2;;;5429:6;5421;5414:22;5394:2;5472:6;5461:9;5457:22;5447:32;;5517:7;5510:4;5506:2;5502:13;5498:27;5488:2;;5544:6;5536;5529:22;5488:2;5589;5576:16;5615:2;5607:6;5604:14;5601:2;;;5636:6;5628;5621:22;5601:2;5686:7;5681:2;5672:6;5668:2;5664:15;5660:24;5657:37;5654:2;;;5712:6;5704;5697:22;5654:2;5748;5740:11;;;;;5770:6;;-1:-1:-1;5230:552:13;;-1:-1:-1;;;;5230:552:13:o;5787:190::-;;5899:2;5887:9;5878:7;5874:23;5870:32;5867:2;;;5920:6;5912;5905:22;5867:2;-1:-1:-1;5948:23:13;;5857:120;-1:-1:-1;5857:120:13:o;5982:259::-;;6063:5;6057:12;6090:6;6085:3;6078:19;6106:63;6162:6;6155:4;6150:3;6146:14;6139:4;6132:5;6128:16;6106:63;:::i;:::-;6223:2;6202:15;-1:-1:-1;;6198:29:13;6189:39;;;;6230:4;6185:50;;6033:208;-1:-1:-1;;6033:208:13:o;6246:470::-;;6463:6;6457:13;6479:53;6525:6;6520:3;6513:4;6505:6;6501:17;6479:53;:::i;:::-;6595:13;;6554:16;;;;6617:57;6595:13;6554:16;6651:4;6639:17;;6617:57;:::i;:::-;6690:20;;6433:283;-1:-1:-1;;;;6433:283:13:o;6721:203::-;-1:-1:-1;;;;;6885:32:13;;;;6867:51;;6855:2;6840:18;;6822:102::o;6929:490::-;-1:-1:-1;;;;;7198:15:13;;;7180:34;;7250:15;;7245:2;7230:18;;7223:43;7297:2;7282:18;;7275:34;;;7345:3;7340:2;7325:18;;7318:31;;;6929:490;;7366:47;;7393:19;;7385:6;7366:47;:::i;:::-;7358:55;7132:287;-1:-1:-1;;;;;;7132:287:13:o;7424:187::-;7589:14;;7582:22;7564:41;;7552:2;7537:18;;7519:92::o;7616:221::-;;7765:2;7754:9;7747:21;7785:46;7827:2;7816:9;7812:18;7804:6;7785:46;:::i;7842:345::-;8044:2;8026:21;;;8083:2;8063:18;;;8056:30;-1:-1:-1;;;8117:2:13;8102:18;;8095:51;8178:2;8163:18;;8016:171::o;8192:398::-;8394:2;8376:21;;;8433:2;8413:18;;;8406:30;8472:34;8467:2;8452:18;;8445:62;-1:-1:-1;;;8538:2:13;8523:18;;8516:32;8580:3;8565:19;;8366:224::o;8595:402::-;8797:2;8779:21;;;8836:2;8816:18;;;8809:30;8875:34;8870:2;8855:18;;8848:62;-1:-1:-1;;;8941:2:13;8926:18;;8919:36;8987:3;8972:19;;8769:228::o;9002:406::-;9204:2;9186:21;;;9243:2;9223:18;;;9216:30;9282:34;9277:2;9262:18;;9255:62;-1:-1:-1;;;9348:2:13;9333:18;;9326:40;9398:3;9383:19;;9176:232::o;9413:399::-;9615:2;9597:21;;;9654:2;9634:18;;;9627:30;9693:34;9688:2;9673:18;;9666:62;-1:-1:-1;;;9759:2:13;9744:18;;9737:33;9802:3;9787:19;;9587:225::o;9817:401::-;10019:2;10001:21;;;10058:2;10038:18;;;10031:30;10097:34;10092:2;10077:18;;10070:62;-1:-1:-1;;;10163:2:13;10148:18;;10141:35;10208:3;10193:19;;9991:227::o;10223:413::-;10425:2;10407:21;;;10464:2;10444:18;;;10437:30;10503:34;10498:2;10483:18;;10476:62;-1:-1:-1;;;10569:2:13;10554:18;;10547:47;10626:3;10611:19;;10397:239::o;10641:346::-;10843:2;10825:21;;;10882:2;10862:18;;;10855:30;-1:-1:-1;;;10916:2:13;10901:18;;10894:52;10978:2;10963:18;;10815:172::o;10992:421::-;11194:2;11176:21;;;11233:2;11213:18;;;11206:30;11272:34;11267:2;11252:18;;11245:62;11343:27;11338:2;11323:18;;11316:55;11403:3;11388:19;;11166:247::o;11418:407::-;11620:2;11602:21;;;11659:2;11639:18;;;11632:30;11698:34;11693:2;11678:18;;11671:62;-1:-1:-1;;;11764:2:13;11749:18;;11742:41;11815:3;11800:19;;11592:233::o;11830:402::-;12032:2;12014:21;;;12071:2;12051:18;;;12044:30;12110:34;12105:2;12090:18;;12083:62;-1:-1:-1;;;12176:2:13;12161:18;;12154:36;12222:3;12207:19;;12004:228::o;12237:339::-;12439:2;12421:21;;;12478:2;12458:18;;;12451:30;-1:-1:-1;;;12512:2:13;12497:18;;12490:45;12567:2;12552:18;;12411:165::o;12581:356::-;12783:2;12765:21;;;12802:18;;;12795:30;12861:34;12856:2;12841:18;;12834:62;12928:2;12913:18;;12755:182::o;12942:411::-;13144:2;13126:21;;;13183:2;13163:18;;;13156:30;13222:34;13217:2;13202:18;;13195:62;-1:-1:-1;;;13288:2:13;13273:18;;13266:45;13343:3;13328:19;;13116:237::o;13358:350::-;13560:2;13542:21;;;13599:2;13579:18;;;13572:30;13638:28;13633:2;13618:18;;13611:56;13699:2;13684:18;;13532:176::o;13713:414::-;13915:2;13897:21;;;13954:2;13934:18;;;13927:30;13993:34;13988:2;13973:18;;13966:62;-1:-1:-1;;;14059:2:13;14044:18;;14037:48;14117:3;14102:19;;13887:240::o;14132:398::-;14334:2;14316:21;;;14373:2;14353:18;;;14346:30;14412:34;14407:2;14392:18;;14385:62;-1:-1:-1;;;14478:2:13;14463:18;;14456:32;14520:3;14505:19;;14306:224::o;14535:415::-;14737:2;14719:21;;;14776:2;14756:18;;;14749:30;14815:34;14810:2;14795:18;;14788:62;-1:-1:-1;;;14881:2:13;14866:18;;14859:49;14940:3;14925:19;;14709:241::o;14955:353::-;15157:2;15139:21;;;15196:2;15176:18;;;15169:30;15235:31;15230:2;15215:18;;15208:59;15299:2;15284:18;;15129:179::o;15313:397::-;15515:2;15497:21;;;15554:2;15534:18;;;15527:30;15593:34;15588:2;15573:18;;15566:62;-1:-1:-1;;;15659:2:13;15644:18;;15637:31;15700:3;15685:19;;15487:223::o;15715:410::-;15917:2;15899:21;;;15956:2;15936:18;;;15929:30;15995:34;15990:2;15975:18;;15968:62;-1:-1:-1;;;16061:2:13;16046:18;;16039:44;16115:3;16100:19;;15889:236::o;16130:411::-;16332:2;16314:21;;;16371:2;16351:18;;;16344:30;16410:34;16405:2;16390:18;;16383:62;-1:-1:-1;;;16476:2:13;16461:18;;16454:45;16531:3;16516:19;;16304:237::o;16546:409::-;16748:2;16730:21;;;16787:2;16767:18;;;16760:30;16826:34;16821:2;16806:18;;16799:62;-1:-1:-1;;;16892:2:13;16877:18;;16870:43;16945:3;16930:19;;16720:235::o;16960:360::-;17190:13;;-1:-1:-1;;;;;17186:39:13;17168:58;;17286:4;17274:17;;;17268:24;17294:18;17264:49;17242:20;;;17235:79;;;;17156:2;17141:18;;17123:197::o;17325:177::-;17471:25;;;17459:2;17444:18;;17426:76::o;17507:253::-;;-1:-1:-1;;;;;17636:2:13;17633:1;17629:10;17666:2;17663:1;17659:10;17697:3;17693:2;17689:12;17684:3;17681:21;17678:2;;;17705:18;;:::i;17765:128::-;;17836:1;17832:6;17829:1;17826:13;17823:2;;;17842:18;;:::i;:::-;-1:-1:-1;17878:9:13;;17813:80::o;17898:120::-;;17964:1;17954:2;;17969:18;;:::i;:::-;-1:-1:-1;18003:9:13;;17944:74::o;18023:246::-;;-1:-1:-1;;;;;18176:10:13;;;;18146;;18198:12;;;18195:2;;;18213:18;;:::i;:::-;18250:13;;18072:197;-1:-1:-1;;;18072:197:13:o;18274:125::-;;18342:1;18339;18336:8;18333:2;;;18347:18;;:::i;:::-;-1:-1:-1;18384:9:13;;18323:76::o;18404:258::-;18476:1;18486:113;18500:6;18497:1;18494:13;18486:113;;;18576:11;;;18570:18;18557:11;;;18550:39;18522:2;18515:10;18486:113;;;18617:6;18614:1;18611:13;18608:2;;;-1:-1:-1;;18652:1:13;18634:16;;18627:27;18457:205::o;18667:136::-;;18734:5;18724:2;;18743:18;;:::i;:::-;-1:-1:-1;;;18779:18:13;;18714:89::o;18808:380::-;18893:1;18883:12;;18940:1;18930:12;;;18951:2;;19005:4;18997:6;18993:17;18983:27;;18951:2;19058;19050:6;19047:14;19027:18;19024:38;19021:2;;;19104:10;19099:3;19095:20;19092:1;19085:31;19139:4;19136:1;19129:15;19167:4;19164:1;19157:15;19021:2;;18863:325;;;:::o;19193:135::-;;-1:-1:-1;;19253:17:13;;19250:2;;;19273:18;;:::i;:::-;-1:-1:-1;19320:1:13;19309:13;;19240:88::o;19333:112::-;;19391:1;19381:2;;19396:18;;:::i;:::-;-1:-1:-1;19430:9:13;;19371:74::o;19450:127::-;19511:10;19506:3;19502:20;19499:1;19492:31;19542:4;19539:1;19532:15;19566:4;19563:1;19556:15;19582:127;19643:10;19638:3;19634:20;19631:1;19624:31;19674:4;19671:1;19664:15;19698:4;19695:1;19688:15;19714:127;19775:10;19770:3;19766:20;19763:1;19756:31;19806:4;19803:1;19796:15;19830:4;19827:1;19820:15;19846:133;-1:-1:-1;;;;;;19922:32:13;;19912:43;;19902:2;;19969:1;19966;19959:12
Swarm Source
ipfs://7805c9f5ad375707815b59dec5210e1c3f5873a60fa8a0e9235c24c320e416ec
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.