Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
120 RPCC
Holders
79
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RPCCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RockPartyClassicCollection
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-27 */ // SPDX-License-Identifier: MIT // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.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/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 v4.4.1 (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 `IERC721.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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // 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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/erc721a.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @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 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/contract.sol pragma solidity ^0.8.4; contract RockPartyClassicCollection is Ownable, ERC721A { using Strings for uint256; string private baseTokenURI; uint256 public presaleCost = 0.1 ether; uint256 public publicSaleCost = 0.15 ether; uint128 public maxSupply = 2542; uint64 public maxMintAmountPerPresaleAccount = 10; uint64 public maxMintAmountPerPublicAccount = 20; bool public presaleActive = false; bool public publicSaleActive = false; bytes32 public merkleRoot; constructor() ERC721A("Rock Party Classic Collection", "RPCC") {} modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 , "Invalid mint amount!"); require(totalMinted() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } ///Mints NFTs for OG whitelist members during the presale function presaleMint(bytes32[] calldata _merkleProof, uint64 _mintAmount) public payable mintCompliance(_mintAmount) { require(presaleActive, "Presale is not Active"); require(msg.value == presaleCost * _mintAmount, "Insufficient funds!"); require(numberMinted(msg.sender) + _mintAmount <= maxMintAmountPerPresaleAccount, "Mint limit exceeded." ); ///verify the provided _merkleProof bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Not part of the Presale whitelist."); _safeMint(msg.sender, _mintAmount); } ///Allows any address to mint when the public sale is open function publicMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) { require(publicSaleActive, "Public is not Active"); uint64 publicAmountMinted = getPublicAmountMinted(msg.sender); require(publicAmountMinted + _mintAmount <= maxMintAmountPerPublicAccount, "Mint limit exceeded." ); require(msg.value == publicSaleCost * _mintAmount, "Insufficient funds!"); setPublicAmountMinted(msg.sender,publicAmountMinted + _mintAmount); _safeMint(msg.sender, _mintAmount); } ///Allows owner of the collection to airdrop a token to any address function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } //@return token ids owned by an address in the collection function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { if(exists(currentTokenId) == true) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } } currentTokenId++; } return ownedTokenIds; } //@return amount an address has minted during the public sale function getPublicAmountMinted(address _owner) public view returns (uint64) { return _getAux(_owner); } function setPublicAmountMinted(address _owner, uint64 _aux) internal { _setAux(_owner, _aux); } //@return amount an address has minted during all sales function numberMinted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } //@return all NFT's minted including burned tokens function totalMinted() public view returns (uint256) { return _totalMinted(); } function exists(uint256 _tokenId) public view returns (bool) { return _exists(_tokenId); } function burn(uint256 _tokenId) public { require(exists(_tokenId), "Token does not exist"); require(msg.sender == ownerOf(_tokenId), "Not the owner of the token"); _burn(_tokenId, false); } //@return url for the nft metadata function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string calldata _URI) external onlyOwner { baseTokenURI = _URI; } function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner { publicSaleCost = _publicSaleCost; } function setPresaleCost(uint256 _presaleCost) public onlyOwner { presaleCost = _presaleCost; } function setMaxMintPerPresaleAccount(uint64 _maxMintPerPresaleAccount) public onlyOwner { maxMintAmountPerPresaleAccount = _maxMintPerPresaleAccount; } function setMaxMintPerPublicAccount(uint64 _maxMintAmountPerPublicAccount) public onlyOwner { maxMintAmountPerPublicAccount = _maxMintAmountPerPublicAccount; } function setPresaleActive(bool _state) public onlyOwner { presaleActive = _state; } function setPublicActive(bool _state) public onlyOwner { require(presaleActive == false); publicSaleActive = _state; } ///sets merkle tree root which determines the whitelisted addresses function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setMaxSupply(uint128 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } /// Fallbacks receive() external payable {} fallback() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getPublicAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerPresaleAccount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerPublicAccount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","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":"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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxMintPerPresaleAccount","type":"uint64"}],"name":"setMaxMintPerPresaleAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxMintAmountPerPublicAccount","type":"uint64"}],"name":"setMaxMintPerPublicAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_maxSupply","type":"uint128"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405267016345785d8a0000600a55670214e8348c4f0000600b557814000000000000000a000000000000000000000000000009ee600c55600d805461ffff191690553480156200005157600080fd5b506040518060400160405280601d81526020017f526f636b20506172747920436c617373696320436f6c6c656374696f6e000000815250604051806040016040528060048152602001635250434360e01b815250620000bf620000b9620000f760201b60201c565b620000fb565b8151620000d49060039060208501906200014b565b508051620000ea9060049060208401906200014b565b505060018055506200022e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015990620001f1565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600181811c908216806200020657607f821691505b602082108114156200022857634e487b7160e01b600052602260045260246000fd5b50919050565b6127e2806200023e6000396000f3fe6080604052600436106102485760003560e01c80636afcb7b011610138578063b220b77a116100b0578063d5abeb0111610077578063d5abeb01146106f1578063dc33e68114610729578063e985e9c514610749578063efbd73f414610792578063f2f4e824146107b2578063f2fde38b146107d957005b8063b220b77a14610652578063b88d4fde14610672578063bc8893b414610692578063c87b56dd146106b1578063cd11ddc4146106d157005b80638da5cb5b116100ff5780638da5cb5b146105aa5780638dbb7c06146105c85780638fdcf942146105e857806395d89b4114610608578063a22cb4651461061d578063a2309ff81461063d57005b80636afcb7b01461051757806370a082311461052a5780637cb647591461054a5780638ac068a21461056a5780638aca408c1461058a57005b80633ccfd60b116101cb578063453afb0f11610192578063453afb0f1461047457806347fa1e751461048a5780634f558e791461049d57806353135ca0146104bd57806355f804b3146104d75780636352211e146104f757005b80633ccfd60b146103d25780633f8121a2146103e757806342842e0e1461040757806342966c6814610427578063438b63001461044757005b806318160ddd1161020f57806318160ddd1461033f57806318a1c1131461036657806323b872dd146103865780632a23d07d146103a65780632eb4a7ab146103bc57005b806301ffc9a71461025157806306fdde0314610286578063081812fc146102a8578063095ea7b3146102e05780630b85d4ef1461030057005b3661024f57005b005b34801561025d57600080fd5b5061027161026c366004612372565b6107f9565b60405190151581526020015b60405180910390f35b34801561029257600080fd5b5061029b61084b565b60405161027d9190612560565b3480156102b457600080fd5b506102c86102c3366004612359565b6108dd565b6040516001600160a01b03909116815260200161027d565b3480156102ec57600080fd5b5061024f6102fb366004612291565b610921565b34801561030c57600080fd5b50600c5461032790600160c01b90046001600160401b031681565b6040516001600160401b03909116815260200161027d565b34801561034b57600080fd5b5060025460015403600019015b60405190815260200161027d565b34801561037257600080fd5b5061024f610381366004612469565b6109af565b34801561039257600080fd5b5061024f6103a1366004612150565b610a0a565b3480156103b257600080fd5b50610358600a5481565b3480156103c857600080fd5b50610358600e5481565b3480156103de57600080fd5b5061024f610a15565b3480156103f357600080fd5b5061024f61040236600461233e565b610aa2565b34801561041357600080fd5b5061024f610422366004612150565b610adf565b34801561043357600080fd5b5061024f610442366004612359565b610afa565b34801561045357600080fd5b50610467610462366004612102565b610bba565b60405161027d919061251c565b34801561048057600080fd5b50610358600b5481565b61024f6104983660046122bb565b610cb7565b3480156104a957600080fd5b506102716104b8366004612359565b610f1e565b3480156104c957600080fd5b50600d546102719060ff1681565b3480156104e357600080fd5b5061024f6104f23660046123ac565b610f29565b34801561050357600080fd5b506102c8610512366004612359565b610f5f565b61024f610525366004612469565b610f71565b34801561053657600080fd5b50610358610545366004612102565b611155565b34801561055657600080fd5b5061024f610565366004612359565b6111a3565b34801561057657600080fd5b5061024f61058536600461241d565b6111d2565b34801561059657600080fd5b5061024f6105a536600461233e565b61121e565b3480156105b657600080fd5b506000546001600160a01b03166102c8565b3480156105d457600080fd5b5061024f6105e3366004612359565b611272565b3480156105f457600080fd5b5061024f610603366004612359565b6112a1565b34801561061457600080fd5b5061029b6112d0565b34801561062957600080fd5b5061024f610638366004612267565b6112df565b34801561064957600080fd5b50610358611375565b34801561065e57600080fd5b5061024f61066d366004612469565b611389565b34801561067e57600080fd5b5061024f61068d36600461218c565b6113e0565b34801561069e57600080fd5b50600d5461027190610100900460ff1681565b3480156106bd57600080fd5b5061029b6106cc366004612359565b611431565b3480156106dd57600080fd5b506103276106ec366004612102565b6114b6565b3480156106fd57600080fd5b50600c54610711906001600160801b031681565b6040516001600160801b03909116815260200161027d565b34801561073557600080fd5b50610358610744366004612102565b6114e4565b34801561075557600080fd5b5061027161076436600461211d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561079e57600080fd5b5061024f6107ad366004612446565b611512565b3480156107be57600080fd5b50600c5461032790600160801b90046001600160401b031681565b3480156107e557600080fd5b5061024f6107f4366004612102565b6115a4565b60006001600160e01b031982166380ac58cd60e01b148061082a57506001600160e01b03198216635b5e139f60e01b145b8061084557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461085a906126b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610886906126b4565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e88261163c565b610905576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061092c82610f5f565b9050806001600160a01b0316836001600160a01b031614156109615760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610981575061097f8133610764565b155b1561099f576040516367d9dca160e11b815260040160405180910390fd5b6109aa838383611675565b505050565b6000546001600160a01b031633146109e25760405162461bcd60e51b81526004016109d9906125a1565b60405180910390fd5b600c80546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6109aa8383836116d1565b6000546001600160a01b03163314610a3f5760405162461bcd60e51b81526004016109d9906125a1565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610a8c576040519150601f19603f3d011682016040523d82523d6000602084013e610a91565b606091505b5050905080610a9f57600080fd5b50565b6000546001600160a01b03163314610acc5760405162461bcd60e51b81526004016109d9906125a1565b600d805460ff1916911515919091179055565b6109aa838383604051806020016040528060008152506113e0565b610b0381610f1e565b610b465760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109d9565b610b4f81610f5f565b6001600160a01b0316336001600160a01b031614610baf5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e00000000000060448201526064016109d9565b610a9f8160006118aa565b60606000610bc783611155565b90506000816001600160401b03811115610be357610be3612760565b604051908082528060200260200182016040528015610c0c578160200160208202803683370190505b509050600160005b8381108015610c2e5750600c546001600160801b03168211155b15610cad57610c3c82610f1e565b151560011415610c9b576000610c5183610f5f565b9050866001600160a01b0316816001600160a01b03161415610c995782848381518110610c8057610c8061274a565b602090810291909101015281610c95816126ef565b9250505b505b81610ca5816126ef565b925050610c14565b5090949350505050565b806001600160401b031660008111610ce15760405162461bcd60e51b81526004016109d990612573565b600c546001600160801b031681610cf6611375565b610d009190612604565b1115610d1e5760405162461bcd60e51b81526004016109d9906125d6565b600d5460ff16610d685760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b60448201526064016109d9565b816001600160401b0316600a54610d7f9190612652565b3414610dc35760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d9565b600c546001600160401b03600160801b9091048116908316610de4336114e4565b610dee9190612604565b1115610e335760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b60448201526064016109d9565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610ead85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611a5e565b610f045760405162461bcd60e51b815260206004820152602260248201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736044820152613a1760f11b60648201526084016109d9565b610f1733846001600160401b0316611a74565b5050505050565b60006108458261163c565b6000546001600160a01b03163314610f535760405162461bcd60e51b81526004016109d9906125a1565b6109aa60098383612026565b6000610f6a82611a92565b5192915050565b806001600160401b031660008111610f9b5760405162461bcd60e51b81526004016109d990612573565b600c546001600160801b031681610fb0611375565b610fba9190612604565b1115610fd85760405162461bcd60e51b81526004016109d9906125d6565b600d54610100900460ff166110265760405162461bcd60e51b81526020600482015260146024820152735075626c6963206973206e6f742041637469766560601b60448201526064016109d9565b6000611031336114b6565b600c54909150600160c01b90046001600160401b0316611051848361261c565b6001600160401b0316111561109f5760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b60448201526064016109d9565b826001600160401b0316600b546110b69190612652565b34146110fa5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d9565b61114233611108858461261c565b6001600160a01b038216600090815260066020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b6109aa33846001600160401b0316611a74565b60006001600160a01b03821661117e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146111cd5760405162461bcd60e51b81526004016109d9906125a1565b600e55565b6000546001600160a01b031633146111fc5760405162461bcd60e51b81526004016109d9906125a1565b600c80546001600160801b0319166001600160801b0392909216919091179055565b6000546001600160a01b031633146112485760405162461bcd60e51b81526004016109d9906125a1565b600d5460ff161561125857600080fd5b600d80549115156101000261ff0019909216919091179055565b6000546001600160a01b0316331461129c5760405162461bcd60e51b81526004016109d9906125a1565b600b55565b6000546001600160a01b031633146112cb5760405162461bcd60e51b81526004016109d9906125a1565b600a55565b60606004805461085a906126b4565b6001600160a01b0382163314156113095760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006113846001546000190190565b905090565b6000546001600160a01b031633146113b35760405162461bcd60e51b81526004016109d9906125a1565b600c80546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b6113eb8484846116d1565b6001600160a01b0383163b1515801561140d575061140b84848484611bb9565b155b1561142b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061143c8261163c565b61145957604051630a14c4b560e41b815260040160405180910390fd5b6000611463611cb1565b905080516000141561148457604051806020016040528060008152506114af565b8061148e84611cc0565b60405160200161149f9291906124b0565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260066020526040812054600160c01b90046001600160401b0316610845565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610845565b81600081116115335760405162461bcd60e51b81526004016109d990612573565b600c546001600160801b031681611548611375565b6115529190612604565b11156115705760405162461bcd60e51b81526004016109d9906125d6565b6000546001600160a01b0316331461159a5760405162461bcd60e51b81526004016109d9906125a1565b6109aa8284611a74565b6000546001600160a01b031633146115ce5760405162461bcd60e51b81526004016109d9906125a1565b6001600160a01b0381166116335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d9565b610a9f81611dbd565b600081600111158015611650575060015482105b8015610845575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116dc82611a92565b9050836001600160a01b031681600001516001600160a01b0316146117135760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061173157506117318533610764565b8061174c575033611741846108dd565b6001600160a01b0316145b90508061176c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661179357604051633a954ecd60e21b815260040160405180910390fd5b61179f60008487611675565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661187357600154821461187357805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061278d83398151915260405160405180910390a4610f17565b60006118b583611a92565b8051909150821561191b576000336001600160a01b03831614806118de57506118de8233610764565b806118f95750336118ee866108dd565b6001600160a01b0316145b90508061191957604051632ce44b5f60e11b815260040160405180910390fd5b505b61192760008583611675565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611a25576001548214611a2557805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b0384169060008051602061278d833981519152908390a450506002805460010190555050565b600082611a6b8584611e0d565b14949350505050565b611a8e828260405180602001604052806000815250611e81565b5050565b60408051606081018252600080825260208201819052918101919091528180600111158015611ac2575060015481105b15611ba057600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b9e5780516001600160a01b031615611b35579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b99579392505050565b611b35565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bee9033908990889088906004016124df565b602060405180830381600087803b158015611c0857600080fd5b505af1925050508015611c38575060408051601f3d908101601f19168201909252611c359181019061238f565b60015b611c93573d808015611c66576040519150601f19603f3d011682016040523d82523d6000602084013e611c6b565b606091505b508051611c8b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461085a906126b4565b606081611ce45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d0e5780611cf8816126ef565b9150611d079050600a8361263e565b9150611ce8565b6000816001600160401b03811115611d2857611d28612760565b6040519080825280601f01601f191660200182016040528015611d52576020820181803683370190505b5090505b8415611ca957611d67600183612671565b9150611d74600a8661270a565b611d7f906030612604565b60f81b818381518110611d9457611d9461274a565b60200101906001600160f81b031916908160001a905350611db6600a8661263e565b9450611d56565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b8451811015611e79576000858281518110611e2f57611e2f61274a565b60200260200101519050808311611e555760008381526020829052604090209250611e66565b600081815260208490526040902092505b5080611e71816126ef565b915050611e12565b509392505050565b6109aa838383600180546001600160a01b038516611eb157604051622e076360e81b815260040160405180910390fd5b83611ecf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611f7257506001600160a01b0387163b15155b15611fe9575b60405182906001600160a01b0389169060009060008051602061278d833981519152908290a4611fb16000888480600101955088611bb9565b611fce576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f78578260015414611fe457600080fd5b61201d565b5b6040516001830192906001600160a01b0389169060009060008051602061278d833981519152908290a480821415611fea575b50600155610f17565b828054612032906126b4565b90600052602060002090601f016020900481019282612054576000855561209a565b82601f1061206d5782800160ff1982351617855561209a565b8280016001018555821561209a579182015b8281111561209a57823582559160200191906001019061207f565b506120a69291506120aa565b5090565b5b808211156120a657600081556001016120ab565b80356001600160a01b03811681146120d657600080fd5b919050565b803580151581146120d657600080fd5b80356001600160401b03811681146120d657600080fd5b60006020828403121561211457600080fd5b6114af826120bf565b6000806040838503121561213057600080fd5b612139836120bf565b9150612147602084016120bf565b90509250929050565b60008060006060848603121561216557600080fd5b61216e846120bf565b925061217c602085016120bf565b9150604084013590509250925092565b600080600080608085870312156121a257600080fd5b6121ab856120bf565b93506121b9602086016120bf565b92506040850135915060608501356001600160401b03808211156121dc57600080fd5b818701915087601f8301126121f057600080fd5b81358181111561220257612202612760565b604051601f8201601f19908116603f0116810190838211818310171561222a5761222a612760565b816040528281528a602084870101111561224357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561227a57600080fd5b612283836120bf565b9150612147602084016120db565b600080604083850312156122a457600080fd5b6122ad836120bf565b946020939093013593505050565b6000806000604084860312156122d057600080fd5b83356001600160401b03808211156122e757600080fd5b818601915086601f8301126122fb57600080fd5b81358181111561230a57600080fd5b8760208260051b850101111561231f57600080fd5b60209283019550935061233591860190506120eb565b90509250925092565b60006020828403121561235057600080fd5b6114af826120db565b60006020828403121561236b57600080fd5b5035919050565b60006020828403121561238457600080fd5b81356114af81612776565b6000602082840312156123a157600080fd5b81516114af81612776565b600080602083850312156123bf57600080fd5b82356001600160401b03808211156123d657600080fd5b818501915085601f8301126123ea57600080fd5b8135818111156123f957600080fd5b86602082850101111561240b57600080fd5b60209290920196919550909350505050565b60006020828403121561242f57600080fd5b81356001600160801b03811681146114af57600080fd5b6000806040838503121561245957600080fd5b82359150612147602084016120bf565b60006020828403121561247b57600080fd5b6114af826120eb565b6000815180845261249c816020860160208601612688565b601f01601f19169290920160200192915050565b600083516124c2818460208801612688565b8351908301906124d6818360208801612688565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061251290830184612484565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561255457835183529284019291840191600101612538565b50909695505050505050565b6020815260006114af6020830184612484565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600082198211156126175761261761271e565b500190565b60006001600160401b038083168185168083038211156124d6576124d661271e565b60008261264d5761264d612734565b500490565b600081600019048311821515161561266c5761266c61271e565b500290565b6000828210156126835761268361271e565b500390565b60005b838110156126a357818101518382015260200161268b565b8381111561142b5750506000910152565b600181811c908216806126c857607f821691505b602082108114156126e957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127035761270361271e565b5060010190565b60008261271957612719612734565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a9f57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204cf6d4cbd8211658c278c57a39d1501b77b0cc582282d1e9f5632a5fc5d249b764736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102485760003560e01c80636afcb7b011610138578063b220b77a116100b0578063d5abeb0111610077578063d5abeb01146106f1578063dc33e68114610729578063e985e9c514610749578063efbd73f414610792578063f2f4e824146107b2578063f2fde38b146107d957005b8063b220b77a14610652578063b88d4fde14610672578063bc8893b414610692578063c87b56dd146106b1578063cd11ddc4146106d157005b80638da5cb5b116100ff5780638da5cb5b146105aa5780638dbb7c06146105c85780638fdcf942146105e857806395d89b4114610608578063a22cb4651461061d578063a2309ff81461063d57005b80636afcb7b01461051757806370a082311461052a5780637cb647591461054a5780638ac068a21461056a5780638aca408c1461058a57005b80633ccfd60b116101cb578063453afb0f11610192578063453afb0f1461047457806347fa1e751461048a5780634f558e791461049d57806353135ca0146104bd57806355f804b3146104d75780636352211e146104f757005b80633ccfd60b146103d25780633f8121a2146103e757806342842e0e1461040757806342966c6814610427578063438b63001461044757005b806318160ddd1161020f57806318160ddd1461033f57806318a1c1131461036657806323b872dd146103865780632a23d07d146103a65780632eb4a7ab146103bc57005b806301ffc9a71461025157806306fdde0314610286578063081812fc146102a8578063095ea7b3146102e05780630b85d4ef1461030057005b3661024f57005b005b34801561025d57600080fd5b5061027161026c366004612372565b6107f9565b60405190151581526020015b60405180910390f35b34801561029257600080fd5b5061029b61084b565b60405161027d9190612560565b3480156102b457600080fd5b506102c86102c3366004612359565b6108dd565b6040516001600160a01b03909116815260200161027d565b3480156102ec57600080fd5b5061024f6102fb366004612291565b610921565b34801561030c57600080fd5b50600c5461032790600160c01b90046001600160401b031681565b6040516001600160401b03909116815260200161027d565b34801561034b57600080fd5b5060025460015403600019015b60405190815260200161027d565b34801561037257600080fd5b5061024f610381366004612469565b6109af565b34801561039257600080fd5b5061024f6103a1366004612150565b610a0a565b3480156103b257600080fd5b50610358600a5481565b3480156103c857600080fd5b50610358600e5481565b3480156103de57600080fd5b5061024f610a15565b3480156103f357600080fd5b5061024f61040236600461233e565b610aa2565b34801561041357600080fd5b5061024f610422366004612150565b610adf565b34801561043357600080fd5b5061024f610442366004612359565b610afa565b34801561045357600080fd5b50610467610462366004612102565b610bba565b60405161027d919061251c565b34801561048057600080fd5b50610358600b5481565b61024f6104983660046122bb565b610cb7565b3480156104a957600080fd5b506102716104b8366004612359565b610f1e565b3480156104c957600080fd5b50600d546102719060ff1681565b3480156104e357600080fd5b5061024f6104f23660046123ac565b610f29565b34801561050357600080fd5b506102c8610512366004612359565b610f5f565b61024f610525366004612469565b610f71565b34801561053657600080fd5b50610358610545366004612102565b611155565b34801561055657600080fd5b5061024f610565366004612359565b6111a3565b34801561057657600080fd5b5061024f61058536600461241d565b6111d2565b34801561059657600080fd5b5061024f6105a536600461233e565b61121e565b3480156105b657600080fd5b506000546001600160a01b03166102c8565b3480156105d457600080fd5b5061024f6105e3366004612359565b611272565b3480156105f457600080fd5b5061024f610603366004612359565b6112a1565b34801561061457600080fd5b5061029b6112d0565b34801561062957600080fd5b5061024f610638366004612267565b6112df565b34801561064957600080fd5b50610358611375565b34801561065e57600080fd5b5061024f61066d366004612469565b611389565b34801561067e57600080fd5b5061024f61068d36600461218c565b6113e0565b34801561069e57600080fd5b50600d5461027190610100900460ff1681565b3480156106bd57600080fd5b5061029b6106cc366004612359565b611431565b3480156106dd57600080fd5b506103276106ec366004612102565b6114b6565b3480156106fd57600080fd5b50600c54610711906001600160801b031681565b6040516001600160801b03909116815260200161027d565b34801561073557600080fd5b50610358610744366004612102565b6114e4565b34801561075557600080fd5b5061027161076436600461211d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561079e57600080fd5b5061024f6107ad366004612446565b611512565b3480156107be57600080fd5b50600c5461032790600160801b90046001600160401b031681565b3480156107e557600080fd5b5061024f6107f4366004612102565b6115a4565b60006001600160e01b031982166380ac58cd60e01b148061082a57506001600160e01b03198216635b5e139f60e01b145b8061084557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461085a906126b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610886906126b4565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e88261163c565b610905576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061092c82610f5f565b9050806001600160a01b0316836001600160a01b031614156109615760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610981575061097f8133610764565b155b1561099f576040516367d9dca160e11b815260040160405180910390fd5b6109aa838383611675565b505050565b6000546001600160a01b031633146109e25760405162461bcd60e51b81526004016109d9906125a1565b60405180910390fd5b600c80546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6109aa8383836116d1565b6000546001600160a01b03163314610a3f5760405162461bcd60e51b81526004016109d9906125a1565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610a8c576040519150601f19603f3d011682016040523d82523d6000602084013e610a91565b606091505b5050905080610a9f57600080fd5b50565b6000546001600160a01b03163314610acc5760405162461bcd60e51b81526004016109d9906125a1565b600d805460ff1916911515919091179055565b6109aa838383604051806020016040528060008152506113e0565b610b0381610f1e565b610b465760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109d9565b610b4f81610f5f565b6001600160a01b0316336001600160a01b031614610baf5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e00000000000060448201526064016109d9565b610a9f8160006118aa565b60606000610bc783611155565b90506000816001600160401b03811115610be357610be3612760565b604051908082528060200260200182016040528015610c0c578160200160208202803683370190505b509050600160005b8381108015610c2e5750600c546001600160801b03168211155b15610cad57610c3c82610f1e565b151560011415610c9b576000610c5183610f5f565b9050866001600160a01b0316816001600160a01b03161415610c995782848381518110610c8057610c8061274a565b602090810291909101015281610c95816126ef565b9250505b505b81610ca5816126ef565b925050610c14565b5090949350505050565b806001600160401b031660008111610ce15760405162461bcd60e51b81526004016109d990612573565b600c546001600160801b031681610cf6611375565b610d009190612604565b1115610d1e5760405162461bcd60e51b81526004016109d9906125d6565b600d5460ff16610d685760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b60448201526064016109d9565b816001600160401b0316600a54610d7f9190612652565b3414610dc35760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d9565b600c546001600160401b03600160801b9091048116908316610de4336114e4565b610dee9190612604565b1115610e335760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b60448201526064016109d9565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610ead85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611a5e565b610f045760405162461bcd60e51b815260206004820152602260248201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736044820152613a1760f11b60648201526084016109d9565b610f1733846001600160401b0316611a74565b5050505050565b60006108458261163c565b6000546001600160a01b03163314610f535760405162461bcd60e51b81526004016109d9906125a1565b6109aa60098383612026565b6000610f6a82611a92565b5192915050565b806001600160401b031660008111610f9b5760405162461bcd60e51b81526004016109d990612573565b600c546001600160801b031681610fb0611375565b610fba9190612604565b1115610fd85760405162461bcd60e51b81526004016109d9906125d6565b600d54610100900460ff166110265760405162461bcd60e51b81526020600482015260146024820152735075626c6963206973206e6f742041637469766560601b60448201526064016109d9565b6000611031336114b6565b600c54909150600160c01b90046001600160401b0316611051848361261c565b6001600160401b0316111561109f5760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b60448201526064016109d9565b826001600160401b0316600b546110b69190612652565b34146110fa5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109d9565b61114233611108858461261c565b6001600160a01b038216600090815260066020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b6109aa33846001600160401b0316611a74565b60006001600160a01b03821661117e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146111cd5760405162461bcd60e51b81526004016109d9906125a1565b600e55565b6000546001600160a01b031633146111fc5760405162461bcd60e51b81526004016109d9906125a1565b600c80546001600160801b0319166001600160801b0392909216919091179055565b6000546001600160a01b031633146112485760405162461bcd60e51b81526004016109d9906125a1565b600d5460ff161561125857600080fd5b600d80549115156101000261ff0019909216919091179055565b6000546001600160a01b0316331461129c5760405162461bcd60e51b81526004016109d9906125a1565b600b55565b6000546001600160a01b031633146112cb5760405162461bcd60e51b81526004016109d9906125a1565b600a55565b60606004805461085a906126b4565b6001600160a01b0382163314156113095760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006113846001546000190190565b905090565b6000546001600160a01b031633146113b35760405162461bcd60e51b81526004016109d9906125a1565b600c80546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b6113eb8484846116d1565b6001600160a01b0383163b1515801561140d575061140b84848484611bb9565b155b1561142b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061143c8261163c565b61145957604051630a14c4b560e41b815260040160405180910390fd5b6000611463611cb1565b905080516000141561148457604051806020016040528060008152506114af565b8061148e84611cc0565b60405160200161149f9291906124b0565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260066020526040812054600160c01b90046001600160401b0316610845565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610845565b81600081116115335760405162461bcd60e51b81526004016109d990612573565b600c546001600160801b031681611548611375565b6115529190612604565b11156115705760405162461bcd60e51b81526004016109d9906125d6565b6000546001600160a01b0316331461159a5760405162461bcd60e51b81526004016109d9906125a1565b6109aa8284611a74565b6000546001600160a01b031633146115ce5760405162461bcd60e51b81526004016109d9906125a1565b6001600160a01b0381166116335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d9565b610a9f81611dbd565b600081600111158015611650575060015482105b8015610845575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116dc82611a92565b9050836001600160a01b031681600001516001600160a01b0316146117135760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061173157506117318533610764565b8061174c575033611741846108dd565b6001600160a01b0316145b90508061176c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661179357604051633a954ecd60e21b815260040160405180910390fd5b61179f60008487611675565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661187357600154821461187357805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061278d83398151915260405160405180910390a4610f17565b60006118b583611a92565b8051909150821561191b576000336001600160a01b03831614806118de57506118de8233610764565b806118f95750336118ee866108dd565b6001600160a01b0316145b90508061191957604051632ce44b5f60e11b815260040160405180910390fd5b505b61192760008583611675565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611a25576001548214611a2557805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b0384169060008051602061278d833981519152908390a450506002805460010190555050565b600082611a6b8584611e0d565b14949350505050565b611a8e828260405180602001604052806000815250611e81565b5050565b60408051606081018252600080825260208201819052918101919091528180600111158015611ac2575060015481105b15611ba057600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b9e5780516001600160a01b031615611b35579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b99579392505050565b611b35565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bee9033908990889088906004016124df565b602060405180830381600087803b158015611c0857600080fd5b505af1925050508015611c38575060408051601f3d908101601f19168201909252611c359181019061238f565b60015b611c93573d808015611c66576040519150601f19603f3d011682016040523d82523d6000602084013e611c6b565b606091505b508051611c8b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461085a906126b4565b606081611ce45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d0e5780611cf8816126ef565b9150611d079050600a8361263e565b9150611ce8565b6000816001600160401b03811115611d2857611d28612760565b6040519080825280601f01601f191660200182016040528015611d52576020820181803683370190505b5090505b8415611ca957611d67600183612671565b9150611d74600a8661270a565b611d7f906030612604565b60f81b818381518110611d9457611d9461274a565b60200101906001600160f81b031916908160001a905350611db6600a8661263e565b9450611d56565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b8451811015611e79576000858281518110611e2f57611e2f61274a565b60200260200101519050808311611e555760008381526020829052604090209250611e66565b600081815260208490526040902092505b5080611e71816126ef565b915050611e12565b509392505050565b6109aa838383600180546001600160a01b038516611eb157604051622e076360e81b815260040160405180910390fd5b83611ecf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611f7257506001600160a01b0387163b15155b15611fe9575b60405182906001600160a01b0389169060009060008051602061278d833981519152908290a4611fb16000888480600101955088611bb9565b611fce576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f78578260015414611fe457600080fd5b61201d565b5b6040516001830192906001600160a01b0389169060009060008051602061278d833981519152908290a480821415611fea575b50600155610f17565b828054612032906126b4565b90600052602060002090601f016020900481019282612054576000855561209a565b82601f1061206d5782800160ff1982351617855561209a565b8280016001018555821561209a579182015b8281111561209a57823582559160200191906001019061207f565b506120a69291506120aa565b5090565b5b808211156120a657600081556001016120ab565b80356001600160a01b03811681146120d657600080fd5b919050565b803580151581146120d657600080fd5b80356001600160401b03811681146120d657600080fd5b60006020828403121561211457600080fd5b6114af826120bf565b6000806040838503121561213057600080fd5b612139836120bf565b9150612147602084016120bf565b90509250929050565b60008060006060848603121561216557600080fd5b61216e846120bf565b925061217c602085016120bf565b9150604084013590509250925092565b600080600080608085870312156121a257600080fd5b6121ab856120bf565b93506121b9602086016120bf565b92506040850135915060608501356001600160401b03808211156121dc57600080fd5b818701915087601f8301126121f057600080fd5b81358181111561220257612202612760565b604051601f8201601f19908116603f0116810190838211818310171561222a5761222a612760565b816040528281528a602084870101111561224357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561227a57600080fd5b612283836120bf565b9150612147602084016120db565b600080604083850312156122a457600080fd5b6122ad836120bf565b946020939093013593505050565b6000806000604084860312156122d057600080fd5b83356001600160401b03808211156122e757600080fd5b818601915086601f8301126122fb57600080fd5b81358181111561230a57600080fd5b8760208260051b850101111561231f57600080fd5b60209283019550935061233591860190506120eb565b90509250925092565b60006020828403121561235057600080fd5b6114af826120db565b60006020828403121561236b57600080fd5b5035919050565b60006020828403121561238457600080fd5b81356114af81612776565b6000602082840312156123a157600080fd5b81516114af81612776565b600080602083850312156123bf57600080fd5b82356001600160401b03808211156123d657600080fd5b818501915085601f8301126123ea57600080fd5b8135818111156123f957600080fd5b86602082850101111561240b57600080fd5b60209290920196919550909350505050565b60006020828403121561242f57600080fd5b81356001600160801b03811681146114af57600080fd5b6000806040838503121561245957600080fd5b82359150612147602084016120bf565b60006020828403121561247b57600080fd5b6114af826120eb565b6000815180845261249c816020860160208601612688565b601f01601f19169290920160200192915050565b600083516124c2818460208801612688565b8351908301906124d6818360208801612688565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061251290830184612484565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561255457835183529284019291840191600101612538565b50909695505050505050565b6020815260006114af6020830184612484565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600082198211156126175761261761271e565b500190565b60006001600160401b038083168185168083038211156124d6576124d661271e565b60008261264d5761264d612734565b500490565b600081600019048311821515161561266c5761266c61271e565b500290565b6000828210156126835761268361271e565b500390565b60005b838110156126a357818101518382015260200161268b565b8381111561142b5750506000910152565b600181811c908216806126c857607f821691505b602082108114156126e957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127035761270361271e565b5060010190565b60008261271957612719612734565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a9f57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204cf6d4cbd8211658c278c57a39d1501b77b0cc582282d1e9f5632a5fc5d249b764736f6c63430008070033
Deployed Bytecode Sourcemap
48341:5924:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27447:315;;;;;;;;;;-1:-1:-1;27447:315:0;;;;;:::i;:::-;;:::i;:::-;;;8775:14:1;;8768:22;8750:41;;8738:2;8723:18;27447:315:0;;;;;;;;30730:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32327:212::-;;;;;;;;;;-1:-1:-1;32327:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7436:32:1;;;7418:51;;7406:2;7391:18;32327:212:0;7272:203:1;31862:389:0;;;;;;;;;;-1:-1:-1;31862:389:0;;;;;:::i;:::-;;:::i;48669:48::-;;;;;;;;;;-1:-1:-1;48669:48:0;;;;-1:-1:-1;;;48669:48:0;;-1:-1:-1;;;;;48669:48:0;;;;;;-1:-1:-1;;;;;13744:31:1;;;13726:50;;13714:2;13699:18;48669:48:0;13582:200:1;26652:315:0;;;;;;;;;;-1:-1:-1;26914:12:0;;26497:1;26898:13;:28;-1:-1:-1;;26898:46:0;26652:315;;;8948:25:1;;;8936:2;8921:18;26652:315:0;8802:177:1;53291:173:0;;;;;;;;;;-1:-1:-1;53291:173:0;;;;;:::i;:::-;;:::i;33244:182::-;;;;;;;;;;-1:-1:-1;33244:182:0;;;;;:::i;:::-;;:::i;48477:38::-;;;;;;;;;;;;;;;;48811:25;;;;;;;;;;;;;;;;54023:147;;;;;;;;;;;;;:::i;53476:97::-;;;;;;;;;;-1:-1:-1;53476:97:0;;;;;:::i;:::-;;:::i;33507:197::-;;;;;;;;;;-1:-1:-1;33507:197:0;;;;;:::i;:::-;;:::i;52374:221::-;;;;;;;;;;-1:-1:-1;52374:221:0;;;;;:::i;:::-;;:::i;50802:802::-;;;;;;;;;;-1:-1:-1;50802:802:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48522:42::-;;;;;;;;;;;;;;;;49198:666;;;;;;:::i;:::-;;:::i;52262:104::-;;;;;;;;;;-1:-1:-1;52262:104:0;;;;;:::i;:::-;;:::i;48726:33::-;;;;;;;;;;-1:-1:-1;48726:33:0;;;;;;;;52764:99;;;;;;;;;;-1:-1:-1;52764:99:0;;;;;:::i;:::-;;:::i;30524:129::-;;;;;;;;;;-1:-1:-1;30524:129:0;;;;;:::i;:::-;;:::i;49936:553::-;;;;;;:::i;:::-;;:::i;27836:212::-;;;;;;;;;;-1:-1:-1;27836:212:0;;;;;:::i;:::-;;:::i;53803:104::-;;;;;;;;;;-1:-1:-1;53803:104:0;;;;;:::i;:::-;;:::i;53915:100::-;;;;;;;;;;-1:-1:-1;53915:100:0;;;;;:::i;:::-;;:::i;53581:141::-;;;;;;;;;;-1:-1:-1;53581:141:0;;;;;:::i;:::-;;:::i;47261:87::-;;;;;;;;;;-1:-1:-1;47307:7:0;47334:6;-1:-1:-1;;;;;47334:6:0;47261:87;;52871:120;;;;;;;;;;-1:-1:-1;52871:120:0;;;;;:::i;:::-;;:::i;52999:108::-;;;;;;;;;;-1:-1:-1;52999:108:0;;;;;:::i;:::-;;:::i;30913:::-;;;;;;;;;;;;;:::i;32621:297::-;;;;;;;;;;-1:-1:-1;32621:297:0;;;;;:::i;:::-;;:::i;52161:93::-;;;;;;;;;;;;;:::i;53115:165::-;;;;;;;;;;-1:-1:-1;53115:165:0;;;;;:::i;:::-;;:::i;33785:389::-;;;;;;;;;;-1:-1:-1;33785:389:0;;;;;:::i;:::-;;:::i;48766:36::-;;;;;;;;;;-1:-1:-1;48766:36:0;;;;;;;;;;;31102:328;;;;;;;;;;-1:-1:-1;31102:328:0;;;;;:::i;:::-;;:::i;51679:117::-;;;;;;;;;;-1:-1:-1;51679:117:0;;;;;:::i;:::-;;:::i;48573:31::-;;;;;;;;;;-1:-1:-1;48573:31:0;;;;-1:-1:-1;;;;;48573:31:0;;;;;;-1:-1:-1;;;;;13341:47:1;;;13323:66;;13311:2;13296:18;48573:31:0;13177:218:1;51982:115:0;;;;;;;;;;-1:-1:-1;51982:115:0;;;;;:::i;:::-;;:::i;32999:168::-;;;;;;;;;;-1:-1:-1;32999:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;33122:25:0;;;33096:4;33122:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32999:168;50570:161;;;;;;;;;;-1:-1:-1;50570:161:0;;;;;:::i;:::-;;:::i;48613:49::-;;;;;;;;;;-1:-1:-1;48613:49:0;;;;-1:-1:-1;;;48613:49:0;;-1:-1:-1;;;;;48613:49:0;;;47716:201;;;;;;;;;;-1:-1:-1;47716:201:0;;;;;:::i;:::-;;:::i;27447:315::-;27549:4;-1:-1:-1;;;;;;27590:40:0;;-1:-1:-1;;;27590:40:0;;:107;;-1:-1:-1;;;;;;;27649:48:0;;-1:-1:-1;;;27649:48:0;27590:107;:162;;;-1:-1:-1;;;;;;;;;;16322:40:0;;;27716:36;27568:184;27447:315;-1:-1:-1;;27447:315:0:o;30730:104::-;30784:13;30819:5;30812:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30730:104;:::o;32327:212::-;32395:7;32422:16;32430:7;32422;:16::i;:::-;32417:64;;32447:34;;-1:-1:-1;;;32447:34:0;;;;;;;;;;;32417:64;-1:-1:-1;32505:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32505:24:0;;32327:212::o;31862:389::-;31937:13;31953:24;31969:7;31953:15;:24::i;:::-;31937:40;;32000:5;-1:-1:-1;;;;;31994:11:0;:2;-1:-1:-1;;;;;31994:11:0;;31990:48;;;32014:24;;-1:-1:-1;;;32014:24:0;;;;;;;;;;;31990:48;22811:10;-1:-1:-1;;;;;32059:21:0;;;;;;:63;;-1:-1:-1;32085:37:0;32102:5;22811:10;32999:168;:::i;32085:37::-;32084:38;32059:63;32055:142;;;32148:35;;-1:-1:-1;;;32148:35:0;;;;;;;;;;;32055:142;32213:28;32222:2;32226:7;32235:5;32213:8;:28::i;:::-;31924:327;31862:389;;:::o;53291:173::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;;;;;;;;;53394:29:::1;:62:::0;;-1:-1:-1;;;;;53394:62:0;;::::1;-1:-1:-1::0;;;53394:62:0::1;-1:-1:-1::0;;;;;53394:62:0;;::::1;::::0;;;::::1;::::0;;53291:173::o;33244:182::-;33388:28;33398:4;33404:2;33408:7;33388:9;:28::i;54023:147::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54072:7:::1;47334:6:::0;;54085:55:::1;::::0;-1:-1:-1;;;;;47334:6:0;;;;54114:21:::1;::::0;54072:7;54085:55;54072:7;54085:55;54114:21;47334:6;54085:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54071:69;;;54159:2;54151:11;;;::::0;::::1;;54060:110;54023:147::o:0;53476:97::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;53543:13:::1;:22:::0;;-1:-1:-1;;53543:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53476:97::o;33507:197::-;33655:39;33672:4;33678:2;33682:7;33655:39;;;;;;;;;;;;:16;:39::i;52374:221::-;52432:16;52439:8;52432:6;:16::i;:::-;52424:49;;;;-1:-1:-1;;;52424:49:0;;10865:2:1;52424:49:0;;;10847:21:1;10904:2;10884:18;;;10877:30;-1:-1:-1;;;10923:18:1;;;10916:50;10983:18;;52424:49:0;10663:344:1;52424:49:0;52506:17;52514:8;52506:7;:17::i;:::-;-1:-1:-1;;;;;52492:31:0;:10;-1:-1:-1;;;;;52492:31:0;;52484:70;;;;-1:-1:-1;;;52484:70:0;;12676:2:1;52484:70:0;;;12658:21:1;12715:2;12695:18;;;12688:30;12754:28;12734:18;;;12727:56;12800:18;;52484:70:0;12474:350:1;52484:70:0;52565:22;52571:8;52581:5;52565;:22::i;50802:802::-;50891:16;50925:23;50951:17;50961:6;50951:9;:17::i;:::-;50925:43;;50979:30;51026:15;-1:-1:-1;;;;;51012:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51012:30:0;-1:-1:-1;50979:63:0;-1:-1:-1;51078:1:0;51053:22;51130:434;51155:15;51137;:33;:64;;;;-1:-1:-1;51192:9:0;;-1:-1:-1;;;;;51192:9:0;51174:27;;;51137:64;51130:434;;;51221:22;51228:14;51221:6;:22::i;:::-;:30;;51247:4;51221:30;51218:304;;;51272:25;51300:23;51308:14;51300:7;:23::i;:::-;51272:51;;51369:6;-1:-1:-1;;;;;51348:27:0;:17;-1:-1:-1;;;;;51348:27:0;;51344:163;;;51433:14;51400:13;51414:15;51400:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;51470:17;;;;:::i;:::-;;;;51344:163;51253:269;51218:304;51536:16;;;;:::i;:::-;;;;51130:434;;;-1:-1:-1;51583:13:0;;50802:802;-1:-1:-1;;;;50802:802:0:o;49198:666::-;49302:11;-1:-1:-1;;;;;48918:209:0;48996:1;48982:11;:15;48974:49;;;;-1:-1:-1;;;48974:49:0;;;;;;;:::i;:::-;49073:9;;-1:-1:-1;;;;;49073:9:0;49058:11;49042:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49034:73;;;;-1:-1:-1;;;49034:73:0;;;;;;;:::i;:::-;49334:13:::1;::::0;::::1;;49326:47;;;::::0;-1:-1:-1;;;49326:47:0;;9410:2:1;49326:47:0::1;::::0;::::1;9392:21:1::0;9449:2;9429:18;;;9422:30;-1:-1:-1;;;9468:18:1;;;9461:51;9529:18;;49326:47:0::1;9208:345:1::0;49326:47:0::1;49421:11;-1:-1:-1::0;;;;;49407:25:0::1;:11;;:25;;;;:::i;:::-;49394:9;:38;49386:70;;;::::0;-1:-1:-1;;;49386:70:0;;13031:2:1;49386:70:0::1;::::0;::::1;13013:21:1::0;13070:2;13050:18;;;13043:30;-1:-1:-1;;;13089:18:1;;;13082:49;13148:18;;49386:70:0::1;12829:343:1::0;49386:70:0::1;49517:30;::::0;-1:-1:-1;;;;;;;;49517:30:0;;::::1;::::0;::::1;::::0;49475:38;::::1;:24;49488:10;49475:12;:24::i;:::-;:38;;;;:::i;:::-;:72;;49467:106;;;::::0;-1:-1:-1;;;49467:106:0;;9760:2:1;49467:106:0::1;::::0;::::1;9742:21:1::0;9799:2;9779:18;;;9772:30;-1:-1:-1;;;9818:18:1;;;9811:50;9878:18;;49467:106:0::1;9558:344:1::0;49467:106:0::1;49664:28;::::0;-1:-1:-1;;49681:10:0::1;6502:2:1::0;6498:15;6494:53;49664:28:0::1;::::0;::::1;6482:66:1::0;49639:12:0::1;::::0;6564::1;;49664:28:0::1;;;;;;;;;;;;49654:39;;;;;;49639:54;;49712:50;49731:12;;49712:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;49745:10:0::1;::::0;;-1:-1:-1;49757:4:0;;-1:-1:-1;49712:18:0::1;:50::i;:::-;49704:97;;;::::0;-1:-1:-1;;;49704:97:0;;11214:2:1;49704:97:0::1;::::0;::::1;11196:21:1::0;11253:2;11233:18;;;11226:30;11292:34;11272:18;;;11265:62;-1:-1:-1;;;11343:18:1;;;11336:32;11385:19;;49704:97:0::1;11012:398:1::0;49704:97:0::1;49822:34;49832:10;49844:11;-1:-1:-1::0;;;;;49822:34:0::1;:9;:34::i;:::-;49315:549;49198:666:::0;;;;:::o;52262:104::-;52317:4;52341:17;52349:8;52341:7;:17::i;52764:99::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52836:19:::1;:12;52851:4:::0;;52836:19:::1;:::i;30524:129::-:0;30588:7;30617:21;30630:7;30617:12;:21::i;:::-;:26;;30524:129;-1:-1:-1;;30524:129:0:o;49936:553::-;50006:11;-1:-1:-1;;;;;48918:209:0;48996:1;48982:11;:15;48974:49;;;;-1:-1:-1;;;48974:49:0;;;;;;;:::i;:::-;49073:9;;-1:-1:-1;;;;;49073:9:0;49058:11;49042:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49034:73;;;;-1:-1:-1;;;49034:73:0;;;;;;;:::i;:::-;50038:16:::1;::::0;::::1;::::0;::::1;;;50030:49;;;::::0;-1:-1:-1;;;50030:49:0;;11617:2:1;50030:49:0::1;::::0;::::1;11599:21:1::0;11656:2;11636:18;;;11629:30;-1:-1:-1;;;11675:18:1;;;11668:50;11735:18;;50030:49:0::1;11415:344:1::0;50030:49:0::1;50092:25;50120:33;50142:10;50120:21;:33::i;:::-;50208:29;::::0;50092:61;;-1:-1:-1;;;;50208:29:0;::::1;-1:-1:-1::0;;;;;50208:29:0::1;50172:32;50193:11:::0;50092:61;50172:32:::1;:::i;:::-;-1:-1:-1::0;;;;;50172:65:0::1;;;50164:99;;;::::0;-1:-1:-1;;;50164:99:0;;9760:2:1;50164:99:0::1;::::0;::::1;9742:21:1::0;9799:2;9779:18;;;9772:30;-1:-1:-1;;;9818:18:1;;;9811:50;9878:18;;50164:99:0::1;9558:344:1::0;50164:99:0::1;50312:11;-1:-1:-1::0;;;;;50295:28:0::1;:14;;:28;;;;:::i;:::-;50282:9;:41;50274:73;;;::::0;-1:-1:-1;;;50274:73:0;;13031:2:1;50274:73:0::1;::::0;::::1;13013:21:1::0;13070:2;13050:18;;;13043:30;-1:-1:-1;;;13089:18:1;;;13082:49;13148:18;;50274:73:0::1;12829:343:1::0;50274:73:0::1;50360:66;50382:10;50393:32;50414:11:::0;50393:18;:32:::1;:::i;:::-;-1:-1:-1::0;;;;;29040:19:0;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;29040:29:0;-1:-1:-1;;;;;;;;29040:29:0;;;;;;34652:108;;;50360:66:::1;50447:34;50457:10;50469:11;-1:-1:-1::0;;;;;50447:34:0::1;:9;:34::i;27836:212::-:0;27900:7;-1:-1:-1;;;;;27926:19:0;;27922:60;;27954:28;;-1:-1:-1;;;27954:28:0;;;;;;;;;;;27922:60;-1:-1:-1;;;;;;28010:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28010:27:0;;27836:212::o;53803:104::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;53875:10:::1;:24:::0;53803:104::o;53915:100::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;53985:9:::1;:22:::0;;-1:-1:-1;;;;;;53985:22:0::1;-1:-1:-1::0;;;;;53985:22:0;;;::::1;::::0;;;::::1;::::0;;53915:100::o;53581:141::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;53655:13:::1;::::0;::::1;;:22;53647:31;;;::::0;::::1;;53689:16;:25:::0;;;::::1;;;;-1:-1:-1::0;;53689:25:0;;::::1;::::0;;;::::1;::::0;;53581:141::o;52871:120::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52951:14:::1;:32:::0;52871:120::o;52999:108::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;53073:11:::1;:26:::0;52999:108::o;30913:::-;30969:13;31004:7;30997:14;;;;;:::i;32621:297::-;-1:-1:-1;;;;;32722:24:0;;22811:10;32722:24;32718:54;;;32755:17;;-1:-1:-1;;;32755:17:0;;;;;;;;;;;32718:54;22811:10;32789:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32789:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32789:53:0;;;;;;;;;;32860:48;;8750:41:1;;;32789:42:0;;22811:10;32860:48;;8723:18:1;32860:48:0;;;;;;;32621:297;;:::o;52161:93::-;52205:7;52232:14;26497:1;27311:13;-1:-1:-1;;27311:31:0;;27070:295;52232:14;52225:21;;52161:93;:::o;53115:165::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;53214:30:::1;:58:::0;;-1:-1:-1;;;;;53214:58:0;;::::1;-1:-1:-1::0;;;53214:58:0::1;-1:-1:-1::0;;;;53214:58:0;;::::1;::::0;;;::::1;::::0;;53115:165::o;33785:389::-;33964:28;33974:4;33980:2;33984:7;33964:9;:28::i;:::-;-1:-1:-1;;;;;34009:13:0;;6425:19;:23;;34009:76;;;;;34029:56;34060:4;34066:2;34070:7;34079:5;34029:30;:56::i;:::-;34028:57;34009:76;34005:160;;;34111:40;;-1:-1:-1;;;34111:40:0;;;;;;;;;;;34005:160;33785:389;;;;:::o;31102:328::-;31175:13;31208:16;31216:7;31208;:16::i;:::-;31203:59;;31233:29;;-1:-1:-1;;;31233:29:0;;;;;;;;;;;31203:59;31279:21;31303:10;:8;:10::i;:::-;31279:34;;31339:7;31333:21;31358:1;31333:26;;:87;;;;;;;;;;;;;;;;;31386:7;31395:18;:7;:16;:18::i;:::-;31369:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31333:87;31326:94;31102:328;-1:-1:-1;;;31102:328:0:o;51679:117::-;-1:-1:-1;;;;;28741:19:0;;51747:6;28741:19;;;:12;:19;;;;;:23;-1:-1:-1;;;28741:23:0;;-1:-1:-1;;;;;28741:23:0;51773:15;28658:116;51982:115;-1:-1:-1;;;;;28238:19:0;;52041:7;28238:19;;;:12;:19;;;;;:32;-1:-1:-1;;;28238:32:0;;-1:-1:-1;;;;;28238:32:0;52068:21;28140:141;50570:161;50656:11;48996:1;48982:11;:15;48974:49;;;;-1:-1:-1;;;48974:49:0;;;;;;;:::i;:::-;49073:9;;-1:-1:-1;;;;;49073:9:0;49058:11;49042:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49034:73;;;;-1:-1:-1;;;49034:73:0;;;;;;;:::i;:::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23:::1;47473:68;;;;-1:-1:-1::0;;;47473:68:0::1;;;;;;;:::i;:::-;50690:33:::2;50700:9;50711:11;50690:9;:33::i;47716:201::-:0;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47805:22:0;::::1;47797:73;;;::::0;-1:-1:-1;;;47797:73:0;;10109:2:1;47797:73:0::1;::::0;::::1;10091:21:1::0;10148:2;10128:18;;;10121:30;10187:34;10167:18;;;10160:62;-1:-1:-1;;;10238:18:1;;;10231:36;10284:19;;47797:73:0::1;9907:402:1::0;47797:73:0::1;47881:28;47900:8;47881:18;:28::i;34447:193::-:0;34504:4;34549:7;26497:1;34530:26;;:53;;;;;34570:13;;34560:7;:23;34530:53;:100;;;;-1:-1:-1;;34603:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34603:27:0;;;;34602:28;;34447:193::o;43053:210::-;43178:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43178:29:0;-1:-1:-1;;;;;43178:29:0;;;;;;;;;43225:28;;43178:24;;43225:28;;;;;;;43053:210;;;:::o;37742:2226::-;37867:35;37905:21;37918:7;37905:12;:21::i;:::-;37867:59;;37969:4;-1:-1:-1;;;;;37947:26:0;:13;:18;;;-1:-1:-1;;;;;37947:26:0;;37943:67;;37982:28;;-1:-1:-1;;;37982:28:0;;;;;;;;;;;37943:67;38027:22;22811:10;-1:-1:-1;;;;;38053:20:0;;;;:75;;-1:-1:-1;38092:36:0;38109:4;22811:10;32999:168;:::i;38092:36::-;38053:130;;;-1:-1:-1;22811:10:0;38147:20;38159:7;38147:11;:20::i;:::-;-1:-1:-1;;;;;38147:36:0;;38053:130;38027:157;;38206:17;38201:66;;38232:35;;-1:-1:-1;;;38232:35:0;;;;;;;;;;;38201:66;-1:-1:-1;;;;;38284:16:0;;38280:52;;38309:23;;-1:-1:-1;;;38309:23:0;;;;;;;;;;;38280:52;38463:35;38480:1;38484:7;38493:4;38463:8;:35::i;:::-;-1:-1:-1;;;;;38806:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38806:31:0;;;-1:-1:-1;;;;;38806:31:0;;;-1:-1:-1;;38806:31:0;;;;;;;38854:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38854:29:0;;;;;;;;;;;38938:20;;;:11;:20;;;;;;38975:18;;-1:-1:-1;;;;;;39010:49:0;;;;-1:-1:-1;;;39043:15:0;39010:49;;;;;;;;;;39341:11;;39403:24;;;;;39448:13;;38938:20;;39403:24;;39448:13;39444:398;;39664:13;;39649:11;:28;39645:180;;39704:20;;39775:28;;;;-1:-1:-1;;;;;39749:54:0;-1:-1:-1;;;39749:54:0;-1:-1:-1;;;;;;39749:54:0;;;-1:-1:-1;;;;;39704:20:0;;39749:54;;;;39645:180;38779:1076;;;39895:7;39891:2;-1:-1:-1;;;;;39876:27:0;39885:4;-1:-1:-1;;;;;39876:27:0;-1:-1:-1;;;;;;;;;;;39876:27:0;;;;;;;;;39916:42;33785:389;40407:2514;40489:35;40527:21;40540:7;40527:12;:21::i;:::-;40580:18;;40489:59;;-1:-1:-1;40615:302:0;;;;40651:22;22811:10;-1:-1:-1;;;;;40677:20:0;;;;:79;;-1:-1:-1;40720:36:0;40737:4;22811:10;32999:168;:::i;40720:36::-;40677:138;;;-1:-1:-1;22811:10:0;40779:20;40791:7;40779:11;:20::i;:::-;-1:-1:-1;;;;;40779:36:0;;40677:138;40651:165;;40842:17;40837:66;;40868:35;;-1:-1:-1;;;40868:35:0;;;;;;;;;;;40837:66;40634:283;40615:302;41055:35;41072:1;41076:7;41085:4;41055:8;:35::i;:::-;-1:-1:-1;;;;;41432:18:0;;;41398:31;41432:18;;;:12;:18;;;;;;;;41467:24;;-1:-1:-1;;;;;;;;;;41467:24:0;;;;;;;;;-1:-1:-1;;41467:24:0;;;;41508:29;;;;;41490:1;41508:29;;;;;;;;-1:-1:-1;;41508:29:0;;;;;;;;;;41676:20;;;:11;:20;;;;;;41713;;-1:-1:-1;;;;41783:15:0;41750:49;;;-1:-1:-1;;;41750:49:0;-1:-1:-1;;;;;;41750:49:0;;;;;;;;;;41816:22;-1:-1:-1;;;41816:22:0;;;42116:11;;;42178:24;;;;;42223:13;;41432:18;;42178:24;;42223:13;42219:398;;42439:13;;42424:11;:28;42420:180;;42479:20;;42550:28;;;;-1:-1:-1;;;;;42524:54:0;-1:-1:-1;;;42524:54:0;-1:-1:-1;;;;;;42524:54:0;;;-1:-1:-1;;;;;42479:20:0;;42524:54;;;;42420:180;-1:-1:-1;;42651:35:0;;42678:7;;-1:-1:-1;42674:1:0;;-1:-1:-1;;;;;;42651:35:0;;;-1:-1:-1;;;;;;;;;;;42651:35:0;42674:1;;42651:35;-1:-1:-1;;42884:12:0;:14;;;;;;-1:-1:-1;;40407:2514:0:o;1308:190::-;1433:4;1486;1457:25;1470:5;1477:4;1457:12;:25::i;:::-;:33;;1308:190;-1:-1:-1;;;;1308:190:0:o;34652:108::-;34723:27;34733:2;34737:8;34723:27;;;;;;;;;;;;:9;:27::i;:::-;34652:108;;:::o;29293:1159::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29406:7:0;;26497:1;29461:23;;:47;;;;;29495:13;;29488:4;:20;29461:47;29457:922;;;29531:31;29565:17;;;:11;:17;;;;;;;;;29531:51;;;;;;;;;-1:-1:-1;;;;;29531:51:0;;;;-1:-1:-1;;;29531:51:0;;-1:-1:-1;;;;;29531:51:0;;;;;;;;-1:-1:-1;;;29531:51:0;;;;;;;;;;;;;;29603:759;;29655:14;;-1:-1:-1;;;;;29655:28:0;;29651:105;;29721:9;29293:1159;-1:-1:-1;;;29293:1159:0:o;29651:105::-;-1:-1:-1;;;30110:6:0;30157:17;;;;:11;:17;;;;;;;;;30145:29;;;;;;;;;-1:-1:-1;;;;;30145:29:0;;;;;-1:-1:-1;;;30145:29:0;;-1:-1:-1;;;;;30145:29:0;;;;;;;;-1:-1:-1;;;30145:29:0;;;;;;;;;;;;;30207:28;30203:113;;30277:9;29293:1159;-1:-1:-1;;;29293:1159:0:o;30203:113::-;30068:273;;;29510:869;29457:922;30411:31;;-1:-1:-1;;;30411:31:0;;;;;;;;;;;43777:701;43973:72;;-1:-1:-1;;;43973:72:0;;43950:4;;-1:-1:-1;;;;;43973:36:0;;;;;:72;;22811:10;;44024:4;;44030:7;;44039:5;;43973:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43973:72:0;;;;;;;;-1:-1:-1;;43973:72:0;;;;;;;;;;;;:::i;:::-;;;43969:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44213:13:0;;44209:247;;44261:40;;-1:-1:-1;;;44261:40:0;;;;;;;;;;;44209:247;44410:6;44404:13;44395:6;44391:2;44387:15;44380:38;43969:500;-1:-1:-1;;;;;;44094:55:0;-1:-1:-1;;;44094:55:0;;-1:-1:-1;43969:500:0;43777:701;;;;;;:::o;52643:113::-;52703:13;52736:12;52729:19;;;;;:::i;3138:723::-;3194:13;3415:10;3411:53;;-1:-1:-1;;3442:10:0;;;;;;;;;;;;-1:-1:-1;;;3442:10:0;;;;;3138:723::o;3411:53::-;3489:5;3474:12;3530:78;3537:9;;3530:78;;3563:8;;;;:::i;:::-;;-1:-1:-1;3586:10:0;;-1:-1:-1;3594:2:0;3586:10;;:::i;:::-;;;3530:78;;;3618:19;3650:6;-1:-1:-1;;;;;3640:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3640:17:0;;3618:39;;3668:154;3675:10;;3668:154;;3702:11;3712:1;3702:11;;:::i;:::-;;-1:-1:-1;3771:10:0;3779:2;3771:5;:10;:::i;:::-;3758:24;;:2;:24;:::i;:::-;3745:39;;3728:6;3735;3728:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3728:56:0;;;;;;;;-1:-1:-1;3799:11:0;3808:2;3799:11;;:::i;:::-;;;3668:154;;48077:191;48151:16;48170:6;;-1:-1:-1;;;;;48187:17:0;;;-1:-1:-1;;;;;;48187:17:0;;;;;;48220:40;;48170:6;;;;;;;48220:40;;48151:16;48220:40;48140:128;48077:191;:::o;1859:675::-;1942:7;1985:4;1942:7;2000:497;2024:5;:12;2020:1;:16;2000:497;;;2058:20;2081:5;2087:1;2081:8;;;;;;;;:::i;:::-;;;;;;;2058:31;;2124:12;2108;:28;2104:382;;2610:13;2660:15;;;2696:4;2689:15;;;2743:4;2727:21;;2236:57;;2104:382;;;2610:13;2660:15;;;2696:4;2689:15;;;2743:4;2727:21;;2413:57;;2104:382;-1:-1:-1;2038:3:0;;;;:::i;:::-;;;;2000:497;;;-1:-1:-1;2514:12:0;1859:675;-1:-1:-1;;;1859:675:0:o;35147:175::-;35280:32;35286:2;35290:8;35300:5;35307:4;35779:13;;-1:-1:-1;;;;;35809:16:0;;35805:48;;35834:19;;-1:-1:-1;;;35834:19:0;;;;;;;;;;;35805:48;35870:13;35866:44;;35892:18;;-1:-1:-1;;;35892:18:0;;;;;;;;;;;35866:44;-1:-1:-1;;;;;36277:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;36338:49:0;;-1:-1:-1;;;;;36277:44:0;;;;;;;36338:49;;;-1:-1:-1;;;;;36277:44:0;;;;;;36338:49;;;;;;;;;;;;;;;;36408:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36460:66:0;;;;-1:-1:-1;;;36510:15:0;36460:66;;;;;;;;;;36408:25;36613:23;;;36661:4;:23;;;;-1:-1:-1;;;;;;36669:13:0;;6425:19;:23;;36669:15;36657:667;;;36707:324;36740:38;;36765:12;;-1:-1:-1;;;;;36740:38:0;;;36757:1;;-1:-1:-1;;;;;;;;;;;36740:38:0;36757:1;;36740:38;36808:69;36847:1;36851:2;36855:14;;;;;;36871:5;36808:30;:69::i;:::-;36803:178;;36915:40;;-1:-1:-1;;;36915:40:0;;;;;;;;;;;36803:178;37026:3;37010:12;:19;;36707:324;;37116:12;37099:13;;:29;37095:43;;37130:8;;;37095:43;36657:667;;;37183:124;37216:40;;37241:14;;;;;-1:-1:-1;;;;;37216:40:0;;;37233:1;;-1:-1:-1;;;;;;;;;;;37216:40:0;37233:1;;37216:40;37302:3;37286:12;:19;;37183:124;;36657:667;-1:-1:-1;37340:13:0;:28;37394:60;33785:389;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:171;424:20;;-1:-1:-1;;;;;473:30:1;;463:41;;453:69;;518:1;515;508:12;533:186;592:6;645:2;633:9;624:7;620:23;616:32;613:52;;;661:1;658;651:12;613:52;684:29;703:9;684:29;:::i;724:260::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;;940:38;974:2;963:9;959:18;940:38;:::i;:::-;930:48;;724:260;;;;;:::o;989:328::-;1066:6;1074;1082;1135:2;1123:9;1114:7;1110:23;1106:32;1103:52;;;1151:1;1148;1141:12;1103:52;1174:29;1193:9;1174:29;:::i;:::-;1164:39;;1222:38;1256:2;1245:9;1241:18;1222:38;:::i;:::-;1212:48;;1307:2;1296:9;1292:18;1279:32;1269:42;;989:328;;;;;:::o;1322:1138::-;1417:6;1425;1433;1441;1494:3;1482:9;1473:7;1469:23;1465:33;1462:53;;;1511:1;1508;1501:12;1462:53;1534:29;1553:9;1534:29;:::i;:::-;1524:39;;1582:38;1616:2;1605:9;1601:18;1582:38;:::i;:::-;1572:48;;1667:2;1656:9;1652:18;1639:32;1629:42;;1722:2;1711:9;1707:18;1694:32;-1:-1:-1;;;;;1786:2:1;1778:6;1775:14;1772:34;;;1802:1;1799;1792:12;1772:34;1840:6;1829:9;1825:22;1815:32;;1885:7;1878:4;1874:2;1870:13;1866:27;1856:55;;1907:1;1904;1897:12;1856:55;1943:2;1930:16;1965:2;1961;1958:10;1955:36;;;1971:18;;:::i;:::-;2046:2;2040:9;2014:2;2100:13;;-1:-1:-1;;2096:22:1;;;2120:2;2092:31;2088:40;2076:53;;;2144:18;;;2164:22;;;2141:46;2138:72;;;2190:18;;:::i;:::-;2230:10;2226:2;2219:22;2265:2;2257:6;2250:18;2305:7;2300:2;2295;2291;2287:11;2283:20;2280:33;2277:53;;;2326:1;2323;2316:12;2277:53;2382:2;2377;2373;2369:11;2364:2;2356:6;2352:15;2339:46;2427:1;2422:2;2417;2409:6;2405:15;2401:24;2394:35;2448:6;2438:16;;;;;;;1322:1138;;;;;;;:::o;2465:254::-;2530:6;2538;2591:2;2579:9;2570:7;2566:23;2562:32;2559:52;;;2607:1;2604;2597:12;2559:52;2630:29;2649:9;2630:29;:::i;:::-;2620:39;;2678:35;2709:2;2698:9;2694:18;2678:35;:::i;2724:254::-;2792:6;2800;2853:2;2841:9;2832:7;2828:23;2824:32;2821:52;;;2869:1;2866;2859:12;2821:52;2892:29;2911:9;2892:29;:::i;:::-;2882:39;2968:2;2953:18;;;;2940:32;;-1:-1:-1;;;2724:254:1:o;2983:693::-;3077:6;3085;3093;3146:2;3134:9;3125:7;3121:23;3117:32;3114:52;;;3162:1;3159;3152:12;3114:52;3202:9;3189:23;-1:-1:-1;;;;;3272:2:1;3264:6;3261:14;3258:34;;;3288:1;3285;3278:12;3258:34;3326:6;3315:9;3311:22;3301:32;;3371:7;3364:4;3360:2;3356:13;3352:27;3342:55;;3393:1;3390;3383:12;3342:55;3433:2;3420:16;3459:2;3451:6;3448:14;3445:34;;;3475:1;3472;3465:12;3445:34;3530:7;3523:4;3513:6;3510:1;3506:14;3502:2;3498:23;3494:34;3491:47;3488:67;;;3551:1;3548;3541:12;3488:67;3582:4;3574:13;;;;-1:-1:-1;3606:6:1;-1:-1:-1;3631:39:1;;3649:20;;;-1:-1:-1;3631:39:1;:::i;:::-;3621:49;;2983:693;;;;;:::o;3681:180::-;3737:6;3790:2;3778:9;3769:7;3765:23;3761:32;3758:52;;;3806:1;3803;3796:12;3758:52;3829:26;3845:9;3829:26;:::i;3866:180::-;3925:6;3978:2;3966:9;3957:7;3953:23;3949:32;3946:52;;;3994:1;3991;3984:12;3946:52;-1:-1:-1;4017:23:1;;3866:180;-1:-1:-1;3866:180:1:o;4051:245::-;4109:6;4162:2;4150:9;4141:7;4137:23;4133:32;4130:52;;;4178:1;4175;4168:12;4130:52;4217:9;4204:23;4236:30;4260:5;4236:30;:::i;4301:249::-;4370:6;4423:2;4411:9;4402:7;4398:23;4394:32;4391:52;;;4439:1;4436;4429:12;4391:52;4471:9;4465:16;4490:30;4514:5;4490:30;:::i;4555:592::-;4626:6;4634;4687:2;4675:9;4666:7;4662:23;4658:32;4655:52;;;4703:1;4700;4693:12;4655:52;4743:9;4730:23;-1:-1:-1;;;;;4813:2:1;4805:6;4802:14;4799:34;;;4829:1;4826;4819:12;4799:34;4867:6;4856:9;4852:22;4842:32;;4912:7;4905:4;4901:2;4897:13;4893:27;4883:55;;4934:1;4931;4924:12;4883:55;4974:2;4961:16;5000:2;4992:6;4989:14;4986:34;;;5016:1;5013;5006:12;4986:34;5061:7;5056:2;5047:6;5043:2;5039:15;5035:24;5032:37;5029:57;;;5082:1;5079;5072:12;5029:57;5113:2;5105:11;;;;;5135:6;;-1:-1:-1;4555:592:1;;-1:-1:-1;;;;4555:592:1:o;5152:301::-;5211:6;5264:2;5252:9;5243:7;5239:23;5235:32;5232:52;;;5280:1;5277;5270:12;5232:52;5319:9;5306:23;-1:-1:-1;;;;;5362:5:1;5358:46;5351:5;5348:57;5338:85;;5419:1;5416;5409:12;5643:254;5711:6;5719;5772:2;5760:9;5751:7;5747:23;5743:32;5740:52;;;5788:1;5785;5778:12;5740:52;5824:9;5811:23;5801:33;;5853:38;5887:2;5876:9;5872:18;5853:38;:::i;5902:184::-;5960:6;6013:2;6001:9;5992:7;5988:23;5984:32;5981:52;;;6029:1;6026;6019:12;5981:52;6052:28;6070:9;6052:28;:::i;6091:257::-;6132:3;6170:5;6164:12;6197:6;6192:3;6185:19;6213:63;6269:6;6262:4;6257:3;6253:14;6246:4;6239:5;6235:16;6213:63;:::i;:::-;6330:2;6309:15;-1:-1:-1;;6305:29:1;6296:39;;;;6337:4;6292:50;;6091:257;-1:-1:-1;;6091:257:1:o;6587:470::-;6766:3;6804:6;6798:13;6820:53;6866:6;6861:3;6854:4;6846:6;6842:17;6820:53;:::i;:::-;6936:13;;6895:16;;;;6958:57;6936:13;6895:16;6992:4;6980:17;;6958:57;:::i;:::-;7031:20;;6587:470;-1:-1:-1;;;;6587:470:1:o;7480:488::-;-1:-1:-1;;;;;7749:15:1;;;7731:34;;7801:15;;7796:2;7781:18;;7774:43;7848:2;7833:18;;7826:34;;;7896:3;7891:2;7876:18;;7869:31;;;7674:4;;7917:45;;7942:19;;7934:6;7917:45;:::i;:::-;7909:53;7480:488;-1:-1:-1;;;;;;7480:488:1:o;7973:632::-;8144:2;8196:21;;;8266:13;;8169:18;;;8288:22;;;8115:4;;8144:2;8367:15;;;;8341:2;8326:18;;;8115:4;8410:169;8424:6;8421:1;8418:13;8410:169;;;8485:13;;8473:26;;8554:15;;;;8519:12;;;;8446:1;8439:9;8410:169;;;-1:-1:-1;8596:3:1;;7973:632;-1:-1:-1;;;;;;7973:632:1:o;8984:219::-;9133:2;9122:9;9115:21;9096:4;9153:44;9193:2;9182:9;9178:18;9170:6;9153:44;:::i;10314:344::-;10516:2;10498:21;;;10555:2;10535:18;;;10528:30;-1:-1:-1;;;10589:2:1;10574:18;;10567:50;10649:2;10634:18;;10314:344::o;11764:356::-;11966:2;11948:21;;;11985:18;;;11978:30;12044:34;12039:2;12024:18;;12017:62;12111:2;12096:18;;11764:356::o;12125:344::-;12327:2;12309:21;;;12366:2;12346:18;;;12339:30;-1:-1:-1;;;12400:2:1;12385:18;;12378:50;12460:2;12445:18;;12125:344::o;13787:128::-;13827:3;13858:1;13854:6;13851:1;13848:13;13845:39;;;13864:18;;:::i;:::-;-1:-1:-1;13900:9:1;;13787:128::o;13920:236::-;13959:3;-1:-1:-1;;;;;14032:2:1;14029:1;14025:10;14062:2;14059:1;14055:10;14093:3;14089:2;14085:12;14080:3;14077:21;14074:47;;;14101:18;;:::i;14161:120::-;14201:1;14227;14217:35;;14232:18;;:::i;:::-;-1:-1:-1;14266:9:1;;14161:120::o;14286:168::-;14326:7;14392:1;14388;14384:6;14380:14;14377:1;14374:21;14369:1;14362:9;14355:17;14351:45;14348:71;;;14399:18;;:::i;:::-;-1:-1:-1;14439:9:1;;14286:168::o;14459:125::-;14499:4;14527:1;14524;14521:8;14518:34;;;14532:18;;:::i;:::-;-1:-1:-1;14569:9:1;;14459:125::o;14589:258::-;14661:1;14671:113;14685:6;14682:1;14679:13;14671:113;;;14761:11;;;14755:18;14742:11;;;14735:39;14707:2;14700:10;14671:113;;;14802:6;14799:1;14796:13;14793:48;;;-1:-1:-1;;14837:1:1;14819:16;;14812:27;14589:258::o;14852:380::-;14931:1;14927:12;;;;14974;;;14995:61;;15049:4;15041:6;15037:17;15027:27;;14995:61;15102:2;15094:6;15091:14;15071:18;15068:38;15065:161;;;15148:10;15143:3;15139:20;15136:1;15129:31;15183:4;15180:1;15173:15;15211:4;15208:1;15201:15;15065:161;;14852:380;;;:::o;15237:135::-;15276:3;-1:-1:-1;;15297:17:1;;15294:43;;;15317:18;;:::i;:::-;-1:-1:-1;15364:1:1;15353:13;;15237:135::o;15377:112::-;15409:1;15435;15425:35;;15440:18;;:::i;:::-;-1:-1:-1;15474:9:1;;15377:112::o;15494:127::-;15555:10;15550:3;15546:20;15543:1;15536:31;15586:4;15583:1;15576:15;15610:4;15607:1;15600:15;15626:127;15687:10;15682:3;15678:20;15675:1;15668:31;15718:4;15715:1;15708:15;15742:4;15739:1;15732:15;15758:127;15819:10;15814:3;15810:20;15807:1;15800:31;15850:4;15847:1;15840:15;15874:4;15871:1;15864:15;15890:127;15951:10;15946:3;15942:20;15939:1;15932:31;15982:4;15979:1;15972:15;16006:4;16003:1;15996:15;16022:131;-1:-1:-1;;;;;;16096:32:1;;16086:43;;16076:71;;16143:1;16140;16133:12
Swarm Source
ipfs://4cf6d4cbd8211658c278c57a39d1501b77b0cc582282d1e9f5632a5fc5d249b7
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.