ERC-721
Overview
Max Total Supply
1,581 PZRDS
Holders
440
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 PZRDSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixelWZRDS
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-30 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Address.sol /* __________.__ .__ __ ______________________________ _________ \______ \__|__ ___ ____ | | / \ / \____ /\______ \______ \ / _____/ | ___/ \ \/ // __ \| | \ \/\/ / / / | _/| | \ \_____ \ | | | |> <\ ___/| |__ \ / / /_ | | \| ` \/ \ |____| |__/__/\_ \\___ >____/ \__/\ / /_______ \ |____|_ /_______ /_______ / \/ \/ \/ \/ \/ \/ \/ */ // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev 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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/knightsoftheroundtable.sol /* __________.__ .__ __ ______________________________ _________ \______ \__|__ ___ ____ | | / \ / \____ /\______ \______ \ / _____/ | ___/ \ \/ // __ \| | \ \/\/ / / / | _/| | \ \_____ \ | | | |> <\ ___/| |__ \ / / /_ | | \| ` \/ \ |____| |__/__/\_ \\___ >____/ \__/\ / /_______ \ |____|_ /_______ /_______ / \/ \/ \/ \/ \/ \/ \/ */ pragma solidity ^0.8.9; contract PixelWZRDS is ERC721A, Ownable { using ECDSA for bytes32; using Strings for uint256; address private constant TEAM_ADDRESS = 0x1f1238c14db58Beac45c4A3efe86BE86eF74C661; uint256 public constant TOTAL_MAX_SUPPLY = 10000; uint256 public constant TOTAL_FREE_SUPPLY = 10000; uint256 public constant TEAM_CLAIM_AMOUNT = 50; uint256 public MAX_FREE_MINT_PER_WALLET = 2; uint256 public MAX_PUBLIC_PER_TX = 20; uint256 public token_price = 0.005 ether; bool public publicSaleActive; bool public freeMintActive; bool public claimed = false; uint256 public freeMintCount; mapping(address => uint256) public freeMintClaimed; string private _baseTokenURI; constructor() ERC721A("Pixel WZRDS", "PZRDS") { _safeMint(msg.sender, 10); } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier underMaxSupply(uint256 _quantity) { require( _totalMinted() + _quantity <= TOTAL_MAX_SUPPLY, "Purchase would exceed max supply" ); _; } modifier validateFreeMintStatus(uint256 _quantity) { require(freeMintActive, "free claim is not active"); require(freeMintCount + _quantity <= TOTAL_FREE_SUPPLY, "Purchase would exceed max supply of free mints"); require(freeMintClaimed[msg.sender] + _quantity <= MAX_FREE_MINT_PER_WALLET, "wallet has exceeded free mint amount"); _; } modifier validatePublicStatus(uint256 _quantity) { require(publicSaleActive, "public sale is not active"); require(msg.value >= token_price * _quantity, "Need to send more ETH."); require(_quantity > 0 && _quantity <= MAX_PUBLIC_PER_TX, "Invalid mint amount."); _; } function freeMint(uint256 _quantity) external callerIsUser validateFreeMintStatus(_quantity) underMaxSupply(_quantity) { freeMintClaimed[msg.sender] += _quantity; freeMintCount += _quantity; _mint(msg.sender, _quantity, "", false); } function mint(uint256 _quantity) external payable callerIsUser validatePublicStatus(_quantity) underMaxSupply(_quantity) { _mint(msg.sender, _quantity, "", false); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ''; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function ownerMint(uint256 _numberToMint) external onlyOwner underMaxSupply(_numberToMint) { _mint(msg.sender, _numberToMint, "", false); } function teamClaim() external onlyOwner { require(!claimed, "Team already claimed"); // claim _safeMint(TEAM_ADDRESS, TEAM_CLAIM_AMOUNT); claimed = true; } function ownerMintToAddress(address _recipient, uint256 _numberToMint) external onlyOwner underMaxSupply(_numberToMint) { _mint(_recipient, _numberToMint, "", false); } function setFreeMintCount(uint256 _count) external onlyOwner { freeMintCount = _count; } function setMaxFreePerWallet(uint256 _num) external onlyOwner { require(_num >= 0, "Num must be greater than zero"); MAX_FREE_MINT_PER_WALLET = _num; } function setMaxPerTxn(uint256 _num) external onlyOwner { require(_num >= 0, "Num must be greater than zero"); MAX_PUBLIC_PER_TX = _num; } function setTokenPrice(uint256 newPrice) external onlyOwner { require(newPrice >= 0, "Token price must be greater than zero"); token_price = newPrice; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawFunds() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function withdrawFundsToAddress(address _address, uint256 amount) external onlyOwner { (bool success, ) =_address.call{value: amount}(""); require(success, "Transfer failed."); } function flipFreeMintActive() external onlyOwner { freeMintActive = !freeMintActive; } function flipPublicSaleActive() external onlyOwner { publicSaleActive = !publicSaleActive; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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_FREE_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MAX_SUPPLY","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":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberToMint","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_numberToMint","type":"uint256"}],"name":"ownerMintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"setMaxPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPrice","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":"teamClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFundsToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260026009556014600a556611c37937e08000600b55600c805462ff0000191690553480156200003257600080fd5b506040518060400160405280600b81526020016a506978656c20575a52445360a81b81525060405180604001604052806005815260200164505a52445360d81b8152508160029081620000869190620004b1565b506003620000958282620004b1565b50506000805550620000a733620000ba565b620000b433600a6200010c565b6200062b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200012e8282604051806020016040528060008152506200013260201b60201c565b5050565b62000141838383600162000146565b505050565b6000546001600160a01b0385166200017057604051622e076360e81b815260040160405180910390fd5b83600003620001925760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156200024b57506200024b876001600160a01b03166200030a60201b620014901760201c565b15620002ca575b60405182906001600160a01b0389169060009060008051602062002928833981519152908290a460018201916200028f9060009089908862000319565b620002ad576040516368d2bf6b60e11b815260040160405180910390fd5b80820362000252578260005414620002c457600080fd5b620002ff565b5b6040516001830192906001600160a01b0389169060009060008051602062002928833981519152908290a4808203620002cb575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620003509033908990889088906004016200057d565b6020604051808303816000875af19250505080156200038e575060408051601f3d908101601f191682019092526200038b91810190620005f8565b60015b620003f0573d808015620003bf576040519150601f19603f3d011682016040523d82523d6000602084013e620003c4565b606091505b508051600003620003e8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200043857607f821691505b6020821081036200045957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200014157600081815260208120601f850160051c81016020861015620004885750805b601f850160051c820191505b81811015620004a95782815560010162000494565b505050505050565b81516001600160401b03811115620004cd57620004cd6200040d565b620004e581620004de845462000423565b846200045f565b602080601f8311600181146200051d5760008415620005045750858301515b600019600386901b1c1916600185901b178555620004a9565b600085815260208120601f198616915b828110156200054e578886015182559484019460019091019084016200052d565b50858210156200056d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620005cc5785810182015185820160a001528101620005ae565b82811115620005df57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200060b57600080fd5b81516001600160e01b0319811681146200062457600080fd5b9392505050565b6122ed806200063b6000396000f3fe60806040526004361061025c5760003560e01c80637c928fe911610144578063bc8893b4116100b6578063e55f58bb1161007a578063e55f58bb146106a2578063e834a834146106b8578063e985e9c5146106d8578063f03c889114610721578063f19e75d414610736578063f2fde38b1461075657600080fd5b8063bc8893b4146105fc578063c87b56dd14610616578063cb5bc2aa14610636578063dc33e68114610655578063e0ec7c361461067557600080fd5b80639f55252e116101085780639f55252e1461055d578063a0712d6814610573578063a22cb46514610586578063a6eb27e2146105a6578063b6f3ce00146105bc578063b88d4fde146105dc57600080fd5b80637c928fe9146104d55780638da5cb5b146104f55780638f430db01461051357806395d89b41146105285780639aaf21f41461053d57600080fd5b806342842e0e116101dd5780636a61e5fc116101a15780636a61e5fc146104355780636ae146c2146104555780636d7c4a4b1461046a57806370a082311461048a578063715018a6146104aa5780637b4fd96e146104bf57600080fd5b806342842e0e146103b55780634f7f8976146103d557806355f804b3146103f55780636352211e1461041557806365b1de201461039f57600080fd5b80631b5cb7f3116102245780631b5cb7f31461033557806323b872dd1461034a57806324600fc31461036a578063253ca9341461037f578063411c8daf1461039f57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806318160ddd14610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611c8a565b610776565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c8565b60405161028d9190611cff565b3480156102c457600080fd5b506102d86102d3366004611d12565b61085a565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611d47565b61089e565b005b34801561031e57600080fd5b50600154600054035b60405190815260200161028d565b34801561034157600080fd5b5061031061092b565b34801561035657600080fd5b50610310610365366004611d71565b610972565b34801561037657600080fd5b5061031061097d565b34801561038b57600080fd5b5061031061039a366004611d12565b610a35565b3480156103ab57600080fd5b5061032761271081565b3480156103c157600080fd5b506103106103d0366004611d71565b610a64565b3480156103e157600080fd5b506103106103f0366004611d47565b610a7f565b34801561040157600080fd5b50610310610410366004611dad565b610b3f565b34801561042157600080fd5b506102d8610430366004611d12565b610b76565b34801561044157600080fd5b50610310610450366004611d12565b610b88565b34801561046157600080fd5b50610310610bb7565b34801561047657600080fd5b50610310610485366004611d12565b610c63565b34801561049657600080fd5b506103276104a5366004611e1f565b610c92565b3480156104b657600080fd5b50610310610ce1565b3480156104cb57600080fd5b50610327600b5481565b3480156104e157600080fd5b506103106104f0366004611d12565b610d17565b34801561050157600080fd5b506008546001600160a01b03166102d8565b34801561051f57600080fd5b50610310610f3e565b34801561053457600080fd5b506102ab610f85565b34801561054957600080fd5b50610310610558366004611d47565b610f94565b34801561056957600080fd5b50610327600a5481565b610310610581366004611d12565b611010565b34801561059257600080fd5b506103106105a1366004611e3a565b6111b0565b3480156105b257600080fd5b5061032760095481565b3480156105c857600080fd5b506103106105d7366004611d12565b611245565b3480156105e857600080fd5b506103106105f7366004611e8c565b611274565b34801561060857600080fd5b50600c546102819060ff1681565b34801561062257600080fd5b506102ab610631366004611d12565b6112c5565b34801561064257600080fd5b50600c5461028190610100900460ff1681565b34801561066157600080fd5b50610327610670366004611e1f565b611349565b34801561068157600080fd5b50610327610690366004611e1f565b600e6020526000908152604090205481565b3480156106ae57600080fd5b50610327600d5481565b3480156106c457600080fd5b50600c546102819062010000900460ff1681565b3480156106e457600080fd5b506102816106f3366004611f68565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072d57600080fd5b50610327603281565b34801561074257600080fd5b50610310610751366004611d12565b611378565b34801561076257600080fd5b50610310610771366004611e1f565b6113f8565b60006001600160e01b031982166380ac58cd60e01b14806107a757506001600160e01b03198216635b5e139f60e01b145b806107c257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107d790611f9b565b80601f016020809104026020016040519081016040528092919081815260200182805461080390611f9b565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b60006108658261149f565b610882576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108a982610b76565b9050806001600160a01b0316836001600160a01b0316036108dd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108fd57506108fb81336106f3565b155b1561091b576040516367d9dca160e11b815260040160405180910390fd5b6109268383836114ca565b505050565b6008546001600160a01b0316331461095e5760405162461bcd60e51b815260040161095590611fd5565b60405180910390fd5b600c805460ff19811660ff90911615179055565b610926838383611526565b6008546001600160a01b031633146109a75760405162461bcd60e51b815260040161095590611fd5565b604051600090339047908381818185875af1925050503d80600081146109e9576040519150601f19603f3d011682016040523d82523d6000602084013e6109ee565b606091505b5050905080610a325760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610955565b50565b6008546001600160a01b03163314610a5f5760405162461bcd60e51b815260040161095590611fd5565b600d55565b61092683838360405180602001604052806000815250611274565b6008546001600160a01b03163314610aa95760405162461bcd60e51b815260040161095590611fd5565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610af6576040519150601f19603f3d011682016040523d82523d6000602084013e610afb565b606091505b50509050806109265760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610955565b6008546001600160a01b03163314610b695760405162461bcd60e51b815260040161095590611fd5565b600f610926828483612058565b6000610b8182611716565b5192915050565b6008546001600160a01b03163314610bb25760405162461bcd60e51b815260040161095590611fd5565b600b55565b6008546001600160a01b03163314610be15760405162461bcd60e51b815260040161095590611fd5565b600c5462010000900460ff1615610c315760405162461bcd60e51b81526020600482015260146024820152731519585b48185b1c9958591e4818db185a5b595960621b6044820152606401610955565b610c50731f1238c14db58beac45c4a3efe86be86ef74c6616032611832565b600c805462ff0000191662010000179055565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b815260040161095590611fd5565b600955565b60006001600160a01b038216610cbb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d0b5760405162461bcd60e51b815260040161095590611fd5565b610d15600061184c565b565b323314610d665760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610955565b600c548190610100900460ff16610dbf5760405162461bcd60e51b815260206004820152601860248201527f6672656520636c61696d206973206e6f742061637469766500000000000000006044820152606401610955565b61271081600d54610dd0919061212e565b1115610e355760405162461bcd60e51b815260206004820152602e60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526d206f662066726565206d696e747360901b6064820152608401610955565b600954336000908152600e6020526040902054610e5390839061212e565b1115610ead5760405162461bcd60e51b8152602060048201526024808201527f77616c6c6574206861732065786365656465642066726565206d696e7420616d6044820152631bdd5b9d60e21b6064820152608401610955565b8161271081610ebb60005490565b610ec5919061212e565b1115610ee35760405162461bcd60e51b815260040161095590612146565b336000908152600e602052604081208054859290610f0290849061212e565b9250508190555082600d6000828254610f1b919061212e565b92505081905550610926338460405180602001604052806000815250600061189e565b6008546001600160a01b03163314610f685760405162461bcd60e51b815260040161095590611fd5565b600c805461ff001981166101009182900460ff1615909102179055565b6060600380546107d790611f9b565b6008546001600160a01b03163314610fbe5760405162461bcd60e51b815260040161095590611fd5565b8061271081610fcc60005490565b610fd6919061212e565b1115610ff45760405162461bcd60e51b815260040161095590612146565b610926838360405180602001604052806000815250600061189e565b32331461105f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610955565b600c54819060ff166110b35760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610955565b80600b546110c1919061217b565b3410156111095760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610955565b60008111801561111b5750600a548111155b61115e5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610955565b816127108161116c60005490565b611176919061212e565b11156111945760405162461bcd60e51b815260040161095590612146565b610926338460405180602001604052806000815250600061189e565b336001600160a01b038316036111d95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461126f5760405162461bcd60e51b815260040161095590611fd5565b600a55565b61127f848484611526565b6001600160a01b0383163b151580156112a1575061129f84848484611a6b565b155b156112bf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112d08261149f565b6112ed57604051630a14c4b560e41b815260040160405180910390fd5b60006112f7611b57565b905080516000036113175760405180602001604052806000815250611342565b8061132184611b66565b60405160200161133292919061219a565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260056020526040812054600160401b900467ffffffffffffffff166107c2565b6008546001600160a01b031633146113a25760405162461bcd60e51b815260040161095590611fd5565b80612710816113b060005490565b6113ba919061212e565b11156113d85760405162461bcd60e51b815260040161095590612146565b6113f4338360405180602001604052806000815250600061189e565b5050565b6008546001600160a01b031633146114225760405162461bcd60e51b815260040161095590611fd5565b6001600160a01b0381166114875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610955565b610a328161184c565b6001600160a01b03163b151590565b60008054821080156107c2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061153182611716565b9050836001600160a01b031681600001516001600160a01b0316146115685760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611586575061158685336106f3565b806115a15750336115968461085a565b6001600160a01b0316145b9050806115c157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115e857604051633a954ecd60e21b815260040160405180910390fd5b6115f4600084876114ca565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116ca5760005482146116ca578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561181957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118175780516001600160a01b0316156117ad579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611812579392505050565b6117ad565b505b604051636f96cda160e11b815260040160405180910390fd5b6113f4828260405180602001604052806000815250611c67565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0385166118c757604051622e076360e81b815260040160405180910390fd5b836000036118e85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561199557506001600160a01b0387163b15155b15611a1d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119e66000888480600101955088611a6b565b611a03576040516368d2bf6b60e11b815260040160405180910390fd5b80820361199b578260005414611a1857600080fd5b611a62565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611a1e575b5060005561170f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aa09033908990889088906004016121d9565b6020604051808303816000875af1925050508015611adb575060408051601f3d908101601f19168201909252611ad891810190612216565b60015b611b39573d808015611b09576040519150601f19603f3d011682016040523d82523d6000602084013e611b0e565b606091505b508051600003611b31576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546107d790611f9b565b606081600003611b8d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb75780611ba181612233565b9150611bb09050600a83612262565b9150611b91565b60008167ffffffffffffffff811115611bd257611bd2611e76565b6040519080825280601f01601f191660200182016040528015611bfc576020820181803683370190505b5090505b8415611b4f57611c11600183612276565b9150611c1e600a8661228d565b611c2990603061212e565b60f81b818381518110611c3e57611c3e6122a1565b60200101906001600160f81b031916908160001a905350611c60600a86612262565b9450611c00565b610926838383600161189e565b6001600160e01b031981168114610a3257600080fd5b600060208284031215611c9c57600080fd5b813561134281611c74565b60005b83811015611cc2578181015183820152602001611caa565b838111156112bf5750506000910152565b60008151808452611ceb816020860160208601611ca7565b601f01601f19169290920160200192915050565b6020815260006113426020830184611cd3565b600060208284031215611d2457600080fd5b5035919050565b80356001600160a01b0381168114611d4257600080fd5b919050565b60008060408385031215611d5a57600080fd5b611d6383611d2b565b946020939093013593505050565b600080600060608486031215611d8657600080fd5b611d8f84611d2b565b9250611d9d60208501611d2b565b9150604084013590509250925092565b60008060208385031215611dc057600080fd5b823567ffffffffffffffff80821115611dd857600080fd5b818501915085601f830112611dec57600080fd5b813581811115611dfb57600080fd5b866020828501011115611e0d57600080fd5b60209290920196919550909350505050565b600060208284031215611e3157600080fd5b61134282611d2b565b60008060408385031215611e4d57600080fd5b611e5683611d2b565b915060208301358015158114611e6b57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ea257600080fd5b611eab85611d2b565b9350611eb960208601611d2b565b925060408501359150606085013567ffffffffffffffff80821115611edd57600080fd5b818701915087601f830112611ef157600080fd5b813581811115611f0357611f03611e76565b604051601f8201601f19908116603f01168101908382118183101715611f2b57611f2b611e76565b816040528281528a6020848701011115611f4457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f7b57600080fd5b611f8483611d2b565b9150611f9260208401611d2b565b90509250929050565b600181811c90821680611faf57607f821691505b602082108103611fcf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561092657600081815260208120601f850160051c810160208610156120315750805b601f850160051c820191505b818110156120505782815560010161203d565b505050505050565b67ffffffffffffffff83111561207057612070611e76565b6120848361207e8354611f9b565b8361200a565b6000601f8411600181146120b857600085156120a05750838201355b600019600387901b1c1916600186901b17835561170f565b600083815260209020601f19861690835b828110156120e957868501358255602094850194600190920191016120c9565b50868210156121065760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561214157612141612118565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b600081600019048311821515161561219557612195612118565b500290565b600083516121ac818460208801611ca7565b8351908301906121c0818360208801611ca7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220c90830184611cd3565b9695505050505050565b60006020828403121561222857600080fd5b815161134281611c74565b60006001820161224557612245612118565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122715761227161224c565b500490565b60008282101561228857612288612118565b500390565b60008261229c5761229c61224c565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220dc459cde9a095112812f812cc8241a2dcabeb42eb35838cf94dd470efa51d24664736f6c634300080f0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80637c928fe911610144578063bc8893b4116100b6578063e55f58bb1161007a578063e55f58bb146106a2578063e834a834146106b8578063e985e9c5146106d8578063f03c889114610721578063f19e75d414610736578063f2fde38b1461075657600080fd5b8063bc8893b4146105fc578063c87b56dd14610616578063cb5bc2aa14610636578063dc33e68114610655578063e0ec7c361461067557600080fd5b80639f55252e116101085780639f55252e1461055d578063a0712d6814610573578063a22cb46514610586578063a6eb27e2146105a6578063b6f3ce00146105bc578063b88d4fde146105dc57600080fd5b80637c928fe9146104d55780638da5cb5b146104f55780638f430db01461051357806395d89b41146105285780639aaf21f41461053d57600080fd5b806342842e0e116101dd5780636a61e5fc116101a15780636a61e5fc146104355780636ae146c2146104555780636d7c4a4b1461046a57806370a082311461048a578063715018a6146104aa5780637b4fd96e146104bf57600080fd5b806342842e0e146103b55780634f7f8976146103d557806355f804b3146103f55780636352211e1461041557806365b1de201461039f57600080fd5b80631b5cb7f3116102245780631b5cb7f31461033557806323b872dd1461034a57806324600fc31461036a578063253ca9341461037f578063411c8daf1461039f57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806318160ddd14610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611c8a565b610776565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c8565b60405161028d9190611cff565b3480156102c457600080fd5b506102d86102d3366004611d12565b61085a565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611d47565b61089e565b005b34801561031e57600080fd5b50600154600054035b60405190815260200161028d565b34801561034157600080fd5b5061031061092b565b34801561035657600080fd5b50610310610365366004611d71565b610972565b34801561037657600080fd5b5061031061097d565b34801561038b57600080fd5b5061031061039a366004611d12565b610a35565b3480156103ab57600080fd5b5061032761271081565b3480156103c157600080fd5b506103106103d0366004611d71565b610a64565b3480156103e157600080fd5b506103106103f0366004611d47565b610a7f565b34801561040157600080fd5b50610310610410366004611dad565b610b3f565b34801561042157600080fd5b506102d8610430366004611d12565b610b76565b34801561044157600080fd5b50610310610450366004611d12565b610b88565b34801561046157600080fd5b50610310610bb7565b34801561047657600080fd5b50610310610485366004611d12565b610c63565b34801561049657600080fd5b506103276104a5366004611e1f565b610c92565b3480156104b657600080fd5b50610310610ce1565b3480156104cb57600080fd5b50610327600b5481565b3480156104e157600080fd5b506103106104f0366004611d12565b610d17565b34801561050157600080fd5b506008546001600160a01b03166102d8565b34801561051f57600080fd5b50610310610f3e565b34801561053457600080fd5b506102ab610f85565b34801561054957600080fd5b50610310610558366004611d47565b610f94565b34801561056957600080fd5b50610327600a5481565b610310610581366004611d12565b611010565b34801561059257600080fd5b506103106105a1366004611e3a565b6111b0565b3480156105b257600080fd5b5061032760095481565b3480156105c857600080fd5b506103106105d7366004611d12565b611245565b3480156105e857600080fd5b506103106105f7366004611e8c565b611274565b34801561060857600080fd5b50600c546102819060ff1681565b34801561062257600080fd5b506102ab610631366004611d12565b6112c5565b34801561064257600080fd5b50600c5461028190610100900460ff1681565b34801561066157600080fd5b50610327610670366004611e1f565b611349565b34801561068157600080fd5b50610327610690366004611e1f565b600e6020526000908152604090205481565b3480156106ae57600080fd5b50610327600d5481565b3480156106c457600080fd5b50600c546102819062010000900460ff1681565b3480156106e457600080fd5b506102816106f3366004611f68565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072d57600080fd5b50610327603281565b34801561074257600080fd5b50610310610751366004611d12565b611378565b34801561076257600080fd5b50610310610771366004611e1f565b6113f8565b60006001600160e01b031982166380ac58cd60e01b14806107a757506001600160e01b03198216635b5e139f60e01b145b806107c257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107d790611f9b565b80601f016020809104026020016040519081016040528092919081815260200182805461080390611f9b565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b60006108658261149f565b610882576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108a982610b76565b9050806001600160a01b0316836001600160a01b0316036108dd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108fd57506108fb81336106f3565b155b1561091b576040516367d9dca160e11b815260040160405180910390fd5b6109268383836114ca565b505050565b6008546001600160a01b0316331461095e5760405162461bcd60e51b815260040161095590611fd5565b60405180910390fd5b600c805460ff19811660ff90911615179055565b610926838383611526565b6008546001600160a01b031633146109a75760405162461bcd60e51b815260040161095590611fd5565b604051600090339047908381818185875af1925050503d80600081146109e9576040519150601f19603f3d011682016040523d82523d6000602084013e6109ee565b606091505b5050905080610a325760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610955565b50565b6008546001600160a01b03163314610a5f5760405162461bcd60e51b815260040161095590611fd5565b600d55565b61092683838360405180602001604052806000815250611274565b6008546001600160a01b03163314610aa95760405162461bcd60e51b815260040161095590611fd5565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610af6576040519150601f19603f3d011682016040523d82523d6000602084013e610afb565b606091505b50509050806109265760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610955565b6008546001600160a01b03163314610b695760405162461bcd60e51b815260040161095590611fd5565b600f610926828483612058565b6000610b8182611716565b5192915050565b6008546001600160a01b03163314610bb25760405162461bcd60e51b815260040161095590611fd5565b600b55565b6008546001600160a01b03163314610be15760405162461bcd60e51b815260040161095590611fd5565b600c5462010000900460ff1615610c315760405162461bcd60e51b81526020600482015260146024820152731519585b48185b1c9958591e4818db185a5b595960621b6044820152606401610955565b610c50731f1238c14db58beac45c4a3efe86be86ef74c6616032611832565b600c805462ff0000191662010000179055565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b815260040161095590611fd5565b600955565b60006001600160a01b038216610cbb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d0b5760405162461bcd60e51b815260040161095590611fd5565b610d15600061184c565b565b323314610d665760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610955565b600c548190610100900460ff16610dbf5760405162461bcd60e51b815260206004820152601860248201527f6672656520636c61696d206973206e6f742061637469766500000000000000006044820152606401610955565b61271081600d54610dd0919061212e565b1115610e355760405162461bcd60e51b815260206004820152602e60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526d206f662066726565206d696e747360901b6064820152608401610955565b600954336000908152600e6020526040902054610e5390839061212e565b1115610ead5760405162461bcd60e51b8152602060048201526024808201527f77616c6c6574206861732065786365656465642066726565206d696e7420616d6044820152631bdd5b9d60e21b6064820152608401610955565b8161271081610ebb60005490565b610ec5919061212e565b1115610ee35760405162461bcd60e51b815260040161095590612146565b336000908152600e602052604081208054859290610f0290849061212e565b9250508190555082600d6000828254610f1b919061212e565b92505081905550610926338460405180602001604052806000815250600061189e565b6008546001600160a01b03163314610f685760405162461bcd60e51b815260040161095590611fd5565b600c805461ff001981166101009182900460ff1615909102179055565b6060600380546107d790611f9b565b6008546001600160a01b03163314610fbe5760405162461bcd60e51b815260040161095590611fd5565b8061271081610fcc60005490565b610fd6919061212e565b1115610ff45760405162461bcd60e51b815260040161095590612146565b610926838360405180602001604052806000815250600061189e565b32331461105f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610955565b600c54819060ff166110b35760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610955565b80600b546110c1919061217b565b3410156111095760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610955565b60008111801561111b5750600a548111155b61115e5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610955565b816127108161116c60005490565b611176919061212e565b11156111945760405162461bcd60e51b815260040161095590612146565b610926338460405180602001604052806000815250600061189e565b336001600160a01b038316036111d95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461126f5760405162461bcd60e51b815260040161095590611fd5565b600a55565b61127f848484611526565b6001600160a01b0383163b151580156112a1575061129f84848484611a6b565b155b156112bf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112d08261149f565b6112ed57604051630a14c4b560e41b815260040160405180910390fd5b60006112f7611b57565b905080516000036113175760405180602001604052806000815250611342565b8061132184611b66565b60405160200161133292919061219a565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260056020526040812054600160401b900467ffffffffffffffff166107c2565b6008546001600160a01b031633146113a25760405162461bcd60e51b815260040161095590611fd5565b80612710816113b060005490565b6113ba919061212e565b11156113d85760405162461bcd60e51b815260040161095590612146565b6113f4338360405180602001604052806000815250600061189e565b5050565b6008546001600160a01b031633146114225760405162461bcd60e51b815260040161095590611fd5565b6001600160a01b0381166114875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610955565b610a328161184c565b6001600160a01b03163b151590565b60008054821080156107c2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061153182611716565b9050836001600160a01b031681600001516001600160a01b0316146115685760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611586575061158685336106f3565b806115a15750336115968461085a565b6001600160a01b0316145b9050806115c157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115e857604051633a954ecd60e21b815260040160405180910390fd5b6115f4600084876114ca565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116ca5760005482146116ca578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561181957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118175780516001600160a01b0316156117ad579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611812579392505050565b6117ad565b505b604051636f96cda160e11b815260040160405180910390fd5b6113f4828260405180602001604052806000815250611c67565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0385166118c757604051622e076360e81b815260040160405180910390fd5b836000036118e85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561199557506001600160a01b0387163b15155b15611a1d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119e66000888480600101955088611a6b565b611a03576040516368d2bf6b60e11b815260040160405180910390fd5b80820361199b578260005414611a1857600080fd5b611a62565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611a1e575b5060005561170f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aa09033908990889088906004016121d9565b6020604051808303816000875af1925050508015611adb575060408051601f3d908101601f19168201909252611ad891810190612216565b60015b611b39573d808015611b09576040519150601f19603f3d011682016040523d82523d6000602084013e611b0e565b606091505b508051600003611b31576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546107d790611f9b565b606081600003611b8d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb75780611ba181612233565b9150611bb09050600a83612262565b9150611b91565b60008167ffffffffffffffff811115611bd257611bd2611e76565b6040519080825280601f01601f191660200182016040528015611bfc576020820181803683370190505b5090505b8415611b4f57611c11600183612276565b9150611c1e600a8661228d565b611c2990603061212e565b60f81b818381518110611c3e57611c3e6122a1565b60200101906001600160f81b031916908160001a905350611c60600a86612262565b9450611c00565b610926838383600161189e565b6001600160e01b031981168114610a3257600080fd5b600060208284031215611c9c57600080fd5b813561134281611c74565b60005b83811015611cc2578181015183820152602001611caa565b838111156112bf5750506000910152565b60008151808452611ceb816020860160208601611ca7565b601f01601f19169290920160200192915050565b6020815260006113426020830184611cd3565b600060208284031215611d2457600080fd5b5035919050565b80356001600160a01b0381168114611d4257600080fd5b919050565b60008060408385031215611d5a57600080fd5b611d6383611d2b565b946020939093013593505050565b600080600060608486031215611d8657600080fd5b611d8f84611d2b565b9250611d9d60208501611d2b565b9150604084013590509250925092565b60008060208385031215611dc057600080fd5b823567ffffffffffffffff80821115611dd857600080fd5b818501915085601f830112611dec57600080fd5b813581811115611dfb57600080fd5b866020828501011115611e0d57600080fd5b60209290920196919550909350505050565b600060208284031215611e3157600080fd5b61134282611d2b565b60008060408385031215611e4d57600080fd5b611e5683611d2b565b915060208301358015158114611e6b57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ea257600080fd5b611eab85611d2b565b9350611eb960208601611d2b565b925060408501359150606085013567ffffffffffffffff80821115611edd57600080fd5b818701915087601f830112611ef157600080fd5b813581811115611f0357611f03611e76565b604051601f8201601f19908116603f01168101908382118183101715611f2b57611f2b611e76565b816040528281528a6020848701011115611f4457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f7b57600080fd5b611f8483611d2b565b9150611f9260208401611d2b565b90509250929050565b600181811c90821680611faf57607f821691505b602082108103611fcf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561092657600081815260208120601f850160051c810160208610156120315750805b601f850160051c820191505b818110156120505782815560010161203d565b505050505050565b67ffffffffffffffff83111561207057612070611e76565b6120848361207e8354611f9b565b8361200a565b6000601f8411600181146120b857600085156120a05750838201355b600019600387901b1c1916600186901b17835561170f565b600083815260209020601f19861690835b828110156120e957868501358255602094850194600190920191016120c9565b50868210156121065760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561214157612141612118565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b600081600019048311821515161561219557612195612118565b500290565b600083516121ac818460208801611ca7565b8351908301906121c0818360208801611ca7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220c90830184611cd3565b9695505050505050565b60006020828403121561222857600080fd5b815161134281611c74565b60006001820161224557612245612118565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122715761227161224c565b500490565b60008282101561228857612288612118565b500390565b60008261229c5761229c61224c565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220dc459cde9a095112812f812cc8241a2dcabeb42eb35838cf94dd470efa51d24664736f6c634300080f0033
Deployed Bytecode Sourcemap
56627:5045:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35715:305;;;;;;;;;;-1:-1:-1;35715:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35715:305:0;;;;;;;;38828:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40331:204::-;;;;;;;;;;-1:-1:-1;40331:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;40331:204:0;1528:203:1;39894:371:0;;;;;;;;;;-1:-1:-1;39894:371:0;;;;;:::i;:::-;;:::i;:::-;;34964:303;;;;;;;;;;-1:-1:-1;35218:12:0;;35008:7;35202:13;:28;34964:303;;;2319:25:1;;;2307:2;2292:18;34964:303:0;2173:177:1;61561:106:0;;;;;;;;;;;;;:::i;41196:170::-;;;;;;;;;;-1:-1:-1;41196:170:0;;;;;:::i;:::-;;:::i;61054:178::-;;;;;;;;;;;;;:::i;60289:102::-;;;;;;;;;;-1:-1:-1;60289:102:0;;;;;:::i;:::-;;:::i;56884:49::-;;;;;;;;;;;;56928:5;56884:49;;41437:185;;;;;;;;;;-1:-1:-1;41437:185:0;;;;;:::i;:::-;;:::i;61240:201::-;;;;;;;;;;-1:-1:-1;61240:201:0;;;;;:::i;:::-;;:::i;60940:106::-;;;;;;;;;;-1:-1:-1;60940:106:0;;;;;:::i;:::-;;:::i;38636:125::-;;;;;;;;;;-1:-1:-1;38636:125:0;;;;;:::i;:::-;;:::i;60757:175::-;;;;;;;;;;-1:-1:-1;60757:175:0;;;;;:::i;:::-;;:::i;59865:194::-;;;;;;;;;;;;;:::i;60399:174::-;;;;;;;;;;-1:-1:-1;60399:174:0;;;;;:::i;:::-;;:::i;36084:206::-;;;;;;;;;;-1:-1:-1;36084:206:0;;;;;:::i;:::-;;:::i;55184:103::-;;;;;;;;;;;;;:::i;57104:40::-;;;;;;;;;;;;;;;;58536:311;;;;;;;;;;-1:-1:-1;58536:311:0;;;;;:::i;:::-;;:::i;54533:87::-;;;;;;;;;;-1:-1:-1;54606:6:0;;-1:-1:-1;;;;;54606:6:0;54533:87;;61453:100;;;;;;;;;;;;;:::i;38997:104::-;;;;;;;;;;;;;:::i;60067:214::-;;;;;;;;;;-1:-1:-1;60067:214:0;;;;;:::i;:::-;;:::i;57049:38::-;;;;;;;;;;;;;;;;58855:229;;;;;;:::i;:::-;;:::i;40607:287::-;;;;;;;;;;-1:-1:-1;40607:287:0;;;;;:::i;:::-;;:::i;56998:44::-;;;;;;;;;;;;;;;;60586:160;;;;;;;;;;-1:-1:-1;60586:160:0;;;;;:::i;:::-;;:::i;41693:369::-;;;;;;;;;;-1:-1:-1;41693:369:0;;;;;:::i;:::-;;:::i;57151:28::-;;;;;;;;;;-1:-1:-1;57151:28:0;;;;;;;;59214:327;;;;;;;;;;-1:-1:-1;59214:327:0;;;;;:::i;:::-;;:::i;57186:26::-;;;;;;;;;;-1:-1:-1;57186:26:0;;;;;;;;;;;59549:113;;;;;;;;;;-1:-1:-1;59549:113:0;;;;;:::i;:::-;;:::i;57290:50::-;;;;;;;;;;-1:-1:-1;57290:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;57253:28;;;;;;;;;;;;;;;;57219:27;;;;;;;;;;-1:-1:-1;57219:27:0;;;;;;;;;;;40965:164;;;;;;;;;;-1:-1:-1;40965:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41086:25:0;;;41062:4;41086:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40965:164;56941:46;;;;;;;;;;;;56985:2;56941:46;;59670:185;;;;;;;;;;-1:-1:-1;59670:185:0;;;;;:::i;:::-;;:::i;55442:201::-;;;;;;;;;;-1:-1:-1;55442:201:0;;;;;:::i;:::-;;:::i;35715:305::-;35817:4;-1:-1:-1;;;;;;35854:40:0;;-1:-1:-1;;;35854:40:0;;:105;;-1:-1:-1;;;;;;;35911:48:0;;-1:-1:-1;;;35911:48:0;35854:105;:158;;;-1:-1:-1;;;;;;;;;;12025:40:0;;;35976:36;35834:178;35715:305;-1:-1:-1;;35715:305:0:o;38828:100::-;38882:13;38915:5;38908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38828:100;:::o;40331:204::-;40399:7;40424:16;40432:7;40424;:16::i;:::-;40419:64;;40449:34;;-1:-1:-1;;;40449:34:0;;;;;;;;;;;40419:64;-1:-1:-1;40503:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40503:24:0;;40331:204::o;39894:371::-;39967:13;39983:24;39999:7;39983:15;:24::i;:::-;39967:40;;40028:5;-1:-1:-1;;;;;40022:11:0;:2;-1:-1:-1;;;;;40022:11:0;;40018:48;;40042:24;;-1:-1:-1;;;40042:24:0;;;;;;;;;;;40018:48;31267:10;-1:-1:-1;;;;;40083:21:0;;;;;;:63;;-1:-1:-1;40109:37:0;40126:5;31267:10;40965:164;:::i;40109:37::-;40108:38;40083:63;40079:138;;;40170:35;;-1:-1:-1;;;40170:35:0;;;;;;;;;;;40079:138;40229:28;40238:2;40242:7;40251:5;40229:8;:28::i;:::-;39956:309;39894:371;;:::o;61561:106::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;;;;;;;;;61643:16:::1;::::0;;-1:-1:-1;;61623:36:0;::::1;61643:16;::::0;;::::1;61642:17;61623:36;::::0;;61561:106::o;41196:170::-;41330:28;41340:4;41346:2;41350:7;41330:9;:28::i;61054:178::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;61128:49:::1;::::0;61110:12:::1;::::0;61128:10:::1;::::0;61151:21:::1;::::0;61110:12;61128:49;61110:12;61128:49;61151:21;61128:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61109:68;;;61196:7;61188:36;;;::::0;-1:-1:-1;;;61188:36:0;;6526:2:1;61188:36:0::1;::::0;::::1;6508:21:1::0;6565:2;6545:18;;;6538:30;-1:-1:-1;;;6584:18:1;;;6577:46;6640:18;;61188:36:0::1;6324:340:1::0;61188:36:0::1;61098:134;61054:178::o:0;60289:102::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;60361:13:::1;:22:::0;60289:102::o;41437:185::-;41575:39;41592:4;41598:2;41602:7;41575:39;;;;;;;;;;;;:16;:39::i;61240:201::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;61337:12:::1;61354:8;-1:-1:-1::0;;;;;61354:13:0::1;61375:6;61354:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61336:50;;;61405:7;61397:36;;;::::0;-1:-1:-1;;;61397:36:0;;6526:2:1;61397:36:0::1;::::0;::::1;6508:21:1::0;6565:2;6545:18;;;6538:30;-1:-1:-1;;;6584:18:1;;;6577:46;6640:18;;61397:36:0::1;6324:340:1::0;60940:106:0;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;61015:13:::1;:23;61031:7:::0;;61015:13;:23:::1;:::i;38636:125::-:0;38700:7;38727:21;38740:7;38727:12;:21::i;:::-;:26;;38636:125;-1:-1:-1;;38636:125:0:o;60757:175::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;60902:11:::1;:22:::0;60757:175::o;59865:194::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;59925:7:::1;::::0;;;::::1;;;59924:8;59916:41;;;::::0;-1:-1:-1;;;59916:41:0;;9335:2:1;59916:41:0::1;::::0;::::1;9317:21:1::0;9374:2;9354:18;;;9347:30;-1:-1:-1;;;9393:18:1;;;9386:50;9453:18;;59916:41:0::1;9133:344:1::0;59916:41:0::1;59986:42;56778;56985:2;59986:9;:42::i;:::-;60039:7;:14:::0;;-1:-1:-1;;60039:14:0::1;::::0;::::1;::::0;;59865:194::o;60399:174::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;60534:24:::1;:31:::0;60399:174::o;36084:206::-;36148:7;-1:-1:-1;;;;;36172:19:0;;36168:60;;36200:28;;-1:-1:-1;;;36200:28:0;;;;;;;;;;;36168:60;-1:-1:-1;;;;;;36254:19:0;;;;;:12;:19;;;;;:27;;;;36084:206::o;55184:103::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;55249:30:::1;55276:1;55249:18;:30::i;:::-;55184:103::o:0;58536:311::-;57529:9;57542:10;57529:23;57521:66;;;;-1:-1:-1;;;57521:66:0;;10042:2:1;57521:66:0;;;10024:21:1;10081:2;10061:18;;;10054:30;10120:32;10100:18;;;10093:60;10170:18;;57521:66:0;9840:354:1;57521:66:0;57897:14:::1;::::0;58648:9;;57897:14:::1;::::0;::::1;;;57889:51;;;::::0;-1:-1:-1;;;57889:51:0;;10401:2:1;57889:51:0::1;::::0;::::1;10383:21:1::0;10440:2;10420:18;;;10413:30;10479:26;10459:18;;;10452:54;10523:18;;57889:51:0::1;10199:348:1::0;57889:51:0::1;56928:5;57975:9;57959:13;;:25;;;;:::i;:::-;:46;;57951:105;;;::::0;-1:-1:-1;;;57951:105:0;;11019:2:1;57951:105:0::1;::::0;::::1;11001:21:1::0;11058:2;11038:18;;;11031:30;11097:34;11077:18;;;11070:62;-1:-1:-1;;;11148:18:1;;;11141:44;11202:19;;57951:105:0::1;10817:410:1::0;57951:105:0::1;58118:24;::::0;58091:10:::1;58075:27;::::0;;;:15:::1;:27;::::0;;;;;:39:::1;::::0;58105:9;;58075:39:::1;:::i;:::-;:67;;58067:116;;;::::0;-1:-1:-1;;;58067:116:0;;11434:2:1;58067:116:0::1;::::0;::::1;11416:21:1::0;11473:2;11453:18;;;11446:30;11512:34;11492:18;;;11485:62;-1:-1:-1;;;11563:18:1;;;11556:34;11607:19;;58067:116:0::1;11232:400:1::0;58067:116:0::1;58683:9:::2;56872:5;57708:9;57691:14;35407:7:::0;35593:13;;35360:283;57691:14:::2;:26;;;;:::i;:::-;:46;;57669:128;;;;-1:-1:-1::0;;;57669:128:0::2;;;;;;;:::i;:::-;58726:10:::3;58710:27;::::0;;;:15:::3;:27;::::0;;;;:40;;58741:9;;58710:27;:40:::3;::::0;58741:9;;58710:40:::3;:::i;:::-;;;;;;;;58778:9;58761:13;;:26;;;;;;;:::i;:::-;;;;;;;;58800:39;58806:10;58818:9;58800:39;;;;;;;;;;;::::0;58833:5:::3;58800;:39::i;61453:100::-:0;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;61531:14:::1;::::0;;-1:-1:-1;;61513:32:0;::::1;61531:14;::::0;;;::::1;;;61530:15;61513:32:::0;;::::1;;::::0;;61453:100::o;38997:104::-;39053:13;39086:7;39079:14;;;;;:::i;60067:214::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;60199:13:::1;56872:5;57708:9;57691:14;35407:7:::0;35593:13;;35360:283;57691:14:::1;:26;;;;:::i;:::-;:46;;57669:128;;;;-1:-1:-1::0;;;57669:128:0::1;;;;;;;:::i;:::-;60230:43:::2;60236:10;60248:13;60230:43;;;;;;;;;;;::::0;60267:5:::2;60230;:43::i;58855:229::-:0;57529:9;57542:10;57529:23;57521:66;;;;-1:-1:-1;;;57521:66:0;;10042:2:1;57521:66:0;;;10024:21:1;10081:2;10061:18;;;10054:30;10120:32;10100:18;;;10093:60;10170:18;;57521:66:0;9840:354:1;57521:66:0;58287:16:::1;::::0;58975:9;;58287:16:::1;;58279:54;;;::::0;-1:-1:-1;;;58279:54:0;;12200:2:1;58279:54:0::1;::::0;::::1;12182:21:1::0;12239:2;12219:18;;;12212:30;12278:27;12258:18;;;12251:55;12323:18;;58279:54:0::1;11998:349:1::0;58279:54:0::1;58379:9;58365:11;;:23;;;;:::i;:::-;58352:9;:36;;58344:71;;;::::0;-1:-1:-1;;;58344:71:0;;12727:2:1;58344:71:0::1;::::0;::::1;12709:21:1::0;12766:2;12746:18;;;12739:30;-1:-1:-1;;;12785:18:1;;;12778:52;12847:18;;58344:71:0::1;12525:346:1::0;58344:71:0::1;58446:1;58434:9;:13;:47;;;;;58464:17;;58451:9;:30;;58434:47;58426:80;;;::::0;-1:-1:-1;;;58426:80:0;;13078:2:1;58426:80:0::1;::::0;::::1;13060:21:1::0;13117:2;13097:18;;;13090:30;-1:-1:-1;;;13136:18:1;;;13129:50;13196:18;;58426:80:0::1;12876:344:1::0;58426:80:0::1;59010:9:::2;56872:5;57708:9;57691:14;35407:7:::0;35593:13;;35360:283;57691:14:::2;:26;;;;:::i;:::-;:46;;57669:128;;;;-1:-1:-1::0;;;57669:128:0::2;;;;;;;:::i;:::-;59037:39:::3;59043:10;59055:9;59037:39;;;;;;;;;;;::::0;59070:5:::3;59037;:39::i;40607:287::-:0;31267:10;-1:-1:-1;;;;;40706:24:0;;;40702:54;;40739:17;;-1:-1:-1;;;40739:17:0;;;;;;;;;;;40702:54;31267:10;40769:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40769:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40769:53:0;;;;;;;;;;40838:48;;540:41:1;;;40769:42:0;;31267:10;40838:48;;513:18:1;40838:48:0;;;;;;;40607:287;;:::o;60586:160::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;60714:17:::1;:24:::0;60586:160::o;41693:369::-;41860:28;41870:4;41876:2;41880:7;41860:9;:28::i;:::-;-1:-1:-1;;;;;41903:13:0;;2105:19;:23;;41903:76;;;;;41923:56;41954:4;41960:2;41964:7;41973:5;41923:30;:56::i;:::-;41922:57;41903:76;41899:156;;;42003:40;;-1:-1:-1;;;42003:40:0;;;;;;;;;;;41899:156;41693:369;;;;:::o;59214:327::-;59287:13;59318:16;59326:7;59318;:16::i;:::-;59313:59;;59343:29;;-1:-1:-1;;;59343:29:0;;;;;;;;;;;59313:59;59385:21;59409:10;:8;:10::i;:::-;59385:34;;59443:7;59437:21;59462:1;59437:26;:96;;;;;;;;;;;;;;;;;59490:7;59499:18;:7;:16;:18::i;:::-;59473:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59437:96;59430:103;59214:327;-1:-1:-1;;;59214:327:0:o;59549:113::-;-1:-1:-1;;;;;36468:19:0;;59607:7;36468:19;;;:12;:19;;;;;:32;-1:-1:-1;;;36468:32:0;;;;59634:20;36372:137;59670:185;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;59773:13:::1;56872:5;57708:9;57691:14;35407:7:::0;35593:13;;35360:283;57691:14:::1;:26;;;;:::i;:::-;:46;;57669:128;;;;-1:-1:-1::0;;;57669:128:0::1;;;;;;;:::i;:::-;59804:43:::2;59810:10;59822:13;59804:43;;;;;;;;;;;::::0;59841:5:::2;59804;:43::i;:::-;54824:1:::1;59670:185:::0;:::o;55442:201::-;54606:6;;-1:-1:-1;;;;;54606:6:0;31267:10;54753:23;54745:68;;;;-1:-1:-1;;;54745:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55531:22:0;::::1;55523:73;;;::::0;-1:-1:-1;;;55523:73:0;;14069:2:1;55523:73:0::1;::::0;::::1;14051:21:1::0;14108:2;14088:18;;;14081:30;14147:34;14127:18;;;14120:62;-1:-1:-1;;;14198:18:1;;;14191:36;14244:19;;55523:73:0::1;13867:402:1::0;55523:73:0::1;55607:28;55626:8;55607:18;:28::i;1810:326::-:0;-1:-1:-1;;;;;2105:19:0;;:23;;;1810:326::o;42317:187::-;42374:4;42438:13;;42428:7;:23;42398:98;;;;-1:-1:-1;;42469:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;42469:27:0;;;;42468:28;;42317:187::o;50487:196::-;50602:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50602:29:0;-1:-1:-1;;;;;50602:29:0;;;;;;;;;50647:28;;50602:24;;50647:28;;;;;;;50487:196;;;:::o;45430:2130::-;45545:35;45583:21;45596:7;45583:12;:21::i;:::-;45545:59;;45643:4;-1:-1:-1;;;;;45621:26:0;:13;:18;;;-1:-1:-1;;;;;45621:26:0;;45617:67;;45656:28;;-1:-1:-1;;;45656:28:0;;;;;;;;;;;45617:67;45697:22;31267:10;-1:-1:-1;;;;;45723:20:0;;;;:73;;-1:-1:-1;45760:36:0;45777:4;31267:10;40965:164;:::i;45760:36::-;45723:126;;;-1:-1:-1;31267:10:0;45813:20;45825:7;45813:11;:20::i;:::-;-1:-1:-1;;;;;45813:36:0;;45723:126;45697:153;;45868:17;45863:66;;45894:35;;-1:-1:-1;;;45894:35:0;;;;;;;;;;;45863:66;-1:-1:-1;;;;;45944:16:0;;45940:52;;45969:23;;-1:-1:-1;;;45969:23:0;;;;;;;;;;;45940:52;46113:35;46130:1;46134:7;46143:4;46113:8;:35::i;:::-;-1:-1:-1;;;;;46444:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46444:31:0;;;;;;;-1:-1:-1;;46444:31:0;;;;;;;46490:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46490:29:0;;;;;;;;;;;46570:20;;;:11;:20;;;;;;46605:18;;-1:-1:-1;;;;;;46638:49:0;;;;-1:-1:-1;;;46671:15:0;46638:49;;;;;;;;;;46961:11;;47021:24;;;;;47064:13;;46570:20;;47021:24;;47064:13;47060:384;;47274:13;;47259:11;:28;47255:174;;47312:20;;47381:28;;;;47355:54;;-1:-1:-1;;;47355:54:0;-1:-1:-1;;;;;;47355:54:0;;;-1:-1:-1;;;;;47312:20:0;;47355:54;;;;47255:174;46419:1036;;;47491:7;47487:2;-1:-1:-1;;;;;47472:27:0;47481:4;-1:-1:-1;;;;;47472:27:0;;;;;;;;;;;47510:42;45534:2026;;45430:2130;;;:::o;37465:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;37576:7:0;37659:13;;37652:4;:20;37621:886;;;37693:31;37727:17;;;:11;:17;;;;;;;;;37693:51;;;;;;;;;-1:-1:-1;;;;;37693:51:0;;;;-1:-1:-1;;;37693:51:0;;;;;;;;;;;-1:-1:-1;;;37693:51:0;;;;;;;;;;;;;;37763:729;;37813:14;;-1:-1:-1;;;;;37813:28:0;;37809:101;;37877:9;37465:1109;-1:-1:-1;;;37465:1109:0:o;37809:101::-;-1:-1:-1;;;38252:6:0;38297:17;;;;:11;:17;;;;;;;;;38285:29;;;;;;;;;-1:-1:-1;;;;;38285:29:0;;;;;-1:-1:-1;;;38285:29:0;;;;;;;;;;;-1:-1:-1;;;38285:29:0;;;;;;;;;;;;;38345:28;38341:109;;38413:9;37465:1109;-1:-1:-1;;;37465:1109:0:o;38341:109::-;38212:261;;;37674:833;37621:886;38535:31;;-1:-1:-1;;;38535:31:0;;;;;;;;;;;42512:104;42581:27;42591:2;42595:8;42581:27;;;;;;;;;;;;:9;:27::i;55803:191::-;55896:6;;;-1:-1:-1;;;;;55913:17:0;;;-1:-1:-1;;;;;;55913:17:0;;;;;;;55946:40;;55896:6;;;55913:17;55896:6;;55946:40;;55877:16;;55946:40;55866:128;55803:191;:::o;43401:1775::-;43540:20;43563:13;-1:-1:-1;;;;;43591:16:0;;43587:48;;43616:19;;-1:-1:-1;;;43616:19:0;;;;;;;;;;;43587:48;43650:8;43662:1;43650:13;43646:44;;43672:18;;-1:-1:-1;;;43672:18:0;;;;;;;;;;;43646:44;-1:-1:-1;;;;;44041:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;44100:49:0;;44041:44;;;;;;;;44100:49;;;-1:-1:-1;;;;;44041:44:0;;;;;;44100:49;;;;;;;;;;;;;;;;44166:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;44216:66:0;;;;-1:-1:-1;;;44266:15:0;44216:66;;;;;;;;;;44166:25;44363:23;;;44407:4;:23;;;;-1:-1:-1;;;;;;44415:13:0;;2105:19;:23;;44415:15;44403:641;;;44451:314;44482:38;;44507:12;;-1:-1:-1;;;;;44482:38:0;;;44499:1;;44482:38;;44499:1;;44482:38;44548:69;44587:1;44591:2;44595:14;;;;;;44611:5;44548:30;:69::i;:::-;44543:174;;44653:40;;-1:-1:-1;;;44653:40:0;;;;;;;;;;;44543:174;44760:3;44744:12;:19;44451:314;;44846:12;44829:13;;:29;44825:43;;44860:8;;;44825:43;44403:641;;;44909:120;44940:40;;44965:14;;;;;-1:-1:-1;;;;;44940:40:0;;;44957:1;;44940:40;;44957:1;;44940:40;45024:3;45008:12;:19;44909:120;;44403:641;-1:-1:-1;45058:13:0;:28;45108:60;41693:369;51175:667;51359:72;;-1:-1:-1;;;51359:72:0;;51338:4;;-1:-1:-1;;;;;51359:36:0;;;;;:72;;31267:10;;51410:4;;51416:7;;51425:5;;51359:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51359:72:0;;;;;;;;-1:-1:-1;;51359:72:0;;;;;;;;;;;;:::i;:::-;;;51355:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51593:6;:13;51610:1;51593:18;51589:235;;51639:40;;-1:-1:-1;;;51639:40:0;;;;;;;;;;;51589:235;51782:6;51776:13;51767:6;51763:2;51759:15;51752:38;51355:480;-1:-1:-1;;;;;;51478:55:0;-1:-1:-1;;;51478:55:0;;-1:-1:-1;51355:480:0;51175:667;;;;;;:::o;59092:114::-;59152:13;59185;59178:20;;;;;:::i;19215:723::-;19271:13;19492:5;19501:1;19492:10;19488:53;;-1:-1:-1;;19519:10:0;;;;;;;;;;;;-1:-1:-1;;;19519:10:0;;;;;19215:723::o;19488:53::-;19566:5;19551:12;19607:78;19614:9;;19607:78;;19640:8;;;;:::i;:::-;;-1:-1:-1;19663:10:0;;-1:-1:-1;19671:2:0;19663:10;;:::i;:::-;;;19607:78;;;19695:19;19727:6;19717:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19717:17:0;;19695:39;;19745:154;19752:10;;19745:154;;19779:11;19789:1;19779:11;;:::i;:::-;;-1:-1:-1;19848:10:0;19856:2;19848:5;:10;:::i;:::-;19835:24;;:2;:24;:::i;:::-;19822:39;;19805:6;19812;19805:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19805:56:0;;;;;;;;-1:-1:-1;19876:11:0;19885:2;19876:11;;:::i;:::-;;;19745:154;;42979:163;43102:32;43108:2;43112:8;43122:5;43129:4;43102:5;:32::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:380::-;5447:1;5443:12;;;;5490;;;5511:61;;5565:4;5557:6;5553:17;5543:27;;5511:61;5618:2;5610:6;5607:14;5587:18;5584:38;5581:161;;5664:10;5659:3;5655:20;5652:1;5645:31;5699:4;5696:1;5689:15;5727:4;5724:1;5717:15;5581:161;;5368:380;;;:::o;5753:356::-;5955:2;5937:21;;;5974:18;;;5967:30;6033:34;6028:2;6013:18;;6006:62;6100:2;6085:18;;5753:356::o;6795:545::-;6897:2;6892:3;6889:11;6886:448;;;6933:1;6958:5;6954:2;6947:17;7003:4;6999:2;6989:19;7073:2;7061:10;7057:19;7054:1;7050:27;7044:4;7040:38;7109:4;7097:10;7094:20;7091:47;;;-1:-1:-1;7132:4:1;7091:47;7187:2;7182:3;7178:12;7175:1;7171:20;7165:4;7161:31;7151:41;;7242:82;7260:2;7253:5;7250:13;7242:82;;;7305:17;;;7286:1;7275:13;7242:82;;;7246:3;;;6795:545;;;:::o;7516:1206::-;7640:18;7635:3;7632:27;7629:53;;;7662:18;;:::i;:::-;7691:94;7781:3;7741:38;7773:4;7767:11;7741:38;:::i;:::-;7735:4;7691:94;:::i;:::-;7811:1;7836:2;7831:3;7828:11;7853:1;7848:616;;;;8508:1;8525:3;8522:93;;;-1:-1:-1;8581:19:1;;;8568:33;8522:93;-1:-1:-1;;7473:1:1;7469:11;;;7465:24;7461:29;7451:40;7497:1;7493:11;;;7448:57;8628:78;;7821:895;;7848:616;6742:1;6735:14;;;6779:4;6766:18;;-1:-1:-1;;7884:17:1;;;7985:9;8007:229;8021:7;8018:1;8015:14;8007:229;;;8110:19;;;8097:33;8082:49;;8217:4;8202:20;;;;8170:1;8158:14;;;;8037:12;8007:229;;;8011:3;8264;8255:7;8252:16;8249:159;;;8388:1;8384:6;8378:3;8372;8369:1;8365:11;8361:21;8357:34;8353:39;8340:9;8335:3;8331:19;8318:33;8314:79;8306:6;8299:95;8249:159;;;8451:1;8445:3;8442:1;8438:11;8434:19;8428:4;8421:33;7821:895;;7516:1206;;;:::o;10552:127::-;10613:10;10608:3;10604:20;10601:1;10594:31;10644:4;10641:1;10634:15;10668:4;10665:1;10658:15;10684:128;10724:3;10755:1;10751:6;10748:1;10745:13;10742:39;;;10761:18;;:::i;:::-;-1:-1:-1;10797:9:1;;10684:128::o;11637:356::-;11839:2;11821:21;;;11858:18;;;11851:30;11917:34;11912:2;11897:18;;11890:62;11984:2;11969:18;;11637:356::o;12352:168::-;12392:7;12458:1;12454;12450:6;12446:14;12443:1;12440:21;12435:1;12428:9;12421:17;12417:45;12414:71;;;12465:18;;:::i;:::-;-1:-1:-1;12505:9:1;;12352:168::o;13225:637::-;13505:3;13543:6;13537:13;13559:53;13605:6;13600:3;13593:4;13585:6;13581:17;13559:53;:::i;:::-;13675:13;;13634:16;;;;13697:57;13675:13;13634:16;13731:4;13719:17;;13697:57;:::i;:::-;-1:-1:-1;;;13776:20:1;;13805:22;;;13854:1;13843:13;;13225:637;-1:-1:-1;;;;13225:637:1:o;14274:489::-;-1:-1:-1;;;;;14543:15:1;;;14525:34;;14595:15;;14590:2;14575:18;;14568:43;14642:2;14627:18;;14620:34;;;14690:3;14685:2;14670:18;;14663:31;;;14468:4;;14711:46;;14737:19;;14729:6;14711:46;:::i;:::-;14703:54;14274:489;-1:-1:-1;;;;;;14274:489:1:o;14768:249::-;14837:6;14890:2;14878:9;14869:7;14865:23;14861:32;14858:52;;;14906:1;14903;14896:12;14858:52;14938:9;14932:16;14957:30;14981:5;14957:30;:::i;15022:135::-;15061:3;15082:17;;;15079:43;;15102:18;;:::i;:::-;-1:-1:-1;15149:1:1;15138:13;;15022:135::o;15162:127::-;15223:10;15218:3;15214:20;15211:1;15204:31;15254:4;15251:1;15244:15;15278:4;15275:1;15268:15;15294:120;15334:1;15360;15350:35;;15365:18;;:::i;:::-;-1:-1:-1;15399:9:1;;15294:120::o;15419:125::-;15459:4;15487:1;15484;15481:8;15478:34;;;15492:18;;:::i;:::-;-1:-1:-1;15529:9:1;;15419:125::o;15549:112::-;15581:1;15607;15597:35;;15612:18;;:::i;:::-;-1:-1:-1;15646:9:1;;15549:112::o;15666:127::-;15727:10;15722:3;15718:20;15715:1;15708:31;15758:4;15755:1;15748:15;15782:4;15779:1;15772:15
Swarm Source
ipfs://dc459cde9a095112812f812cc8241a2dcabeb42eb35838cf94dd470efa51d246
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.