Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 294 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 20340179 | 191 days ago | IN | 0 ETH | 0.00028103 | ||||
Set Approval For... | 19802570 | 266 days ago | IN | 0 ETH | 0.00024116 | ||||
Set Approval For... | 19497203 | 309 days ago | IN | 0 ETH | 0.00088073 | ||||
Set Approval For... | 19157436 | 357 days ago | IN | 0 ETH | 0.0007546 | ||||
Set Approval For... | 17918292 | 530 days ago | IN | 0 ETH | 0.00058254 | ||||
Set Approval For... | 17769727 | 551 days ago | IN | 0 ETH | 0.00108948 | ||||
Set Approval For... | 17754798 | 553 days ago | IN | 0 ETH | 0.000695 | ||||
Safe Transfer Fr... | 17754791 | 553 days ago | IN | 0 ETH | 0.00186645 | ||||
Safe Transfer Fr... | 17747937 | 554 days ago | IN | 0 ETH | 0.00215544 | ||||
Safe Transfer Fr... | 17709339 | 559 days ago | IN | 0 ETH | 0.00083083 | ||||
Set Approval For... | 17707103 | 560 days ago | IN | 0 ETH | 0.00079582 | ||||
Safe Transfer Fr... | 17413352 | 601 days ago | IN | 0 ETH | 0.00136711 | ||||
Safe Transfer Fr... | 17264295 | 622 days ago | IN | 0 ETH | 0.00268127 | ||||
Set Approval For... | 17096391 | 646 days ago | IN | 0 ETH | 0.00173056 | ||||
Safe Transfer Fr... | 16713398 | 700 days ago | IN | 0 ETH | 0.00139984 | ||||
Safe Transfer Fr... | 16402433 | 743 days ago | IN | 0 ETH | 0.00146798 | ||||
Safe Transfer Fr... | 16327193 | 754 days ago | IN | 0 ETH | 0.0013915 | ||||
Safe Transfer Fr... | 16203966 | 771 days ago | IN | 0 ETH | 0.00086218 | ||||
Set Approval For... | 16175945 | 775 days ago | IN | 0 ETH | 0.00090757 | ||||
Safe Transfer Fr... | 15937323 | 808 days ago | IN | 0 ETH | 0.00168332 | ||||
Safe Transfer Fr... | 15932513 | 809 days ago | IN | 0 ETH | 0.00177236 | ||||
Set Approval For... | 15916627 | 811 days ago | IN | 0 ETH | 0.00052207 | ||||
Set Approval For... | 15914704 | 811 days ago | IN | 0 ETH | 0.00030578 | ||||
Set Approval For... | 15914702 | 811 days ago | IN | 0 ETH | 0.00057111 | ||||
Safe Transfer Fr... | 15903334 | 813 days ago | IN | 0 ETH | 0.00087556 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SoulMagic
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-22 */ // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @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 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 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 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 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 pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/SoulMagic.sol pragma solidity ^0.8.0; contract SoulMagic is ERC721A, Ownable { using Strings for uint256; using ECDSA for bytes32; uint256 public constant MAX_SUPPLY = 5555; uint256 public constant MAX_PUBLIC_MINT = 5; uint256 public constant MAX_WHITELIST_MINT = 3; uint256 private reserved = 500; uint256 public whitelistPrice = 0.1 ether; uint256 public reservePrice = 0.1 ether; uint256 public price; enum SalePhase { Locked, ReserveSale, Whitelist, PublicSale } SalePhase public phase = SalePhase.Locked; mapping(address => uint256) public whitelist; address private adminSigner; string private baseTokenURI; string private defaultTokenURI; constructor(address s, string memory uri) ERC721A("Soul Magic Child Z", "CHDZ") { adminSigner = s; defaultTokenURI = uri; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function whitelistMint(uint256 _quantity, bytes calldata signature) external payable callerIsUser { require(phase == SalePhase.Whitelist, "Whitelist sale is not active"); require( totalSupply() + _quantity <= MAX_SUPPLY - reserved, "Reach max supply" ); require(recoverSigner(signature) == adminSigner, "Not whitelisted"); require( whitelist[msg.sender] + _quantity <= MAX_WHITELIST_MINT, "Exceed whitelist max mint" ); require(msg.value >= whitelistPrice * _quantity, "Not enought funds"); whitelist[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function mint(uint256 _quantity) external payable callerIsUser { require(phase == SalePhase.PublicSale, "Public sale has not started"); require( totalSupply() + _quantity <= MAX_SUPPLY - reserved, "Reach max supply" ); require(_quantity <= MAX_PUBLIC_MINT, "Exceed max batch mint"); require(msg.value >= price * _quantity, "Not enought funds"); _safeMint(msg.sender, _quantity); } // Allow minting without limit function reserveMint(uint256 _quantity) external payable callerIsUser { require( phase == SalePhase.ReserveSale, "Reserve minting has not started" ); require(totalSupply() + _quantity <= reserved, "Reach max reserve"); require(msg.value >= reservePrice * _quantity, "Not enought funds"); reserved -= _quantity; _safeMint(msg.sender, _quantity); } // Verify if signed by admin signer function recoverSigner(bytes calldata signature) internal view returns (address) { return keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", bytes32(uint256(uint160(msg.sender))) ) ).recover(signature); } // Sale phase control function setPhase(SalePhase phase_) external onlyOwner { phase = phase_; } function setPrice(uint256 salePrice_) external onlyOwner { price = salePrice_; } function setWhitelistPrice(uint256 newPrice_) external onlyOwner { whitelistPrice = newPrice_; } function setReservePrice(uint256 newPrice_) external onlyOwner { reservePrice = newPrice_; } // Release reserved function setReserved(uint256 _newReserved) public onlyOwner { reserved = _newReserved; } // Metadata function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } // Show URI after reveal function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); return bytes(baseTokenURI).length > 0 ? string( abi.encodePacked(baseTokenURI, tokenId.toString(), ".json") ) : defaultTokenURI; } function setBaseURI(string memory _newTokenURI) external onlyOwner { baseTokenURI = _newTokenURI; } function setDefaultURI(string memory _newURI) external onlyOwner { defaultTokenURI = _newURI; } function setSigner(address _signer) public onlyOwner { adminSigner = _signer; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(0x130676f4C97eEa3B3fE441A05CBe85297ACC5cc6).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"s","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"phase","outputs":[{"internalType":"enum SoulMagic.SalePhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reservePrice","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":"_newTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SoulMagic.SalePhase","name":"phase_","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salePrice_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice_","type":"uint256"}],"name":"setReservePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newReserved","type":"uint256"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice_","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526101f460095567016345785d8a0000600a819055600b55600d805460ff191690553480156200003257600080fd5b50604051620029ba380380620029ba833981016040819052620000559162000204565b604080518082018252601281527129b7bab61026b0b3b4b19021b434b632102d60711b60208083019182528351808501909452600484526321a4222d60e11b908401528151919291620000ab916002916200015e565b508051620000c19060039060208401906200015e565b50506000805550620000d3336200010c565b600f80546001600160a01b0319166001600160a01b0384161790558051620001039060119060208401906200015e565b50505062000357565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016c9062000304565b90600052602060002090601f016020900481019282620001905760008555620001db565b82601f10620001ab57805160ff1916838001178555620001db565b82800160010185558215620001db579182015b82811115620001db578251825591602001919060010190620001be565b50620001e9929150620001ed565b5090565b5b80821115620001e95760008155600101620001ee565b600080604083850312156200021857600080fd5b82516001600160a01b03811681146200023057600080fd5b602084810151919350906001600160401b03808211156200025057600080fd5b818601915086601f8301126200026557600080fd5b8151818111156200027a576200027a62000341565b604051601f8201601f19908116603f01168101908382118183101715620002a557620002a562000341565b816040528281528986848701011115620002be57600080fd5b600093505b82841015620002e25784840186015181850187015292850192620002c3565b82841115620002f45760008684830101525b8096505050505050509250929050565b600181811c908216806200031957607f821691505b602082108114156200033b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61265380620003676000396000f3fe60806040526004361061021a5760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063da1b9e081161006f578063da1b9e08146105f3578063db2e1eed14610613578063e985e9c514610629578063f2fde38b14610672578063fc1a1c361461069257600080fd5b8063b88d4fde1461055e578063c03afb591461057e578063c08dfd3c1461059e578063c87b56dd146105b3578063ce9c7c0d146105d357600080fd5b80639e852f75116100f25780639e852f75146104db578063a035b1fe146104ee578063a0712d6814610504578063a22cb46514610517578063b1c9fe6e1461053757600080fd5b80638da5cb5b1461045b57806391b7f5ed1461047957806395d89b41146104995780639b19251a146104ae57600080fd5b80633ccfd60b116101a657806365f130971161017557806365f13097146103d15780636c19e783146103e657806370a0823114610406578063715018a614610426578063717d57d31461043b57600080fd5b80633ccfd60b1461035c57806342842e0e1461037157806355f804b3146103915780636352211e146103b157600080fd5b80631342ff4c116101ed5780631342ff4c146102d057806318160ddd146102e357806323b872dd146103065780632d6e71b61461032657806332cb6b0c1461034657600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612156565b6106a8565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106fa565b60405161024b91906123f7565b34801561028257600080fd5b506102966102913660046121fa565b61078c565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461212c565b6107d0565b005b6102ce6102de3660046121fa565b61085e565b3480156102ef57600080fd5b50600154600054035b60405190815260200161024b565b34801561031257600080fd5b506102ce610321366004612038565b61099b565b34801561033257600080fd5b506102ce6103413660046121fa565b6109a6565b34801561035257600080fd5b506102f86115b381565b34801561036857600080fd5b506102ce6109d5565b34801561037d57600080fd5b506102ce61038c366004612038565b610a46565b34801561039d57600080fd5b506102ce6103ac3660046121b1565b610a61565b3480156103bd57600080fd5b506102966103cc3660046121fa565b610a9e565b3480156103dd57600080fd5b506102f8600581565b3480156103f257600080fd5b506102ce610401366004611fea565b610ab0565b34801561041257600080fd5b506102f8610421366004611fea565b610afc565b34801561043257600080fd5b506102ce610b4b565b34801561044757600080fd5b506102ce6104563660046121fa565b610b81565b34801561046757600080fd5b506008546001600160a01b0316610296565b34801561048557600080fd5b506102ce6104943660046121fa565b610bb0565b3480156104a557600080fd5b50610269610bdf565b3480156104ba57600080fd5b506102f86104c9366004611fea565b600e6020526000908152604090205481565b6102ce6104e9366004612213565b610bee565b3480156104fa57600080fd5b506102f8600c5481565b6102ce6105123660046121fa565b610e01565b34801561052357600080fd5b506102ce6105323660046120f0565b610f6e565b34801561054357600080fd5b50600d546105519060ff1681565b60405161024b91906123cf565b34801561056a57600080fd5b506102ce610579366004612074565b611004565b34801561058a57600080fd5b506102ce610599366004612190565b611055565b3480156105aa57600080fd5b506102f8600381565b3480156105bf57600080fd5b506102696105ce3660046121fa565b6110a6565b3480156105df57600080fd5b506102ce6105ee3660046121fa565b6111d4565b3480156105ff57600080fd5b506102ce61060e3660046121b1565b611203565b34801561061f57600080fd5b506102f8600b5481565b34801561063557600080fd5b5061023f610644366004612005565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067e57600080fd5b506102ce61068d366004611fea565b611240565b34801561069e57600080fd5b506102f8600a5481565b60006001600160e01b031982166380ac58cd60e01b14806106d957506001600160e01b03198216635b5e139f60e01b145b806106f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107099061252f565b80601f01602080910402602001604051908101604052809291908181526020018280546107359061252f565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b6000610797826112d8565b6107b4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107db82610a9e565b9050806001600160a01b0316836001600160a01b031614156108105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610830575061082e8133610644565b155b1561084e576040516367d9dca160e11b815260040160405180910390fd5b610859838383611303565b505050565b3233146108865760405162461bcd60e51b815260040161087d9061240a565b60405180910390fd5b6001600d5460ff16600381111561089f5761089f6125c5565b146108ec5760405162461bcd60e51b815260206004820152601f60248201527f52657365727665206d696e74696e6720686173206e6f74207374617274656400604482015260640161087d565b600954816108fd6001546000540390565b61090791906124a1565b11156109495760405162461bcd60e51b81526020600482015260116024820152705265616368206d6178207265736572766560781b604482015260640161087d565b80600b5461095791906124cd565b3410156109765760405162461bcd60e51b815260040161087d90612476565b806009600082825461098891906124ec565b909155506109989050338261135f565b50565b610859838383611379565b6008546001600160a01b031633146109d05760405162461bcd60e51b815260040161087d90612441565b600955565b6008546001600160a01b031633146109ff5760405162461bcd60e51b815260040161087d90612441565b604051479073130676f4c97eea3b3fe441a05cbe85297acc5cc69082156108fc029083906000818181858888f19350505050158015610a42573d6000803e3d6000fd5b5050565b61085983838360405180602001604052806000815250611004565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161087d90612441565b8051610a42906010906020840190611ebf565b6000610aa982611569565b5192915050565b6008546001600160a01b03163314610ada5760405162461bcd60e51b815260040161087d90612441565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610b25576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b755760405162461bcd60e51b815260040161087d90612441565b610b7f6000611685565b565b6008546001600160a01b03163314610bab5760405162461bcd60e51b815260040161087d90612441565b600a55565b6008546001600160a01b03163314610bda5760405162461bcd60e51b815260040161087d90612441565b600c55565b6060600380546107099061252f565b323314610c0d5760405162461bcd60e51b815260040161087d9061240a565b6002600d5460ff166003811115610c2657610c266125c5565b14610c735760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f742061637469766500000000604482015260640161087d565b600954610c82906115b36124ec565b83610c906001546000540390565b610c9a91906124a1565b1115610cdb5760405162461bcd60e51b815260206004820152601060248201526f5265616368206d617820737570706c7960801b604482015260640161087d565b600f546001600160a01b0316610cf183836116d7565b6001600160a01b031614610d395760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161087d565b336000908152600e6020526040902054600390610d579085906124a1565b1115610da55760405162461bcd60e51b815260206004820152601960248201527f4578636565642077686974656c697374206d6178206d696e7400000000000000604482015260640161087d565b82600a54610db391906124cd565b341015610dd25760405162461bcd60e51b815260040161087d90612476565b336000908152600e602052604081208054859290610df19084906124a1565b909155506108599050338461135f565b323314610e205760405162461bcd60e51b815260040161087d9061240a565b6003600d5460ff166003811115610e3957610e396125c5565b14610e865760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f7420737461727465640000000000604482015260640161087d565b600954610e95906115b36124ec565b81610ea36001546000540390565b610ead91906124a1565b1115610eee5760405162461bcd60e51b815260206004820152601060248201526f5265616368206d617820737570706c7960801b604482015260640161087d565b6005811115610f375760405162461bcd60e51b8152602060048201526015602482015274115e18d95959081b585e0818985d18da081b5a5b9d605a1b604482015260640161087d565b80600c54610f4591906124cd565b341015610f645760405162461bcd60e51b815260040161087d90612476565b610998338261135f565b6001600160a01b038216331415610f985760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61100f848484611379565b6001600160a01b0383163b15158015611031575061102f84848484611776565b155b1561104f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461107f5760405162461bcd60e51b815260040161087d90612441565b600d805482919060ff1916600183600381111561109e5761109e6125c5565b021790555050565b60606110b1826112d8565b6110fd5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604482015260640161087d565b60006010805461110c9061252f565b9050116111a357601180546111209061252f565b80601f016020809104026020016040519081016040528092919081815260200182805461114c9061252f565b80156111995780601f1061116e57610100808354040283529160200191611199565b820191906000526020600020905b81548152906001019060200180831161117c57829003601f168201915b50505050506106f4565b60106111ae8361186e565b6040516020016111bf9291906122d7565b60405160208183030381529060405292915050565b6008546001600160a01b031633146111fe5760405162461bcd60e51b815260040161087d90612441565b600b55565b6008546001600160a01b0316331461122d5760405162461bcd60e51b815260040161087d90612441565b8051610a42906011906020840190611ebf565b6008546001600160a01b0316331461126a5760405162461bcd60e51b815260040161087d90612441565b6001600160a01b0381166112cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087d565b61099881611685565b60008054821080156106f4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a4282826040518060200160405280600081525061196c565b600061138482611569565b9050836001600160a01b031681600001516001600160a01b0316146113bb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113d957506113d98533610644565b806113f45750336113e98461078c565b6001600160a01b0316145b90508061141457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661143b57604051633a954ecd60e21b815260040160405180910390fd5b61144760008487611303565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661151d57600054821461151d578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561166c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061166a5780516001600160a01b031615611600579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611665579392505050565b611600565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061176f83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c01915061174b9050565b6040516020818303038152906040528051906020012061197990919063ffffffff16565b9392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117ab903390899088908890600401612392565b602060405180830381600087803b1580156117c557600080fd5b505af19250505080156117f5575060408051601f3d908101601f191682019092526117f291810190612173565b60015b611850573d808015611823576040519150601f19603f3d011682016040523d82523d6000602084013e611828565b606091505b508051611848576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816118925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118bc57806118a68161256a565b91506118b59050600a836124b9565b9150611896565b60008167ffffffffffffffff8111156118d7576118d76125f1565b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090505b8415611866576119166001836124ec565b9150611923600a86612585565b61192e9060306124a1565b60f81b818381518110611943576119436125db565b60200101906001600160f81b031916908160001a905350611965600a866124b9565b9450611905565b610859838383600161199d565b60008060006119888585611b6e565b9150915061199581611bde565b509392505050565b6000546001600160a01b0385166119c657604051622e076360e81b815260040160405180910390fd5b836119e45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a9657506001600160a01b0387163b15155b15611b1f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ae76000888480600101955088611776565b611b04576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a9c578260005414611b1a57600080fd5b611b65565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b20575b50600055611562565b600080825160411415611ba55760208301516040840151606085015160001a611b9987828585611d99565b94509450505050611bd7565b825160401415611bcf5760208301516040840151611bc4868383611e86565b935093505050611bd7565b506000905060025b9250929050565b6000816004811115611bf257611bf26125c5565b1415611bfb5750565b6001816004811115611c0f57611c0f6125c5565b1415611c5d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161087d565b6002816004811115611c7157611c716125c5565b1415611cbf5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161087d565b6003816004811115611cd357611cd36125c5565b1415611d2c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161087d565b6004816004811115611d4057611d406125c5565b14156109985760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161087d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611dd05750600090506003611e7d565b8460ff16601b14158015611de857508460ff16601c14155b15611df95750600090506004611e7d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611e4d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e7657600060019250925050611e7d565b9150600090505b94509492505050565b6000806001600160ff1b03831681611ea360ff86901c601b6124a1565b9050611eb187828885611d99565b935093505050935093915050565b828054611ecb9061252f565b90600052602060002090601f016020900481019282611eed5760008555611f33565b82601f10611f0657805160ff1916838001178555611f33565b82800160010185558215611f33579182015b82811115611f33578251825591602001919060010190611f18565b50611f3f929150611f43565b5090565b5b80821115611f3f5760008155600101611f44565b600067ffffffffffffffff80841115611f7357611f736125f1565b604051601f8501601f19908116603f01168101908282118183101715611f9b57611f9b6125f1565b81604052809350858152868686011115611fb457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fe557600080fd5b919050565b600060208284031215611ffc57600080fd5b61176f82611fce565b6000806040838503121561201857600080fd5b61202183611fce565b915061202f60208401611fce565b90509250929050565b60008060006060848603121561204d57600080fd5b61205684611fce565b925061206460208501611fce565b9150604084013590509250925092565b6000806000806080858703121561208a57600080fd5b61209385611fce565b93506120a160208601611fce565b925060408501359150606085013567ffffffffffffffff8111156120c457600080fd5b8501601f810187136120d557600080fd5b6120e487823560208401611f58565b91505092959194509250565b6000806040838503121561210357600080fd5b61210c83611fce565b91506020830135801515811461212157600080fd5b809150509250929050565b6000806040838503121561213f57600080fd5b61214883611fce565b946020939093013593505050565b60006020828403121561216857600080fd5b813561176f81612607565b60006020828403121561218557600080fd5b815161176f81612607565b6000602082840312156121a257600080fd5b81356004811061176f57600080fd5b6000602082840312156121c357600080fd5b813567ffffffffffffffff8111156121da57600080fd5b8201601f810184136121eb57600080fd5b61186684823560208401611f58565b60006020828403121561220c57600080fd5b5035919050565b60008060006040848603121561222857600080fd5b83359250602084013567ffffffffffffffff8082111561224757600080fd5b818601915086601f83011261225b57600080fd5b81358181111561226a57600080fd5b87602082850101111561227c57600080fd5b6020830194508093505050509250925092565b600081518084526122a7816020860160208601612503565b601f01601f19169290920160200192915050565b600081516122cd818560208601612503565b9290920192915050565b600080845481600182811c9150808316806122f357607f831692505b602080841082141561231357634e487b7160e01b86526022600452602486fd5b818015612327576001811461233857612365565b60ff19861689528489019650612365565b60008b81526020902060005b8681101561235d5781548b820152908501908301612344565b505084890196505b50505050505061238961237882866122bb565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c59083018461228f565b9695505050505050565b60208101600483106123f157634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061176f602083018461228f565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704e6f7420656e6f756768742066756e647360781b604082015260600190565b600082198211156124b4576124b4612599565b500190565b6000826124c8576124c86125af565b500490565b60008160001904831182151516156124e7576124e7612599565b500290565b6000828210156124fe576124fe612599565b500390565b60005b8381101561251e578181015183820152602001612506565b8381111561104f5750506000910152565b600181811c9082168061254357607f821691505b6020821081141561256457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257e5761257e612599565b5060010190565b600082612594576125946125af565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461099857600080fdfea264697066735822122052613d3f1bd7ba77c56b608c399234324e45c914fb27f1aaf18621d10fbbf57f64736f6c63430008070033000000000000000000000000926ef80b270aa3b513bb632f3327d2f76ae06f930000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f736f756c6d616769632e696f2f746f6b656e2f6368696c642e6a736f6e000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063da1b9e081161006f578063da1b9e08146105f3578063db2e1eed14610613578063e985e9c514610629578063f2fde38b14610672578063fc1a1c361461069257600080fd5b8063b88d4fde1461055e578063c03afb591461057e578063c08dfd3c1461059e578063c87b56dd146105b3578063ce9c7c0d146105d357600080fd5b80639e852f75116100f25780639e852f75146104db578063a035b1fe146104ee578063a0712d6814610504578063a22cb46514610517578063b1c9fe6e1461053757600080fd5b80638da5cb5b1461045b57806391b7f5ed1461047957806395d89b41146104995780639b19251a146104ae57600080fd5b80633ccfd60b116101a657806365f130971161017557806365f13097146103d15780636c19e783146103e657806370a0823114610406578063715018a614610426578063717d57d31461043b57600080fd5b80633ccfd60b1461035c57806342842e0e1461037157806355f804b3146103915780636352211e146103b157600080fd5b80631342ff4c116101ed5780631342ff4c146102d057806318160ddd146102e357806323b872dd146103065780632d6e71b61461032657806332cb6b0c1461034657600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612156565b6106a8565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106fa565b60405161024b91906123f7565b34801561028257600080fd5b506102966102913660046121fa565b61078c565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461212c565b6107d0565b005b6102ce6102de3660046121fa565b61085e565b3480156102ef57600080fd5b50600154600054035b60405190815260200161024b565b34801561031257600080fd5b506102ce610321366004612038565b61099b565b34801561033257600080fd5b506102ce6103413660046121fa565b6109a6565b34801561035257600080fd5b506102f86115b381565b34801561036857600080fd5b506102ce6109d5565b34801561037d57600080fd5b506102ce61038c366004612038565b610a46565b34801561039d57600080fd5b506102ce6103ac3660046121b1565b610a61565b3480156103bd57600080fd5b506102966103cc3660046121fa565b610a9e565b3480156103dd57600080fd5b506102f8600581565b3480156103f257600080fd5b506102ce610401366004611fea565b610ab0565b34801561041257600080fd5b506102f8610421366004611fea565b610afc565b34801561043257600080fd5b506102ce610b4b565b34801561044757600080fd5b506102ce6104563660046121fa565b610b81565b34801561046757600080fd5b506008546001600160a01b0316610296565b34801561048557600080fd5b506102ce6104943660046121fa565b610bb0565b3480156104a557600080fd5b50610269610bdf565b3480156104ba57600080fd5b506102f86104c9366004611fea565b600e6020526000908152604090205481565b6102ce6104e9366004612213565b610bee565b3480156104fa57600080fd5b506102f8600c5481565b6102ce6105123660046121fa565b610e01565b34801561052357600080fd5b506102ce6105323660046120f0565b610f6e565b34801561054357600080fd5b50600d546105519060ff1681565b60405161024b91906123cf565b34801561056a57600080fd5b506102ce610579366004612074565b611004565b34801561058a57600080fd5b506102ce610599366004612190565b611055565b3480156105aa57600080fd5b506102f8600381565b3480156105bf57600080fd5b506102696105ce3660046121fa565b6110a6565b3480156105df57600080fd5b506102ce6105ee3660046121fa565b6111d4565b3480156105ff57600080fd5b506102ce61060e3660046121b1565b611203565b34801561061f57600080fd5b506102f8600b5481565b34801561063557600080fd5b5061023f610644366004612005565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067e57600080fd5b506102ce61068d366004611fea565b611240565b34801561069e57600080fd5b506102f8600a5481565b60006001600160e01b031982166380ac58cd60e01b14806106d957506001600160e01b03198216635b5e139f60e01b145b806106f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107099061252f565b80601f01602080910402602001604051908101604052809291908181526020018280546107359061252f565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b6000610797826112d8565b6107b4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107db82610a9e565b9050806001600160a01b0316836001600160a01b031614156108105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610830575061082e8133610644565b155b1561084e576040516367d9dca160e11b815260040160405180910390fd5b610859838383611303565b505050565b3233146108865760405162461bcd60e51b815260040161087d9061240a565b60405180910390fd5b6001600d5460ff16600381111561089f5761089f6125c5565b146108ec5760405162461bcd60e51b815260206004820152601f60248201527f52657365727665206d696e74696e6720686173206e6f74207374617274656400604482015260640161087d565b600954816108fd6001546000540390565b61090791906124a1565b11156109495760405162461bcd60e51b81526020600482015260116024820152705265616368206d6178207265736572766560781b604482015260640161087d565b80600b5461095791906124cd565b3410156109765760405162461bcd60e51b815260040161087d90612476565b806009600082825461098891906124ec565b909155506109989050338261135f565b50565b610859838383611379565b6008546001600160a01b031633146109d05760405162461bcd60e51b815260040161087d90612441565b600955565b6008546001600160a01b031633146109ff5760405162461bcd60e51b815260040161087d90612441565b604051479073130676f4c97eea3b3fe441a05cbe85297acc5cc69082156108fc029083906000818181858888f19350505050158015610a42573d6000803e3d6000fd5b5050565b61085983838360405180602001604052806000815250611004565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161087d90612441565b8051610a42906010906020840190611ebf565b6000610aa982611569565b5192915050565b6008546001600160a01b03163314610ada5760405162461bcd60e51b815260040161087d90612441565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610b25576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b755760405162461bcd60e51b815260040161087d90612441565b610b7f6000611685565b565b6008546001600160a01b03163314610bab5760405162461bcd60e51b815260040161087d90612441565b600a55565b6008546001600160a01b03163314610bda5760405162461bcd60e51b815260040161087d90612441565b600c55565b6060600380546107099061252f565b323314610c0d5760405162461bcd60e51b815260040161087d9061240a565b6002600d5460ff166003811115610c2657610c266125c5565b14610c735760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f742061637469766500000000604482015260640161087d565b600954610c82906115b36124ec565b83610c906001546000540390565b610c9a91906124a1565b1115610cdb5760405162461bcd60e51b815260206004820152601060248201526f5265616368206d617820737570706c7960801b604482015260640161087d565b600f546001600160a01b0316610cf183836116d7565b6001600160a01b031614610d395760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161087d565b336000908152600e6020526040902054600390610d579085906124a1565b1115610da55760405162461bcd60e51b815260206004820152601960248201527f4578636565642077686974656c697374206d6178206d696e7400000000000000604482015260640161087d565b82600a54610db391906124cd565b341015610dd25760405162461bcd60e51b815260040161087d90612476565b336000908152600e602052604081208054859290610df19084906124a1565b909155506108599050338461135f565b323314610e205760405162461bcd60e51b815260040161087d9061240a565b6003600d5460ff166003811115610e3957610e396125c5565b14610e865760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f7420737461727465640000000000604482015260640161087d565b600954610e95906115b36124ec565b81610ea36001546000540390565b610ead91906124a1565b1115610eee5760405162461bcd60e51b815260206004820152601060248201526f5265616368206d617820737570706c7960801b604482015260640161087d565b6005811115610f375760405162461bcd60e51b8152602060048201526015602482015274115e18d95959081b585e0818985d18da081b5a5b9d605a1b604482015260640161087d565b80600c54610f4591906124cd565b341015610f645760405162461bcd60e51b815260040161087d90612476565b610998338261135f565b6001600160a01b038216331415610f985760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61100f848484611379565b6001600160a01b0383163b15158015611031575061102f84848484611776565b155b1561104f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461107f5760405162461bcd60e51b815260040161087d90612441565b600d805482919060ff1916600183600381111561109e5761109e6125c5565b021790555050565b60606110b1826112d8565b6110fd5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604482015260640161087d565b60006010805461110c9061252f565b9050116111a357601180546111209061252f565b80601f016020809104026020016040519081016040528092919081815260200182805461114c9061252f565b80156111995780601f1061116e57610100808354040283529160200191611199565b820191906000526020600020905b81548152906001019060200180831161117c57829003601f168201915b50505050506106f4565b60106111ae8361186e565b6040516020016111bf9291906122d7565b60405160208183030381529060405292915050565b6008546001600160a01b031633146111fe5760405162461bcd60e51b815260040161087d90612441565b600b55565b6008546001600160a01b0316331461122d5760405162461bcd60e51b815260040161087d90612441565b8051610a42906011906020840190611ebf565b6008546001600160a01b0316331461126a5760405162461bcd60e51b815260040161087d90612441565b6001600160a01b0381166112cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087d565b61099881611685565b60008054821080156106f4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a4282826040518060200160405280600081525061196c565b600061138482611569565b9050836001600160a01b031681600001516001600160a01b0316146113bb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113d957506113d98533610644565b806113f45750336113e98461078c565b6001600160a01b0316145b90508061141457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661143b57604051633a954ecd60e21b815260040160405180910390fd5b61144760008487611303565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661151d57600054821461151d578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561166c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061166a5780516001600160a01b031615611600579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611665579392505050565b611600565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061176f83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c01915061174b9050565b6040516020818303038152906040528051906020012061197990919063ffffffff16565b9392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117ab903390899088908890600401612392565b602060405180830381600087803b1580156117c557600080fd5b505af19250505080156117f5575060408051601f3d908101601f191682019092526117f291810190612173565b60015b611850573d808015611823576040519150601f19603f3d011682016040523d82523d6000602084013e611828565b606091505b508051611848576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816118925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118bc57806118a68161256a565b91506118b59050600a836124b9565b9150611896565b60008167ffffffffffffffff8111156118d7576118d76125f1565b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090505b8415611866576119166001836124ec565b9150611923600a86612585565b61192e9060306124a1565b60f81b818381518110611943576119436125db565b60200101906001600160f81b031916908160001a905350611965600a866124b9565b9450611905565b610859838383600161199d565b60008060006119888585611b6e565b9150915061199581611bde565b509392505050565b6000546001600160a01b0385166119c657604051622e076360e81b815260040160405180910390fd5b836119e45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a9657506001600160a01b0387163b15155b15611b1f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ae76000888480600101955088611776565b611b04576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a9c578260005414611b1a57600080fd5b611b65565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b20575b50600055611562565b600080825160411415611ba55760208301516040840151606085015160001a611b9987828585611d99565b94509450505050611bd7565b825160401415611bcf5760208301516040840151611bc4868383611e86565b935093505050611bd7565b506000905060025b9250929050565b6000816004811115611bf257611bf26125c5565b1415611bfb5750565b6001816004811115611c0f57611c0f6125c5565b1415611c5d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161087d565b6002816004811115611c7157611c716125c5565b1415611cbf5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161087d565b6003816004811115611cd357611cd36125c5565b1415611d2c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161087d565b6004816004811115611d4057611d406125c5565b14156109985760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161087d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611dd05750600090506003611e7d565b8460ff16601b14158015611de857508460ff16601c14155b15611df95750600090506004611e7d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611e4d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e7657600060019250925050611e7d565b9150600090505b94509492505050565b6000806001600160ff1b03831681611ea360ff86901c601b6124a1565b9050611eb187828885611d99565b935093505050935093915050565b828054611ecb9061252f565b90600052602060002090601f016020900481019282611eed5760008555611f33565b82601f10611f0657805160ff1916838001178555611f33565b82800160010185558215611f33579182015b82811115611f33578251825591602001919060010190611f18565b50611f3f929150611f43565b5090565b5b80821115611f3f5760008155600101611f44565b600067ffffffffffffffff80841115611f7357611f736125f1565b604051601f8501601f19908116603f01168101908282118183101715611f9b57611f9b6125f1565b81604052809350858152868686011115611fb457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fe557600080fd5b919050565b600060208284031215611ffc57600080fd5b61176f82611fce565b6000806040838503121561201857600080fd5b61202183611fce565b915061202f60208401611fce565b90509250929050565b60008060006060848603121561204d57600080fd5b61205684611fce565b925061206460208501611fce565b9150604084013590509250925092565b6000806000806080858703121561208a57600080fd5b61209385611fce565b93506120a160208601611fce565b925060408501359150606085013567ffffffffffffffff8111156120c457600080fd5b8501601f810187136120d557600080fd5b6120e487823560208401611f58565b91505092959194509250565b6000806040838503121561210357600080fd5b61210c83611fce565b91506020830135801515811461212157600080fd5b809150509250929050565b6000806040838503121561213f57600080fd5b61214883611fce565b946020939093013593505050565b60006020828403121561216857600080fd5b813561176f81612607565b60006020828403121561218557600080fd5b815161176f81612607565b6000602082840312156121a257600080fd5b81356004811061176f57600080fd5b6000602082840312156121c357600080fd5b813567ffffffffffffffff8111156121da57600080fd5b8201601f810184136121eb57600080fd5b61186684823560208401611f58565b60006020828403121561220c57600080fd5b5035919050565b60008060006040848603121561222857600080fd5b83359250602084013567ffffffffffffffff8082111561224757600080fd5b818601915086601f83011261225b57600080fd5b81358181111561226a57600080fd5b87602082850101111561227c57600080fd5b6020830194508093505050509250925092565b600081518084526122a7816020860160208601612503565b601f01601f19169290920160200192915050565b600081516122cd818560208601612503565b9290920192915050565b600080845481600182811c9150808316806122f357607f831692505b602080841082141561231357634e487b7160e01b86526022600452602486fd5b818015612327576001811461233857612365565b60ff19861689528489019650612365565b60008b81526020902060005b8681101561235d5781548b820152908501908301612344565b505084890196505b50505050505061238961237882866122bb565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c59083018461228f565b9695505050505050565b60208101600483106123f157634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061176f602083018461228f565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704e6f7420656e6f756768742066756e647360781b604082015260600190565b600082198211156124b4576124b4612599565b500190565b6000826124c8576124c86125af565b500490565b60008160001904831182151516156124e7576124e7612599565b500290565b6000828210156124fe576124fe612599565b500390565b60005b8381101561251e578181015183820152602001612506565b8381111561104f5750506000910152565b600181811c9082168061254357607f821691505b6020821081141561256457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257e5761257e612599565b5060010190565b600082612594576125946125af565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461099857600080fdfea264697066735822122052613d3f1bd7ba77c56b608c399234324e45c914fb27f1aaf18621d10fbbf57f64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000926ef80b270aa3b513bb632f3327d2f76ae06f930000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f736f756c6d616769632e696f2f746f6b656e2f6368696c642e6a736f6e000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : s (address): 0x926ef80B270aA3B513BB632f3327D2F76Ae06F93
Arg [1] : uri (string): https://soulmagic.io/token/child.json
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000926ef80b270aa3b513bb632f3327d2f76ae06f93
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [3] : 68747470733a2f2f736f756c6d616769632e696f2f746f6b656e2f6368696c64
Arg [4] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
53228:4872:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33117:305;;;;;;;;;;-1:-1:-1;33117:305:0;;;;;:::i;:::-;;:::i;:::-;;;8109:14:1;;8102:22;8084:41;;8072:2;8057:18;33117:305:0;;;;;;;;36230:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37733:204::-;;;;;;;;;;-1:-1:-1;37733:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7407:32:1;;;7389:51;;7377:2;7362:18;37733:204:0;7243:203:1;37296:371:0;;;;;;;;;;-1:-1:-1;37296:371:0;;;;;:::i;:::-;;:::i;:::-;;55517:431;;;;;;:::i;:::-;;:::i;32366:303::-;;;;;;;;;;-1:-1:-1;32620:12:0;;32410:7;32604:13;:28;32366:303;;;15420:25:1;;;15408:2;15393:18;32366:303:0;15274:177:1;38598:170:0;;;;;;;;;;-1:-1:-1;38598:170:0;;;;;:::i;:::-;;:::i;56853:102::-;;;;;;;;;;-1:-1:-1;56853:102:0;;;;;:::i;:::-;;:::i;53338:41::-;;;;;;;;;;;;53375:4;53338:41;;57920:177;;;;;;;;;;;;;:::i;38839:185::-;;;;;;;;;;-1:-1:-1;38839:185:0;;;;;:::i;:::-;;:::i;57581:113::-;;;;;;;;;;-1:-1:-1;57581:113:0;;;;;:::i;:::-;;:::i;36038:125::-;;;;;;;;;;-1:-1:-1;36038:125:0;;;;;:::i;:::-;;:::i;53386:43::-;;;;;;;;;;;;53428:1;53386:43;;57819:93;;;;;;;;;;-1:-1:-1;57819:93:0;;;;;:::i;:::-;;:::i;33486:206::-;;;;;;;;;;-1:-1:-1;33486:206:0;;;;;:::i;:::-;;:::i;52524:94::-;;;;;;;;;;;;;:::i;56596:110::-;;;;;;;;;;-1:-1:-1;56596:110:0;;;;;:::i;:::-;;:::i;51873:87::-;;;;;;;;;;-1:-1:-1;51946:6:0;;-1:-1:-1;;;;;51946:6:0;51873:87;;56494:94;;;;;;;;;;-1:-1:-1;56494:94:0;;;;;:::i;:::-;;:::i;36399:104::-;;;;;;;;;;;;;:::i;53809:44::-;;;;;;;;;;-1:-1:-1;53809:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;54268:732;;;;;;:::i;:::-;;:::i;53620:20::-;;;;;;;;;;;;;;;;55008:465;;;;;;:::i;:::-;;:::i;38009:287::-;;;;;;;;;;-1:-1:-1;38009:287:0;;;;;:::i;:::-;;:::i;53759:41::-;;;;;;;;;;-1:-1:-1;53759:41:0;;;;;;;;;;;;;;;:::i;39095:369::-;;;;;;;;;;-1:-1:-1;39095:369:0;;;;;:::i;:::-;;:::i;56398:88::-;;;;;;;;;;-1:-1:-1;56398:88:0;;;;;:::i;:::-;;:::i;53436:46::-;;;;;;;;;;;;53481:1;53436:46;;57131:442;;;;;;;;;;-1:-1:-1;57131:442:0;;;;;:::i;:::-;;:::i;56714:106::-;;;;;;;;;;-1:-1:-1;56714:106:0;;;;;:::i;:::-;;:::i;57702:109::-;;;;;;;;;;-1:-1:-1;57702:109:0;;;;;:::i;:::-;;:::i;53574:39::-;;;;;;;;;;;;;;;;38367:164;;;;;;;;;;-1:-1:-1;38367:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38488:25:0;;;38464:4;38488:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38367:164;52773:192;;;;;;;;;;-1:-1:-1;52773:192:0;;;;;:::i;:::-;;:::i;53526:41::-;;;;;;;;;;;;;;;;33117:305;33219:4;-1:-1:-1;;;;;;33256:40:0;;-1:-1:-1;;;33256:40:0;;:105;;-1:-1:-1;;;;;;;33313:48:0;;-1:-1:-1;;;33313:48:0;33256:105;:158;;;-1:-1:-1;;;;;;;;;;10815:40:0;;;33378:36;33236:178;33117:305;-1:-1:-1;;33117:305:0:o;36230:100::-;36284:13;36317:5;36310:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36230:100;:::o;37733:204::-;37801:7;37826:16;37834:7;37826;:16::i;:::-;37821:64;;37851:34;;-1:-1:-1;;;37851:34:0;;;;;;;;;;;37821:64;-1:-1:-1;37905:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37905:24:0;;37733:204::o;37296:371::-;37369:13;37385:24;37401:7;37385:15;:24::i;:::-;37369:40;;37430:5;-1:-1:-1;;;;;37424:11:0;:2;-1:-1:-1;;;;;37424:11:0;;37420:48;;;37444:24;;-1:-1:-1;;;37444:24:0;;;;;;;;;;;37420:48;28713:10;-1:-1:-1;;;;;37485:21:0;;;;;;:63;;-1:-1:-1;37511:37:0;37528:5;28713:10;38367:164;:::i;37511:37::-;37510:38;37485:63;37481:138;;;37572:35;;-1:-1:-1;;;37572:35:0;;;;;;;;;;;37481:138;37631:28;37640:2;37644:7;37653:5;37631:8;:28::i;:::-;37358:309;37296:371;;:::o;55517:431::-;54182:9;54195:10;54182:23;54174:66;;;;-1:-1:-1;;;54174:66:0;;;;;;;:::i;:::-;;;;;;;;;55629:21:::1;55620:5;::::0;::::1;;:30;::::0;::::1;;;;;;:::i;:::-;;55598:111;;;::::0;-1:-1:-1;;;55598:111:0;;13722:2:1;55598:111:0::1;::::0;::::1;13704:21:1::0;13761:2;13741:18;;;13734:30;13800:33;13780:18;;;13773:61;13851:18;;55598:111:0::1;13520:355:1::0;55598:111:0::1;55757:8;;55744:9;55728:13;32620:12:::0;;32410:7;32604:13;:28;;32366:303;55728:13:::1;:25;;;;:::i;:::-;:37;;55720:67;;;::::0;-1:-1:-1;;;55720:67:0;;14082:2:1;55720:67:0::1;::::0;::::1;14064:21:1::0;14121:2;14101:18;;;14094:30;-1:-1:-1;;;14140:18:1;;;14133:47;14197:18;;55720:67:0::1;13880:341:1::0;55720:67:0::1;55834:9;55819:12;;:24;;;;:::i;:::-;55806:9;:37;;55798:67;;;;-1:-1:-1::0;;;55798:67:0::1;;;;;;;:::i;:::-;55888:9;55876:8;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;55908:32:0::1;::::0;-1:-1:-1;55918:10:0::1;55930:9:::0;55908::::1;:32::i;:::-;55517:431:::0;:::o;38598:170::-;38732:28;38742:4;38748:2;38752:7;38732:9;:28::i;56853:102::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;56924:8:::1;:23:::0;56853:102::o;57920:177::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;58020:69:::1;::::0;57988:21:::1;::::0;58028:42:::1;::::0;58020:69;::::1;;;::::0;57988:21;;57970:15:::1;58020:69:::0;57970:15;58020:69;57988:21;58028:42;58020:69;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57959:138;57920:177::o:0;38839:185::-;38977:39;38994:4;39000:2;39004:7;38977:39;;;;;;;;;;;;:16;:39::i;57581:113::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;57659:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;36038:125::-:0;36102:7;36129:21;36142:7;36129:12;:21::i;:::-;:26;;36038:125;-1:-1:-1;;36038:125:0:o;57819:93::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;57883:11:::1;:21:::0;;-1:-1:-1;;;;;;57883:21:0::1;-1:-1:-1::0;;;;;57883:21:0;;;::::1;::::0;;;::::1;::::0;;57819:93::o;33486:206::-;33550:7;-1:-1:-1;;;;;33574:19:0;;33570:60;;33602:28;;-1:-1:-1;;;33602:28:0;;;;;;;;;;;33570:60;-1:-1:-1;;;;;;33656:19:0;;;;;:12;:19;;;;;:27;;;;33486:206::o;52524:94::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;52589:21:::1;52607:1;52589:9;:21::i;:::-;52524:94::o:0;56596:110::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;56672:14:::1;:26:::0;56596:110::o;56494:94::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;56562:5:::1;:18:::0;56494:94::o;36399:104::-;36455:13;36488:7;36481:14;;;;;:::i;54268:732::-;54182:9;54195:10;54182:23;54174:66;;;;-1:-1:-1;;;54174:66:0;;;;;;;:::i;:::-;54426:19:::1;54417:5;::::0;::::1;;:28;::::0;::::1;;;;;;:::i;:::-;;54409:69;;;::::0;-1:-1:-1;;;54409:69:0;;14428:2:1;54409:69:0::1;::::0;::::1;14410:21:1::0;14467:2;14447:18;;;14440:30;14506;14486:18;;;14479:58;14554:18;;54409:69:0::1;14226:352:1::0;54409:69:0::1;54553:8;::::0;54540:21:::1;::::0;53375:4:::1;54540:21;:::i;:::-;54527:9;54511:13;32620:12:::0;;32410:7;32604:13;:28;;32366:303;54511:13:::1;:25;;;;:::i;:::-;:50;;54489:116;;;::::0;-1:-1:-1;;;54489:116:0;;14785:2:1;54489:116:0::1;::::0;::::1;14767:21:1::0;14824:2;14804:18;;;14797:30;-1:-1:-1;;;14843:18:1;;;14836:46;14899:18;;54489:116:0::1;14583:340:1::0;54489:116:0::1;54652:11;::::0;-1:-1:-1;;;;;54652:11:0::1;54624:24;54638:9:::0;;54624:13:::1;:24::i;:::-;-1:-1:-1::0;;;;;54624:39:0::1;;54616:67;;;::::0;-1:-1:-1;;;54616:67:0;;11910:2:1;54616:67:0::1;::::0;::::1;11892:21:1::0;11949:2;11929:18;;;11922:30;-1:-1:-1;;;11968:18:1;;;11961:45;12023:18;;54616:67:0::1;11708:339:1::0;54616:67:0::1;54726:10;54716:21;::::0;;;:9:::1;:21;::::0;;;;;53481:1:::1;::::0;54716:33:::1;::::0;54740:9;;54716:33:::1;:::i;:::-;:55;;54694:130;;;::::0;-1:-1:-1;;;54694:130:0;;13368:2:1;54694:130:0::1;::::0;::::1;13350:21:1::0;13407:2;13387:18;;;13380:30;13446:27;13426:18;;;13419:55;13491:18;;54694:130:0::1;13166:349:1::0;54694:130:0::1;54873:9;54856:14;;:26;;;;:::i;:::-;54843:9;:39;;54835:69;;;;-1:-1:-1::0;;;54835:69:0::1;;;;;;;:::i;:::-;54925:10;54915:21;::::0;;;:9:::1;:21;::::0;;;;:34;;54940:9;;54915:21;:34:::1;::::0;54940:9;;54915:34:::1;:::i;:::-;::::0;;;-1:-1:-1;54960:32:0::1;::::0;-1:-1:-1;54970:10:0::1;54982:9:::0;54960::::1;:32::i;55008:465::-:0;54182:9;54195:10;54182:23;54174:66;;;;-1:-1:-1;;;54174:66:0;;;;;;;:::i;:::-;55099:20:::1;55090:5;::::0;::::1;;:29;::::0;::::1;;;;;;:::i;:::-;;55082:69;;;::::0;-1:-1:-1;;;55082:69:0;;10792:2:1;55082:69:0::1;::::0;::::1;10774:21:1::0;10831:2;10811:18;;;10804:30;10870:29;10850:18;;;10843:57;10917:18;;55082:69:0::1;10590:351:1::0;55082:69:0::1;55226:8;::::0;55213:21:::1;::::0;53375:4:::1;55213:21;:::i;:::-;55200:9;55184:13;32620:12:::0;;32410:7;32604:13;:28;;32366:303;55184:13:::1;:25;;;;:::i;:::-;:50;;55162:116;;;::::0;-1:-1:-1;;;55162:116:0;;14785:2:1;55162:116:0::1;::::0;::::1;14767:21:1::0;14824:2;14804:18;;;14797:30;-1:-1:-1;;;14843:18:1;;;14836:46;14899:18;;55162:116:0::1;14583:340:1::0;55162:116:0::1;53428:1;55297:9;:28;;55289:62;;;::::0;-1:-1:-1;;;55289:62:0;;12254:2:1;55289:62:0::1;::::0;::::1;12236:21:1::0;12293:2;12273:18;;;12266:30;-1:-1:-1;;;12312:18:1;;;12305:51;12373:18;;55289:62:0::1;12052:345:1::0;55289:62:0::1;55391:9;55383:5;;:17;;;;:::i;:::-;55370:9;:30;;55362:60;;;;-1:-1:-1::0;;;55362:60:0::1;;;;;;;:::i;:::-;55433:32;55443:10;55455:9;55433;:32::i;38009:287::-:0;-1:-1:-1;;;;;38108:24:0;;28713:10;38108:24;38104:54;;;38141:17;;-1:-1:-1;;;38141:17:0;;;;;;;;;;;38104:54;28713:10;38171:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38171:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38171:53:0;;;;;;;;;;38240:48;;8084:41:1;;;38171:42:0;;28713:10;38240:48;;8057:18:1;38240:48:0;;;;;;;38009:287;;:::o;39095:369::-;39262:28;39272:4;39278:2;39282:7;39262:9;:28::i;:::-;-1:-1:-1;;;;;39305:13:0;;1089:20;1137:8;;39305:76;;;;;39325:56;39356:4;39362:2;39366:7;39375:5;39325:30;:56::i;:::-;39324:57;39305:76;39301:156;;;39405:40;;-1:-1:-1;;;39405:40:0;;;;;;;;;;;39301:156;39095:369;;;;:::o;56398:88::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;56464:5:::1;:14:::0;;56472:6;;56464:5;-1:-1:-1;;56464:14:0::1;::::0;56472:6;56464:14:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;56398:88:::0;:::o;57131:442::-;57249:13;57288:16;57296:7;57288;:16::i;:::-;57280:60;;;;-1:-1:-1;;;57280:60:0;;10025:2:1;57280:60:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:33;10083:18;;;10076:61;10154:18;;57280:60:0;9823:355:1;57280:60:0;57402:1;57379:12;57373:26;;;;;:::i;:::-;;;:30;:192;;57550:15;57373:192;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57469:12;57483:18;:7;:16;:18::i;:::-;57452:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57353:212;57131:442;-1:-1:-1;;57131:442:0:o;56714:106::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;56788:12:::1;:24:::0;56714:106::o;57702:109::-;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;57778:25;;::::1;::::0;:15:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;52773:192::-:0;51946:6;;-1:-1:-1;;;;;51946:6:0;28713:10;52093:23;52085:68;;;;-1:-1:-1;;;52085:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52862:22:0;::::1;52854:73;;;::::0;-1:-1:-1;;;52854:73:0;;10385:2:1;52854:73:0::1;::::0;::::1;10367:21:1::0;10424:2;10404:18;;;10397:30;10463:34;10443:18;;;10436:62;-1:-1:-1;;;10514:18:1;;;10507:36;10560:19;;52854:73:0::1;10183:402:1::0;52854:73:0::1;52938:19;52948:8;52938:9;:19::i;39719:187::-:0;39776:4;39840:13;;39830:7;:23;39800:98;;;;-1:-1:-1;;39871:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;39871:27:0;;;;39870:28;;39719:187::o;47889:196::-;48004:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48004:29:0;-1:-1:-1;;;;;48004:29:0;;;;;;;;;48049:28;;48004:24;;48049:28;;;;;;;47889:196;;;:::o;39914:104::-;39983:27;39993:2;39997:8;39983:27;;;;;;;;;;;;:9;:27::i;42832:2130::-;42947:35;42985:21;42998:7;42985:12;:21::i;:::-;42947:59;;43045:4;-1:-1:-1;;;;;43023:26:0;:13;:18;;;-1:-1:-1;;;;;43023:26:0;;43019:67;;43058:28;;-1:-1:-1;;;43058:28:0;;;;;;;;;;;43019:67;43099:22;28713:10;-1:-1:-1;;;;;43125:20:0;;;;:73;;-1:-1:-1;43162:36:0;43179:4;28713:10;38367:164;:::i;43162:36::-;43125:126;;;-1:-1:-1;28713:10:0;43215:20;43227:7;43215:11;:20::i;:::-;-1:-1:-1;;;;;43215:36:0;;43125:126;43099:153;;43270:17;43265:66;;43296:35;;-1:-1:-1;;;43296:35:0;;;;;;;;;;;43265:66;-1:-1:-1;;;;;43346:16:0;;43342:52;;43371:23;;-1:-1:-1;;;43371:23:0;;;;;;;;;;;43342:52;43515:35;43532:1;43536:7;43545:4;43515:8;:35::i;:::-;-1:-1:-1;;;;;43846:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;43846:31:0;;;;;;;-1:-1:-1;;43846:31:0;;;;;;;43892:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43892:29:0;;;;;;;;;;;43972:20;;;:11;:20;;;;;;44007:18;;-1:-1:-1;;;;;;44040:49:0;;;;-1:-1:-1;;;44073:15:0;44040:49;;;;;;;;;;44363:11;;44423:24;;;;;44466:13;;43972:20;;44423:24;;44466:13;44462:384;;44676:13;;44661:11;:28;44657:174;;44714:20;;44783:28;;;;44757:54;;-1:-1:-1;;;44757:54:0;-1:-1:-1;;;;;;44757:54:0;;;-1:-1:-1;;;;;44714:20:0;;44757:54;;;;44657:174;43821:1036;;;44893:7;44889:2;-1:-1:-1;;;;;44874:27:0;44883:4;-1:-1:-1;;;;;44874:27:0;;;;;;;;;;;44912:42;42936:2026;;42832:2130;;;:::o;34867:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34978:7:0;35061:13;;35054:4;:20;35023:886;;;35095:31;35129:17;;;:11;:17;;;;;;;;;35095:51;;;;;;;;;-1:-1:-1;;;;;35095:51:0;;;;-1:-1:-1;;;35095:51:0;;;;;;;;;;;-1:-1:-1;;;35095:51:0;;;;;;;;;;;;;;35165:729;;35215:14;;-1:-1:-1;;;;;35215:28:0;;35211:101;;35279:9;34867:1109;-1:-1:-1;;;34867:1109:0:o;35211:101::-;-1:-1:-1;;;35654:6:0;35699:17;;;;:11;:17;;;;;;;;;35687:29;;;;;;;;;-1:-1:-1;;;;;35687:29:0;;;;;-1:-1:-1;;;35687:29:0;;;;;;;;;;;-1:-1:-1;;;35687:29:0;;;;;;;;;;;;;35747:28;35743:109;;35815:9;34867:1109;-1:-1:-1;;;34867:1109:0:o;35743:109::-;35614:261;;;35076:833;35023:886;35937:31;;-1:-1:-1;;;35937:31:0;;;;;;;;;;;52973:173;53048:6;;;-1:-1:-1;;;;;53065:17:0;;;-1:-1:-1;;;;;;53065:17:0;;;;;;;53098:40;;53048:6;;;53065:17;53048:6;;53098:40;;53029:16;;53098:40;53018:128;52973:173;:::o;55997:366::-;56096:7;56141:214;56345:9;;56141:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56169:152:0;;7100:66:1;56169:152:0;;;7088:79:1;56289:10:0;7183:12:1;;;7176:28;7220:12;;;-1:-1:-1;56169:152:0;;-1:-1:-1;6858:380:1;56169:152:0;;;;;;;;;;;;;56141:195;;;;;;:203;;:214;;;;:::i;:::-;56121:234;55997:366;-1:-1:-1;;;55997:366:0:o;48577:667::-;48761:72;;-1:-1:-1;;;48761:72:0;;48740:4;;-1:-1:-1;;;;;48761:36:0;;;;;:72;;28713:10;;48812:4;;48818:7;;48827:5;;48761:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48761:72:0;;;;;;;;-1:-1:-1;;48761:72:0;;;;;;;;;;;;:::i;:::-;;;48757:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48995:13:0;;48991:235;;49041:40;;-1:-1:-1;;;49041:40:0;;;;;;;;;;;48991:235;49184:6;49178:13;49169:6;49165:2;49161:15;49154:38;48757:480;-1:-1:-1;;;;;;48880:55:0;-1:-1:-1;;;48880:55:0;;-1:-1:-1;48757:480:0;48577:667;;;;;;:::o;16715:723::-;16771:13;16992:10;16988:53;;-1:-1:-1;;17019:10:0;;;;;;;;;;;;-1:-1:-1;;;17019:10:0;;;;;16715:723::o;16988:53::-;17066:5;17051:12;17107:78;17114:9;;17107:78;;17140:8;;;;:::i;:::-;;-1:-1:-1;17163:10:0;;-1:-1:-1;17171:2:0;17163:10;;:::i;:::-;;;17107:78;;;17195:19;17227:6;17217:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17217:17:0;;17195:39;;17245:154;17252:10;;17245:154;;17279:11;17289:1;17279:11;;:::i;:::-;;-1:-1:-1;17348:10:0;17356:2;17348:5;:10;:::i;:::-;17335:24;;:2;:24;:::i;:::-;17322:39;;17305:6;17312;17305:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17305:56:0;;;;;;;;-1:-1:-1;17376:11:0;17385:2;17376:11;;:::i;:::-;;;17245:154;;40381:163;40504:32;40510:2;40514:8;40524:5;40531:4;40504:5;:32::i;22891:231::-;22969:7;22990:17;23009:18;23031:27;23042:4;23048:9;23031:10;:27::i;:::-;22989:69;;;;23069:18;23081:5;23069:11;:18::i;:::-;-1:-1:-1;23105:9:0;22891:231;-1:-1:-1;;;22891:231:0:o;40803:1775::-;40942:20;40965:13;-1:-1:-1;;;;;40993:16:0;;40989:48;;41018:19;;-1:-1:-1;;;41018:19:0;;;;;;;;;;;40989:48;41052:13;41048:44;;41074:18;;-1:-1:-1;;;41074:18:0;;;;;;;;;;;41048:44;-1:-1:-1;;;;;41443:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;41502:49:0;;41443:44;;;;;;;;41502:49;;;;-1:-1:-1;;41443:44:0;;;;;;41502:49;;;;;;;;;;;;;;;;41568:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;41618:66:0;;;;-1:-1:-1;;;41668:15:0;41618:66;;;;;;;;;;41568:25;41765:23;;;41809:4;:23;;;;-1:-1:-1;;;;;;41817:13:0;;1089:20;1137:8;;41817:15;41805:641;;;41853:314;41884:38;;41909:12;;-1:-1:-1;;;;;41884:38:0;;;41901:1;;41884:38;;41901:1;;41884:38;41950:69;41989:1;41993:2;41997:14;;;;;;42013:5;41950:30;:69::i;:::-;41945:174;;42055:40;;-1:-1:-1;;;42055:40:0;;;;;;;;;;;41945:174;42162:3;42146:12;:19;;41853:314;;42248:12;42231:13;;:29;42227:43;;42262:8;;;42227:43;41805:641;;;42311:120;42342:40;;42367:14;;;;;-1:-1:-1;;;;;42342:40:0;;;42359:1;;42342:40;;42359:1;;42342:40;42426:3;42410:12;:19;;42311:120;;41805:641;-1:-1:-1;42460:13:0;:28;42510:60;39095:369;20781:1308;20862:7;20871:12;21096:9;:16;21116:2;21096:22;21092:990;;;21392:4;21377:20;;21371:27;21442:4;21427:20;;21421:27;21500:4;21485:20;;21479:27;21135:9;21471:36;21543:25;21554:4;21471:36;21371:27;21421;21543:10;:25::i;:::-;21536:32;;;;;;;;;21092:990;21590:9;:16;21610:2;21590:22;21586:496;;;21865:4;21850:20;;21844:27;21916:4;21901:20;;21895:27;21958:23;21969:4;21844:27;21895;21958:10;:23::i;:::-;21951:30;;;;;;;;21586:496;-1:-1:-1;22030:1:0;;-1:-1:-1;22034:35:0;21586:496;20781:1308;;;;;:::o;19052:643::-;19130:20;19121:5;:29;;;;;;;;:::i;:::-;;19117:571;;;19052:643;:::o;19117:571::-;19228:29;19219:5;:38;;;;;;;;:::i;:::-;;19215:473;;;19274:34;;-1:-1:-1;;;19274:34:0;;9312:2:1;19274:34:0;;;9294:21:1;9351:2;9331:18;;;9324:30;9390:26;9370:18;;;9363:54;9434:18;;19274:34:0;9110:348:1;19215:473:0;19339:35;19330:5;:44;;;;;;;;:::i;:::-;;19326:362;;;19391:41;;-1:-1:-1;;;19391:41:0;;9665:2:1;19391:41:0;;;9647:21:1;9704:2;9684:18;;;9677:30;9743:33;9723:18;;;9716:61;9794:18;;19391:41:0;9463:355:1;19326:362:0;19463:30;19454:5;:39;;;;;;;;:::i;:::-;;19450:238;;;19510:44;;-1:-1:-1;;;19510:44:0;;11148:2:1;19510:44:0;;;11130:21:1;11187:2;11167:18;;;11160:30;11226:34;11206:18;;;11199:62;-1:-1:-1;;;11277:18:1;;;11270:32;11319:19;;19510:44:0;10946:398:1;19450:238:0;19585:30;19576:5;:39;;;;;;;;:::i;:::-;;19572:116;;;19632:44;;-1:-1:-1;;;19632:44:0;;12604:2:1;19632:44:0;;;12586:21:1;12643:2;12623:18;;;12616:30;12682:34;12662:18;;;12655:62;-1:-1:-1;;;12733:18:1;;;12726:32;12775:19;;19632:44:0;12402:398:1;24343:1632:0;24474:7;;25408:66;25395:79;;25391:163;;;-1:-1:-1;25507:1:0;;-1:-1:-1;25511:30:0;25491:51;;25391:163;25568:1;:7;;25573:2;25568:7;;:18;;;;;25579:1;:7;;25584:2;25579:7;;25568:18;25564:102;;;-1:-1:-1;25619:1:0;;-1:-1:-1;25623:30:0;25603:51;;25564:102;25780:24;;;25763:14;25780:24;;;;;;;;;8363:25:1;;;8436:4;8424:17;;8404:18;;;8397:45;;;;8458:18;;;8451:34;;;8501:18;;;8494:34;;;25780:24:0;;8335:19:1;;25780:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25780:24:0;;-1:-1:-1;;25780:24:0;;;-1:-1:-1;;;;;;;25819:20:0;;25815:103;;25872:1;25876:29;25856:50;;;;;;;25815:103;25938:6;-1:-1:-1;25946:20:0;;-1:-1:-1;24343:1632:0;;;;;;;;:::o;23385:344::-;23499:7;;-1:-1:-1;;;;;23545:80:0;;23499:7;23652:25;23668:3;23653:18;;;23675:2;23652:25;:::i;:::-;23636:42;;23696:25;23707:4;23713:1;23716;23719;23696:10;:25::i;:::-;23689:32;;;;;;23385:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:270::-;3476:6;3529:2;3517:9;3508:7;3504:23;3500:32;3497:52;;;3545:1;3542;3535:12;3497:52;3584:9;3571:23;3623:1;3616:5;3613:12;3603:40;;3639:1;3636;3629:12;3678:450;3747:6;3800:2;3788:9;3779:7;3775:23;3771:32;3768:52;;;3816:1;3813;3806:12;3768:52;3856:9;3843:23;3889:18;3881:6;3878:30;3875:50;;;3921:1;3918;3911:12;3875:50;3944:22;;3997:4;3989:13;;3985:27;-1:-1:-1;3975:55:1;;4026:1;4023;4016:12;3975:55;4049:73;4114:7;4109:2;4096:16;4091:2;4087;4083:11;4049:73;:::i;4133:180::-;4192:6;4245:2;4233:9;4224:7;4220:23;4216:32;4213:52;;;4261:1;4258;4251:12;4213:52;-1:-1:-1;4284:23:1;;4133:180;-1:-1:-1;4133:180:1:o;4318:659::-;4397:6;4405;4413;4466:2;4454:9;4445:7;4441:23;4437:32;4434:52;;;4482:1;4479;4472:12;4434:52;4518:9;4505:23;4495:33;;4579:2;4568:9;4564:18;4551:32;4602:18;4643:2;4635:6;4632:14;4629:34;;;4659:1;4656;4649:12;4629:34;4697:6;4686:9;4682:22;4672:32;;4742:7;4735:4;4731:2;4727:13;4723:27;4713:55;;4764:1;4761;4754:12;4713:55;4804:2;4791:16;4830:2;4822:6;4819:14;4816:34;;;4846:1;4843;4836:12;4816:34;4891:7;4886:2;4877:6;4873:2;4869:15;4865:24;4862:37;4859:57;;;4912:1;4909;4902:12;4859:57;4943:2;4939;4935:11;4925:21;;4965:6;4955:16;;;;;4318:659;;;;;:::o;4982:257::-;5023:3;5061:5;5055:12;5088:6;5083:3;5076:19;5104:63;5160:6;5153:4;5148:3;5144:14;5137:4;5130:5;5126:16;5104:63;:::i;:::-;5221:2;5200:15;-1:-1:-1;;5196:29:1;5187:39;;;;5228:4;5183:50;;4982:257;-1:-1:-1;;4982:257:1:o;5244:185::-;5286:3;5324:5;5318:12;5339:52;5384:6;5379:3;5372:4;5365:5;5361:16;5339:52;:::i;:::-;5407:16;;;;;5244:185;-1:-1:-1;;5244:185:1:o;5552:1301::-;5829:3;5858:1;5891:6;5885:13;5921:3;5943:1;5971:9;5967:2;5963:18;5953:28;;6031:2;6020:9;6016:18;6053;6043:61;;6097:4;6089:6;6085:17;6075:27;;6043:61;6123:2;6171;6163:6;6160:14;6140:18;6137:38;6134:165;;;-1:-1:-1;;;6198:33:1;;6254:4;6251:1;6244:15;6284:4;6205:3;6272:17;6134:165;6315:18;6342:104;;;;6460:1;6455:320;;;;6308:467;;6342:104;-1:-1:-1;;6375:24:1;;6363:37;;6420:16;;;;-1:-1:-1;6342:104:1;;6455:320;15529:1;15522:14;;;15566:4;15553:18;;6550:1;6564:165;6578:6;6575:1;6572:13;6564:165;;;6656:14;;6643:11;;;6636:35;6699:16;;;;6593:10;;6564:165;;;6568:3;;6758:6;6753:3;6749:16;6742:23;;6308:467;;;;;;;6791:56;6816:30;6842:3;6834:6;6816:30;:::i;:::-;-1:-1:-1;;;5494:20:1;;5539:1;5530:11;;5434:113;6791:56;6784:63;5552:1301;-1:-1:-1;;;;;5552:1301:1:o;7451:488::-;-1:-1:-1;;;;;7720:15:1;;;7702:34;;7772:15;;7767:2;7752:18;;7745:43;7819:2;7804:18;;7797:34;;;7867:3;7862:2;7847:18;;7840:31;;;7645:4;;7888:45;;7913:19;;7905:6;7888:45;:::i;:::-;7880:53;7451:488;-1:-1:-1;;;;;;7451:488:1:o;8539:342::-;8685:2;8670:18;;8718:1;8707:13;;8697:144;;8763:10;8758:3;8754:20;8751:1;8744:31;8798:4;8795:1;8788:15;8826:4;8823:1;8816:15;8697:144;8850:25;;;8539:342;:::o;8886:219::-;9035:2;9024:9;9017:21;8998:4;9055:44;9095:2;9084:9;9080:18;9072:6;9055:44;:::i;11349:354::-;11551:2;11533:21;;;11590:2;11570:18;;;11563:30;11629:32;11624:2;11609:18;;11602:60;11694:2;11679:18;;11349:354::o;12805:356::-;13007:2;12989:21;;;13026:18;;;13019:30;13085:34;13080:2;13065:18;;13058:62;13152:2;13137:18;;12805:356::o;14928:341::-;15130:2;15112:21;;;15169:2;15149:18;;;15142:30;-1:-1:-1;;;15203:2:1;15188:18;;15181:47;15260:2;15245:18;;14928:341::o;15582:128::-;15622:3;15653:1;15649:6;15646:1;15643:13;15640:39;;;15659:18;;:::i;:::-;-1:-1:-1;15695:9:1;;15582:128::o;15715:120::-;15755:1;15781;15771:35;;15786:18;;:::i;:::-;-1:-1:-1;15820:9:1;;15715:120::o;15840:168::-;15880:7;15946:1;15942;15938:6;15934:14;15931:1;15928:21;15923:1;15916:9;15909:17;15905:45;15902:71;;;15953:18;;:::i;:::-;-1:-1:-1;15993:9:1;;15840:168::o;16013:125::-;16053:4;16081:1;16078;16075:8;16072:34;;;16086:18;;:::i;:::-;-1:-1:-1;16123:9:1;;16013:125::o;16143:258::-;16215:1;16225:113;16239:6;16236:1;16233:13;16225:113;;;16315:11;;;16309:18;16296:11;;;16289:39;16261:2;16254:10;16225:113;;;16356:6;16353:1;16350:13;16347:48;;;-1:-1:-1;;16391:1:1;16373:16;;16366:27;16143:258::o;16406:380::-;16485:1;16481:12;;;;16528;;;16549:61;;16603:4;16595:6;16591:17;16581:27;;16549:61;16656:2;16648:6;16645:14;16625:18;16622:38;16619:161;;;16702:10;16697:3;16693:20;16690:1;16683:31;16737:4;16734:1;16727:15;16765:4;16762:1;16755:15;16619:161;;16406:380;;;:::o;16791:135::-;16830:3;-1:-1:-1;;16851:17:1;;16848:43;;;16871:18;;:::i;:::-;-1:-1:-1;16918:1:1;16907:13;;16791:135::o;16931:112::-;16963:1;16989;16979:35;;16994:18;;:::i;:::-;-1:-1:-1;17028:9:1;;16931:112::o;17048:127::-;17109:10;17104:3;17100:20;17097:1;17090:31;17140:4;17137:1;17130:15;17164:4;17161:1;17154:15;17180:127;17241:10;17236:3;17232:20;17229:1;17222:31;17272:4;17269:1;17262:15;17296:4;17293:1;17286:15;17312:127;17373:10;17368:3;17364:20;17361:1;17354:31;17404:4;17401:1;17394:15;17428:4;17425:1;17418:15;17444:127;17505:10;17500:3;17496:20;17493:1;17486:31;17536:4;17533:1;17526:15;17560:4;17557:1;17550:15;17576:127;17637:10;17632:3;17628:20;17625:1;17618:31;17668:4;17665:1;17658:15;17692:4;17689:1;17682:15;17708:131;-1:-1:-1;;;;;;17782:32:1;;17772:43;;17762:71;;17829:1;17826;17819:12
Swarm Source
ipfs://52613d3f1bd7ba77c56b608c399234324e45c914fb27f1aaf18621d10fbbf57f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.