Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 9 from a total of 9 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Flip Sale Status | 14005916 | 1086 days ago | IN | 0 ETH | 0.00420751 | ||||
Flip Sale Status | 14005903 | 1086 days ago | IN | 0 ETH | 0.004696 | ||||
Set Base URI | 14003667 | 1086 days ago | IN | 0 ETH | 0.00410388 | ||||
Gift | 14003013 | 1087 days ago | IN | 0 ETH | 0.00705792 | ||||
Withdraw | 13999644 | 1087 days ago | IN | 0 ETH | 0.00515979 | ||||
Flip Sale Status | 13999573 | 1087 days ago | IN | 0 ETH | 0.00567278 | ||||
Mint | 13999568 | 1087 days ago | IN | 0.025 ETH | 0.0184612 | ||||
Flip Sale Status | 13999527 | 1087 days ago | IN | 0 ETH | 0.00413587 | ||||
Set Base URI | 13999409 | 1087 days ago | IN | 0 ETH | 0.01533688 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13999644 | 1087 days ago | 0.025 ETH |
Loading...
Loading
Contract Name:
Randomice
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } 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; } } 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); } 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; } 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); } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } 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; } } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } 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); } } } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } 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); } } 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); } } /*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,@@@,,,,,,,,,,,,,,,,,,,@@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,@@*#@,,,,,,,,,,,,,,,,,,@@.@@,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,@@***@@,,,,,,,,,,,,,,,@@,..@@,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,@@****@#,,,,,,,,,,,,,@@...,@,,,,,,,,,,,,,,,,,@@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@* **@@,,,,,, ,,,,@@....(@,,,,,,,,,,,,,,,,@@.@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@** ***@@,,,,, ,,(@@..@...@*,,,,,,,,,,,,,@@...@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@/@@* ****.@@,,,,,,,@@..@@@@..@@,,,,,,,,,,,@@(....@@@@ /@@@@,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@/@/*,,****...@@%,@@@..*@@,@@..,@*,,,,,,,,@@%.. .@@ #@@@@@. @@@,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,*@@@@@@,,,,,,,,,,,,@@@********...........@@//,,@@..@@/,,,,*@@..... .@@@@*,,,,,,,@@ .@@,,,,,,,,,,,,,,,,,, ,,,,,,,,,,@@@@ &@@@@@,,,,,@@** ****..........@@@@/@@@@....@@@@@...........@@@,,,,,,,,,,@@ @@,,,,,,,,,,,,,,,,,, ,,,,,,,@@@ &@@@,@@** *****..........@@/,,@@................. ..@@/@@,,,,,,,,,@@ @@,,,,,,,,,,,,,,,,,, ,,,,,,@@ .@@@@@@@@@@@@ @@@*** *****...........@#@@.................. ./@//@@,,,,,,,,@@ @@,,,,,,,,,,,,,,,,,, ,,,,,@@ .@@,,,,,,,,,,,,@@@ .@@@@@@@@@*........ @@@.................. ..@@@@,,,,,,,,,@@ @@,,,,,,,,,,,,,,,,,,, ,,,,,@@ (@*,,,,,,,,,,,,,,,,@@ @@@@@@@@@@....... . ..... ..@@,,,,,,,,,,,@@ @@,,,,,,,,,,,,,,,,,,,, ,,,,,@@ @@,,,,,,,,,,,,,,,,,,@@ .@@@@@@@@@@........@@,,,,,,,,,,@@ @@,,,,,,,,,,,,,,,,,,,,, ,,,,,,@@ @@,,,,,,,,,,,,,,,,,,,@@ @@@@@,,,,,,,,,@@@ @@*,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,@@ @@,,,,,,,,,,,,,,,,,,@@ /@@@@@@@@. @@@,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,@@ @@,,,,,,,,,,,,,,,,,@@ .@@,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,(@@ @@,,,,,,,,,,,,,,@@ @@@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,@@ (@@@,,,,,,,@@@/ @@@@@@@@@@. @@@ @@#,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,@@@. /@@* @@@ @@@ *@@ @@@@,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,@@@@ *@ @@@@@ @@ ,@@@@@@@@@,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@ @@ @@@@@@@@@@@ @@ @@@@@@@@@@@@@,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@ .@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,/@, @@ @@@@@@@@@@@@@@ @@@@&@@@@@@@@@@@@,,,,,,,,,,,,@@,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@% @@ @@@@@@@@ /@@@& @@@@,,,,,,,,,,,,,,#@@,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@ @@@@@@@( @@@@@@ .@/,,,,@@,,,,,,,@@@,,(@@,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@ @@*,,,,@@@ @@@@@@@@@@,,,,,,@@@,,,,,,@@@,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@ @@@@@@@@ .@@@@@@@@@@/@@@@@@@@ @@,,,,,@@ . .@@,,,,,,,,,,,,,,,,,,@@.@@(,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@ *@@@@& (@@. .@@@@@ . @@@@@@@@@,,,,,,,,,,,,@@..@@@,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@ @@@ @@*,,,,,,,,*@(,,,/@@/,,@@...@@,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@ @@@#. . @@,,,,,,,,,,,,,,,,,,,,,%@...@@,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@ @@@@@@@@@ @@@@ @@,,,,,,,,,,,,,,,,,,,,,,@@..@@,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@ &@@ %@@@@@@@& @@,,,,,,,,,,,,,,,,,,,,@@@.@@@,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@@. @@%%%%%%@@%@@@@@@,,,,,,,,,,,,,,,@@@@@@,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@ @@ @@@%%@@%%%%%%@@@@@@%,,,,,,,,,@@@@,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,/@@@(@@@ @@ @@@%%%%%%@%%%%%%@@@@@,,,,,@@@,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@(((((((@@@ @@@((((@@@%%@@%%%%%%@@%%%@@@@@,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@(((((((((((@@@@ @@@@(((((((((@@@@@@%%%%%%@%%@@@(((@@,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(@@(((((((((((((((@@@@@@@@@@@@@@@@(((((((((((((((@@,,@@@%%%%@@@(((((@@,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@(@@((((((((((((((((((((((((((((((((((((((((((((@@,,,,,,@@@@@(((((@@@,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@((((@(((((((((((((((((((((((((((((((((((((((@@@@@@@,,,,,,,,@@@@@@@,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,/@%(((((((((((((((((((((((((((((((((((((((((@((((((((@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@((((((((((((((((((((((((( (((((((((( ((((((((((((@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@(((((((((((((((((* ,( .((( (( ((( //(((((((((((((@@,,,,,,,,@spiridono,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,@@(((((((((((((@/(( (. ,(( (( ,( (( (( . ((@@(((((((((@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,@@((((((((((((@@(((/ ((((((( ((((((((((((((((((&@(((((((((@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, */ /*built by mice, for everyone*/ pragma solidity ^0.8.10; contract Randomice is ERC721, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public cost = 0.025 ether; uint256 public minted; uint256 public maxSupply = 6969; //nice uint256 public maxMint = 10; bool public status = false; address miceAddr = 0xbad6186E92002E312078b5a1dAfd5ddf63d3f731; //Anonymice address doodlesAddr = 0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e; //Doodles address babyMiceAddr = 0x15Cc16BfE6fAC624247490AA29B6D632Be549F00; //Baby Mice mapping(address => bool) public mintlist; constructor() ERC721("RandoMice", "RMICE") {} //checks if address owns at least one token from either of the qualifying collections function isHolder(address _wallet) public view returns (bool) { ERC721 miceToken = ERC721(miceAddr); uint256 _miceBalance = miceToken.balanceOf(_wallet); ERC721 doodlesToken = ERC721(doodlesAddr); uint256 _doodlesBalance = doodlesToken.balanceOf(_wallet); ERC721 babyMiceToken = ERC721(babyMiceAddr); uint256 _babyMiceBalance = babyMiceToken.balanceOf(_wallet); return (_miceBalance + _doodlesBalance + _babyMiceBalance > 0); } //public mint function mint(uint256 _mintAmount) public payable nonReentrant{ require(status, "Sale inactive" ); require(msg.sender == tx.origin, "No contracts!"); require(_mintAmount <= maxMint, "Too many" ); require(minted + _mintAmount <= maxSupply, "Would excced supply" ); require(msg.value >= cost * _mintAmount, "Not enough ETH"); for (uint256 i = 0; i < _mintAmount; i++) { minted++; _safeMint(msg.sender, minted); } } //free claim for qualifying holders function claim(address _wallet) external nonReentrant { require(status, "Sale inactive" ); require(msg.sender == tx.origin, "No contracts!"); require(minted + 1 <= maxSupply, "Would excced supply" ); (bool _holder) = isHolder(_wallet); require(_holder, "Must own at least one qualifying NFT to claim!"); require(mintlist[_wallet] != true, "Already claimed!"); mintlist[_wallet] = true; minted++; _safeMint(msg.sender, minted); } //giveaways are nice function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{ require(quantity.length == recipient.length, "Provide quantities and recipients" ); uint totalQuantity = 0; for(uint i = 0; i < quantity.length; i++){ totalQuantity += quantity[i]; } require( minted + totalQuantity <= maxSupply, "Too many" ); delete totalQuantity; for(uint i = 0; i < recipient.length; i++){ for(uint j = 0; j < quantity[i]; j++){ minted++; _safeMint(recipient[i], minted); } } } //metadata function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, (tokenId).toString())) : ""; } //setters function setMiceAddress(address _miceAddr) external onlyOwner { miceAddr = _miceAddr; } function setDoodlesAddress(address _doodlesAddr) external onlyOwner { doodlesAddr = _doodlesAddr; } function setBabyMiceAddress(address _babyMiceAddr) external onlyOwner { babyMiceAddr = _babyMiceAddr; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner { maxMint = _newMaxMintAmount; } function setmaxSupply(uint256 _newMaxSupply) public onlyOwner { maxSupply = _newMaxSupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } //admin functions function _baseURI() internal view override returns (string memory) { return baseURI; } function flipSaleStatus() public onlyOwner { status = !status; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"isHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_babyMiceAddr","type":"address"}],"name":"setBabyMiceAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_doodlesAddr","type":"address"}],"name":"setDoodlesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_miceAddr","type":"address"}],"name":"setMiceAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526658d15e17628000600955611b39600b55600a600c55600d805474bad6186e92002e312078b5a1dafd5ddf63d3f731006001600160a81b0319909116179055600e80546001600160a01b0319908116738a90cab2b38dba80c64b7734e58ee1db38b8992e17909155600f80549091167315cc16bfe6fac624247490aa29b6d632be549f001790553480156200009857600080fd5b50604080518082018252600981526852616e646f4d69636560b81b602080830191825283518085019094526005845264524d49434560d81b908401528151919291620000e7916000916200017b565b508051620000fd9060019060208401906200017b565b5050506200011a620001146200012560201b60201c565b62000129565b60016007556200025e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001899062000221565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b600181811c908216806200023657607f821691505b602082108114156200025857634e487b7160e01b600052602260045260246000fd5b50919050565b6125c7806200026e6000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063c526ce81116100a0578063d4d7b19a1161006f578063d4d7b19a146105cc578063d5abeb01146105ec578063da7f863214610602578063e985e9c514610622578063f2fde38b1461066b57600080fd5b8063c526ce8114610557578063c77607ad14610577578063c87b56dd14610597578063ce03ec93146105b757600080fd5b806395d89b41116100e757806395d89b41146104cf57806396ea3a47146104e4578063a0712d6814610504578063a22cb46514610517578063b88d4fde1461053757600080fd5b806370a0823114610466578063715018a6146104865780637501f7411461049b5780638da5cb5b146104b157600080fd5b806323b872dd1161019b5780634f02c4201161016a5780634f02c420146103cb57806355f804b3146103e15780636352211e146104015780636c0360eb146104215780636fc6cbc51461043657600080fd5b806323b872dd146103635780633ccfd60b1461038357806342842e0e1461038b57806344a0d68a146103ab57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806313faede6146102e55780631e83409a14610309578063200d2ed214610329578063228025e81461034357600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063088a4ed0146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611f53565b61068b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106dd565b6040516102409190611fc8565b34801561027757600080fd5b5061028b610286366004611fdb565b61076f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611fdb565b610809565b005b3480156102d157600080fd5b506102c36102e0366004612010565b610838565b3480156102f157600080fd5b506102fb60095481565b604051908152602001610240565b34801561031557600080fd5b506102c361032436600461203a565b61094e565b34801561033557600080fd5b50600d546102349060ff1681565b34801561034f57600080fd5b506102c361035e366004611fdb565b610b99565b34801561036f57600080fd5b506102c361037e366004612055565b610bc8565b6102c3610bf9565b34801561039757600080fd5b506102c36103a6366004612055565b610c7b565b3480156103b757600080fd5b506102c36103c6366004611fdb565b610c96565b3480156103d757600080fd5b506102fb600a5481565b3480156103ed57600080fd5b506102c36103fc36600461211d565b610cc5565b34801561040d57600080fd5b5061028b61041c366004611fdb565b610d06565b34801561042d57600080fd5b5061025e610d7d565b34801561044257600080fd5b5061023461045136600461203a565b60106020526000908152604090205460ff1681565b34801561047257600080fd5b506102fb61048136600461203a565b610e0b565b34801561049257600080fd5b506102c3610e92565b3480156104a757600080fd5b506102fb600c5481565b3480156104bd57600080fd5b506006546001600160a01b031661028b565b3480156104db57600080fd5b5061025e610ec8565b3480156104f057600080fd5b506102c36104ff3660046121b2565b610ed7565b6102c3610512366004611fdb565b61108d565b34801561052357600080fd5b506102c361053236600461221e565b611284565b34801561054357600080fd5b506102c361055236600461225a565b611349565b34801561056357600080fd5b506102c361057236600461203a565b611381565b34801561058357600080fd5b506102c361059236600461203a565b6113cd565b3480156105a357600080fd5b5061025e6105b2366004611fdb565b61141f565b3480156105c357600080fd5b506102c36114d6565b3480156105d857600080fd5b506102346105e736600461203a565b611514565b3480156105f857600080fd5b506102fb600b5481565b34801561060e57600080fd5b506102c361061d36600461203a565b61169c565b34801561062e57600080fd5b5061023461063d3660046122d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067757600080fd5b506102c361068636600461203a565b6116e8565b60006001600160e01b031982166380ac58cd60e01b14806106bc57506001600160e01b03198216635b5e139f60e01b145b806106d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106ec90612309565b80601f016020809104026020016040519081016040528092919081815260200182805461071890612309565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b031633146108335760405162461bcd60e51b81526004016107e490612344565b600c55565b600061084382610d06565b9050806001600160a01b0316836001600160a01b031614156108b15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e4565b336001600160a01b03821614806108cd57506108cd813361063d565b61093f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e4565b6109498383611780565b505050565b600260075414156109a15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e4565b6002600755600d5460ff166109e85760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107e4565b333214610a275760405162461bcd60e51b815260206004820152600d60248201526c4e6f20636f6e7472616374732160981b60448201526064016107e4565b600b54600a54610a3890600161238f565b1115610a7c5760405162461bcd60e51b8152602060048201526013602482015272576f756c642065786363656420737570706c7960681b60448201526064016107e4565b6000610a8782611514565b905080610aed5760405162461bcd60e51b815260206004820152602e60248201527f4d757374206f776e206174206c65617374206f6e65207175616c696679696e6760448201526d204e465420746f20636c61696d2160901b60648201526084016107e4565b6001600160a01b03821660009081526010602052604090205460ff16151560011415610b4e5760405162461bcd60e51b815260206004820152601060248201526f416c726561647920636c61696d65642160801b60448201526064016107e4565b6001600160a01b0382166000908152601060205260408120805460ff19166001179055600a805491610b7f836123a7565b9190505550610b9033600a546117ee565b50506001600755565b6006546001600160a01b03163314610bc35760405162461bcd60e51b81526004016107e490612344565b600b55565b610bd23382611808565b610bee5760405162461bcd60e51b81526004016107e4906123c2565b6109498383836118ff565b6006546001600160a01b03163314610c235760405162461bcd60e51b81526004016107e490612344565b604051600090339047908381818185875af1925050503d8060008114610c65576040519150601f19603f3d011682016040523d82523d6000602084013e610c6a565b606091505b5050905080610c7857600080fd5b50565b61094983838360405180602001604052806000815250611349565b6006546001600160a01b03163314610cc05760405162461bcd60e51b81526004016107e490612344565b600955565b6006546001600160a01b03163314610cef5760405162461bcd60e51b81526004016107e490612344565b8051610d02906008906020840190611ea4565b5050565b6000818152600260205260408120546001600160a01b0316806106d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e4565b60088054610d8a90612309565b80601f0160208091040260200160405190810160405280929190818152602001828054610db690612309565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b505050505081565b60006001600160a01b038216610e765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ebc5760405162461bcd60e51b81526004016107e490612344565b610ec66000611a9f565b565b6060600180546106ec90612309565b6006546001600160a01b03163314610f015760405162461bcd60e51b81526004016107e490612344565b828114610f5a5760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b60648201526084016107e4565b6000805b84811015610f9e57858582818110610f7857610f78612413565b9050602002013582610f8a919061238f565b915080610f96816123a7565b915050610f5e565b50600b5481600a54610fb0919061238f565b1115610fe95760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b60448201526064016107e4565b506000805b828110156110855760005b86868381811061100b5761100b612413565b9050602002013581101561107257600a8054906000611029836123a7565b919050555061106085858481811061104357611043612413565b9050602002016020810190611058919061203a565b600a546117ee565b8061106a816123a7565b915050610ff9565b508061107d816123a7565b915050610fee565b505050505050565b600260075414156110e05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e4565b6002600755600d5460ff166111275760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107e4565b3332146111665760405162461bcd60e51b815260206004820152600d60248201526c4e6f20636f6e7472616374732160981b60448201526064016107e4565b600c548111156111a35760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b60448201526064016107e4565b600b5481600a546111b4919061238f565b11156111f85760405162461bcd60e51b8152602060048201526013602482015272576f756c642065786363656420737570706c7960681b60448201526064016107e4565b806009546112069190612429565b3410156112465760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b60448201526064016107e4565b60005b81811015610b9057600a8054906000611261836123a7565b919050555061127233600a546117ee565b8061127c816123a7565b915050611249565b6001600160a01b0382163314156112dd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113533383611808565b61136f5760405162461bcd60e51b81526004016107e4906123c2565b61137b84848484611af1565b50505050565b6006546001600160a01b031633146113ab5760405162461bcd60e51b81526004016107e490612344565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146113f75760405162461bcd60e51b81526004016107e490612344565b600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000818152600260205260409020546060906001600160a01b031661147a5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016107e4565b6000611484611b24565b905060008151116114a457604051806020016040528060008152506114cf565b806114ae84611b33565b6040516020016114bf929190612448565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146115005760405162461bcd60e51b81526004016107e490612344565b600d805460ff19811660ff90911615179055565b600d546040516370a0823160e01b81526001600160a01b03838116600483015260009261010090041690829082906370a0823190602401602060405180830381865afa158015611568573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158c9190612477565b600e546040516370a0823160e01b81526001600160a01b03878116600483015292935091169060009082906370a0823190602401602060405180830381865afa1580156115dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116019190612477565b600f546040516370a0823160e01b81526001600160a01b03898116600483015292935091169060009082906370a0823190602401602060405180830381865afa158015611652573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116769190612477565b9050600081611685858861238f565b61168f919061238f565b1198975050505050505050565b6006546001600160a01b031633146116c65760405162461bcd60e51b81526004016107e490612344565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146117125760405162461bcd60e51b81526004016107e490612344565b6001600160a01b0381166117775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e4565b610c7881611a9f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117b582610d06565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610d02828260405180602001604052806000815250611c31565b6000818152600260205260408120546001600160a01b03166118815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e4565b600061188c83610d06565b9050806001600160a01b0316846001600160a01b031614806118c75750836001600160a01b03166118bc8461076f565b6001600160a01b0316145b806118f757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661191282610d06565b6001600160a01b03161461197a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e4565b6001600160a01b0382166119dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e4565b6119e7600082611780565b6001600160a01b0383166000908152600360205260408120805460019290611a10908490612490565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a3e90849061238f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611afc8484846118ff565b611b0884848484611c64565b61137b5760405162461bcd60e51b81526004016107e4906124a7565b6060600880546106ec90612309565b606081611b575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b815780611b6b816123a7565b9150611b7a9050600a8361250f565b9150611b5b565b60008167ffffffffffffffff811115611b9c57611b9c612091565b6040519080825280601f01601f191660200182016040528015611bc6576020820181803683370190505b5090505b84156118f757611bdb600183612490565b9150611be8600a86612523565b611bf390603061238f565b60f81b818381518110611c0857611c08612413565b60200101906001600160f81b031916908160001a905350611c2a600a8661250f565b9450611bca565b611c3b8383611d62565b611c486000848484611c64565b6109495760405162461bcd60e51b81526004016107e4906124a7565b60006001600160a01b0384163b15611d5757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ca8903390899088908890600401612537565b6020604051808303816000875af1925050508015611ce3575060408051601f3d908101601f19168201909252611ce091810190612574565b60015b611d3d573d808015611d11576040519150601f19603f3d011682016040523d82523d6000602084013e611d16565b606091505b508051611d355760405162461bcd60e51b81526004016107e4906124a7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118f7565b506001949350505050565b6001600160a01b038216611db85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e4565b6000818152600260205260409020546001600160a01b031615611e1d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e4565b6001600160a01b0382166000908152600360205260408120805460019290611e4690849061238f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eb090612309565b90600052602060002090601f016020900481019282611ed25760008555611f18565b82601f10611eeb57805160ff1916838001178555611f18565b82800160010185558215611f18579182015b82811115611f18578251825591602001919060010190611efd565b50611f24929150611f28565b5090565b5b80821115611f245760008155600101611f29565b6001600160e01b031981168114610c7857600080fd5b600060208284031215611f6557600080fd5b81356114cf81611f3d565b60005b83811015611f8b578181015183820152602001611f73565b8381111561137b5750506000910152565b60008151808452611fb4816020860160208601611f70565b601f01601f19169290920160200192915050565b6020815260006114cf6020830184611f9c565b600060208284031215611fed57600080fd5b5035919050565b80356001600160a01b038116811461200b57600080fd5b919050565b6000806040838503121561202357600080fd5b61202c83611ff4565b946020939093013593505050565b60006020828403121561204c57600080fd5b6114cf82611ff4565b60008060006060848603121561206a57600080fd5b61207384611ff4565b925061208160208501611ff4565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120c2576120c2612091565b604051601f8501601f19908116603f011681019082821181831017156120ea576120ea612091565b8160405280935085815286868601111561210357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561212f57600080fd5b813567ffffffffffffffff81111561214657600080fd5b8201601f8101841361215757600080fd5b6118f7848235602084016120a7565b60008083601f84011261217857600080fd5b50813567ffffffffffffffff81111561219057600080fd5b6020830191508360208260051b85010111156121ab57600080fd5b9250929050565b600080600080604085870312156121c857600080fd5b843567ffffffffffffffff808211156121e057600080fd5b6121ec88838901612166565b9096509450602087013591508082111561220557600080fd5b5061221287828801612166565b95989497509550505050565b6000806040838503121561223157600080fd5b61223a83611ff4565b91506020830135801515811461224f57600080fd5b809150509250929050565b6000806000806080858703121561227057600080fd5b61227985611ff4565b935061228760208601611ff4565b925060408501359150606085013567ffffffffffffffff8111156122aa57600080fd5b8501601f810187136122bb57600080fd5b6122ca878235602084016120a7565b91505092959194509250565b600080604083850312156122e957600080fd5b6122f283611ff4565b915061230060208401611ff4565b90509250929050565b600181811c9082168061231d57607f821691505b6020821081141561233e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156123a2576123a2612379565b500190565b60006000198214156123bb576123bb612379565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561244357612443612379565b500290565b6000835161245a818460208801611f70565b83519083019061246e818360208801611f70565b01949350505050565b60006020828403121561248957600080fd5b5051919050565b6000828210156124a2576124a2612379565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261251e5761251e6124f9565b500490565b600082612532576125326124f9565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256a90830184611f9c565b9695505050505050565b60006020828403121561258657600080fd5b81516114cf81611f3d56fea2646970667358221220f8a2d3d05c9023d0f1ed3686bf7cc2225880e1406199d58155bde3ec44aad1a364736f6c634300080b0033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806370a0823111610118578063c526ce81116100a0578063d4d7b19a1161006f578063d4d7b19a146105cc578063d5abeb01146105ec578063da7f863214610602578063e985e9c514610622578063f2fde38b1461066b57600080fd5b8063c526ce8114610557578063c77607ad14610577578063c87b56dd14610597578063ce03ec93146105b757600080fd5b806395d89b41116100e757806395d89b41146104cf57806396ea3a47146104e4578063a0712d6814610504578063a22cb46514610517578063b88d4fde1461053757600080fd5b806370a0823114610466578063715018a6146104865780637501f7411461049b5780638da5cb5b146104b157600080fd5b806323b872dd1161019b5780634f02c4201161016a5780634f02c420146103cb57806355f804b3146103e15780636352211e146104015780636c0360eb146104215780636fc6cbc51461043657600080fd5b806323b872dd146103635780633ccfd60b1461038357806342842e0e1461038b57806344a0d68a146103ab57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806313faede6146102e55780631e83409a14610309578063200d2ed214610329578063228025e81461034357600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063088a4ed0146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611f53565b61068b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106dd565b6040516102409190611fc8565b34801561027757600080fd5b5061028b610286366004611fdb565b61076f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611fdb565b610809565b005b3480156102d157600080fd5b506102c36102e0366004612010565b610838565b3480156102f157600080fd5b506102fb60095481565b604051908152602001610240565b34801561031557600080fd5b506102c361032436600461203a565b61094e565b34801561033557600080fd5b50600d546102349060ff1681565b34801561034f57600080fd5b506102c361035e366004611fdb565b610b99565b34801561036f57600080fd5b506102c361037e366004612055565b610bc8565b6102c3610bf9565b34801561039757600080fd5b506102c36103a6366004612055565b610c7b565b3480156103b757600080fd5b506102c36103c6366004611fdb565b610c96565b3480156103d757600080fd5b506102fb600a5481565b3480156103ed57600080fd5b506102c36103fc36600461211d565b610cc5565b34801561040d57600080fd5b5061028b61041c366004611fdb565b610d06565b34801561042d57600080fd5b5061025e610d7d565b34801561044257600080fd5b5061023461045136600461203a565b60106020526000908152604090205460ff1681565b34801561047257600080fd5b506102fb61048136600461203a565b610e0b565b34801561049257600080fd5b506102c3610e92565b3480156104a757600080fd5b506102fb600c5481565b3480156104bd57600080fd5b506006546001600160a01b031661028b565b3480156104db57600080fd5b5061025e610ec8565b3480156104f057600080fd5b506102c36104ff3660046121b2565b610ed7565b6102c3610512366004611fdb565b61108d565b34801561052357600080fd5b506102c361053236600461221e565b611284565b34801561054357600080fd5b506102c361055236600461225a565b611349565b34801561056357600080fd5b506102c361057236600461203a565b611381565b34801561058357600080fd5b506102c361059236600461203a565b6113cd565b3480156105a357600080fd5b5061025e6105b2366004611fdb565b61141f565b3480156105c357600080fd5b506102c36114d6565b3480156105d857600080fd5b506102346105e736600461203a565b611514565b3480156105f857600080fd5b506102fb600b5481565b34801561060e57600080fd5b506102c361061d36600461203a565b61169c565b34801561062e57600080fd5b5061023461063d3660046122d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067757600080fd5b506102c361068636600461203a565b6116e8565b60006001600160e01b031982166380ac58cd60e01b14806106bc57506001600160e01b03198216635b5e139f60e01b145b806106d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106ec90612309565b80601f016020809104026020016040519081016040528092919081815260200182805461071890612309565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b031633146108335760405162461bcd60e51b81526004016107e490612344565b600c55565b600061084382610d06565b9050806001600160a01b0316836001600160a01b031614156108b15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e4565b336001600160a01b03821614806108cd57506108cd813361063d565b61093f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e4565b6109498383611780565b505050565b600260075414156109a15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e4565b6002600755600d5460ff166109e85760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107e4565b333214610a275760405162461bcd60e51b815260206004820152600d60248201526c4e6f20636f6e7472616374732160981b60448201526064016107e4565b600b54600a54610a3890600161238f565b1115610a7c5760405162461bcd60e51b8152602060048201526013602482015272576f756c642065786363656420737570706c7960681b60448201526064016107e4565b6000610a8782611514565b905080610aed5760405162461bcd60e51b815260206004820152602e60248201527f4d757374206f776e206174206c65617374206f6e65207175616c696679696e6760448201526d204e465420746f20636c61696d2160901b60648201526084016107e4565b6001600160a01b03821660009081526010602052604090205460ff16151560011415610b4e5760405162461bcd60e51b815260206004820152601060248201526f416c726561647920636c61696d65642160801b60448201526064016107e4565b6001600160a01b0382166000908152601060205260408120805460ff19166001179055600a805491610b7f836123a7565b9190505550610b9033600a546117ee565b50506001600755565b6006546001600160a01b03163314610bc35760405162461bcd60e51b81526004016107e490612344565b600b55565b610bd23382611808565b610bee5760405162461bcd60e51b81526004016107e4906123c2565b6109498383836118ff565b6006546001600160a01b03163314610c235760405162461bcd60e51b81526004016107e490612344565b604051600090339047908381818185875af1925050503d8060008114610c65576040519150601f19603f3d011682016040523d82523d6000602084013e610c6a565b606091505b5050905080610c7857600080fd5b50565b61094983838360405180602001604052806000815250611349565b6006546001600160a01b03163314610cc05760405162461bcd60e51b81526004016107e490612344565b600955565b6006546001600160a01b03163314610cef5760405162461bcd60e51b81526004016107e490612344565b8051610d02906008906020840190611ea4565b5050565b6000818152600260205260408120546001600160a01b0316806106d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e4565b60088054610d8a90612309565b80601f0160208091040260200160405190810160405280929190818152602001828054610db690612309565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b505050505081565b60006001600160a01b038216610e765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ebc5760405162461bcd60e51b81526004016107e490612344565b610ec66000611a9f565b565b6060600180546106ec90612309565b6006546001600160a01b03163314610f015760405162461bcd60e51b81526004016107e490612344565b828114610f5a5760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b60648201526084016107e4565b6000805b84811015610f9e57858582818110610f7857610f78612413565b9050602002013582610f8a919061238f565b915080610f96816123a7565b915050610f5e565b50600b5481600a54610fb0919061238f565b1115610fe95760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b60448201526064016107e4565b506000805b828110156110855760005b86868381811061100b5761100b612413565b9050602002013581101561107257600a8054906000611029836123a7565b919050555061106085858481811061104357611043612413565b9050602002016020810190611058919061203a565b600a546117ee565b8061106a816123a7565b915050610ff9565b508061107d816123a7565b915050610fee565b505050505050565b600260075414156110e05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e4565b6002600755600d5460ff166111275760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107e4565b3332146111665760405162461bcd60e51b815260206004820152600d60248201526c4e6f20636f6e7472616374732160981b60448201526064016107e4565b600c548111156111a35760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b60448201526064016107e4565b600b5481600a546111b4919061238f565b11156111f85760405162461bcd60e51b8152602060048201526013602482015272576f756c642065786363656420737570706c7960681b60448201526064016107e4565b806009546112069190612429565b3410156112465760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b60448201526064016107e4565b60005b81811015610b9057600a8054906000611261836123a7565b919050555061127233600a546117ee565b8061127c816123a7565b915050611249565b6001600160a01b0382163314156112dd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113533383611808565b61136f5760405162461bcd60e51b81526004016107e4906123c2565b61137b84848484611af1565b50505050565b6006546001600160a01b031633146113ab5760405162461bcd60e51b81526004016107e490612344565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146113f75760405162461bcd60e51b81526004016107e490612344565b600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000818152600260205260409020546060906001600160a01b031661147a5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016107e4565b6000611484611b24565b905060008151116114a457604051806020016040528060008152506114cf565b806114ae84611b33565b6040516020016114bf929190612448565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146115005760405162461bcd60e51b81526004016107e490612344565b600d805460ff19811660ff90911615179055565b600d546040516370a0823160e01b81526001600160a01b03838116600483015260009261010090041690829082906370a0823190602401602060405180830381865afa158015611568573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158c9190612477565b600e546040516370a0823160e01b81526001600160a01b03878116600483015292935091169060009082906370a0823190602401602060405180830381865afa1580156115dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116019190612477565b600f546040516370a0823160e01b81526001600160a01b03898116600483015292935091169060009082906370a0823190602401602060405180830381865afa158015611652573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116769190612477565b9050600081611685858861238f565b61168f919061238f565b1198975050505050505050565b6006546001600160a01b031633146116c65760405162461bcd60e51b81526004016107e490612344565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146117125760405162461bcd60e51b81526004016107e490612344565b6001600160a01b0381166117775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e4565b610c7881611a9f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117b582610d06565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610d02828260405180602001604052806000815250611c31565b6000818152600260205260408120546001600160a01b03166118815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e4565b600061188c83610d06565b9050806001600160a01b0316846001600160a01b031614806118c75750836001600160a01b03166118bc8461076f565b6001600160a01b0316145b806118f757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661191282610d06565b6001600160a01b03161461197a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e4565b6001600160a01b0382166119dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e4565b6119e7600082611780565b6001600160a01b0383166000908152600360205260408120805460019290611a10908490612490565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a3e90849061238f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611afc8484846118ff565b611b0884848484611c64565b61137b5760405162461bcd60e51b81526004016107e4906124a7565b6060600880546106ec90612309565b606081611b575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b815780611b6b816123a7565b9150611b7a9050600a8361250f565b9150611b5b565b60008167ffffffffffffffff811115611b9c57611b9c612091565b6040519080825280601f01601f191660200182016040528015611bc6576020820181803683370190505b5090505b84156118f757611bdb600183612490565b9150611be8600a86612523565b611bf390603061238f565b60f81b818381518110611c0857611c08612413565b60200101906001600160f81b031916908160001a905350611c2a600a8661250f565b9450611bca565b611c3b8383611d62565b611c486000848484611c64565b6109495760405162461bcd60e51b81526004016107e4906124a7565b60006001600160a01b0384163b15611d5757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ca8903390899088908890600401612537565b6020604051808303816000875af1925050508015611ce3575060408051601f3d908101601f19168201909252611ce091810190612574565b60015b611d3d573d808015611d11576040519150601f19603f3d011682016040523d82523d6000602084013e611d16565b606091505b508051611d355760405162461bcd60e51b81526004016107e4906124a7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118f7565b506001949350505050565b6001600160a01b038216611db85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e4565b6000818152600260205260409020546001600160a01b031615611e1d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e4565b6001600160a01b0382166000908152600360205260408120805460019290611e4690849061238f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eb090612309565b90600052602060002090601f016020900481019282611ed25760008555611f18565b82601f10611eeb57805160ff1916838001178555611f18565b82800160010185558215611f18579182015b82811115611f18578251825591602001919060010190611efd565b50611f24929150611f28565b5090565b5b80821115611f245760008155600101611f29565b6001600160e01b031981168114610c7857600080fd5b600060208284031215611f6557600080fd5b81356114cf81611f3d565b60005b83811015611f8b578181015183820152602001611f73565b8381111561137b5750506000910152565b60008151808452611fb4816020860160208601611f70565b601f01601f19169290920160200192915050565b6020815260006114cf6020830184611f9c565b600060208284031215611fed57600080fd5b5035919050565b80356001600160a01b038116811461200b57600080fd5b919050565b6000806040838503121561202357600080fd5b61202c83611ff4565b946020939093013593505050565b60006020828403121561204c57600080fd5b6114cf82611ff4565b60008060006060848603121561206a57600080fd5b61207384611ff4565b925061208160208501611ff4565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120c2576120c2612091565b604051601f8501601f19908116603f011681019082821181831017156120ea576120ea612091565b8160405280935085815286868601111561210357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561212f57600080fd5b813567ffffffffffffffff81111561214657600080fd5b8201601f8101841361215757600080fd5b6118f7848235602084016120a7565b60008083601f84011261217857600080fd5b50813567ffffffffffffffff81111561219057600080fd5b6020830191508360208260051b85010111156121ab57600080fd5b9250929050565b600080600080604085870312156121c857600080fd5b843567ffffffffffffffff808211156121e057600080fd5b6121ec88838901612166565b9096509450602087013591508082111561220557600080fd5b5061221287828801612166565b95989497509550505050565b6000806040838503121561223157600080fd5b61223a83611ff4565b91506020830135801515811461224f57600080fd5b809150509250929050565b6000806000806080858703121561227057600080fd5b61227985611ff4565b935061228760208601611ff4565b925060408501359150606085013567ffffffffffffffff8111156122aa57600080fd5b8501601f810187136122bb57600080fd5b6122ca878235602084016120a7565b91505092959194509250565b600080604083850312156122e957600080fd5b6122f283611ff4565b915061230060208401611ff4565b90509250929050565b600181811c9082168061231d57607f821691505b6020821081141561233e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156123a2576123a2612379565b500190565b60006000198214156123bb576123bb612379565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561244357612443612379565b500290565b6000835161245a818460208801611f70565b83519083019061246e818360208801611f70565b01949350505050565b60006020828403121561248957600080fd5b5051919050565b6000828210156124a2576124a2612379565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261251e5761251e6124f9565b500490565b600082612532576125326124f9565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256a90830184611f9c565b9695505050505050565b60006020828403121561258657600080fd5b81516114cf81611f3d56fea2646970667358221220f8a2d3d05c9023d0f1ed3686bf7cc2225880e1406199d58155bde3ec44aad1a364736f6c634300080b0033
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.