ERC-721
Overview
Max Total Supply
7,777 DA
Holders
815
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 DALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DirtyApe
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-09 */ // 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/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/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // 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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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: erc721a/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 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/DirtyApe.sol pragma solidity ^0.8.9; contract DirtyApe is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string private baseURI; string private baseExtension = ".json"; string private HiddenUri; bytes32 private WLRoot; string public provenanceHash; uint256 public preSaleStartTime = 1653141600; uint256 public publicSaleStartTime = 1653228000; uint256 public mintPrice = 0.08 ether; uint256 public mintPriceWL = 0.05 ether; uint256 public maxSupply = 7777; uint256 public maxMintAmountPerTx = 5; uint256 public maxMintPerWhiteList = 3; bool public isContractActive = true; bool private isHidden = true; mapping(address => uint256) public mintCountPerAdd; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initHiddenUri, string memory _initProvenanceHash, bytes32[] memory _WLRoot ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); setHiddenURI(_initHiddenUri); setProvenanceHash(_initProvenanceHash); setWLRoot(_WLRoot[0]); } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } // internal function _baseURI() internal view virtual override returns(string memory) { return baseURI; } // presales function preSaleMint(uint256 _mintAmount, bytes32[] calldata _proof) external payable callerIsUser nonReentrant { require(isContractActive, "Contract is not Active"); require(_mintAmount > 0, "At least 1 NFT is needed"); require(preSaleStartTime != 0 && block.timestamp >= preSaleStartTime, "presale has not started yet"); require(publicSaleStartTime != 0 && block.timestamp < publicSaleStartTime, "presale has ended"); require(totalSupply() + _mintAmount <= maxSupply, "Minting would exceed total supply"); uint256 mintedCount = mintCountPerAdd[msg.sender]; if (isWLlisted(_proof)) { require(_mintAmount + mintedCount <= maxMintPerWhiteList, "Exceed Minting Limit"); } else { require(false, "This Address is not whitelisted"); } uint256 calculatedMintPrice = mintPriceWL * _mintAmount; require(msg.value >= calculatedMintPrice, "Insufficient Funds"); mintCountPerAdd[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } // public function mint(uint256 _mintAmount) external payable nonReentrant { require(isContractActive, "Contract is not Active"); require(publicSaleStartTime != 0 && block.timestamp >= publicSaleStartTime, "public sale has not started yet"); require(_mintAmount > 0, "At least 1 NFT is needed"); require(_mintAmount <= maxMintAmountPerTx, "Max Mint Amount Exceeded"); require(totalSupply() + _mintAmount <= maxSupply, "Minting would exceed total supply"); uint256 calculatedMintPrice = mintPrice * _mintAmount; require(msg.value >= calculatedMintPrice, "Insufficient Funds"); _safeMint(msg.sender, _mintAmount); } function isWLlisted(bytes32[] calldata _proof) public view returns(bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); return MerkleProof.verify(_proof, WLRoot, leaf); } function tokenURI(uint256 tokenId) public view virtual override returns(string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (isHidden == true) { return HiddenUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function getMintedCountPerAdd(address user) public view returns(uint256) { uint256 count = mintCountPerAdd[user]; return count; } //only Owner function setProvenanceHash(string memory _provenanceHash) public onlyOwner { provenanceHash = _provenanceHash; } function giveaway(address to, uint256 _mintAmount) public onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Minting would exceed total supply"); require(_mintAmount <= maxSupply, 'Minting would exceed total supply'); _safeMint(to, _mintAmount); } function reservedMint(uint256 _mintAmount) public onlyOwner { require(_mintAmount <= maxSupply, 'Minting would exceed total supply'); require(totalSupply() + _mintAmount <= maxSupply, "Minting would exceed total supply"); _safeMint(msg.sender, _mintAmount); } function setContractActive(bool _state) public onlyOwner { isContractActive = _state; } function setHiddenURI(string memory _URI) public onlyOwner { HiddenUri = _URI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setMintPrice(uint256 _newPrice) public onlyOwner { mintPrice = _newPrice; } function setWLMintPrice(uint256 _newPrice) public onlyOwner { mintPriceWL = _newPrice; } function setMaxMintAmountPerTx(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmountPerTx = _newmaxMintAmount; } function setMaxMintAmountPerWhiteList(uint256 _limit) public onlyOwner { maxMintPerWhiteList = _limit; } function setWLRoot(bytes32 _root) public onlyOwner { WLRoot = _root; } function setPreSaleStartTime(uint256 _startTime) public onlyOwner { preSaleStartTime = _startTime; } function setPublicSaleStartTime(uint256 _startTime) public onlyOwner { publicSaleStartTime = _startTime; } function reveal() public onlyOwner { isHidden = false; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call { value: address(this).balance }(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initHiddenUri","type":"string"},{"internalType":"string","name":"_initProvenanceHash","type":"string"},{"internalType":"bytes32[]","name":"_WLRoot","type":"bytes32[]"}],"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"},{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getMintedCountPerAdd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isContractActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWLlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCountPerAdd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPriceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setContractActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxMintAmountPerWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setPreSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWLMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWLRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600b91906200030a565b50636288f060600f5563628a41e060105567011c37937e08000060115566b1a2bc2ec50000601255611e61601355600560145560036015556016805461ffff19166101011790553480156200007c57600080fd5b5060405162002f5b38038062002f5b8339810160408190526200009f9162000516565b855186908690620000b89060029060208501906200030a565b508051620000ce9060039060208401906200030a565b50506000805550620000e03362000140565b6001600955620000f08462000192565b620000fb83620001fa565b62000106826200025a565b62000134816000815181106200012057620001206200061d565b6020026020010151620002ba60201b60201c565b50505050505062000670565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001e15760405162461bcd60e51b8152602060048201819052602482015260008051602062002f3b83398151915260448201526064015b60405180910390fd5b8051620001f690600a9060208401906200030a565b5050565b6008546001600160a01b03163314620002455760405162461bcd60e51b8152602060048201819052602482015260008051602062002f3b8339815191526044820152606401620001d8565b8051620001f690600c9060208401906200030a565b6008546001600160a01b03163314620002a55760405162461bcd60e51b8152602060048201819052602482015260008051602062002f3b8339815191526044820152606401620001d8565b8051620001f690600e9060208401906200030a565b6008546001600160a01b03163314620003055760405162461bcd60e51b8152602060048201819052602482015260008051602062002f3b8339815191526044820152606401620001d8565b600d55565b828054620003189062000633565b90600052602060002090601f0160209004810192826200033c576000855562000387565b82601f106200035757805160ff191683800117855562000387565b8280016001018555821562000387579182015b82811115620003875782518255916020019190600101906200036a565b506200039592915062000399565b5090565b5b808211156200039557600081556001016200039a565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620003f157620003f1620003b0565b604052919050565b600082601f8301126200040b57600080fd5b81516001600160401b03811115620004275762000427620003b0565b60206200043d601f8301601f19168201620003c6565b82815285828487010111156200045257600080fd5b60005b838110156200047257858101830151828201840152820162000455565b83811115620004845760008385840101525b5095945050505050565b600082601f830112620004a057600080fd5b815160206001600160401b03821115620004be57620004be620003b0565b8160051b620004cf828201620003c6565b9283528481018201928281019087851115620004ea57600080fd5b83870192505b848310156200050b57825182529183019190830190620004f0565b979650505050505050565b60008060008060008060c087890312156200053057600080fd5b86516001600160401b03808211156200054857600080fd5b620005568a838b01620003f9565b975060208901519150808211156200056d57600080fd5b6200057b8a838b01620003f9565b965060408901519150808211156200059257600080fd5b620005a08a838b01620003f9565b95506060890151915080821115620005b757600080fd5b620005c58a838b01620003f9565b94506080890151915080821115620005dc57600080fd5b620005ea8a838b01620003f9565b935060a08901519150808211156200060157600080fd5b506200061089828a016200048e565b9150509295509295509295565b634e487b7160e01b600052603260045260246000fd5b600181811c908216806200064857607f821691505b602082108114156200066a57634e487b7160e01b600052602260045260246000fd5b50919050565b6128bb80620006806000396000f3fe6080604052600436106102885760003560e01c80638c74bf0e1161015a578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461075c578063e1e62b021461077c578063e985e9c51461079c578063f2fde38b146107e5578063f4a0a52814610805578063fbece4491461082557600080fd5b8063b88d4fde146106bb578063bbaac02f146106db578063c0130f2f146106fb578063c6ab67a314610711578063c87b56dd14610726578063d5abeb011461074657600080fd5b8063a0712d6811610113578063a0712d6814610613578063a22cb46514610626578063a475b5dd14610646578063b040533b1461065b578063b071401b1461067b578063b11c7f821461069b57600080fd5b80638c74bf0e146105705780638da5cb5b146105905780638f5949f9146105ae57806394354fd0146105c857806395d89b41146105de578063970388b5146105f357600080fd5b80632c34d4ee116101fe5780636352211e116101b75780636352211e146104cf5780636817c76c146104ef5780636bb7b1d9146105055780636d5d40c61461051b57806370a082311461053b578063715018a61461055b57600080fd5b80632c34d4ee146104285780633ccfd60b1461045e57806342842e0e146104665780634c220f6e1461048657806355f804b3146104995780635cadebc6146104b957600080fd5b8063095ea7b311610250578063095ea7b3146103625780630987e9571461038257806310969523146103a257806318160ddd146103c257806323b872dd146103db5780632b87ad1e146103fb57600080fd5b806301ffc9a71461028d578063050225ea146102c257806306d65af3146102e457806306fdde0314610308578063081812fc1461032a575b600080fd5b34801561029957600080fd5b506102ad6102a83660046121f8565b610845565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd366004612231565b610897565b005b3480156102f057600080fd5b506102fa600f5481565b6040519081526020016102b9565b34801561031457600080fd5b5061031d610933565b6040516102b991906122b3565b34801561033657600080fd5b5061034a6103453660046122c6565b6109c5565b6040516001600160a01b0390911681526020016102b9565b34801561036e57600080fd5b506102e261037d366004612231565b610a09565b34801561038e57600080fd5b506102ad61039d36600461232a565b610a97565b3480156103ae57600080fd5b506102e26103bd3660046123f6565b610b1b565b3480156103ce57600080fd5b50600154600054036102fa565b3480156103e757600080fd5b506102e26103f636600461243e565b610b58565b34801561040757600080fd5b506102fa61041636600461247a565b60176020526000908152604090205481565b34801561043457600080fd5b506102fa61044336600461247a565b6001600160a01b031660009081526017602052604090205490565b6102e2610b63565b34801561047257600080fd5b506102e261048136600461243e565b610be5565b6102e2610494366004612495565b610c00565b3480156104a557600080fd5b506102e26104b43660046123f6565b610f77565b3480156104c557600080fd5b506102fa60155481565b3480156104db57600080fd5b5061034a6104ea3660046122c6565b610fb4565b3480156104fb57600080fd5b506102fa60115481565b34801561051157600080fd5b506102fa60105481565b34801561052757600080fd5b506102e26105363660046122c6565b610fc6565b34801561054757600080fd5b506102fa61055636600461247a565b610ff5565b34801561056757600080fd5b506102e2611043565b34801561057c57600080fd5b506102e261058b3660046122c6565b611079565b34801561059c57600080fd5b506008546001600160a01b031661034a565b3480156105ba57600080fd5b506016546102ad9060ff1681565b3480156105d457600080fd5b506102fa60145481565b3480156105ea57600080fd5b5061031d611108565b3480156105ff57600080fd5b506102e261060e3660046124f0565b611117565b6102e26106213660046122c6565b611154565b34801561063257600080fd5b506102e261064136600461250b565b611396565b34801561065257600080fd5b506102e261142c565b34801561066757600080fd5b506102e26106763660046122c6565b611463565b34801561068757600080fd5b506102e26106963660046122c6565b611492565b3480156106a757600080fd5b506102e26106b63660046122c6565b6114c1565b3480156106c757600080fd5b506102e26106d636600461253e565b6114f0565b3480156106e757600080fd5b506102e26106f63660046123f6565b611541565b34801561070757600080fd5b506102fa60125481565b34801561071d57600080fd5b5061031d61157e565b34801561073257600080fd5b5061031d6107413660046122c6565b61160c565b34801561075257600080fd5b506102fa60135481565b34801561076857600080fd5b506102e26107773660046123f6565b611782565b34801561078857600080fd5b506102e26107973660046122c6565b6117bf565b3480156107a857600080fd5b506102ad6107b73660046125b9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107f157600080fd5b506102e261080036600461247a565b6117ee565b34801561081157600080fd5b506102e26108203660046122c6565b611886565b34801561083157600080fd5b506102e26108403660046122c6565b6118b5565b60006001600160e01b031982166380ac58cd60e01b148061087657506001600160e01b03198216635b5e139f60e01b145b8061089157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108ca5760405162461bcd60e51b81526004016108c1906125e3565b60405180910390fd5b601354816108db6001546000540390565b6108e5919061262e565b11156109035760405162461bcd60e51b81526004016108c190612646565b6013548111156109255760405162461bcd60e51b81526004016108c190612646565b61092f82826118e4565b5050565b60606002805461094290612687565b80601f016020809104026020016040519081016040528092919081815260200182805461096e90612687565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b5050505050905090565b60006109d0826118fe565b6109ed576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a1482610fb4565b9050806001600160a01b0316836001600160a01b03161415610a495760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a695750610a6781336107b7565b155b15610a87576040516367d9dca160e11b815260040160405180910390fd5b610a92838383611929565b505050565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050610b1384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611985565b949350505050565b6008546001600160a01b03163314610b455760405162461bcd60e51b81526004016108c1906125e3565b805161092f90600e906020840190612149565b610a9283838361199b565b6008546001600160a01b03163314610b8d5760405162461bcd60e51b81526004016108c1906125e3565b604051600090339047908381818185875af1925050503d8060008114610bcf576040519150601f19603f3d011682016040523d82523d6000602084013e610bd4565b606091505b5050905080610be257600080fd5b50565b610a92838383604051806020016040528060008152506114f0565b323314610c4f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108c1565b60026009541415610ca25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c1565b600260095560165460ff16610cf25760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742041637469766560501b60448201526064016108c1565b60008311610d3d5760405162461bcd60e51b8152602060048201526018602482015277105d081b19585cdd080c48139195081a5cc81b995959195960421b60448201526064016108c1565b600f5415801590610d505750600f544210155b610d9c5760405162461bcd60e51b815260206004820152601b60248201527f70726573616c6520686173206e6f74207374617274656420796574000000000060448201526064016108c1565b60105415801590610dae575060105442105b610dee5760405162461bcd60e51b81526020600482015260116024820152701c1c995cd85b19481a185cc8195b991959607a1b60448201526064016108c1565b60135483610dff6001546000540390565b610e09919061262e565b1115610e275760405162461bcd60e51b81526004016108c190612646565b33600090815260176020526040902054610e418383610a97565b15610e9d57601554610e53828661262e565b1115610e985760405162461bcd60e51b8152602060048201526014602482015273115e18d9595908135a5b9d1a5b99c8131a5b5a5d60621b60448201526064016108c1565b610ee5565b60405162461bcd60e51b815260206004820152601f60248201527f546869732041646472657373206973206e6f742077686974656c69737465640060448201526064016108c1565b600084601254610ef591906126c2565b905080341015610f3c5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016108c1565b3360009081526017602052604081208054879290610f5b90849061262e565b90915550610f6b905033866118e4565b50506001600955505050565b6008546001600160a01b03163314610fa15760405162461bcd60e51b81526004016108c1906125e3565b805161092f90600a906020840190612149565b6000610fbf82611b89565b5192915050565b6008546001600160a01b03163314610ff05760405162461bcd60e51b81526004016108c1906125e3565b601055565b60006001600160a01b03821661101e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461106d5760405162461bcd60e51b81526004016108c1906125e3565b6110776000611ca3565b565b6008546001600160a01b031633146110a35760405162461bcd60e51b81526004016108c1906125e3565b6013548111156110c55760405162461bcd60e51b81526004016108c190612646565b601354816110d66001546000540390565b6110e0919061262e565b11156110fe5760405162461bcd60e51b81526004016108c190612646565b610be233826118e4565b60606003805461094290612687565b6008546001600160a01b031633146111415760405162461bcd60e51b81526004016108c1906125e3565b6016805460ff1916911515919091179055565b600260095414156111a75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c1565b600260095560165460ff166111f75760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742041637469766560501b60448201526064016108c1565b6010541580159061120a57506010544210155b6112565760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016108c1565b600081116112a15760405162461bcd60e51b8152602060048201526018602482015277105d081b19585cdd080c48139195081a5cc81b995959195960421b60448201526064016108c1565b6014548111156112f35760405162461bcd60e51b815260206004820152601860248201527f4d6178204d696e7420416d6f756e74204578636565646564000000000000000060448201526064016108c1565b601354816113046001546000540390565b61130e919061262e565b111561132c5760405162461bcd60e51b81526004016108c190612646565b60008160115461133c91906126c2565b9050803410156113835760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016108c1565b61138d33836118e4565b50506001600955565b6001600160a01b0382163314156113c05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114565760405162461bcd60e51b81526004016108c1906125e3565b6016805461ff0019169055565b6008546001600160a01b0316331461148d5760405162461bcd60e51b81526004016108c1906125e3565b600f55565b6008546001600160a01b031633146114bc5760405162461bcd60e51b81526004016108c1906125e3565b601455565b6008546001600160a01b031633146114eb5760405162461bcd60e51b81526004016108c1906125e3565b600d55565b6114fb84848461199b565b6001600160a01b0383163b1515801561151d575061151b84848484611cf5565b155b1561153b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461156b5760405162461bcd60e51b81526004016108c1906125e3565b805161092f90600c906020840190612149565b600e805461158b90612687565b80601f01602080910402602001604051908101604052809291908181526020018280546115b790612687565b80156116045780601f106115d957610100808354040283529160200191611604565b820191906000526020600020905b8154815290600101906020018083116115e757829003601f168201915b505050505081565b6060611617826118fe565b61167b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c1565b60165460ff6101009091041615156001141561172357600c805461169e90612687565b80601f01602080910402602001604051908101604052809291908181526020018280546116ca90612687565b80156117175780601f106116ec57610100808354040283529160200191611717565b820191906000526020600020905b8154815290600101906020018083116116fa57829003601f168201915b50505050509050919050565b600061172d611dec565b9050600081511161174d576040518060200160405280600081525061177b565b8061175784611dfb565b600b60405160200161176b939291906126e1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117ac5760405162461bcd60e51b81526004016108c1906125e3565b805161092f90600b906020840190612149565b6008546001600160a01b031633146117e95760405162461bcd60e51b81526004016108c1906125e3565b601255565b6008546001600160a01b031633146118185760405162461bcd60e51b81526004016108c1906125e3565b6001600160a01b03811661187d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c1565b610be281611ca3565b6008546001600160a01b031633146118b05760405162461bcd60e51b81526004016108c1906125e3565b601155565b6008546001600160a01b031633146118df5760405162461bcd60e51b81526004016108c1906125e3565b601555565b61092f828260405180602001604052806000815250611ef8565b6000805482108015610891575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000826119928584611f05565b14949350505050565b60006119a682611b89565b9050836001600160a01b031681600001516001600160a01b0316146119dd5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119fb57506119fb85336107b7565b80611a16575033611a0b846109c5565b6001600160a01b0316145b905080611a3657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a5d57604051633a954ecd60e21b815260040160405180910390fd5b611a6960008487611929565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b3d576000548214611b3d57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611c8a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c885780516001600160a01b031615611c1f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c83579392505050565b611c1f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d2a9033908990889088906004016127a5565b602060405180830381600087803b158015611d4457600080fd5b505af1925050508015611d74575060408051601f3d908101601f19168201909252611d71918101906127e2565b60015b611dcf573d808015611da2576040519150601f19603f3d011682016040523d82523d6000602084013e611da7565b606091505b508051611dc7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461094290612687565b606081611e1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e495780611e33816127ff565b9150611e429050600a83612830565b9150611e23565b6000816001600160401b03811115611e6357611e6361236b565b6040519080825280601f01601f191660200182016040528015611e8d576020820181803683370190505b5090505b8415610b1357611ea2600183612844565b9150611eaf600a8661285b565b611eba90603061262e565b60f81b818381518110611ecf57611ecf61286f565b60200101906001600160f81b031916908160001a905350611ef1600a86612830565b9450611e91565b610a928383836001611f79565b600081815b8451811015611f71576000858281518110611f2757611f2761286f565b60200260200101519050808311611f4d5760008381526020829052604090209250611f5e565b600081815260208490526040902092505b5080611f69816127ff565b915050611f0a565b509392505050565b6000546001600160a01b038516611fa257604051622e076360e81b815260040160405180910390fd5b83611fc05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561207157506001600160a01b0387163b15155b156120fa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120c26000888480600101955088611cf5565b6120df576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120775782600054146120f557600080fd5b612140565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156120fb575b50600055611b82565b82805461215590612687565b90600052602060002090601f01602090048101928261217757600085556121bd565b82601f1061219057805160ff19168380011785556121bd565b828001600101855582156121bd579182015b828111156121bd5782518255916020019190600101906121a2565b506121c99291506121cd565b5090565b5b808211156121c957600081556001016121ce565b6001600160e01b031981168114610be257600080fd5b60006020828403121561220a57600080fd5b813561177b816121e2565b80356001600160a01b038116811461222c57600080fd5b919050565b6000806040838503121561224457600080fd5b61224d83612215565b946020939093013593505050565b60005b8381101561227657818101518382015260200161225e565b8381111561153b5750506000910152565b6000815180845261229f81602086016020860161225b565b601f01601f19169290920160200192915050565b60208152600061177b6020830184612287565b6000602082840312156122d857600080fd5b5035919050565b60008083601f8401126122f157600080fd5b5081356001600160401b0381111561230857600080fd5b6020830191508360208260051b850101111561232357600080fd5b9250929050565b6000806020838503121561233d57600080fd5b82356001600160401b0381111561235357600080fd5b61235f858286016122df565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561239b5761239b61236b565b604051601f8501601f19908116603f011681019082821181831017156123c3576123c361236b565b816040528093508581528686860111156123dc57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561240857600080fd5b81356001600160401b0381111561241e57600080fd5b8201601f8101841361242f57600080fd5b610b1384823560208401612381565b60008060006060848603121561245357600080fd5b61245c84612215565b925061246a60208501612215565b9150604084013590509250925092565b60006020828403121561248c57600080fd5b61177b82612215565b6000806000604084860312156124aa57600080fd5b8335925060208401356001600160401b038111156124c757600080fd5b6124d3868287016122df565b9497909650939450505050565b8035801515811461222c57600080fd5b60006020828403121561250257600080fd5b61177b826124e0565b6000806040838503121561251e57600080fd5b61252783612215565b9150612535602084016124e0565b90509250929050565b6000806000806080858703121561255457600080fd5b61255d85612215565b935061256b60208601612215565b92506040850135915060608501356001600160401b0381111561258d57600080fd5b8501601f8101871361259e57600080fd5b6125ad87823560208401612381565b91505092959194509250565b600080604083850312156125cc57600080fd5b6125d583612215565b915061253560208401612215565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561264157612641612618565b500190565b60208082526021908201527f4d696e74696e6720776f756c642065786365656420746f74616c20737570706c6040820152607960f81b606082015260800190565b600181811c9082168061269b57607f821691505b602082108114156126bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156126dc576126dc612618565b500290565b6000845160206126f48285838a0161225b565b8551918401916127078184848a0161225b565b8554920191600090600181811c908083168061272457607f831692505b85831081141561274257634e487b7160e01b85526022600452602485fd5b808015612756576001811461276757612794565b60ff19851688528388019550612794565b60008b81526020902060005b8581101561278c5781548a820152908401908801612773565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127d890830184612287565b9695505050505050565b6000602082840312156127f457600080fd5b815161177b816121e2565b600060001982141561281357612813612618565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261283f5761283f61281a565b500490565b60008282101561285657612856612618565b500390565b60008261286a5761286a61281a565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122066870b1c9ba9a28398aeaff05f4c3b3b2ecb45bf96625fbfe901064d7f388ab964736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000114469727479417065204f6666696369616c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000244410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5057506a62597754716d50324e3453666a535942334d4562383852525471524d797032375968764546345a482f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d634d677a315a31713977516a7275387a75584c526850345170694668634c6f75754754415354486e695357462f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000135846a726195c0b235cfeeaeb54d7c925c75b8ba51500bd913eedad1fa98a478
Deployed Bytecode
0x6080604052600436106102885760003560e01c80638c74bf0e1161015a578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461075c578063e1e62b021461077c578063e985e9c51461079c578063f2fde38b146107e5578063f4a0a52814610805578063fbece4491461082557600080fd5b8063b88d4fde146106bb578063bbaac02f146106db578063c0130f2f146106fb578063c6ab67a314610711578063c87b56dd14610726578063d5abeb011461074657600080fd5b8063a0712d6811610113578063a0712d6814610613578063a22cb46514610626578063a475b5dd14610646578063b040533b1461065b578063b071401b1461067b578063b11c7f821461069b57600080fd5b80638c74bf0e146105705780638da5cb5b146105905780638f5949f9146105ae57806394354fd0146105c857806395d89b41146105de578063970388b5146105f357600080fd5b80632c34d4ee116101fe5780636352211e116101b75780636352211e146104cf5780636817c76c146104ef5780636bb7b1d9146105055780636d5d40c61461051b57806370a082311461053b578063715018a61461055b57600080fd5b80632c34d4ee146104285780633ccfd60b1461045e57806342842e0e146104665780634c220f6e1461048657806355f804b3146104995780635cadebc6146104b957600080fd5b8063095ea7b311610250578063095ea7b3146103625780630987e9571461038257806310969523146103a257806318160ddd146103c257806323b872dd146103db5780632b87ad1e146103fb57600080fd5b806301ffc9a71461028d578063050225ea146102c257806306d65af3146102e457806306fdde0314610308578063081812fc1461032a575b600080fd5b34801561029957600080fd5b506102ad6102a83660046121f8565b610845565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd366004612231565b610897565b005b3480156102f057600080fd5b506102fa600f5481565b6040519081526020016102b9565b34801561031457600080fd5b5061031d610933565b6040516102b991906122b3565b34801561033657600080fd5b5061034a6103453660046122c6565b6109c5565b6040516001600160a01b0390911681526020016102b9565b34801561036e57600080fd5b506102e261037d366004612231565b610a09565b34801561038e57600080fd5b506102ad61039d36600461232a565b610a97565b3480156103ae57600080fd5b506102e26103bd3660046123f6565b610b1b565b3480156103ce57600080fd5b50600154600054036102fa565b3480156103e757600080fd5b506102e26103f636600461243e565b610b58565b34801561040757600080fd5b506102fa61041636600461247a565b60176020526000908152604090205481565b34801561043457600080fd5b506102fa61044336600461247a565b6001600160a01b031660009081526017602052604090205490565b6102e2610b63565b34801561047257600080fd5b506102e261048136600461243e565b610be5565b6102e2610494366004612495565b610c00565b3480156104a557600080fd5b506102e26104b43660046123f6565b610f77565b3480156104c557600080fd5b506102fa60155481565b3480156104db57600080fd5b5061034a6104ea3660046122c6565b610fb4565b3480156104fb57600080fd5b506102fa60115481565b34801561051157600080fd5b506102fa60105481565b34801561052757600080fd5b506102e26105363660046122c6565b610fc6565b34801561054757600080fd5b506102fa61055636600461247a565b610ff5565b34801561056757600080fd5b506102e2611043565b34801561057c57600080fd5b506102e261058b3660046122c6565b611079565b34801561059c57600080fd5b506008546001600160a01b031661034a565b3480156105ba57600080fd5b506016546102ad9060ff1681565b3480156105d457600080fd5b506102fa60145481565b3480156105ea57600080fd5b5061031d611108565b3480156105ff57600080fd5b506102e261060e3660046124f0565b611117565b6102e26106213660046122c6565b611154565b34801561063257600080fd5b506102e261064136600461250b565b611396565b34801561065257600080fd5b506102e261142c565b34801561066757600080fd5b506102e26106763660046122c6565b611463565b34801561068757600080fd5b506102e26106963660046122c6565b611492565b3480156106a757600080fd5b506102e26106b63660046122c6565b6114c1565b3480156106c757600080fd5b506102e26106d636600461253e565b6114f0565b3480156106e757600080fd5b506102e26106f63660046123f6565b611541565b34801561070757600080fd5b506102fa60125481565b34801561071d57600080fd5b5061031d61157e565b34801561073257600080fd5b5061031d6107413660046122c6565b61160c565b34801561075257600080fd5b506102fa60135481565b34801561076857600080fd5b506102e26107773660046123f6565b611782565b34801561078857600080fd5b506102e26107973660046122c6565b6117bf565b3480156107a857600080fd5b506102ad6107b73660046125b9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107f157600080fd5b506102e261080036600461247a565b6117ee565b34801561081157600080fd5b506102e26108203660046122c6565b611886565b34801561083157600080fd5b506102e26108403660046122c6565b6118b5565b60006001600160e01b031982166380ac58cd60e01b148061087657506001600160e01b03198216635b5e139f60e01b145b8061089157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108ca5760405162461bcd60e51b81526004016108c1906125e3565b60405180910390fd5b601354816108db6001546000540390565b6108e5919061262e565b11156109035760405162461bcd60e51b81526004016108c190612646565b6013548111156109255760405162461bcd60e51b81526004016108c190612646565b61092f82826118e4565b5050565b60606002805461094290612687565b80601f016020809104026020016040519081016040528092919081815260200182805461096e90612687565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b5050505050905090565b60006109d0826118fe565b6109ed576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a1482610fb4565b9050806001600160a01b0316836001600160a01b03161415610a495760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a695750610a6781336107b7565b155b15610a87576040516367d9dca160e11b815260040160405180910390fd5b610a92838383611929565b505050565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050610b1384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611985565b949350505050565b6008546001600160a01b03163314610b455760405162461bcd60e51b81526004016108c1906125e3565b805161092f90600e906020840190612149565b610a9283838361199b565b6008546001600160a01b03163314610b8d5760405162461bcd60e51b81526004016108c1906125e3565b604051600090339047908381818185875af1925050503d8060008114610bcf576040519150601f19603f3d011682016040523d82523d6000602084013e610bd4565b606091505b5050905080610be257600080fd5b50565b610a92838383604051806020016040528060008152506114f0565b323314610c4f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108c1565b60026009541415610ca25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c1565b600260095560165460ff16610cf25760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742041637469766560501b60448201526064016108c1565b60008311610d3d5760405162461bcd60e51b8152602060048201526018602482015277105d081b19585cdd080c48139195081a5cc81b995959195960421b60448201526064016108c1565b600f5415801590610d505750600f544210155b610d9c5760405162461bcd60e51b815260206004820152601b60248201527f70726573616c6520686173206e6f74207374617274656420796574000000000060448201526064016108c1565b60105415801590610dae575060105442105b610dee5760405162461bcd60e51b81526020600482015260116024820152701c1c995cd85b19481a185cc8195b991959607a1b60448201526064016108c1565b60135483610dff6001546000540390565b610e09919061262e565b1115610e275760405162461bcd60e51b81526004016108c190612646565b33600090815260176020526040902054610e418383610a97565b15610e9d57601554610e53828661262e565b1115610e985760405162461bcd60e51b8152602060048201526014602482015273115e18d9595908135a5b9d1a5b99c8131a5b5a5d60621b60448201526064016108c1565b610ee5565b60405162461bcd60e51b815260206004820152601f60248201527f546869732041646472657373206973206e6f742077686974656c69737465640060448201526064016108c1565b600084601254610ef591906126c2565b905080341015610f3c5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016108c1565b3360009081526017602052604081208054879290610f5b90849061262e565b90915550610f6b905033866118e4565b50506001600955505050565b6008546001600160a01b03163314610fa15760405162461bcd60e51b81526004016108c1906125e3565b805161092f90600a906020840190612149565b6000610fbf82611b89565b5192915050565b6008546001600160a01b03163314610ff05760405162461bcd60e51b81526004016108c1906125e3565b601055565b60006001600160a01b03821661101e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461106d5760405162461bcd60e51b81526004016108c1906125e3565b6110776000611ca3565b565b6008546001600160a01b031633146110a35760405162461bcd60e51b81526004016108c1906125e3565b6013548111156110c55760405162461bcd60e51b81526004016108c190612646565b601354816110d66001546000540390565b6110e0919061262e565b11156110fe5760405162461bcd60e51b81526004016108c190612646565b610be233826118e4565b60606003805461094290612687565b6008546001600160a01b031633146111415760405162461bcd60e51b81526004016108c1906125e3565b6016805460ff1916911515919091179055565b600260095414156111a75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c1565b600260095560165460ff166111f75760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742041637469766560501b60448201526064016108c1565b6010541580159061120a57506010544210155b6112565760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016108c1565b600081116112a15760405162461bcd60e51b8152602060048201526018602482015277105d081b19585cdd080c48139195081a5cc81b995959195960421b60448201526064016108c1565b6014548111156112f35760405162461bcd60e51b815260206004820152601860248201527f4d6178204d696e7420416d6f756e74204578636565646564000000000000000060448201526064016108c1565b601354816113046001546000540390565b61130e919061262e565b111561132c5760405162461bcd60e51b81526004016108c190612646565b60008160115461133c91906126c2565b9050803410156113835760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016108c1565b61138d33836118e4565b50506001600955565b6001600160a01b0382163314156113c05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114565760405162461bcd60e51b81526004016108c1906125e3565b6016805461ff0019169055565b6008546001600160a01b0316331461148d5760405162461bcd60e51b81526004016108c1906125e3565b600f55565b6008546001600160a01b031633146114bc5760405162461bcd60e51b81526004016108c1906125e3565b601455565b6008546001600160a01b031633146114eb5760405162461bcd60e51b81526004016108c1906125e3565b600d55565b6114fb84848461199b565b6001600160a01b0383163b1515801561151d575061151b84848484611cf5565b155b1561153b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461156b5760405162461bcd60e51b81526004016108c1906125e3565b805161092f90600c906020840190612149565b600e805461158b90612687565b80601f01602080910402602001604051908101604052809291908181526020018280546115b790612687565b80156116045780601f106115d957610100808354040283529160200191611604565b820191906000526020600020905b8154815290600101906020018083116115e757829003601f168201915b505050505081565b6060611617826118fe565b61167b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c1565b60165460ff6101009091041615156001141561172357600c805461169e90612687565b80601f01602080910402602001604051908101604052809291908181526020018280546116ca90612687565b80156117175780601f106116ec57610100808354040283529160200191611717565b820191906000526020600020905b8154815290600101906020018083116116fa57829003601f168201915b50505050509050919050565b600061172d611dec565b9050600081511161174d576040518060200160405280600081525061177b565b8061175784611dfb565b600b60405160200161176b939291906126e1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117ac5760405162461bcd60e51b81526004016108c1906125e3565b805161092f90600b906020840190612149565b6008546001600160a01b031633146117e95760405162461bcd60e51b81526004016108c1906125e3565b601255565b6008546001600160a01b031633146118185760405162461bcd60e51b81526004016108c1906125e3565b6001600160a01b03811661187d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c1565b610be281611ca3565b6008546001600160a01b031633146118b05760405162461bcd60e51b81526004016108c1906125e3565b601155565b6008546001600160a01b031633146118df5760405162461bcd60e51b81526004016108c1906125e3565b601555565b61092f828260405180602001604052806000815250611ef8565b6000805482108015610891575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000826119928584611f05565b14949350505050565b60006119a682611b89565b9050836001600160a01b031681600001516001600160a01b0316146119dd5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119fb57506119fb85336107b7565b80611a16575033611a0b846109c5565b6001600160a01b0316145b905080611a3657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a5d57604051633a954ecd60e21b815260040160405180910390fd5b611a6960008487611929565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b3d576000548214611b3d57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611c8a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c885780516001600160a01b031615611c1f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c83579392505050565b611c1f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d2a9033908990889088906004016127a5565b602060405180830381600087803b158015611d4457600080fd5b505af1925050508015611d74575060408051601f3d908101601f19168201909252611d71918101906127e2565b60015b611dcf573d808015611da2576040519150601f19603f3d011682016040523d82523d6000602084013e611da7565b606091505b508051611dc7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461094290612687565b606081611e1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e495780611e33816127ff565b9150611e429050600a83612830565b9150611e23565b6000816001600160401b03811115611e6357611e6361236b565b6040519080825280601f01601f191660200182016040528015611e8d576020820181803683370190505b5090505b8415610b1357611ea2600183612844565b9150611eaf600a8661285b565b611eba90603061262e565b60f81b818381518110611ecf57611ecf61286f565b60200101906001600160f81b031916908160001a905350611ef1600a86612830565b9450611e91565b610a928383836001611f79565b600081815b8451811015611f71576000858281518110611f2757611f2761286f565b60200260200101519050808311611f4d5760008381526020829052604090209250611f5e565b600081815260208490526040902092505b5080611f69816127ff565b915050611f0a565b509392505050565b6000546001600160a01b038516611fa257604051622e076360e81b815260040160405180910390fd5b83611fc05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561207157506001600160a01b0387163b15155b156120fa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120c26000888480600101955088611cf5565b6120df576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120775782600054146120f557600080fd5b612140565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156120fb575b50600055611b82565b82805461215590612687565b90600052602060002090601f01602090048101928261217757600085556121bd565b82601f1061219057805160ff19168380011785556121bd565b828001600101855582156121bd579182015b828111156121bd5782518255916020019190600101906121a2565b506121c99291506121cd565b5090565b5b808211156121c957600081556001016121ce565b6001600160e01b031981168114610be257600080fd5b60006020828403121561220a57600080fd5b813561177b816121e2565b80356001600160a01b038116811461222c57600080fd5b919050565b6000806040838503121561224457600080fd5b61224d83612215565b946020939093013593505050565b60005b8381101561227657818101518382015260200161225e565b8381111561153b5750506000910152565b6000815180845261229f81602086016020860161225b565b601f01601f19169290920160200192915050565b60208152600061177b6020830184612287565b6000602082840312156122d857600080fd5b5035919050565b60008083601f8401126122f157600080fd5b5081356001600160401b0381111561230857600080fd5b6020830191508360208260051b850101111561232357600080fd5b9250929050565b6000806020838503121561233d57600080fd5b82356001600160401b0381111561235357600080fd5b61235f858286016122df565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561239b5761239b61236b565b604051601f8501601f19908116603f011681019082821181831017156123c3576123c361236b565b816040528093508581528686860111156123dc57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561240857600080fd5b81356001600160401b0381111561241e57600080fd5b8201601f8101841361242f57600080fd5b610b1384823560208401612381565b60008060006060848603121561245357600080fd5b61245c84612215565b925061246a60208501612215565b9150604084013590509250925092565b60006020828403121561248c57600080fd5b61177b82612215565b6000806000604084860312156124aa57600080fd5b8335925060208401356001600160401b038111156124c757600080fd5b6124d3868287016122df565b9497909650939450505050565b8035801515811461222c57600080fd5b60006020828403121561250257600080fd5b61177b826124e0565b6000806040838503121561251e57600080fd5b61252783612215565b9150612535602084016124e0565b90509250929050565b6000806000806080858703121561255457600080fd5b61255d85612215565b935061256b60208601612215565b92506040850135915060608501356001600160401b0381111561258d57600080fd5b8501601f8101871361259e57600080fd5b6125ad87823560208401612381565b91505092959194509250565b600080604083850312156125cc57600080fd5b6125d583612215565b915061253560208401612215565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561264157612641612618565b500190565b60208082526021908201527f4d696e74696e6720776f756c642065786365656420746f74616c20737570706c6040820152607960f81b606082015260800190565b600181811c9082168061269b57607f821691505b602082108114156126bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156126dc576126dc612618565b500290565b6000845160206126f48285838a0161225b565b8551918401916127078184848a0161225b565b8554920191600090600181811c908083168061272457607f831692505b85831081141561274257634e487b7160e01b85526022600452602485fd5b808015612756576001811461276757612794565b60ff19851688528388019550612794565b60008b81526020902060005b8581101561278c5781548a820152908401908801612773565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127d890830184612287565b9695505050505050565b6000602082840312156127f457600080fd5b815161177b816121e2565b600060001982141561281357612813612618565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261283f5761283f61281a565b500490565b60008282101561285657612856612618565b500390565b60008261286a5761286a61281a565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122066870b1c9ba9a28398aeaff05f4c3b3b2ecb45bf96625fbfe901064d7f388ab964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000114469727479417065204f6666696369616c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000244410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5057506a62597754716d50324e3453666a535942334d4562383852525471524d797032375968764546345a482f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d634d677a315a31713977516a7275387a75584c526850345170694668634c6f75754754415354486e695357462f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000135846a726195c0b235cfeeaeb54d7c925c75b8ba51500bd913eedad1fa98a478
-----Decoded View---------------
Arg [0] : _name (string): DirtyApe Official
Arg [1] : _symbol (string): DA
Arg [2] : _initBaseURI (string): ipfs://QmPWPjbYwTqmP2N4SfjSYB3MEb88RRTqRMyp27YhvEF4ZH/
Arg [3] : _initHiddenUri (string): ipfs://QmcMgz1Z1q9wQjru8zuXLRhP4QpiFhcLouuGTASTHniSWF/hidden.json
Arg [4] : _initProvenanceHash (string):
Arg [5] : _WLRoot (bytes32[]): System.Byte[]
-----Encoded View---------------
20 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [7] : 4469727479417065204f6666696369616c000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4441000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [11] : 697066733a2f2f516d5057506a62597754716d50324e3453666a535942334d45
Arg [12] : 62383852525471524d797032375968764546345a482f00000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [14] : 697066733a2f2f516d634d677a315a31713977516a7275387a75584c52685034
Arg [15] : 5170694668634c6f75754754415354486e695357462f68696464656e2e6a736f
Arg [16] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [19] : 35846a726195c0b235cfeeaeb54d7c925c75b8ba51500bd913eedad1fa98a478
Deployed Bytecode Sourcemap
50273:6474:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29924:305;;;;;;;;;;-1:-1:-1;29924:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29924:305:0;;;;;;;;54584:291;;;;;;;;;;-1:-1:-1;54584:291:0;;;;;:::i;:::-;;:::i;:::-;;50549:44;;;;;;;;;;;;;;;;;;;1175:25:1;;;1163:2;1148:18;50549:44:0;1029:177:1;33037:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34540:204::-;;;;;;;;;;-1:-1:-1;34540:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2311:32:1;;;2293:51;;2281:2;2266:18;34540:204:0;2147:203:1;34103:371:0;;;;;;;;;;-1:-1:-1;34103:371:0;;;;;:::i;:::-;;:::i;53567:204::-;;;;;;;;;;-1:-1:-1;53567:204:0;;;;;:::i;:::-;;:::i;54444:128::-;;;;;;;;;;-1:-1:-1;54444:128:0;;;;;:::i;:::-;;:::i;29173:303::-;;;;;;;;;;-1:-1:-1;29427:12:0;;29217:7;29411:13;:28;29173:303;;35405:170;;;;;;;;;;-1:-1:-1;35405:170:0;;;;;:::i;:::-;;:::i;50968:50::-;;;;;;;;;;-1:-1:-1;50968:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;54259:152;;;;;;;;;;-1:-1:-1;54259:152:0;;;;;:::i;:::-;-1:-1:-1;;;;;54359:21:0;54323:7;54359:21;;;:15;:21;;;;;;;54259:152;56551:193;;;:::i;35646:185::-;;;;;;;;;;-1:-1:-1;35646:185:0;;;;;:::i;:::-;;:::i;51736:1116::-;;;;;;:::i;:::-;;:::i;55393:104::-;;;;;;;;;;-1:-1:-1;55393:104:0;;;;;:::i;:::-;;:::i;50838:38::-;;;;;;;;;;;;;;;;32845:125;;;;;;;;;;-1:-1:-1;32845:125:0;;;;;:::i;:::-;;:::i;50660:37::-;;;;;;;;;;;;;;;;50600:47;;;;;;;;;;;;;;;;56345:120;;;;;;;;;;-1:-1:-1;56345:120:0;;;;;:::i;:::-;;:::i;30293:206::-;;;;;;;;;;-1:-1:-1;30293:206:0;;;;;:::i;:::-;;:::i;49382:103::-;;;;;;;;;;;;;:::i;54883:291::-;;;;;;;;;;-1:-1:-1;54883:291:0;;;;;:::i;:::-;;:::i;48731:87::-;;;;;;;;;;-1:-1:-1;48804:6:0;;-1:-1:-1;;;;;48804:6:0;48731:87;;50891:35;;;;;;;;;;-1:-1:-1;50891:35:0;;;;;;;;50794:37;;;;;;;;;;;;;;;;33206:104;;;;;;;;;;;;;:::i;55182:101::-;;;;;;;;;;-1:-1:-1;55182:101:0;;;;;:::i;:::-;;:::i;52875:684::-;;;;;;:::i;:::-;;:::i;34816:287::-;;;;;;;;;;-1:-1:-1;34816:287:0;;;;;:::i;:::-;;:::i;56473:70::-;;;;;;;;;;;;;:::i;56223:114::-;;;;;;;;;;-1:-1:-1;56223:114:0;;;;;:::i;:::-;;:::i;55865:132::-;;;;;;;;;;-1:-1:-1;55865:132:0;;;;;:::i;:::-;;:::i;56131:84::-;;;;;;;;;;-1:-1:-1;56131:84:0;;;;;:::i;:::-;;:::i;35902:369::-;;;;;;;;;;-1:-1:-1;35902:369:0;;;;;:::i;:::-;;:::i;55291:94::-;;;;;;;;;;-1:-1:-1;55291:94:0;;;;;:::i;:::-;;:::i;50704:39::-;;;;;;;;;;;;;;;;50508:28;;;;;;;;;;;;;:::i;53779:472::-;;;;;;;;;;-1:-1:-1;53779:472:0;;;;;:::i;:::-;;:::i;50756:31::-;;;;;;;;;;;;;;;;55505:128;;;;;;;;;;-1:-1:-1;55505:128:0;;;;;:::i;:::-;;:::i;55751:102::-;;;;;;;;;;-1:-1:-1;55751:102:0;;;;;:::i;:::-;;:::i;35174:164::-;;;;;;;;;;-1:-1:-1;35174:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35295:25:0;;;35271:4;35295:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35174:164;49640:201;;;;;;;;;;-1:-1:-1;49640:201:0;;;;;:::i;:::-;;:::i;55641:98::-;;;;;;;;;;-1:-1:-1;55641:98:0;;;;;:::i;:::-;;:::i;56005:118::-;;;;;;;;;;-1:-1:-1;56005:118:0;;;;;:::i;:::-;;:::i;29924:305::-;30026:4;-1:-1:-1;;;;;;30063:40:0;;-1:-1:-1;;;30063:40:0;;:105;;-1:-1:-1;;;;;;;30120:48:0;;-1:-1:-1;;;30120:48:0;30063:105;:158;;;-1:-1:-1;;;;;;;;;;11448:40:0;;;30185:36;30043:178;29924:305;-1:-1:-1;;29924:305:0:o;54584:291::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;;;;;;;;;54702:9:::1;;54687:11;54671:13;29427:12:::0;;29217:7;29411:13;:28;;29173:303;54671:13:::1;:27;;;;:::i;:::-;:40;;54663:86;;;;-1:-1:-1::0;;;54663:86:0::1;;;;;;;:::i;:::-;54783:9;;54768:11;:24;;54760:70;;;;-1:-1:-1::0;;;54760:70:0::1;;;;;;;:::i;:::-;54841:26;54851:2;54855:11;54841:9;:26::i;:::-;54584:291:::0;;:::o;33037:100::-;33091:13;33124:5;33117:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33037:100;:::o;34540:204::-;34608:7;34633:16;34641:7;34633;:16::i;:::-;34628:64;;34658:34;;-1:-1:-1;;;34658:34:0;;;;;;;;;;;34628:64;-1:-1:-1;34712:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34712:24:0;;34540:204::o;34103:371::-;34176:13;34192:24;34208:7;34192:15;:24::i;:::-;34176:40;;34237:5;-1:-1:-1;;;;;34231:11:0;:2;-1:-1:-1;;;;;34231:11:0;;34227:48;;;34251:24;;-1:-1:-1;;;34251:24:0;;;;;;;;;;;34227:48;25520:10;-1:-1:-1;;;;;34292:21:0;;;;;;:63;;-1:-1:-1;34318:37:0;34335:5;25520:10;35174:164;:::i;34318:37::-;34317:38;34292:63;34288:138;;;34379:35;;-1:-1:-1;;;34379:35:0;;;;;;;;;;;34288:138;34438:28;34447:2;34451:7;34460:5;34438:8;:28::i;:::-;34165:309;34103:371;;:::o;53567:204::-;53676:28;;-1:-1:-1;;53693:10:0;8721:2:1;8717:15;8713:53;53676:28:0;;;8701:66:1;53634:4:0;;;;8783:12:1;;53676:28:0;;;;;;;;;;;;53666:39;;;;;;53651:54;;53723:40;53742:6;;53723:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53750:6:0;;;-1:-1:-1;53758:4:0;;-1:-1:-1;53723:18:0;:40::i;:::-;53716:47;53567:204;-1:-1:-1;;;;53567:204:0:o;54444:128::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;54532:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;35405:170::-:0;35539:28;35549:4;35555:2;35559:7;35539:9;:28::i;56551:193::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;56626:83:::1;::::0;56608:12:::1;::::0;56634:10:::1;::::0;56673:21:::1;::::0;56608:12;56626:83;56608:12;56626:83;56673:21;56634:10;56626:83:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56607:102;;;56728:7;56720:16;;;::::0;::::1;;56596:148;56551:193::o:0;35646:185::-;35784:39;35801:4;35807:2;35811:7;35784:39;;;;;;;;;;;;:16;:39::i;51736:1116::-;51501:9;51514:10;51501:23;51493:66;;;;-1:-1:-1;;;51493:66:0;;9218:2:1;51493:66:0;;;9200:21:1;9257:2;9237:18;;;9230:30;9296:32;9276:18;;;9269:60;9346:18;;51493:66:0;9016:354:1;51493:66:0;23814:1:::1;24412:7;;:19;;24404:63;;;::::0;-1:-1:-1;;;24404:63:0;;9577:2:1;24404:63:0::1;::::0;::::1;9559:21:1::0;9616:2;9596:18;;;9589:30;9655:33;9635:18;;;9628:61;9706:18;;24404:63:0::1;9375:355:1::0;24404:63:0::1;23814:1;24545:7;:18:::0;51867:16:::2;::::0;::::2;;51859:51;;;::::0;-1:-1:-1;;;51859:51:0;;9937:2:1;51859:51:0::2;::::0;::::2;9919:21:1::0;9976:2;9956:18;;;9949:30;-1:-1:-1;;;9995:18:1;;;9988:52;10057:18;;51859:51:0::2;9735:346:1::0;51859:51:0::2;51943:1;51929:11;:15;51921:52;;;::::0;-1:-1:-1;;;51921:52:0;;10288:2:1;51921:52:0::2;::::0;::::2;10270:21:1::0;10327:2;10307:18;;;10300:30;-1:-1:-1;;;10346:18:1;;;10339:54;10410:18;;51921:52:0::2;10086:348:1::0;51921:52:0::2;51992:16;::::0;:21;;::::2;::::0;:60:::2;;;52036:16;;52017:15;:35;;51992:60;51984:100;;;::::0;-1:-1:-1;;;51984:100:0;;10641:2:1;51984:100:0::2;::::0;::::2;10623:21:1::0;10680:2;10660:18;;;10653:30;10719:29;10699:18;;;10692:57;10766:18;;51984:100:0::2;10439:351:1::0;51984:100:0::2;52103:19;::::0;:24;;::::2;::::0;:65:::2;;;52149:19;;52131:15;:37;52103:65;52095:95;;;::::0;-1:-1:-1;;;52095:95:0;;10997:2:1;52095:95:0::2;::::0;::::2;10979:21:1::0;11036:2;11016:18;;;11009:30;-1:-1:-1;;;11055:18:1;;;11048:47;11112:18;;52095:95:0::2;10795:341:1::0;52095:95:0::2;52240:9;;52225:11;52209:13;29427:12:::0;;29217:7;29411:13;:28;;29173:303;52209:13:::2;:27;;;;:::i;:::-;:40;;52201:86;;;;-1:-1:-1::0;;;52201:86:0::2;;;;;;;:::i;:::-;52338:10;52300:19;52322:27:::0;;;:15:::2;:27;::::0;;;;;52366:18:::2;52377:6:::0;;52366:10:::2;:18::i;:::-;52362:235;;;52438:19;::::0;52409:25:::2;52423:11:::0;52409;:25:::2;:::i;:::-;:48;;52401:81;;;::::0;-1:-1:-1;;;52401:81:0;;11343:2:1;52401:81:0::2;::::0;::::2;11325:21:1::0;11382:2;11362:18;;;11355:30;-1:-1:-1;;;11401:18:1;;;11394:50;11461:18;;52401:81:0::2;11141:344:1::0;52401:81:0::2;52362:235;;;52532:49;::::0;-1:-1:-1;;;52532:49:0;;11692:2:1;52532:49:0::2;::::0;::::2;11674:21:1::0;11731:2;11711:18;;;11704:30;11770:33;11750:18;;;11743:61;11821:18;;52532:49:0::2;11490:355:1::0;52532:49:0::2;52607:27;52651:11;52637;;:25;;;;:::i;:::-;52607:55;;52694:19;52681:9;:32;;52673:63;;;::::0;-1:-1:-1;;;52673:63:0;;12225:2:1;52673:63:0::2;::::0;::::2;12207:21:1::0;12264:2;12244:18;;;12237:30;-1:-1:-1;;;12283:18:1;;;12276:48;12341:18;;52673:63:0::2;12023:342:1::0;52673:63:0::2;52773:10;52757:27;::::0;;;:15:::2;:27;::::0;;;;:42;;52788:11;;52757:27;:42:::2;::::0;52788:11;;52757:42:::2;:::i;:::-;::::0;;;-1:-1:-1;52810:34:0::2;::::0;-1:-1:-1;52820:10:0::2;52832:11:::0;52810:9:::2;:34::i;:::-;-1:-1:-1::0;;23770:1:0::1;24724:7;:22:::0;-1:-1:-1;;;51736:1116:0:o;55393:104::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;55468:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;32845:125::-:0;32909:7;32936:21;32949:7;32936:12;:21::i;:::-;:26;;32845:125;-1:-1:-1;;32845:125:0:o;56345:120::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;56425:19:::1;:32:::0;56345:120::o;30293:206::-;30357:7;-1:-1:-1;;;;;30381:19:0;;30377:60;;30409:28;;-1:-1:-1;;;30409:28:0;;;;;;;;;;;30377:60;-1:-1:-1;;;;;;30463:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30463:27:0;;30293:206::o;49382:103::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;49447:30:::1;49474:1;49447:18;:30::i;:::-;49382:103::o:0;54883:291::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;54977:9:::1;;54962:11;:24;;54954:70;;;;-1:-1:-1::0;;;54954:70:0::1;;;;;;;:::i;:::-;55074:9;;55059:11;55043:13;29427:12:::0;;29217:7;29411:13;:28;;29173:303;55043:13:::1;:27;;;;:::i;:::-;:40;;55035:86;;;;-1:-1:-1::0;;;55035:86:0::1;;;;;;;:::i;:::-;55132:34;55142:10;55154:11;55132:9;:34::i;33206:104::-:0;33262:13;33295:7;33288:14;;;;;:::i;55182:101::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;55250:16:::1;:25:::0;;-1:-1:-1;;55250:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55182:101::o;52875:684::-;23814:1;24412:7;;:19;;24404:63;;;;-1:-1:-1;;;24404:63:0;;9577:2:1;24404:63:0;;;9559:21:1;9616:2;9596:18;;;9589:30;9655:33;9635:18;;;9628:61;9706:18;;24404:63:0;9375:355:1;24404:63:0;23814:1;24545:7;:18;52959:16:::1;::::0;::::1;;52951:51;;;::::0;-1:-1:-1;;;52951:51:0;;9937:2:1;52951:51:0::1;::::0;::::1;9919:21:1::0;9976:2;9956:18;;;9949:30;-1:-1:-1;;;9995:18:1;;;9988:52;10057:18;;52951:51:0::1;9735:346:1::0;52951:51:0::1;53021:19;::::0;:24;;::::1;::::0;:66:::1;;;53068:19;;53049:15;:38;;53021:66;53013:110;;;::::0;-1:-1:-1;;;53013:110:0;;12572:2:1;53013:110:0::1;::::0;::::1;12554:21:1::0;12611:2;12591:18;;;12584:30;12650:33;12630:18;;;12623:61;12701:18;;53013:110:0::1;12370:355:1::0;53013:110:0::1;53156:1;53142:11;:15;53134:52;;;::::0;-1:-1:-1;;;53134:52:0;;10288:2:1;53134:52:0::1;::::0;::::1;10270:21:1::0;10327:2;10307:18;;;10300:30;-1:-1:-1;;;10346:18:1;;;10339:54;10410:18;;53134:52:0::1;10086:348:1::0;53134:52:0::1;53220:18;;53205:11;:33;;53197:70;;;::::0;-1:-1:-1;;;53197:70:0;;12932:2:1;53197:70:0::1;::::0;::::1;12914:21:1::0;12971:2;12951:18;;;12944:30;13010:26;12990:18;;;12983:54;13054:18;;53197:70:0::1;12730:348:1::0;53197:70:0::1;53317:9;;53302:11;53286:13;29427:12:::0;;29217:7;29411:13;:28;;29173:303;53286:13:::1;:27;;;;:::i;:::-;:40;;53278:86;;;;-1:-1:-1::0;;;53278:86:0::1;;;;;;;:::i;:::-;53377:27;53419:11;53407:9;;:23;;;;:::i;:::-;53377:53;;53462:19;53449:9;:32;;53441:63;;;::::0;-1:-1:-1;;;53441:63:0;;12225:2:1;53441:63:0::1;::::0;::::1;12207:21:1::0;12264:2;12244:18;;;12237:30;-1:-1:-1;;;12283:18:1;;;12276:48;12341:18;;53441:63:0::1;12023:342:1::0;53441:63:0::1;53517:34;53527:10;53539:11;53517:9;:34::i;:::-;-1:-1:-1::0;;23770:1:0;24724:7;:22;52875:684::o;34816:287::-;-1:-1:-1;;;;;34915:24:0;;25520:10;34915:24;34911:54;;;34948:17;;-1:-1:-1;;;34948:17:0;;;;;;;;;;;34911:54;25520:10;34978:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34978:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34978:53:0;;;;;;;;;;35047:48;;540:41:1;;;34978:42:0;;25520:10;35047:48;;513:18:1;35047:48:0;;;;;;;34816:287;;:::o;56473:70::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;56519:8:::1;:16:::0;;-1:-1:-1;;56519:16:0::1;::::0;;56473:70::o;56223:114::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;56300:16:::1;:29:::0;56223:114::o;55865:132::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;55951:18:::1;:38:::0;55865:132::o;56131:84::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;56193:6:::1;:14:::0;56131:84::o;35902:369::-;36069:28;36079:4;36085:2;36089:7;36069:9;:28::i;:::-;-1:-1:-1;;;;;36112:13:0;;1528:19;:23;;36112:76;;;;;36132:56;36163:4;36169:2;36173:7;36182:5;36132:30;:56::i;:::-;36131:57;36112:76;36108:156;;;36212:40;;-1:-1:-1;;;36212:40:0;;;;;;;;;;;36108:156;35902:369;;;;:::o;55291:94::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;55361:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;50508:28::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53779:472::-;53851:13;53885:16;53893:7;53885;:16::i;:::-;53877:76;;;;-1:-1:-1;;;53877:76:0;;13285:2:1;53877:76:0;;;13267:21:1;13324:2;13304:18;;;13297:30;13363:34;13343:18;;;13336:62;-1:-1:-1;;;13414:18:1;;;13407:45;13469:19;;53877:76:0;13083:411:1;53877:76:0;53970:8;;;;;;;;:16;;:8;:16;53966:65;;;54010:9;54003:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53779:472;;;:::o;53966:65::-;54043:28;54074:10;:8;:10::i;:::-;54043:41;;54133:1;54108:14;54102:28;:32;:141;;;;;;;;;;;;;;;;;54174:14;54190:18;:7;:16;:18::i;:::-;54210:13;54157:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54102:141;54095:148;53779:472;-1:-1:-1;;;53779:472:0:o;55505:128::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;55592:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;55751:102::-:0;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;55822:11:::1;:23:::0;55751:102::o;49640:201::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49729:22:0;::::1;49721:73;;;::::0;-1:-1:-1;;;49721:73:0;;15359:2:1;49721:73:0::1;::::0;::::1;15341:21:1::0;15398:2;15378:18;;;15371:30;15437:34;15417:18;;;15410:62;-1:-1:-1;;;15488:18:1;;;15481:36;15534:19;;49721:73:0::1;15157:402:1::0;49721:73:0::1;49805:28;49824:8;49805:18;:28::i;55641:98::-:0;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;55710:9:::1;:21:::0;55641:98::o;56005:118::-;48804:6;;-1:-1:-1;;;;;48804:6:0;25520:10;48951:23;48943:68;;;;-1:-1:-1;;;48943:68:0;;;;;;;:::i;:::-;56087:19:::1;:28:::0;56005:118::o;36708:104::-;36777:27;36787:2;36791:8;36777:27;;;;;;;;;;;;:9;:27::i;36526:174::-;36583:4;36647:13;;36637:7;:23;36607:85;;;;-1:-1:-1;;36665:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36665:27:0;;;;36664:28;;36526:174::o;44683:196::-;44798:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44798:29:0;-1:-1:-1;;;;;44798:29:0;;;;;;;;;44843:28;;44798:24;;44843:28;;;;;;;44683:196;;;:::o;18413:190::-;18538:4;18591;18562:25;18575:5;18582:4;18562:12;:25::i;:::-;:33;;18413:190;-1:-1:-1;;;;18413:190:0:o;39626:2130::-;39741:35;39779:21;39792:7;39779:12;:21::i;:::-;39741:59;;39839:4;-1:-1:-1;;;;;39817:26:0;:13;:18;;;-1:-1:-1;;;;;39817:26:0;;39813:67;;39852:28;;-1:-1:-1;;;39852:28:0;;;;;;;;;;;39813:67;39893:22;25520:10;-1:-1:-1;;;;;39919:20:0;;;;:73;;-1:-1:-1;39956:36:0;39973:4;25520:10;35174:164;:::i;39956:36::-;39919:126;;;-1:-1:-1;25520:10:0;40009:20;40021:7;40009:11;:20::i;:::-;-1:-1:-1;;;;;40009:36:0;;39919:126;39893:153;;40064:17;40059:66;;40090:35;;-1:-1:-1;;;40090:35:0;;;;;;;;;;;40059:66;-1:-1:-1;;;;;40140:16:0;;40136:52;;40165:23;;-1:-1:-1;;;40165:23:0;;;;;;;;;;;40136:52;40309:35;40326:1;40330:7;40339:4;40309:8;:35::i;:::-;-1:-1:-1;;;;;40640:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40640:31:0;;;-1:-1:-1;;;;;40640:31:0;;;-1:-1:-1;;40640:31:0;;;;;;;40686:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40686:29:0;;;;;;;;;;;40766:20;;;:11;:20;;;;;;40801:18;;-1:-1:-1;;;;;;40834:49:0;;;;-1:-1:-1;;;40867:15:0;40834:49;;;;;;;;;;41157:11;;41217:24;;;;;41260:13;;40766:20;;41217:24;;41260:13;41256:384;;41470:13;;41455:11;:28;41451:174;;41508:20;;41577:28;;;;-1:-1:-1;;;;;41551:54:0;-1:-1:-1;;;41551:54:0;-1:-1:-1;;;;;;41551:54:0;;;-1:-1:-1;;;;;41508:20:0;;41551:54;;;;41451:174;40615:1036;;;41687:7;41683:2;-1:-1:-1;;;;;41668:27:0;41677:4;-1:-1:-1;;;;;41668:27:0;;;;;;;;;;;41706:42;39730:2026;;39626:2130;;;:::o;31674:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31785:7:0;31868:13;;31861:4;:20;31830:886;;;31902:31;31936:17;;;:11;:17;;;;;;;;;31902:51;;;;;;;;;-1:-1:-1;;;;;31902:51:0;;;;-1:-1:-1;;;31902:51:0;;-1:-1:-1;;;;;31902:51:0;;;;;;;;-1:-1:-1;;;31902:51:0;;;;;;;;;;;;;;31972:729;;32022:14;;-1:-1:-1;;;;;32022:28:0;;32018:101;;32086:9;31674:1109;-1:-1:-1;;;31674:1109:0:o;32018:101::-;-1:-1:-1;;;32461:6:0;32506:17;;;;:11;:17;;;;;;;;;32494:29;;;;;;;;;-1:-1:-1;;;;;32494:29:0;;;;;-1:-1:-1;;;32494:29:0;;-1:-1:-1;;;;;32494:29:0;;;;;;;;-1:-1:-1;;;32494:29:0;;;;;;;;;;;;;32554:28;32550:109;;32622:9;31674:1109;-1:-1:-1;;;31674:1109:0:o;32550:109::-;32421:261;;;31883:833;31830:886;32744:31;;-1:-1:-1;;;32744:31:0;;;;;;;;;;;50001:191;50094:6;;;-1:-1:-1;;;;;50111:17:0;;;-1:-1:-1;;;;;;50111:17:0;;;;;;;50144:40;;50094:6;;;50111:17;50094:6;;50144:40;;50075:16;;50144:40;50064:128;50001:191;:::o;45371:667::-;45555:72;;-1:-1:-1;;;45555:72:0;;45534:4;;-1:-1:-1;;;;;45555:36:0;;;;;:72;;25520:10;;45606:4;;45612:7;;45621:5;;45555:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45555:72:0;;;;;;;;-1:-1:-1;;45555:72:0;;;;;;;;;;;;:::i;:::-;;;45551:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45789:13:0;;45785:235;;45835:40;;-1:-1:-1;;;45835:40:0;;;;;;;;;;;45785:235;45978:6;45972:13;45963:6;45959:2;45955:15;45948:38;45551:480;-1:-1:-1;;;;;;45674:55:0;-1:-1:-1;;;45674:55:0;;-1:-1:-1;45371:667:0;;;;;;:::o;51604:107::-;51663:13;51696:7;51689:14;;;;;:::i;20243:723::-;20299:13;20520:10;20516:53;;-1:-1:-1;;20547:10:0;;;;;;;;;;;;-1:-1:-1;;;20547:10:0;;;;;20243:723::o;20516:53::-;20594:5;20579:12;20635:78;20642:9;;20635:78;;20668:8;;;;:::i;:::-;;-1:-1:-1;20691:10:0;;-1:-1:-1;20699:2:0;20691:10;;:::i;:::-;;;20635:78;;;20723:19;20755:6;-1:-1:-1;;;;;20745:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20745:17:0;;20723:39;;20773:154;20780:10;;20773:154;;20807:11;20817:1;20807:11;;:::i;:::-;;-1:-1:-1;20876:10:0;20884:2;20876:5;:10;:::i;:::-;20863:24;;:2;:24;:::i;:::-;20850:39;;20833:6;20840;20833:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20833:56:0;;;;;;;;-1:-1:-1;20904:11:0;20913:2;20904:11;;:::i;:::-;;;20773:154;;37175:163;37298:32;37304:2;37308:8;37318:5;37325:4;37298:5;:32::i;18964:675::-;19047:7;19090:4;19047:7;19105:497;19129:5;:12;19125:1;:16;19105:497;;;19163:20;19186:5;19192:1;19186:8;;;;;;;;:::i;:::-;;;;;;;19163:31;;19229:12;19213;:28;19209:382;;19715:13;19765:15;;;19801:4;19794:15;;;19848:4;19832:21;;19341:57;;19209:382;;;19715:13;19765:15;;;19801:4;19794:15;;;19848:4;19832:21;;19518:57;;19209:382;-1:-1:-1;19143:3:0;;;;:::i;:::-;;;;19105:497;;;-1:-1:-1;19619:12:0;18964:675;-1:-1:-1;;;18964:675:0:o;37597:1775::-;37736:20;37759:13;-1:-1:-1;;;;;37787:16:0;;37783:48;;37812:19;;-1:-1:-1;;;37812:19:0;;;;;;;;;;;37783:48;37846:13;37842:44;;37868:18;;-1:-1:-1;;;37868:18:0;;;;;;;;;;;37842:44;-1:-1:-1;;;;;38237:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38296:49:0;;-1:-1:-1;;;;;38237:44:0;;;;;;;38296:49;;;;-1:-1:-1;;38237:44:0;;;;;;38296:49;;;;;;;;;;;;;;;;38362:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38412:66:0;;;;-1:-1:-1;;;38462:15:0;38412:66;;;;;;;;;;38362:25;38559:23;;;38603:4;:23;;;;-1:-1:-1;;;;;;38611:13:0;;1528:19;:23;;38611:15;38599:641;;;38647:314;38678:38;;38703:12;;-1:-1:-1;;;;;38678:38:0;;;38695:1;;38678:38;;38695:1;;38678:38;38744:69;38783:1;38787:2;38791:14;;;;;;38807:5;38744:30;:69::i;:::-;38739:174;;38849:40;;-1:-1:-1;;;38849:40:0;;;;;;;;;;;38739:174;38956:3;38940:12;:19;;38647:314;;39042:12;39025:13;;:29;39021:43;;39056:8;;;39021:43;38599:641;;;39105:120;39136:40;;39161:14;;;;;-1:-1:-1;;;;;39136:40:0;;;39153:1;;39136:40;;39153:1;;39136:40;39220:3;39204:12;:19;;39105:120;;38599:641;-1:-1:-1;39254:13:0;:28;39304:60;35902:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:254::-;838:6;846;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;938:29;957:9;938:29;:::i;:::-;928:39;1014:2;999:18;;;;986:32;;-1:-1:-1;;;770:254:1:o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;-1:-1:-1;;1459:1:1;1441:16;;1434:27;1211:258::o;1474:::-;1516:3;1554:5;1548:12;1581:6;1576:3;1569:19;1597:63;1653:6;1646:4;1641:3;1637:14;1630:4;1623:5;1619:16;1597:63;:::i;:::-;1714:2;1693:15;-1:-1:-1;;1689:29:1;1680:39;;;;1721:4;1676:50;;1474:258;-1:-1:-1;;1474:258:1:o;1737:220::-;1886:2;1875:9;1868:21;1849:4;1906:45;1947:2;1936:9;1932:18;1924:6;1906:45;:::i;1962:180::-;2021:6;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;-1:-1:-1;2113:23:1;;1962:180;-1:-1:-1;1962:180:1:o;2355:367::-;2418:8;2428:6;2482:3;2475:4;2467:6;2463:17;2459:27;2449:55;;2500:1;2497;2490:12;2449:55;-1:-1:-1;2523:20:1;;-1:-1:-1;;;;;2555:30:1;;2552:50;;;2598:1;2595;2588:12;2552:50;2635:4;2627:6;2623:17;2611:29;;2695:3;2688:4;2678:6;2675:1;2671:14;2663:6;2659:27;2655:38;2652:47;2649:67;;;2712:1;2709;2702:12;2649:67;2355:367;;;;;:::o;2727:437::-;2813:6;2821;2874:2;2862:9;2853:7;2849:23;2845:32;2842:52;;;2890:1;2887;2880:12;2842:52;2930:9;2917:23;-1:-1:-1;;;;;2955:6:1;2952:30;2949:50;;;2995:1;2992;2985:12;2949:50;3034:70;3096:7;3087:6;3076:9;3072:22;3034:70;:::i;:::-;3123:8;;3008:96;;-1:-1:-1;2727:437:1;-1:-1:-1;;;;2727:437:1:o;3169:127::-;3230:10;3225:3;3221:20;3218:1;3211:31;3261:4;3258:1;3251:15;3285:4;3282:1;3275:15;3301:632;3366:5;-1:-1:-1;;;;;3437:2:1;3429:6;3426:14;3423:40;;;3443:18;;:::i;:::-;3518:2;3512:9;3486:2;3572:15;;-1:-1:-1;;3568:24:1;;;3594:2;3564:33;3560:42;3548:55;;;3618:18;;;3638:22;;;3615:46;3612:72;;;3664:18;;:::i;:::-;3704:10;3700:2;3693:22;3733:6;3724:15;;3763:6;3755;3748:22;3803:3;3794:6;3789:3;3785:16;3782:25;3779:45;;;3820:1;3817;3810:12;3779:45;3870:6;3865:3;3858:4;3850:6;3846:17;3833:44;3925:1;3918:4;3909:6;3901;3897:19;3893:30;3886:41;;;;3301:632;;;;;:::o;3938:451::-;4007:6;4060:2;4048:9;4039:7;4035:23;4031:32;4028:52;;;4076:1;4073;4066:12;4028:52;4116:9;4103:23;-1:-1:-1;;;;;4141:6:1;4138:30;4135:50;;;4181:1;4178;4171:12;4135:50;4204:22;;4257:4;4249:13;;4245:27;-1:-1:-1;4235:55:1;;4286:1;4283;4276:12;4235:55;4309:74;4375:7;4370:2;4357:16;4352:2;4348;4344:11;4309:74;:::i;4394:328::-;4471:6;4479;4487;4540:2;4528:9;4519:7;4515:23;4511:32;4508:52;;;4556:1;4553;4546:12;4508:52;4579:29;4598:9;4579:29;:::i;:::-;4569:39;;4627:38;4661:2;4650:9;4646:18;4627:38;:::i;:::-;4617:48;;4712:2;4701:9;4697:18;4684:32;4674:42;;4394:328;;;;;:::o;4727:186::-;4786:6;4839:2;4827:9;4818:7;4814:23;4810:32;4807:52;;;4855:1;4852;4845:12;4807:52;4878:29;4897:9;4878:29;:::i;4918:505::-;5013:6;5021;5029;5082:2;5070:9;5061:7;5057:23;5053:32;5050:52;;;5098:1;5095;5088:12;5050:52;5134:9;5121:23;5111:33;;5195:2;5184:9;5180:18;5167:32;-1:-1:-1;;;;;5214:6:1;5211:30;5208:50;;;5254:1;5251;5244:12;5208:50;5293:70;5355:7;5346:6;5335:9;5331:22;5293:70;:::i;:::-;4918:505;;5382:8;;-1:-1:-1;5267:96:1;;-1:-1:-1;;;;4918:505:1:o;5428:160::-;5493:20;;5549:13;;5542:21;5532:32;;5522:60;;5578:1;5575;5568:12;5593:180;5649:6;5702:2;5690:9;5681:7;5677:23;5673:32;5670:52;;;5718:1;5715;5708:12;5670:52;5741:26;5757:9;5741:26;:::i;5778:254::-;5843:6;5851;5904:2;5892:9;5883:7;5879:23;5875:32;5872:52;;;5920:1;5917;5910:12;5872:52;5943:29;5962:9;5943:29;:::i;:::-;5933:39;;5991:35;6022:2;6011:9;6007:18;5991:35;:::i;:::-;5981:45;;5778:254;;;;;:::o;6222:667::-;6317:6;6325;6333;6341;6394:3;6382:9;6373:7;6369:23;6365:33;6362:53;;;6411:1;6408;6401:12;6362:53;6434:29;6453:9;6434:29;:::i;:::-;6424:39;;6482:38;6516:2;6505:9;6501:18;6482:38;:::i;:::-;6472:48;;6567:2;6556:9;6552:18;6539:32;6529:42;;6622:2;6611:9;6607:18;6594:32;-1:-1:-1;;;;;6641:6:1;6638:30;6635:50;;;6681:1;6678;6671:12;6635:50;6704:22;;6757:4;6749:13;;6745:27;-1:-1:-1;6735:55:1;;6786:1;6783;6776:12;6735:55;6809:74;6875:7;6870:2;6857:16;6852:2;6848;6844:11;6809:74;:::i;:::-;6799:84;;;6222:667;;;;;;;:::o;6894:260::-;6962:6;6970;7023:2;7011:9;7002:7;6998:23;6994:32;6991:52;;;7039:1;7036;7029:12;6991:52;7062:29;7081:9;7062:29;:::i;:::-;7052:39;;7110:38;7144:2;7133:9;7129:18;7110:38;:::i;7159:356::-;7361:2;7343:21;;;7380:18;;;7373:30;7439:34;7434:2;7419:18;;7412:62;7506:2;7491:18;;7159:356::o;7520:127::-;7581:10;7576:3;7572:20;7569:1;7562:31;7612:4;7609:1;7602:15;7636:4;7633:1;7626:15;7652:128;7692:3;7723:1;7719:6;7716:1;7713:13;7710:39;;;7729:18;;:::i;:::-;-1:-1:-1;7765:9:1;;7652:128::o;7785:397::-;7987:2;7969:21;;;8026:2;8006:18;;;7999:30;8065:34;8060:2;8045:18;;8038:62;-1:-1:-1;;;8131:2:1;8116:18;;8109:31;8172:3;8157:19;;7785:397::o;8187:380::-;8266:1;8262:12;;;;8309;;;8330:61;;8384:4;8376:6;8372:17;8362:27;;8330:61;8437:2;8429:6;8426:14;8406:18;8403:38;8400:161;;;8483:10;8478:3;8474:20;8471:1;8464:31;8518:4;8515:1;8508:15;8546:4;8543:1;8536:15;8400:161;;8187:380;;;:::o;11850:168::-;11890:7;11956:1;11952;11948:6;11944:14;11941:1;11938:21;11933:1;11926:9;11919:17;11915:45;11912:71;;;11963:18;;:::i;:::-;-1:-1:-1;12003:9:1;;11850:168::o;13625:1527::-;13849:3;13887:6;13881:13;13913:4;13926:51;13970:6;13965:3;13960:2;13952:6;13948:15;13926:51;:::i;:::-;14040:13;;13999:16;;;;14062:55;14040:13;13999:16;14084:15;;;14062:55;:::i;:::-;14206:13;;14139:20;;;14179:1;;14266;14288:18;;;;14341;;;;14368:93;;14446:4;14436:8;14432:19;14420:31;;14368:93;14509:2;14499:8;14496:16;14476:18;14473:40;14470:167;;;-1:-1:-1;;;14536:33:1;;14592:4;14589:1;14582:15;14622:4;14543:3;14610:17;14470:167;14653:18;14680:110;;;;14804:1;14799:328;;;;14646:481;;14680:110;-1:-1:-1;;14715:24:1;;14701:39;;14760:20;;;;-1:-1:-1;14680:110:1;;14799:328;13572:1;13565:14;;;13609:4;13596:18;;14894:1;14908:169;14922:8;14919:1;14916:15;14908:169;;;15004:14;;14989:13;;;14982:37;15047:16;;;;14939:10;;14908:169;;;14912:3;;15108:8;15101:5;15097:20;15090:27;;14646:481;-1:-1:-1;15143:3:1;;13625:1527;-1:-1:-1;;;;;;;;;;;13625:1527:1:o;15564:489::-;-1:-1:-1;;;;;15833:15:1;;;15815:34;;15885:15;;15880:2;15865:18;;15858:43;15932:2;15917:18;;15910:34;;;15980:3;15975:2;15960:18;;15953:31;;;15758:4;;16001:46;;16027:19;;16019:6;16001:46;:::i;:::-;15993:54;15564:489;-1:-1:-1;;;;;;15564:489:1:o;16058:249::-;16127:6;16180:2;16168:9;16159:7;16155:23;16151:32;16148:52;;;16196:1;16193;16186:12;16148:52;16228:9;16222:16;16247:30;16271:5;16247:30;:::i;16312:135::-;16351:3;-1:-1:-1;;16372:17:1;;16369:43;;;16392:18;;:::i;:::-;-1:-1:-1;16439:1:1;16428:13;;16312:135::o;16452:127::-;16513:10;16508:3;16504:20;16501:1;16494:31;16544:4;16541:1;16534:15;16568:4;16565:1;16558:15;16584:120;16624:1;16650;16640:35;;16655:18;;:::i;:::-;-1:-1:-1;16689:9:1;;16584:120::o;16709:125::-;16749:4;16777:1;16774;16771:8;16768:34;;;16782:18;;:::i;:::-;-1:-1:-1;16819:9:1;;16709:125::o;16839:112::-;16871:1;16897;16887:35;;16902:18;;:::i;:::-;-1:-1:-1;16936:9:1;;16839:112::o;16956:127::-;17017:10;17012:3;17008:20;17005:1;16998:31;17048:4;17045:1;17038:15;17072:4;17069:1;17062:15
Swarm Source
ipfs://66870b1c9ba9a28398aeaff05f4c3b3b2ecb45bf96625fbfe901064d7f388ab9
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.