ERC-721
NFT
Overview
Max Total Supply
3,333 GRT
Holders
1,161
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GRTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GirlsRidingThings
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./SafeMath.sol"; contract GirlsRidingThings is Ownable, ERC721Enumerable, ReentrancyGuard { using SafeMath for uint8; using SafeMath for uint256; string private _baseTokenURI; uint8 public constant MAX_OWNER_TOKENS = 50; uint256 public constant TOKEN_PRICE = 0.02 ether; uint8 public constant MAX_PURCHASE = 10; bool public saleIsActive; uint256 public finalMaxTokens = 3333; // This can only be changed by freeze function uint256 public currentMaxTokens = 333; uint8 public ownerMintCount; constructor() ERC721("Girls Riding Things", "GRT") { _baseTokenURI = "https://www.girlsridingthings.io/grt_metadata/"; } function mint(uint8 numberOfTokens) public payable nonReentrant { require(saleIsActive, "not allowed"); require(numberOfTokens <= MAX_PURCHASE, "exceeds purchase limit"); require(totalSupply().add(numberOfTokens) <= currentMaxTokens, "exceeds supply"); require(TOKEN_PRICE.mul(numberOfTokens) <= msg.value, "send more ETH"); uint256 tokenId; for(uint8 i; i < numberOfTokens; i++) { tokenId = totalSupply().add(1); _safeMint(msg.sender, tokenId); } } function withdrawFunds() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function mintAsOwner(uint8 numberOfTokens) public onlyOwner { require(ownerMintCount.add(numberOfTokens) <= MAX_OWNER_TOKENS, "owner limit"); require(totalSupply().add(numberOfTokens) <= finalMaxTokens, "exceeds supply"); uint256 tokenId; for(uint8 i; i < numberOfTokens; i++) { tokenId = totalSupply().add(1); _safeMint(msg.sender, tokenId); } } function setMaxTokens(uint256 maxTokens) public onlyOwner { require(maxTokens <= finalMaxTokens, "exceeds limit"); currentMaxTokens = maxTokens; } function toggleSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function setBaseURI(string memory newURI) public onlyOwner { require(finalMaxTokens > 0, 'frozen'); _baseTokenURI = newURI; } function freeze(uint8 passcode) public onlyOwner { require(passcode == 115, 'bad code'); finalMaxTokens = 0; currentMaxTokens = 0; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } }
// 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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 // solhint-disable-next-line no-inline-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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 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 extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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}. 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = 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; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[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_OWNER_TOKENS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMaxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalMaxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"passcode","type":"uint8"}],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMintCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTokens","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610d05600e5561014d600f553480156200001d57600080fd5b506040518060400160405280601381526020017f4769726c7320526964696e67205468696e6773000000000000000000000000008152506040518060400160405280600381526020016211d49560ea1b8152506000620000826200013560201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000e190600190602085019062000139565b508051620000f790600290602084019062000139565b50506001600b55506040805160608101909152602e8082526200258a602083013980516200012e91600c9160209091019062000139565b506200021c565b3390565b8280546200014790620001df565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b600181811c90821680620001f457607f821691505b602082108114156200021657634e487b7160e01b600052602260045260246000fd5b50919050565b61235e806200022c6000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063b88d4fde116100a0578063e0cafe681161006f578063e0cafe681461055a578063e985e9c51461056f578063eb8d2444146105b8578063f2fde38b146105d2578063f8972c8a146105f257600080fd5b8063b88d4fde146104ea578063c87b56dd1461050a578063d2d8cb671461052a578063daaeec861461054557600080fd5b8063715018a6116100dc578063715018a6146104825780638da5cb5b1461049757806395d89b41146104b5578063a22cb465146104ca57600080fd5b80636352211e1461041a5780636ecd23061461043a57806370a082311461044d5780637146bd081461046d57600080fd5b806323b872dd1161018557806345fdd7311161015457806345fdd731146103a45780634f6ccce7146103ba57806355f804b3146103da5780635ba297fc146103fa57600080fd5b806323b872dd1461032f57806324600fc31461034f5780632f745c591461036457806342842e0e1461038457600080fd5b806310801f14116101c157806310801f14146102a457806311e776fe146102c4578063137edaa0146102e457806318160ddd1461031057600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611f4a565b610608565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610633565b60405161021f91906120a1565b34801561025657600080fd5b5061026a610265366004611fcd565b6106c5565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611f20565b61075f565b005b3480156102b057600080fd5b506102a26102bf366004611fe6565b610875565b3480156102d057600080fd5b506102a26102df366004611fcd565b610988565b3480156102f057600080fd5b506010546102fe9060ff1681565b60405160ff909116815260200161021f565b34801561031c57600080fd5b506009545b60405190815260200161021f565b34801561033b57600080fd5b506102a261034a366004611e2c565b6109f9565b34801561035b57600080fd5b506102a2610a2a565b34801561037057600080fd5b5061032161037f366004611f20565b610a83565b34801561039057600080fd5b506102a261039f366004611e2c565b610b19565b3480156103b057600080fd5b50610321600e5481565b3480156103c657600080fd5b506103216103d5366004611fcd565b610b34565b3480156103e657600080fd5b506102a26103f5366004611f84565b610bc7565b34801561040657600080fd5b506102a2610415366004611fe6565b610c43565b34801561042657600080fd5b5061026a610435366004611fcd565b610cb8565b6102a2610448366004611fe6565b610d2f565b34801561045957600080fd5b50610321610468366004611dde565b610f01565b34801561047957600080fd5b506102fe600a81565b34801561048e57600080fd5b506102a2610f88565b3480156104a357600080fd5b506000546001600160a01b031661026a565b3480156104c157600080fd5b5061023d610ffc565b3480156104d657600080fd5b506102a26104e5366004611ee4565b61100b565b3480156104f657600080fd5b506102a2610505366004611e68565b6110d0565b34801561051657600080fd5b5061023d610525366004611fcd565b611108565b34801561053657600080fd5b5061032166470de4df82000081565b34801561055157600080fd5b506102a26111e3565b34801561056657600080fd5b506102fe603281565b34801561057b57600080fd5b5061021361058a366004611df9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105c457600080fd5b50600d546102139060ff1681565b3480156105de57600080fd5b506102a26105ed366004611dde565b611221565b3480156105fe57600080fd5b50610321600f5481565b60006001600160e01b0319821663780e9d6360e01b148061062d575061062d8261130b565b92915050565b6060600180546106429061221a565b80601f016020809104026020016040519081016040528092919081815260200182805461066e9061221a565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061076a82610cb8565b9050806001600160a01b0316836001600160a01b031614156107d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073a565b336001600160a01b03821614806107f457506107f4813361058a565b6108665760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073a565b610870838361135b565b505050565b6000546001600160a01b0316331461089f5760405162461bcd60e51b815260040161073a90612106565b6010546032906108b69060ff9081169084166113c9565b11156108f25760405162461bcd60e51b815260206004820152600b60248201526a1bdddb995c881b1a5b5a5d60aa1b604482015260640161073a565b600e5461090b8260ff1661090560095490565b906113c9565b111561094a5760405162461bcd60e51b815260206004820152600e60248201526d6578636565647320737570706c7960901b604482015260640161073a565b6000805b8260ff168160ff1610156108705761096a600161090560095490565b915061097633836113d5565b8061098081612270565b91505061094e565b6000546001600160a01b031633146109b25760405162461bcd60e51b815260040161073a90612106565b600e548111156109f45760405162461bcd60e51b815260206004820152600d60248201526c195e18d959591cc81b1a5b5a5d609a1b604482015260640161073a565b600f55565b610a0333826113ef565b610a1f5760405162461bcd60e51b815260040161073a9061213b565b6108708383836114e6565b6000546001600160a01b03163314610a545760405162461bcd60e51b815260040161073a90612106565b60405133904780156108fc02916000818181858888f19350505050158015610a80573d6000803e3d6000fd5b50565b6000610a8e83610f01565b8210610af05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073a565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610870838383604051806020016040528060008152506110d0565b6000610b3f60095490565b8210610ba25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073a565b60098281548110610bb557610bb56122e6565b90600052602060002001549050919050565b6000546001600160a01b03163314610bf15760405162461bcd60e51b815260040161073a90612106565b6000600e5411610c2c5760405162461bcd60e51b8152602060048201526006602482015265333937bd32b760d11b604482015260640161073a565b8051610c3f90600c906020840190611cb3565b5050565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b815260040161073a90612106565b8060ff16607314610cab5760405162461bcd60e51b815260206004820152600860248201526762616420636f646560c01b604482015260640161073a565b506000600e819055600f55565b6000818152600360205260408120546001600160a01b03168061062d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073a565b6002600b541415610d825760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161073a565b6002600b55600d5460ff16610dc75760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b604482015260640161073a565b600a60ff82161115610e145760405162461bcd60e51b8152602060048201526016602482015275195e18d959591cc81c1d5c98da185cd9481b1a5b5a5d60521b604482015260640161073a565b600f54610e278260ff1661090560095490565b1115610e665760405162461bcd60e51b815260206004820152600e60248201526d6578636565647320737570706c7960901b604482015260640161073a565b34610e7b66470de4df82000060ff8416611691565b1115610eb95760405162461bcd60e51b815260206004820152600d60248201526c0e6cadcc840dadee4ca408aa89609b1b604482015260640161073a565b6000805b8260ff168160ff161015610ef757610ed9600161090560095490565b9150610ee533836113d5565b80610eef81612270565b915050610ebd565b50506001600b5550565b60006001600160a01b038216610f6c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073a565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610fb25760405162461bcd60e51b815260040161073a90612106565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600280546106429061221a565b6001600160a01b0382163314156110645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073a565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110da33836113ef565b6110f65760405162461bcd60e51b815260040161073a9061213b565b6111028484848461169d565b50505050565b6000818152600360205260409020546060906001600160a01b03166111875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073a565b60006111916116d0565b905060008151116111b157604051806020016040528060008152506111dc565b806111bb846116df565b6040516020016111cc929190612035565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461120d5760405162461bcd60e51b815260040161073a90612106565b600d805460ff19811660ff90911615179055565b6000546001600160a01b0316331461124b5760405162461bcd60e51b815260040161073a90612106565b6001600160a01b0381166112b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073a565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061133c57506001600160e01b03198216635b5e139f60e01b145b8061062d57506301ffc9a760e01b6001600160e01b031983161461062d565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061139082610cb8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111dc828461218c565b610c3f8282604051806020016040528060008152506117dd565b6000818152600360205260408120546001600160a01b03166114685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b600061147383610cb8565b9050806001600160a01b0316846001600160a01b031614806114ae5750836001600160a01b03166114a3846106c5565b6001600160a01b0316145b806114de57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114f982610cb8565b6001600160a01b0316146115615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073a565b6001600160a01b0382166115c35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073a565b6115ce838383611810565b6115d960008261135b565b6001600160a01b03831660009081526004602052604081208054600192906116029084906121d7565b90915550506001600160a01b038216600090815260046020526040812080546001929061163090849061218c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006111dc82846121b8565b6116a88484846114e6565b6116b4848484846118c8565b6111025760405162461bcd60e51b815260040161073a906120b4565b6060600c80546106429061221a565b6060816117035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561172d578061171781612255565b91506117269050600a836121a4565b9150611707565b60008167ffffffffffffffff811115611748576117486122fc565b6040519080825280601f01601f191660200182016040528015611772576020820181803683370190505b5090505b84156114de576117876001836121d7565b9150611794600a86612290565b61179f90603061218c565b60f81b8183815181106117b4576117b46122e6565b60200101906001600160f81b031916908160001a9053506117d6600a866121a4565b9450611776565b6117e783836119d5565b6117f460008484846118c8565b6108705760405162461bcd60e51b815260040161073a906120b4565b6001600160a01b03831661186b5761186681600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61188e565b816001600160a01b0316836001600160a01b03161461188e5761188e8382611b23565b6001600160a01b0382166118a55761087081611bc0565b826001600160a01b0316826001600160a01b031614610870576108708282611c6f565b60006001600160a01b0384163b156119ca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190c903390899088908890600401612064565b602060405180830381600087803b15801561192657600080fd5b505af1925050508015611956575060408051601f3d908101601f1916820190925261195391810190611f67565b60015b6119b0573d808015611984576040519150601f19603f3d011682016040523d82523d6000602084013e611989565b606091505b5080516119a85760405162461bcd60e51b815260040161073a906120b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114de565b506001949350505050565b6001600160a01b038216611a2b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073a565b6000818152600360205260409020546001600160a01b031615611a905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073a565b611a9c60008383611810565b6001600160a01b0382166000908152600460205260408120805460019290611ac590849061218c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611b3084610f01565b611b3a91906121d7565b600083815260086020526040902054909150808214611b8d576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611bd2906001906121d7565b6000838152600a602052604081205460098054939450909284908110611bfa57611bfa6122e6565b906000526020600020015490508060098381548110611c1b57611c1b6122e6565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611c5357611c536122d0565b6001900381819060005260206000200160009055905550505050565b6000611c7a83610f01565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611cbf9061221a565b90600052602060002090601f016020900481019282611ce15760008555611d27565b82601f10611cfa57805160ff1916838001178555611d27565b82800160010185558215611d27579182015b82811115611d27578251825591602001919060010190611d0c565b50611d33929150611d37565b5090565b5b80821115611d335760008155600101611d38565b600067ffffffffffffffff80841115611d6757611d676122fc565b604051601f8501601f19908116603f01168101908282118183101715611d8f57611d8f6122fc565b81604052809350858152868686011115611da857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dd957600080fd5b919050565b600060208284031215611df057600080fd5b6111dc82611dc2565b60008060408385031215611e0c57600080fd5b611e1583611dc2565b9150611e2360208401611dc2565b90509250929050565b600080600060608486031215611e4157600080fd5b611e4a84611dc2565b9250611e5860208501611dc2565b9150604084013590509250925092565b60008060008060808587031215611e7e57600080fd5b611e8785611dc2565b9350611e9560208601611dc2565b925060408501359150606085013567ffffffffffffffff811115611eb857600080fd5b8501601f81018713611ec957600080fd5b611ed887823560208401611d4c565b91505092959194509250565b60008060408385031215611ef757600080fd5b611f0083611dc2565b915060208301358015158114611f1557600080fd5b809150509250929050565b60008060408385031215611f3357600080fd5b611f3c83611dc2565b946020939093013593505050565b600060208284031215611f5c57600080fd5b81356111dc81612312565b600060208284031215611f7957600080fd5b81516111dc81612312565b600060208284031215611f9657600080fd5b813567ffffffffffffffff811115611fad57600080fd5b8201601f81018413611fbe57600080fd5b6114de84823560208401611d4c565b600060208284031215611fdf57600080fd5b5035919050565b600060208284031215611ff857600080fd5b813560ff811681146111dc57600080fd5b600081518084526120218160208601602086016121ee565b601f01601f19169290920160200192915050565b600083516120478184602088016121ee565b83519083019061205b8183602088016121ee565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209790830184612009565b9695505050505050565b6020815260006111dc6020830184612009565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561219f5761219f6122a4565b500190565b6000826121b3576121b36122ba565b500490565b60008160001904831182151516156121d2576121d26122a4565b500290565b6000828210156121e9576121e96122a4565b500390565b60005b838110156122095781810151838201526020016121f1565b838111156111025750506000910152565b600181811c9082168061222e57607f821691505b6020821081141561224f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612269576122696122a4565b5060010190565b600060ff821660ff811415612287576122876122a4565b60010192915050565b60008261229f5761229f6122ba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8057600080fdfea2646970667358221220f558befbc54ba19ac8fab6af03b6d223e3e619e91f419bc0ef3e2dd1587d037064736f6c6343000807003368747470733a2f2f7777772e6769726c73726964696e677468696e67732e696f2f6772745f6d657461646174612f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063b88d4fde116100a0578063e0cafe681161006f578063e0cafe681461055a578063e985e9c51461056f578063eb8d2444146105b8578063f2fde38b146105d2578063f8972c8a146105f257600080fd5b8063b88d4fde146104ea578063c87b56dd1461050a578063d2d8cb671461052a578063daaeec861461054557600080fd5b8063715018a6116100dc578063715018a6146104825780638da5cb5b1461049757806395d89b41146104b5578063a22cb465146104ca57600080fd5b80636352211e1461041a5780636ecd23061461043a57806370a082311461044d5780637146bd081461046d57600080fd5b806323b872dd1161018557806345fdd7311161015457806345fdd731146103a45780634f6ccce7146103ba57806355f804b3146103da5780635ba297fc146103fa57600080fd5b806323b872dd1461032f57806324600fc31461034f5780632f745c591461036457806342842e0e1461038457600080fd5b806310801f14116101c157806310801f14146102a457806311e776fe146102c4578063137edaa0146102e457806318160ddd1461031057600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611f4a565b610608565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610633565b60405161021f91906120a1565b34801561025657600080fd5b5061026a610265366004611fcd565b6106c5565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611f20565b61075f565b005b3480156102b057600080fd5b506102a26102bf366004611fe6565b610875565b3480156102d057600080fd5b506102a26102df366004611fcd565b610988565b3480156102f057600080fd5b506010546102fe9060ff1681565b60405160ff909116815260200161021f565b34801561031c57600080fd5b506009545b60405190815260200161021f565b34801561033b57600080fd5b506102a261034a366004611e2c565b6109f9565b34801561035b57600080fd5b506102a2610a2a565b34801561037057600080fd5b5061032161037f366004611f20565b610a83565b34801561039057600080fd5b506102a261039f366004611e2c565b610b19565b3480156103b057600080fd5b50610321600e5481565b3480156103c657600080fd5b506103216103d5366004611fcd565b610b34565b3480156103e657600080fd5b506102a26103f5366004611f84565b610bc7565b34801561040657600080fd5b506102a2610415366004611fe6565b610c43565b34801561042657600080fd5b5061026a610435366004611fcd565b610cb8565b6102a2610448366004611fe6565b610d2f565b34801561045957600080fd5b50610321610468366004611dde565b610f01565b34801561047957600080fd5b506102fe600a81565b34801561048e57600080fd5b506102a2610f88565b3480156104a357600080fd5b506000546001600160a01b031661026a565b3480156104c157600080fd5b5061023d610ffc565b3480156104d657600080fd5b506102a26104e5366004611ee4565b61100b565b3480156104f657600080fd5b506102a2610505366004611e68565b6110d0565b34801561051657600080fd5b5061023d610525366004611fcd565b611108565b34801561053657600080fd5b5061032166470de4df82000081565b34801561055157600080fd5b506102a26111e3565b34801561056657600080fd5b506102fe603281565b34801561057b57600080fd5b5061021361058a366004611df9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105c457600080fd5b50600d546102139060ff1681565b3480156105de57600080fd5b506102a26105ed366004611dde565b611221565b3480156105fe57600080fd5b50610321600f5481565b60006001600160e01b0319821663780e9d6360e01b148061062d575061062d8261130b565b92915050565b6060600180546106429061221a565b80601f016020809104026020016040519081016040528092919081815260200182805461066e9061221a565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061076a82610cb8565b9050806001600160a01b0316836001600160a01b031614156107d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073a565b336001600160a01b03821614806107f457506107f4813361058a565b6108665760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073a565b610870838361135b565b505050565b6000546001600160a01b0316331461089f5760405162461bcd60e51b815260040161073a90612106565b6010546032906108b69060ff9081169084166113c9565b11156108f25760405162461bcd60e51b815260206004820152600b60248201526a1bdddb995c881b1a5b5a5d60aa1b604482015260640161073a565b600e5461090b8260ff1661090560095490565b906113c9565b111561094a5760405162461bcd60e51b815260206004820152600e60248201526d6578636565647320737570706c7960901b604482015260640161073a565b6000805b8260ff168160ff1610156108705761096a600161090560095490565b915061097633836113d5565b8061098081612270565b91505061094e565b6000546001600160a01b031633146109b25760405162461bcd60e51b815260040161073a90612106565b600e548111156109f45760405162461bcd60e51b815260206004820152600d60248201526c195e18d959591cc81b1a5b5a5d609a1b604482015260640161073a565b600f55565b610a0333826113ef565b610a1f5760405162461bcd60e51b815260040161073a9061213b565b6108708383836114e6565b6000546001600160a01b03163314610a545760405162461bcd60e51b815260040161073a90612106565b60405133904780156108fc02916000818181858888f19350505050158015610a80573d6000803e3d6000fd5b50565b6000610a8e83610f01565b8210610af05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073a565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610870838383604051806020016040528060008152506110d0565b6000610b3f60095490565b8210610ba25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073a565b60098281548110610bb557610bb56122e6565b90600052602060002001549050919050565b6000546001600160a01b03163314610bf15760405162461bcd60e51b815260040161073a90612106565b6000600e5411610c2c5760405162461bcd60e51b8152602060048201526006602482015265333937bd32b760d11b604482015260640161073a565b8051610c3f90600c906020840190611cb3565b5050565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b815260040161073a90612106565b8060ff16607314610cab5760405162461bcd60e51b815260206004820152600860248201526762616420636f646560c01b604482015260640161073a565b506000600e819055600f55565b6000818152600360205260408120546001600160a01b03168061062d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073a565b6002600b541415610d825760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161073a565b6002600b55600d5460ff16610dc75760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b604482015260640161073a565b600a60ff82161115610e145760405162461bcd60e51b8152602060048201526016602482015275195e18d959591cc81c1d5c98da185cd9481b1a5b5a5d60521b604482015260640161073a565b600f54610e278260ff1661090560095490565b1115610e665760405162461bcd60e51b815260206004820152600e60248201526d6578636565647320737570706c7960901b604482015260640161073a565b34610e7b66470de4df82000060ff8416611691565b1115610eb95760405162461bcd60e51b815260206004820152600d60248201526c0e6cadcc840dadee4ca408aa89609b1b604482015260640161073a565b6000805b8260ff168160ff161015610ef757610ed9600161090560095490565b9150610ee533836113d5565b80610eef81612270565b915050610ebd565b50506001600b5550565b60006001600160a01b038216610f6c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073a565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610fb25760405162461bcd60e51b815260040161073a90612106565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600280546106429061221a565b6001600160a01b0382163314156110645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073a565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110da33836113ef565b6110f65760405162461bcd60e51b815260040161073a9061213b565b6111028484848461169d565b50505050565b6000818152600360205260409020546060906001600160a01b03166111875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073a565b60006111916116d0565b905060008151116111b157604051806020016040528060008152506111dc565b806111bb846116df565b6040516020016111cc929190612035565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461120d5760405162461bcd60e51b815260040161073a90612106565b600d805460ff19811660ff90911615179055565b6000546001600160a01b0316331461124b5760405162461bcd60e51b815260040161073a90612106565b6001600160a01b0381166112b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073a565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061133c57506001600160e01b03198216635b5e139f60e01b145b8061062d57506301ffc9a760e01b6001600160e01b031983161461062d565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061139082610cb8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111dc828461218c565b610c3f8282604051806020016040528060008152506117dd565b6000818152600360205260408120546001600160a01b03166114685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b600061147383610cb8565b9050806001600160a01b0316846001600160a01b031614806114ae5750836001600160a01b03166114a3846106c5565b6001600160a01b0316145b806114de57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114f982610cb8565b6001600160a01b0316146115615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073a565b6001600160a01b0382166115c35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073a565b6115ce838383611810565b6115d960008261135b565b6001600160a01b03831660009081526004602052604081208054600192906116029084906121d7565b90915550506001600160a01b038216600090815260046020526040812080546001929061163090849061218c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006111dc82846121b8565b6116a88484846114e6565b6116b4848484846118c8565b6111025760405162461bcd60e51b815260040161073a906120b4565b6060600c80546106429061221a565b6060816117035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561172d578061171781612255565b91506117269050600a836121a4565b9150611707565b60008167ffffffffffffffff811115611748576117486122fc565b6040519080825280601f01601f191660200182016040528015611772576020820181803683370190505b5090505b84156114de576117876001836121d7565b9150611794600a86612290565b61179f90603061218c565b60f81b8183815181106117b4576117b46122e6565b60200101906001600160f81b031916908160001a9053506117d6600a866121a4565b9450611776565b6117e783836119d5565b6117f460008484846118c8565b6108705760405162461bcd60e51b815260040161073a906120b4565b6001600160a01b03831661186b5761186681600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61188e565b816001600160a01b0316836001600160a01b03161461188e5761188e8382611b23565b6001600160a01b0382166118a55761087081611bc0565b826001600160a01b0316826001600160a01b031614610870576108708282611c6f565b60006001600160a01b0384163b156119ca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190c903390899088908890600401612064565b602060405180830381600087803b15801561192657600080fd5b505af1925050508015611956575060408051601f3d908101601f1916820190925261195391810190611f67565b60015b6119b0573d808015611984576040519150601f19603f3d011682016040523d82523d6000602084013e611989565b606091505b5080516119a85760405162461bcd60e51b815260040161073a906120b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114de565b506001949350505050565b6001600160a01b038216611a2b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073a565b6000818152600360205260409020546001600160a01b031615611a905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073a565b611a9c60008383611810565b6001600160a01b0382166000908152600460205260408120805460019290611ac590849061218c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611b3084610f01565b611b3a91906121d7565b600083815260086020526040902054909150808214611b8d576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611bd2906001906121d7565b6000838152600a602052604081205460098054939450909284908110611bfa57611bfa6122e6565b906000526020600020015490508060098381548110611c1b57611c1b6122e6565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611c5357611c536122d0565b6001900381819060005260206000200160009055905550505050565b6000611c7a83610f01565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611cbf9061221a565b90600052602060002090601f016020900481019282611ce15760008555611d27565b82601f10611cfa57805160ff1916838001178555611d27565b82800160010185558215611d27579182015b82811115611d27578251825591602001919060010190611d0c565b50611d33929150611d37565b5090565b5b80821115611d335760008155600101611d38565b600067ffffffffffffffff80841115611d6757611d676122fc565b604051601f8501601f19908116603f01168101908282118183101715611d8f57611d8f6122fc565b81604052809350858152868686011115611da857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dd957600080fd5b919050565b600060208284031215611df057600080fd5b6111dc82611dc2565b60008060408385031215611e0c57600080fd5b611e1583611dc2565b9150611e2360208401611dc2565b90509250929050565b600080600060608486031215611e4157600080fd5b611e4a84611dc2565b9250611e5860208501611dc2565b9150604084013590509250925092565b60008060008060808587031215611e7e57600080fd5b611e8785611dc2565b9350611e9560208601611dc2565b925060408501359150606085013567ffffffffffffffff811115611eb857600080fd5b8501601f81018713611ec957600080fd5b611ed887823560208401611d4c565b91505092959194509250565b60008060408385031215611ef757600080fd5b611f0083611dc2565b915060208301358015158114611f1557600080fd5b809150509250929050565b60008060408385031215611f3357600080fd5b611f3c83611dc2565b946020939093013593505050565b600060208284031215611f5c57600080fd5b81356111dc81612312565b600060208284031215611f7957600080fd5b81516111dc81612312565b600060208284031215611f9657600080fd5b813567ffffffffffffffff811115611fad57600080fd5b8201601f81018413611fbe57600080fd5b6114de84823560208401611d4c565b600060208284031215611fdf57600080fd5b5035919050565b600060208284031215611ff857600080fd5b813560ff811681146111dc57600080fd5b600081518084526120218160208601602086016121ee565b601f01601f19169290920160200192915050565b600083516120478184602088016121ee565b83519083019061205b8183602088016121ee565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209790830184612009565b9695505050505050565b6020815260006111dc6020830184612009565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561219f5761219f6122a4565b500190565b6000826121b3576121b36122ba565b500490565b60008160001904831182151516156121d2576121d26122a4565b500290565b6000828210156121e9576121e96122a4565b500390565b60005b838110156122095781810151838201526020016121f1565b838111156111025750506000910152565b600181811c9082168061222e57607f821691505b6020821081141561224f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612269576122696122a4565b5060010190565b600060ff821660ff811415612287576122876122a4565b60010192915050565b60008261229f5761229f6122ba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8057600080fdfea2646970667358221220f558befbc54ba19ac8fab6af03b6d223e3e619e91f419bc0ef3e2dd1587d037064736f6c63430008070033
Deployed Bytecode Sourcemap
172:2427:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:234:4;;;;;;;;;;-1:-1:-1;909:234:4;;;;;:::i;:::-;;:::i;:::-;;;5920:14:15;;5913:22;5895:41;;5883:2;5868:18;909:234:4;;;;;;;;2377:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3796:217::-;;;;;;;;;;-1:-1:-1;3796:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5218:32:15;;;5200:51;;5188:2;5173:18;3796:217:3;5054:203:15;3340:395:3;;;;;;;;;;-1:-1:-1;3340:395:3;;;;;:::i;:::-;;:::i;:::-;;1488:415:5;;;;;;;;;;-1:-1:-1;1488:415:5;;;;;:::i;:::-;;:::i;1909:166::-;;;;;;;;;;-1:-1:-1;1909:166:5;;;;;:::i;:::-;;:::i;660:27::-;;;;;;;;;;-1:-1:-1;660:27:5;;;;;;;;;;;16820:4:15;16808:17;;;16790:36;;16778:2;16763:18;660:27:5;16648:184:15;1546:111:4;;;;;;;;;;-1:-1:-1;1633:10:4;:17;1546:111;;;16612:25:15;;;16600:2;16585:18;1546:111:4;16466:177:15;4660:300:3;;;;;;;;;;-1:-1:-1;4660:300:3;;;;;:::i;:::-;;:::i;1372:110:5:-;;;;;;;;;;;;;:::i;1222:253:4:-;;;;;;;;;;-1:-1:-1;1222:253:4;;;;;:::i;:::-;;:::i;5026:149:3:-;;;;;;;;;;-1:-1:-1;5026:149:3;;;;;:::i;:::-;;:::i;528:36:5:-;;;;;;;;;;;;;;;;1729:230:4;;;;;;;;;;-1:-1:-1;1729:230:4;;;;;:::i;:::-;;:::i;2176:145:5:-;;;;;;;;;;-1:-1:-1;2176:145:5;;;;;:::i;:::-;;:::i;2327:160::-;;;;;;;;;;-1:-1:-1;2327:160:5;;;;;:::i;:::-;;:::i;2080:235:3:-;;;;;;;;;;-1:-1:-1;2080:235:3;;;;;:::i;:::-;;:::i;832:534:5:-;;;;;;:::i;:::-;;:::i;1818:205:3:-;;;;;;;;;;-1:-1:-1;1818:205:3;;;;;:::i;:::-;;:::i;452:39:5:-;;;;;;;;;;;;489:2;452:39;;1693:145:11;;;;;;;;;;;;;:::i;1061:85::-;;;;;;;;;;-1:-1:-1;1107:7:11;1133:6;-1:-1:-1;;;;;1133:6:11;1061:85;;2539:102:3;;;;;;;;;;;;;:::i;4080:290::-;;;;;;;;;;-1:-1:-1;4080:290:3;;;;;:::i;:::-;;:::i;5241:282::-;;;;;;;;;;-1:-1:-1;5241:282:3;;;;;:::i;:::-;;:::i;2707:353::-;;;;;;;;;;-1:-1:-1;2707:353:3;;;;;:::i;:::-;;:::i;398:48:5:-;;;;;;;;;;;;436:10;398:48;;2081:89;;;;;;;;;;;;;:::i;349:43::-;;;;;;;;;;;;390:2;349:43;;4436:162:3;;;;;;;;;;-1:-1:-1;4436:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4556:25:3;;;4533:4;4556:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4436:162;498:24:5;;;;;;;;;;-1:-1:-1;498:24:5;;;;;;;;1987:240:11;;;;;;;;;;-1:-1:-1;1987:240:11;;;;;:::i;:::-;;:::i;617:37:5:-;;;;;;;;;;;;;;;;909:234:4;1011:4;-1:-1:-1;;;;;;1034:50:4;;-1:-1:-1;;;1034:50:4;;:102;;;1100:36;1124:11;1100:23;:36::i;:::-;1027:109;909:234;-1:-1:-1;;909:234:4:o;2377:98:3:-;2431:13;2463:5;2456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2377:98;:::o;3796:217::-;3872:7;7045:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7045:16:3;3891:73;;;;-1:-1:-1;;;3891:73:3;;11429:2:15;3891:73:3;;;11411:21:15;11468:2;11448:18;;;11441:30;11507:34;11487:18;;;11480:62;-1:-1:-1;;;11558:18:15;;;11551:42;11610:19;;3891:73:3;;;;;;;;;-1:-1:-1;3982:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;3982:24:3;;3796:217::o;3340:395::-;3420:13;3436:23;3451:7;3436:14;:23::i;:::-;3420:39;;3483:5;-1:-1:-1;;;;;3477:11:3;:2;-1:-1:-1;;;;;3477:11:3;;;3469:57;;;;-1:-1:-1;;;3469:57:3;;13716:2:15;3469:57:3;;;13698:21:15;13755:2;13735:18;;;13728:30;13794:34;13774:18;;;13767:62;-1:-1:-1;;;13845:18:15;;;13838:31;13886:19;;3469:57:3;13514:397:15;3469:57:3;665:10:1;-1:-1:-1;;;;;3545:21:3;;;;:69;;-1:-1:-1;3570:44:3;3594:5;665:10:1;4436:162:3;:::i;3570:44::-;3537:159;;;;-1:-1:-1;;;3537:159:3;;9480:2:15;3537:159:3;;;9462:21:15;9519:2;9499:18;;;9492:30;9558:34;9538:18;;;9531:62;9629:26;9609:18;;;9602:54;9673:19;;3537:159:3;9278:420:15;3537:159:3;3707:21;3716:2;3720:7;3707:8;:21::i;:::-;3410:325;3340:395;;:::o;1488:415:5:-;1107:7:11;1133:6;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;;;;;;:::i;:::-;1566:14:5::1;::::0;390:2:::1;::::0;1566:34:::1;::::0;:54:::1;:14:::0;;::::1;::::0;:34;::::1;:18;:34::i;:::-;:54;;1558:78;;;::::0;-1:-1:-1;;;1558:78:5;;15968:2:15;1558:78:5::1;::::0;::::1;15950:21:15::0;16007:2;15987:18;;;15980:30;-1:-1:-1;;;16026:18:15;;;16019:41;16077:18;;1558:78:5::1;15766:335:15::0;1558:78:5::1;1691:14;;1654:33;1672:14;1654:33;;:13;1633:10:4::0;:17;;1546:111;1654:13:5::1;:17:::0;::::1;:33::i;:::-;:51;;1646:78;;;::::0;-1:-1:-1;;;1646:78:5;;14460:2:15;1646:78:5::1;::::0;::::1;14442:21:15::0;14499:2;14479:18;;;14472:30;-1:-1:-1;;;14518:18:15;;;14511:44;14572:18;;1646:78:5::1;14258:338:15::0;1646:78:5::1;1735:15;1764:7:::0;1760:137:::1;1777:14;1773:18;;:1;:18;;;1760:137;;;1822:20;1840:1;1822:13;1633:10:4::0;:17;;1546:111;1822:20:5::1;1812:30;;1856;1866:10;1878:7;1856:9;:30::i;:::-;1793:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1760:137;;1909:166:::0;1107:7:11;1133:6;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;;;;;;:::i;:::-;1998:14:5::1;;1985:9;:27;;1977:53;;;::::0;-1:-1:-1;;;1977:53:5;;14118:2:15;1977:53:5::1;::::0;::::1;14100:21:15::0;14157:2;14137:18;;;14130:30;-1:-1:-1;;;14176:18:15;;;14169:43;14229:18;;1977:53:5::1;13916:337:15::0;1977:53:5::1;2040:16;:28:::0;1909:166::o;4660:300:3:-;4819:41;665:10:1;4852:7:3;4819:18;:41::i;:::-;4811:103;;;;-1:-1:-1;;;4811:103:3;;;;;;;:::i;:::-;4925:28;4935:4;4941:2;4945:7;4925:9;:28::i;1372:110:5:-;1107:7:11;1133:6;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;;;;;;:::i;:::-;1424:51:5::1;::::0;1432:10:::1;::::0;1453:21:::1;1424:51:::0;::::1;;;::::0;::::1;::::0;;;1453:21;1432:10;1424:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1372:110::o:0;1222:253:4:-;1319:7;1354:23;1371:5;1354:16;:23::i;:::-;1346:5;:31;1338:87;;;;-1:-1:-1;;;1338:87:4;;6373:2:15;1338:87:4;;;6355:21:15;6412:2;6392:18;;;6385:30;6451:34;6431:18;;;6424:62;-1:-1:-1;;;6502:18:15;;;6495:41;6553:19;;1338:87:4;6171:407:15;1338:87:4;-1:-1:-1;;;;;;1442:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1222:253::o;5026:149:3:-;5129:39;5146:4;5152:2;5156:7;5129:39;;;;;;;;;;;;:16;:39::i;1729:230:4:-;1804:7;1839:30;1633:10;:17;;1546:111;1839:30;1831:5;:38;1823:95;;;;-1:-1:-1;;;1823:95:4;;15555:2:15;1823:95:4;;;15537:21:15;15594:2;15574:18;;;15567:30;15633:34;15613:18;;;15606:62;-1:-1:-1;;;15684:18:15;;;15677:42;15736:19;;1823:95:4;15353:408:15;1823:95:4;1935:10;1946:5;1935:17;;;;;;;;:::i;:::-;;;;;;;;;1928:24;;1729:230;;;:::o;2176:145:5:-;1107:7:11;1133:6;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;;;;;;:::i;:::-;2270:1:5::1;2253:14;;:18;2245:37;;;::::0;-1:-1:-1;;;2245:37:5;;15221:2:15;2245:37:5::1;::::0;::::1;15203:21:15::0;15260:1;15240:18;;;15233:29;-1:-1:-1;;;15278:18:15;;;15271:36;15324:18;;2245:37:5::1;15019:329:15::0;2245:37:5::1;2292:22:::0;;::::1;::::0;:13:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2176:145:::0;:::o;2327:160::-;1107:7:11;1133:6;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;;;;;;:::i;:::-;2394:8:5::1;:15;;2406:3;2394:15;2386:36;;;::::0;-1:-1:-1;;;2386:36:5;;13380:2:15;2386:36:5::1;::::0;::::1;13362:21:15::0;13419:1;13399:18;;;13392:29;-1:-1:-1;;;13437:18:15;;;13430:38;13485:18;;2386:36:5::1;13178:331:15::0;2386:36:5::1;-1:-1:-1::0;2449:1:5::1;2432:14;:18:::0;;;2460:16:::1;:20:::0;2327:160::o;2080:235:3:-;2152:7;2187:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2187:16:3;2221:19;2213:73;;;;-1:-1:-1;;;2213:73:3;;10316:2:15;2213:73:3;;;10298:21:15;10355:2;10335:18;;;10328:30;10394:34;10374:18;;;10367:62;-1:-1:-1;;;10445:18:15;;;10438:39;10494:19;;2213:73:3;10114:405:15;832:534:5;1680:1:12;2260:7;;:19;;2252:63;;;;-1:-1:-1;;;2252:63:12;;16308:2:15;2252:63:12;;;16290:21:15;16347:2;16327:18;;;16320:30;16386:33;16366:18;;;16359:61;16437:18;;2252:63:12;16106:355:15;2252:63:12;1680:1;2390:7;:18;914:12:5::1;::::0;::::1;;906:36;;;::::0;-1:-1:-1;;;906:36:5;;9140:2:15;906:36:5::1;::::0;::::1;9122:21:15::0;9179:2;9159:18;;;9152:30;-1:-1:-1;;;9198:18:15;;;9191:41;9249:18;;906:36:5::1;8938:335:15::0;906:36:5::1;489:2;960:30;::::0;::::1;;;952:65;;;::::0;-1:-1:-1;;;952:65:5;;12203:2:15;952:65:5::1;::::0;::::1;12185:21:15::0;12242:2;12222:18;;;12215:30;-1:-1:-1;;;12261:18:15;;;12254:52;12323:18;;952:65:5::1;12001:346:15::0;952:65:5::1;1072:16;;1035:33;1053:14;1035:33;;:13;1633:10:4::0;:17;;1546:111;1035:33:5::1;:53;;1027:80;;;::::0;-1:-1:-1;;;1027:80:5;;14460:2:15;1027:80:5::1;::::0;::::1;14442:21:15::0;14499:2;14479:18;;;14472:30;-1:-1:-1;;;14518:18:15;;;14511:44;14572:18;;1027:80:5::1;14258:338:15::0;1027:80:5::1;1160:9;1125:31;436:10;1125:31;::::0;::::1;:15;:31::i;:::-;:44;;1117:70;;;::::0;-1:-1:-1;;;1117:70:5;;11087:2:15;1117:70:5::1;::::0;::::1;11069:21:15::0;11126:2;11106:18;;;11099:30;-1:-1:-1;;;11145:18:15;;;11138:43;11198:18;;1117:70:5::1;10885:337:15::0;1117:70:5::1;1198:15;1227:7:::0;1223:137:::1;1240:14;1236:18;;:1;:18;;;1223:137;;;1285:20;1303:1;1285:13;1633:10:4::0;:17;;1546:111;1285:20:5::1;1275:30;;1319;1329:10;1341:7;1319:9;:30::i;:::-;1256:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1223:137;;;-1:-1:-1::0;;1637:1:12;2563:7;:22;-1:-1:-1;832:534:5:o;1818:205:3:-;1890:7;-1:-1:-1;;;;;1917:19:3;;1909:74;;;;-1:-1:-1;;;1909:74:3;;9905:2:15;1909:74:3;;;9887:21:15;9944:2;9924:18;;;9917:30;9983:34;9963:18;;;9956:62;-1:-1:-1;;;10034:18:15;;;10027:40;10084:19;;1909:74:3;9703:406:15;1909:74:3;-1:-1:-1;;;;;;2000:16:3;;;;;:9;:16;;;;;;;1818:205::o;1693:145:11:-;1107:7;1133:6;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;;;;;;:::i;:::-;1799:1:::1;1783:6:::0;;1762:40:::1;::::0;-1:-1:-1;;;;;1783:6:11;;::::1;::::0;1762:40:::1;::::0;1799:1;;1762:40:::1;1829:1;1812:19:::0;;-1:-1:-1;;;;;;1812:19:11::1;::::0;;1693:145::o;2539:102:3:-;2595:13;2627:7;2620:14;;;;;:::i;4080:290::-;-1:-1:-1;;;;;4182:24:3;;665:10:1;4182:24:3;;4174:62;;;;-1:-1:-1;;;4174:62:3;;8373:2:15;4174:62:3;;;8355:21:15;8412:2;8392:18;;;8385:30;8451:27;8431:18;;;8424:55;8496:18;;4174:62:3;8171:349:15;4174:62:3;665:10:1;4247:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4247:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4247:53:3;;;;;;;;;;4315:48;;5895:41:15;;;4247:42:3;;665:10:1;4315:48:3;;5868:18:15;4315:48:3;;;;;;;4080:290;;:::o;5241:282::-;5372:41;665:10:1;5405:7:3;5372:18;:41::i;:::-;5364:103;;;;-1:-1:-1;;;5364:103:3;;;;;;;:::i;:::-;5477:39;5491:4;5497:2;5501:7;5510:5;5477:13;:39::i;:::-;5241:282;;;;:::o;2707:353::-;7022:4;7045:16;;;:7;:16;;;;;;2780:13;;-1:-1:-1;;;;;7045:16:3;2805:76;;;;-1:-1:-1;;;2805:76:3;;12964:2:15;2805:76:3;;;12946:21:15;13003:2;12983:18;;;12976:30;13042:34;13022:18;;;13015:62;-1:-1:-1;;;13093:18:15;;;13086:45;13148:19;;2805:76:3;12762:411:15;2805:76:3;2892:21;2916:10;:8;:10::i;:::-;2892:34;;2967:1;2949:7;2943:21;:25;:110;;;;;;;;;;;;;;;;;3007:7;3016:18;:7;:16;:18::i;:::-;2990:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2943:110;2936:117;2707:353;-1:-1:-1;;;2707:353:3:o;2081:89:5:-;1107:7:11;1133:6;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;;;;;;:::i;:::-;2151:12:5::1;::::0;;-1:-1:-1;;2135:28:5;::::1;2151:12;::::0;;::::1;2150:13;2135:28;::::0;;2081:89::o;1987:240:11:-;1107:7;1133:6;-1:-1:-1;;;;;1133:6:11;665:10:1;1273:23:11;1265:68;;;;-1:-1:-1;;;1265:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;2075:22:11;::::1;2067:73;;;::::0;-1:-1:-1;;;2067:73:11;;7204:2:15;2067:73:11::1;::::0;::::1;7186:21:15::0;7243:2;7223:18;;;7216:30;7282:34;7262:18;;;7255:62;-1:-1:-1;;;7333:18:15;;;7326:36;7379:19;;2067:73:11::1;7002:402:15::0;2067:73:11::1;2176:6;::::0;;2155:38:::1;::::0;-1:-1:-1;;;;;2155:38:11;;::::1;::::0;2176:6;::::1;::::0;2155:38:::1;::::0;::::1;2203:6;:17:::0;;-1:-1:-1;;;;;;2203:17:11::1;-1:-1:-1::0;;;;;2203:17:11;;;::::1;::::0;;;::::1;::::0;;1987:240::o;1471:288:3:-;1573:4;-1:-1:-1;;;;;;1596:40:3;;-1:-1:-1;;;1596:40:3;;:104;;-1:-1:-1;;;;;;;1652:48:3;;-1:-1:-1;;;1652:48:3;1596:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:2;;;1716:36:3;763:155:2;10721:171:3;10795:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10795:29:3;-1:-1:-1;;;;;10795:29:3;;;;;;;;:24;;10848:23;10795:24;10848:14;:23::i;:::-;-1:-1:-1;;;;;10839:46:3;;;;;;;;;;;10721:171;;:::o;2672:96:13:-;2730:7;2756:5;2760:1;2756;:5;:::i;7921:108:3:-;7996:26;8006:2;8010:7;7996:26;;;;;;;;;;;;:9;:26::i;7240:351::-;7333:4;7045:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7045:16:3;7349:73;;;;-1:-1:-1;;;7349:73:3;;8727:2:15;7349:73:3;;;8709:21:15;8766:2;8746:18;;;8739:30;8805:34;8785:18;;;8778:62;-1:-1:-1;;;8856:18:15;;;8849:42;8908:19;;7349:73:3;8525:408:15;7349:73:3;7432:13;7448:23;7463:7;7448:14;:23::i;:::-;7432:39;;7500:5;-1:-1:-1;;;;;7489:16:3;:7;-1:-1:-1;;;;;7489:16:3;;:51;;;;7533:7;-1:-1:-1;;;;;7509:31:3;:20;7521:7;7509:11;:20::i;:::-;-1:-1:-1;;;;;7509:31:3;;7489:51;:94;;;-1:-1:-1;;;;;;4556:25:3;;;4533:4;4556:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7544:39;7481:103;7240:351;-1:-1:-1;;;;7240:351:3:o;10080:530::-;10204:4;-1:-1:-1;;;;;10177:31:3;:23;10192:7;10177:14;:23::i;:::-;-1:-1:-1;;;;;10177:31:3;;10169:85;;;;-1:-1:-1;;;10169:85:3;;12554:2:15;10169:85:3;;;12536:21:15;12593:2;12573:18;;;12566:30;12632:34;12612:18;;;12605:62;-1:-1:-1;;;12683:18:15;;;12676:39;12732:19;;10169:85:3;12352:405:15;10169:85:3;-1:-1:-1;;;;;10272:16:3;;10264:65;;;;-1:-1:-1;;;10264:65:3;;7968:2:15;10264:65:3;;;7950:21:15;8007:2;7987:18;;;7980:30;8046:34;8026:18;;;8019:62;-1:-1:-1;;;8097:18:15;;;8090:34;8141:19;;10264:65:3;7766:400:15;10264:65:3;10340:39;10361:4;10367:2;10371:7;10340:20;:39::i;:::-;10441:29;10458:1;10462:7;10441:8;:29::i;:::-;-1:-1:-1;;;;;10481:15:3;;;;;;:9;:15;;;;;:20;;10500:1;;10481:15;:20;;10500:1;;10481:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10511:13:3;;;;;;:9;:13;;;;;:18;;10528:1;;10511:13;:18;;10528:1;;10511:18;:::i;:::-;;;;-1:-1:-1;;10539:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10539:21:3;-1:-1:-1;;;;;10539:21:3;;;;;;;;;10576:27;;10539:16;;10576:27;;;;;;;10080:530;;;:::o;3382:96:13:-;3440:7;3466:5;3470:1;3466;:5;:::i;6385:269:3:-;6498:28;6508:4;6514:2;6518:7;6498:9;:28::i;:::-;6544:48;6567:4;6573:2;6577:7;6586:5;6544:22;:48::i;:::-;6536:111;;;;-1:-1:-1;;;6536:111:3;;;;;;;:::i;2493:104:5:-;2545:13;2577;2570:20;;;;;:::i;271:703:14:-;327:13;544:10;540:51;;-1:-1:-1;;570:10:14;;;;;;;;;;;;-1:-1:-1;;;570:10:14;;;;;271:703::o;540:51::-;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:14;;-1:-1:-1;716:2:14;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:14;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:14;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;845:56:14;;;;;;;;-1:-1:-1;915:11:14;924:2;915:11;;:::i;:::-;;;787:150;;8250:247:3;8345:18;8351:2;8355:7;8345:5;:18::i;:::-;8381:54;8412:1;8416:2;8420:7;8429:5;8381:22;:54::i;:::-;8373:117;;;;-1:-1:-1;;;8373:117:3;;;;;;;:::i;2555:542:4:-;-1:-1:-1;;;;;2724:18:4;;2720:183;;2758:40;2790:7;3906:10;:17;;3879:24;;;;:15;:24;;;;;:44;;;3933:24;;;;;;;;;;;;3803:161;2758:40;2720:183;;;2827:2;-1:-1:-1;;;;;2819:10:4;:4;-1:-1:-1;;;;;2819:10:4;;2815:88;;2845:47;2878:4;2884:7;2845:32;:47::i;:::-;-1:-1:-1;;;;;2916:16:4;;2912:179;;2948:45;2985:7;2948:36;:45::i;2912:179::-;3020:4;-1:-1:-1;;;;;3014:10:4;:2;-1:-1:-1;;;;;3014:10:4;;3010:81;;3040:40;3068:2;3072:7;3040:27;:40::i;11445:824:3:-;11565:4;-1:-1:-1;;;;;11589:13:3;;1078:20:0;1116:8;11585:678:3;;11624:72;;-1:-1:-1;;;11624:72:3;;-1:-1:-1;;;;;11624:36:3;;;;;:72;;665:10:1;;11675:4:3;;11681:7;;11690:5;;11624:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11624:72:3;;;;;;;;-1:-1:-1;;11624:72:3;;;;;;;;;;;;:::i;:::-;;;11620:591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11867:13:3;;11863:334;;11909:60;;-1:-1:-1;;;11909:60:3;;;;;;;:::i;11863:334::-;12149:6;12143:13;12134:6;12130:2;12126:15;12119:38;11620:591;-1:-1:-1;;;;;;11746:55:3;-1:-1:-1;;;11746:55:3;;-1:-1:-1;11739:62:3;;11585:678;-1:-1:-1;12248:4:3;11445:824;;;;;;:::o;8819:372::-;-1:-1:-1;;;;;8898:16:3;;8890:61;;;;-1:-1:-1;;;8890:61:3;;10726:2:15;8890:61:3;;;10708:21:15;;;10745:18;;;10738:30;10804:34;10784:18;;;10777:62;10856:18;;8890:61:3;10524:356:15;8890:61:3;7022:4;7045:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7045:16:3;:30;8961:58;;;;-1:-1:-1;;;8961:58:3;;7611:2:15;8961:58:3;;;7593:21:15;7650:2;7630:18;;;7623:30;7689;7669:18;;;7662:58;7737:18;;8961:58:3;7409:352:15;8961:58:3;9030:45;9059:1;9063:2;9067:7;9030:20;:45::i;:::-;-1:-1:-1;;;;;9086:13:3;;;;;;:9;:13;;;;;:18;;9103:1;;9086:13;:18;;9103:1;;9086:18;:::i;:::-;;;;-1:-1:-1;;9114:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9114:21:3;-1:-1:-1;;;;;9114:21:3;;;;;;;;9151:33;;9114:16;;;9151:33;;9114:16;;9151:33;8819:372;;:::o;4581:970:4:-;4843:22;4893:1;4868:22;4885:4;4868:16;:22::i;:::-;:26;;;;:::i;:::-;4904:18;4925:26;;;:17;:26;;;;;;4843:51;;-1:-1:-1;5055:28:4;;;5051:323;;-1:-1:-1;;;;;5121:18:4;;5099:19;5121:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5170:30;;;;;;:44;;;5286:30;;:17;:30;;;;;:43;;;5051:323;-1:-1:-1;5467:26:4;;;;:17;:26;;;;;;;;5460:33;;;-1:-1:-1;;;;;5510:18:4;;;;;:12;:18;;;;;:34;;;;;;;5503:41;4581:970::o;5839:1061::-;6113:10;:17;6088:22;;6113:21;;6133:1;;6113:21;:::i;:::-;6144:18;6165:24;;;:15;:24;;;;;;6533:10;:26;;6088:46;;-1:-1:-1;6165:24:4;;6088:46;;6533:26;;;;;;:::i;:::-;;;;;;;;;6511:48;;6595:11;6570:10;6581;6570:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6674:28;;;:15;:28;;;;;;;:41;;;6843:24;;;;;6836:31;6877:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5910:990;;;5839:1061;:::o;3391:217::-;3475:14;3492:20;3509:2;3492:16;:20::i;:::-;-1:-1:-1;;;;;3522:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3566:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3391:217:4:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:15;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:15;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:15;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:15;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:15:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:15;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:15;;3858:180;-1:-1:-1;3858:180:15:o;4043:269::-;4100:6;4153:2;4141:9;4132:7;4128:23;4124:32;4121:52;;;4169:1;4166;4159:12;4121:52;4208:9;4195:23;4258:4;4251:5;4247:16;4240:5;4237:27;4227:55;;4278:1;4275;4268:12;4317:257;4358:3;4396:5;4390:12;4423:6;4418:3;4411:19;4439:63;4495:6;4488:4;4483:3;4479:14;4472:4;4465:5;4461:16;4439:63;:::i;:::-;4556:2;4535:15;-1:-1:-1;;4531:29:15;4522:39;;;;4563:4;4518:50;;4317:257;-1:-1:-1;;4317:257:15:o;4579:470::-;4758:3;4796:6;4790:13;4812:53;4858:6;4853:3;4846:4;4838:6;4834:17;4812:53;:::i;:::-;4928:13;;4887:16;;;;4950:57;4928:13;4887:16;4984:4;4972:17;;4950:57;:::i;:::-;5023:20;;4579:470;-1:-1:-1;;;;4579:470:15:o;5262:488::-;-1:-1:-1;;;;;5531:15:15;;;5513:34;;5583:15;;5578:2;5563:18;;5556:43;5630:2;5615:18;;5608:34;;;5678:3;5673:2;5658:18;;5651:31;;;5456:4;;5699:45;;5724:19;;5716:6;5699:45;:::i;:::-;5691:53;5262:488;-1:-1:-1;;;;;;5262:488:15:o;5947:219::-;6096:2;6085:9;6078:21;6059:4;6116:44;6156:2;6145:9;6141:18;6133:6;6116:44;:::i;6583:414::-;6785:2;6767:21;;;6824:2;6804:18;;;6797:30;6863:34;6858:2;6843:18;;6836:62;-1:-1:-1;;;6929:2:15;6914:18;;6907:48;6987:3;6972:19;;6583:414::o;11640:356::-;11842:2;11824:21;;;11861:18;;;11854:30;11920:34;11915:2;11900:18;;11893:62;11987:2;11972:18;;11640:356::o;14601:413::-;14803:2;14785:21;;;14842:2;14822:18;;;14815:30;14881:34;14876:2;14861:18;;14854:62;-1:-1:-1;;;14947:2:15;14932:18;;14925:47;15004:3;14989:19;;14601:413::o;16837:128::-;16877:3;16908:1;16904:6;16901:1;16898:13;16895:39;;;16914:18;;:::i;:::-;-1:-1:-1;16950:9:15;;16837:128::o;16970:120::-;17010:1;17036;17026:35;;17041:18;;:::i;:::-;-1:-1:-1;17075:9:15;;16970:120::o;17095:168::-;17135:7;17201:1;17197;17193:6;17189:14;17186:1;17183:21;17178:1;17171:9;17164:17;17160:45;17157:71;;;17208:18;;:::i;:::-;-1:-1:-1;17248:9:15;;17095:168::o;17268:125::-;17308:4;17336:1;17333;17330:8;17327:34;;;17341:18;;:::i;:::-;-1:-1:-1;17378:9:15;;17268:125::o;17398:258::-;17470:1;17480:113;17494:6;17491:1;17488:13;17480:113;;;17570:11;;;17564:18;17551:11;;;17544:39;17516:2;17509:10;17480:113;;;17611:6;17608:1;17605:13;17602:48;;;-1:-1:-1;;17646:1:15;17628:16;;17621:27;17398:258::o;17661:380::-;17740:1;17736:12;;;;17783;;;17804:61;;17858:4;17850:6;17846:17;17836:27;;17804:61;17911:2;17903:6;17900:14;17880:18;17877:38;17874:161;;;17957:10;17952:3;17948:20;17945:1;17938:31;17992:4;17989:1;17982:15;18020:4;18017:1;18010:15;17874:161;;17661:380;;;:::o;18046:135::-;18085:3;-1:-1:-1;;18106:17:15;;18103:43;;;18126:18;;:::i;:::-;-1:-1:-1;18173:1:15;18162:13;;18046:135::o;18186:175::-;18223:3;18267:4;18260:5;18256:16;18296:4;18287:7;18284:17;18281:43;;;18304:18;;:::i;:::-;18353:1;18340:15;;18186:175;-1:-1:-1;;18186:175:15:o;18366:112::-;18398:1;18424;18414:35;;18429:18;;:::i;:::-;-1:-1:-1;18463:9:15;;18366:112::o;18483:127::-;18544:10;18539:3;18535:20;18532:1;18525:31;18575:4;18572:1;18565:15;18599:4;18596:1;18589:15;18615:127;18676:10;18671:3;18667:20;18664:1;18657:31;18707:4;18704:1;18697:15;18731:4;18728:1;18721:15;18747:127;18808:10;18803:3;18799:20;18796:1;18789:31;18839:4;18836:1;18829:15;18863:4;18860:1;18853:15;18879:127;18940:10;18935:3;18931:20;18928:1;18921:31;18971:4;18968:1;18961:15;18995:4;18992:1;18985:15;19011:127;19072:10;19067:3;19063:20;19060:1;19053:31;19103:4;19100:1;19093:15;19127:4;19124:1;19117:15;19143:131;-1:-1:-1;;;;;;19217:32:15;;19207:43;;19197:71;;19264:1;19261;19254:12
Swarm Source
ipfs://f558befbc54ba19ac8fab6af03b6d223e3e619e91f419bc0ef3e2dd1587d0370
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.