Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 9,333 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 22023775 | 11 hrs ago | IN | 0 ETH | 0.00005053 | ||||
Set Approval For... | 22020457 | 22 hrs ago | IN | 0 ETH | 0.00020989 | ||||
Set Approval For... | 22020451 | 22 hrs ago | IN | 0 ETH | 0.00027811 | ||||
Set Approval For... | 22019577 | 25 hrs ago | IN | 0 ETH | 0.00005116 | ||||
Set Approval For... | 22006918 | 2 days ago | IN | 0 ETH | 0.00004821 | ||||
Set Approval For... | 22001315 | 3 days ago | IN | 0 ETH | 0.00002759 | ||||
Transfer From | 21994766 | 4 days ago | IN | 0 ETH | 0.00005644 | ||||
Set Approval For... | 21994717 | 4 days ago | IN | 0 ETH | 0.00005647 | ||||
Set Approval For... | 21994573 | 4 days ago | IN | 0 ETH | 0.00005451 | ||||
Set Approval For... | 21991703 | 4 days ago | IN | 0 ETH | 0.00006602 | ||||
Set Approval For... | 21991701 | 4 days ago | IN | 0 ETH | 0.00006102 | ||||
Set Approval For... | 21991222 | 5 days ago | IN | 0 ETH | 0.00005389 | ||||
Set Approval For... | 21988978 | 5 days ago | IN | 0 ETH | 0.00005821 | ||||
Set Approval For... | 21987618 | 5 days ago | IN | 0 ETH | 0.00010721 | ||||
Set Approval For... | 21987617 | 5 days ago | IN | 0 ETH | 0.00010306 | ||||
Set Approval For... | 21987613 | 5 days ago | IN | 0 ETH | 0.00010604 | ||||
Set Approval For... | 21987545 | 5 days ago | IN | 0 ETH | 0.00005654 | ||||
Set Approval For... | 21985756 | 5 days ago | IN | 0 ETH | 0.00005332 | ||||
Set Approval For... | 21984795 | 5 days ago | IN | 0 ETH | 0.00002875 | ||||
Set Approval For... | 21980305 | 6 days ago | IN | 0 ETH | 0.00004107 | ||||
Set Approval For... | 21980302 | 6 days ago | IN | 0 ETH | 0.0000751 | ||||
Set Approval For... | 21980301 | 6 days ago | IN | 0 ETH | 0.0000782 | ||||
Set Approval For... | 21973889 | 7 days ago | IN | 0 ETH | 0.0000819 | ||||
Set Approval For... | 21971490 | 7 days ago | IN | 0 ETH | 0.0000464 | ||||
Set Approval For... | 21971257 | 7 days ago | IN | 0 ETH | 0.00005403 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|---|
Owner Of | 22026698 | 1 hr ago | 0 ETH | |||||
Owner Of | 22026550 | 2 hrs ago | 0 ETH | |||||
Owner Of | 22026504 | 2 hrs ago | 0 ETH | |||||
Owner Of | 22026498 | 2 hrs ago | 0 ETH | |||||
Transfer From | 22026000 | 4 hrs ago | 0 ETH | |||||
Owner Of | 22025881 | 4 hrs ago | 0 ETH | |||||
Owner Of | 22025873 | 4 hrs ago | 0 ETH | |||||
Owner Of | 22025824 | 4 hrs ago | 0 ETH | |||||
Safe Transfer Fr... | 22025719 | 5 hrs ago | 0 ETH | |||||
Owner Of | 22025612 | 5 hrs ago | 0 ETH | |||||
Owner Of | 22025612 | 5 hrs ago | 0 ETH | |||||
Owner Of | 22025593 | 5 hrs ago | 0 ETH | |||||
Owner Of | 22025435 | 6 hrs ago | 0 ETH | |||||
Owner Of | 22025109 | 7 hrs ago | 0 ETH | |||||
Owner Of | 22025093 | 7 hrs ago | 0 ETH | |||||
Owner Of | 22024876 | 7 hrs ago | 0 ETH | |||||
Owner Of | 22024788 | 8 hrs ago | 0 ETH | |||||
Owner Of | 22024626 | 8 hrs ago | 0 ETH | |||||
Owner Of | 22024220 | 10 hrs ago | 0 ETH | |||||
Owner Of | 22023956 | 11 hrs ago | 0 ETH | |||||
Owner Of | 22023914 | 11 hrs ago | 0 ETH | |||||
Owner Of | 22023880 | 11 hrs ago | 0 ETH | |||||
Owner Of | 22023865 | 11 hrs ago | 0 ETH | |||||
Owner Of | 22023865 | 11 hrs ago | 0 ETH | |||||
Owner Of | 22023863 | 11 hrs ago | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ERC721K
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 500 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.19;import "@openzeppelin/contracts/token/ERC721/ERC721.sol";import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";import "./EIP712Whitelisting.sol";contract ERC721K is ERC721, EIP712Whitelisting {using ECDSA for bytes32;using Strings for uint256;uint256[3] public _maxSupplyStages = [0, 1788, 3888];uint256 public currentStage;uint256 private _maxSupply;uint256 private _mintPerWallet = 1;uint256 private _reservesAmount = 188;uint256 private _tokenId;bool private _reservesMinted;bool public publicSale = false;string public _baseTokenURI;mapping(address => uint256) public _minted;constructor(
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../utils/Context.sol";/*** @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.** The initial owner is set to the address provided by the deployer. 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;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.*/error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);/*** @dev Indicates a failure with the token `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.*/error ERC20InvalidSender(address sender);/*** @dev Indicates a failure with the token `receiver`. Used in transfers.* @param receiver Address to which tokens are being transferred.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.20;import {IERC721} from "./IERC721.sol";import {IERC721Receiver} from "./IERC721Receiver.sol";import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";import {Context} from "../../utils/Context.sol";import {Strings} from "../../utils/Strings.sol";import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";/*** @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}.*/abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {using Strings for uint256;// Token namestring private _name;// Token symbolstring private _symbol;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.20;import {IERC721} from "../IERC721.sol";/*** @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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.20;import {IERC165} from "../../utils/introspection/IERC165.sol";/*** @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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.20;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be* reverted.** The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.20;/*** @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}/*** @dev The signature derives the `address(0)`.*/error ECDSAInvalidSignature();/*** @dev The signature has an invalid length.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)pragma solidity ^0.8.20;import {IERC165} from "./IERC165.sol";/*** @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);* }* ```*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {return interfaceId == type(IERC165).interfaceId;}
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)pragma solidity ^0.8.20;/*** @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);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)pragma solidity ^0.8.20;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {/*** @dev Muldiv operation overflow.*/error MathOverflowedMulDiv();enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an overflow flag.*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.19;import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";import "@openzeppelin/contracts/access/Ownable.sol";contract EIP712Whitelisting is Ownable {using ECDSA for bytes32;address whitelistSigner;bytes32 public DOMAIN_SEPARATOR;bytes32 public constant TYPEHASH = keccak256("Minter(address wallet)");constructor(address initialOwner) Ownable(initialOwner) {DOMAIN_SEPARATOR = keccak256(abi.encode(keccak256("EIP712Domain(string name,string version)"),keccak256(bytes("KIP721")),keccak256(bytes("1"))));}function setWhitelistSigningAddress(address _address) public onlyOwner {whitelistSigner = _address;}
123456789101112131415161718192021{"optimizer": {"enabled": true,"runs": 500},"viaIR": true,"evmVersion": "paris","outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"address","name":"signerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_maxSupplyStages","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStage","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":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"mintToTreasury","outputs":[],"stateMutability":"nonpayable","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":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stage","type":"uint256"}],"name":"setMintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWhitelistSigningAddress","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"}]
Contract Creation Code
608034620004b85762001e6c906001600160401b0390601f90601f199038859003838101831682019085821183831017620004a25780839160409889948552833981010312620004b8576200005481620004d9565b92620000646020809301620004d9565b928651926200007384620004bd565b600c84526b12d25408141c9bdd1bd8dbdb60a21b818501528751916200009983620004bd565b6003938484526204b49560ec1b83850152855193898511620004a2576000948554976001988981811c9116801562000497575b87821014620004835790818584931162000453575b508690858311600114620003f3578892620003e7575b505060001982891b1c191690881b1785555b8051928a8411620002f55787548881811c91168015620003dc575b86821014620003c85790818486959493116200038d575b50859284116001146200032d5750859262000321575b505060001982861b1c191690851b1784555b6001600160a01b039586169687156200030957600680546001600160a01b03198082168b1790925590989088167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08580a36006828a51620001c481620004bd565b82815201654b495037323160d01b8152209085838b51620001e581620004bd565b82815201603160f81b815220908a5191848301937fb03948446334eb9b2196d5eb166f69b9d49403eb4a12f36de8d3f9f3cb8e15c385528c840152606083015260608252608082019282841082851117620002f557838c528251902060085560e0820190811183821017620002e15760c0879392610f30928d528684526106fc60a08201520152925b848110620002c9575050505050600e5560bc600f5561ff00196011541660115581600654163303620002b25716906007541617600755516119649081620005088239f35b835163118cdaa760e01b8152336004820152602490fd5b8261ffff85511694019381600901550184906200026e565b634e487b7160e01b85526041600452602485fd5b634e487b7160e01b86526041600452602486fd5b8851631e4fbdf760e01b815260048101849052602490fd5b01519050388062000151565b88875285872089959093929116875b878282106200037657505084116200035d575b505050811b01845562000163565b015160001983881b60f8161c191690553880806200034f565b8385015186558b979095019493840193016200033c565b620003b7908a89528789208580880160051c8201928a8910620003be575b0160051c0190620004ee565b386200013b565b92508192620003ab565b634e487b7160e01b87526022600452602487fd5b90607f169062000124565b015190503880620000f7565b90868b941691898052888a20928a5b8a8282106200043c575050841162000423575b505050811b01855562000109565b0151600019838b1b60f8161c1916905538808062000415565b8385015186558e9790950194938401930162000402565b6200047c90898052888a208780860160051c8201928b8710620003be570160051c0190620004ee565b38620000e1565b634e487b7160e01b88526022600452602488fd5b90607f1690620000cc565b634e487b7160e01b600052604160045260246000fd5b600080fd5b604081019081106001600160401b03821117620004a257604052565b51906001600160a01b0382168203620004b857565b818110620004fa575050565b60008155600101620004ee56fe6080604081815260048036101561001557600080fd5b600092833560e01c90816301ffc9a7146110a95750806306fdde0314611001578063081812fc14610fc8578063095ea7b314610eee57806318160ddd14610ecf57806323b872dd14610eb757806333bc1c5c14610e905780633644e51514610e715780633b639e6f14610e3657806342842e0e14610e0d57806349d2a11e14610de257806355f804b314610c455780635aca1bb614610c075780635bf5d54c14610be85780636352211e14610bb857806366d38ba914610b6f57806370a0823114610b1a578063715018a614610ac65780637ba0e2e7146107db5780637de77ecc146107a45780638da5cb5b1461077c57806395d89b4114610699578063a22cb465146105fc578063b88d4fde14610594578063c1ea07f5146104de578063c87b56dd146102c1578063cd7708331461027f578063cfc86f7b1461024a578063e985e9c5146101f85763f2fde38b1461016d57600080fd5b346101f45760203660031901126101f45761018661115d565b9061018f611362565b6001600160a01b038092169283156101de575050600654826001600160a01b0319821617600655167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b51631e4fbdf760e01b8152908101849052602490fd5b8280fd5b50503461024657806003193601126102465760ff8160209361021861115d565b610220611178565b6001600160a01b0391821683526005875283832091168252855220549151911615158152f35b5080fd5b50503461024657816003193601126102465761027b906102686112a4565b9051918291602083526020830190611138565b0390f35b83346102be5760203660031901126102be576001600160a01b036102a161115d565b6102a9611362565b166001600160a01b0319600754161760075580f35b80fd5b50346101f457602090816003193601126104da5781929381356102e3816116a2565b506102ec6112a4565b8051909390156104be5781829184937a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000090818110156104b1575b5050866d04ee2d6d415b85acef8100000000808510156104a3575b5050662386f26fc1000080841015610494575b506305f5e10080841015610485575b5061271080841015610477575b50506064821015610467575b600a8092101561045d575b6021908893600192816103af858094016103a761039e82611217565b9951998a6111f5565b808952611217565b878b019890601f1901368a3750860101905b61041a575b50505050926103fd926104099261027b95885195836103ee8895518092888089019101611115565b84019151809386840190611115565b010380845201826111f5565b925b51928284938452830190611138565b600019019083907f30313233343536373839616263646566000000000000000000000000000000008282061a835304918215610458579190826103c1565b6103c6565b9160010191610382565b9190606460029104910191610377565b93019290910490388061036b565b6008919493049201923861035e565b6010919493049201923861034f565b94019390920491863861033c565b8a95500492503880610321565b5050845161027b935091506104d2826111c3565b81529261040b565b8380fd5b50346101f45760203660031901126101f4576104f861115d565b91610501611362565b60ff60115416610551575050815b600f548110156105405761053b90601061052a815485611702565b61053481546116dd565b90556116dd565b61050f565b82600160ff19601154161760115580f35b906020606492519162461bcd60e51b8352820152601760248201527f526573657276657320616c7265616479206d696e7465640000000000000000006044820152fd5b838234610246576080366003190112610246576105af61115d565b6105b7611178565b9060643567ffffffffffffffff81116105f857366023820112156105f8576105f5938160246105eb93369301359101611233565b916044359161153f565b80f35b8480fd5b5090346101f457806003193601126101f45761061661115d565b90602435918215158093036105f8576001600160a01b03169283156106845750338452600560205280842083855260205280842060ff1981541660ff8416179055519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a380f35b836024925191630b61174360e31b8352820152fd5b5050346102465781600319360112610246578051908260018054916106bd8361126a565b8086529282811690811561075457506001146106f8575b5050506106e68261027b9403836111f5565b51918291602083526020830190611138565b94508085527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b82861061073c575050506106e682602061027b95820101946106d4565b8054602087870181019190915290950194810161071f565b61027b9750869350602092506106e694915060ff191682840152151560051b820101946106d4565b5050346102465781600319360112610246576020906001600160a01b03600654169051908152f35b50503461024657602036600319011261024657806020926001600160a01b036107cb61115d565b1681526013845220549051908152f35b50346101f457602090816003193601126104da57803567ffffffffffffffff808211610ac25736602383011215610ac2578183013591818311610abe5760249236848284010111610aba57333203610a8d5760ff60115460081c1615610922575b505050601054600d5411156108d3573385526013835283852054600e54111561089357505060139033845252812061087481546116dd565b905561088260105433611702565b61088d6010546116dd565b60105580f35b601b9192606494519362461bcd60e51b85528401528201527f4d6178206d696e74207065722077616c6c6574207265616368656400000000006044820152fd5b60269192608494519362461bcd60e51b85528401528201527f4d617820737570706c79207265616368656420666f722074686973206d696e7460448201526520737461676560d01b6064820152fd5b6001600160a01b03918260075416938415610a4b5760085490895190898201917f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c98352338c8201528b8152606081019281841083851117610a3957838d528151902061190160f01b60808301908152608283019590955260a28201526042835260e00190811182821017610a27578a525190206109d9926109d0926109ca9136918901611233565b906117dd565b909291926118a9565b16036109e75738808061083c565b60119192606494519362461bcd60e51b85528401528201527f496e76616c6964205369676e61747572650000000000000000000000000000006044820152fd5b634e487b7160e01b8c5260418952878cfd5b634e487b7160e01b8e5260418b52898efd5b885162461bcd60e51b81528088018990526015818801527f57686974656c697374206e6f7420656e61626c656400000000000000000000006044820152606490fd5b865162461bcd60e51b8152808601879052600881860152674f6e6c7920454f4160c01b6044820152606490fd5b8780fd5b8680fd5b8580fd5b83346102be57806003193601126102be57610adf611362565b806001600160a01b0360065481198116600655167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5091346102be5760203660031901126102be576001600160a01b03610b3d61115d565b16928315610b5a5750806020938392526003845220549051908152f35b91516322718ad960e21b815291820152602490fd5b83823461024657602036600319011261024657803590610b8d611362565b81600c556003821015610ba5575060090154600d5580f35b634e487b7160e01b835260329052602482fd5b5091346102be5760203660031901126102be57506001600160a01b03610be0602093356116a2565b915191168152f35b505034610246578160031936011261024657602090600c549051908152f35b838234610246576020366003190112610246573580151580910361024657610c2d611362565b61ff006011549160081b169061ff0019161760115580f35b5082346102be576020806003193601126102465767ffffffffffffffff9083358281116104da57366023820112156104da57610c8a9036906024818801359101611233565b93610c93611362565b8451928311610dcf5750610ca860125461126a565b601f8111610d6d575b5080601f8311600114610cec57508293829392610ce1575b50508160011b916000199060031b1c19161760125580f35b015190508380610cc9565b60128452601f198316947fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444929185905b878210610d55575050836001959610610d3c575b505050811b0160125580f35b015160001960f88460031b161c19169055838080610d30565b80600185968294968601518155019501930190610d1c565b601284527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444601f840160051c810191838510610dc5575b601f0160051c01905b818110610dba5750610cb1565b848155600101610dad565b9091508190610da4565b634e487b7160e01b845260419052602483fd5b50346101f45760203660031901126101f4573560038110156101f45760209250600901549051908152f35b505034610246576105f590610e213661118e565b91925192610e2e846111c3565b85845261153f565b505034610246578160031936011261024657602090517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c98152f35b5050346102465781600319360112610246576020906008549051908152f35b50503461024657816003193601126102465760209060ff60115460081c1690519015158152f35b83346102be576105f5610ec93661118e565b9161138e565b5050346102465781600319360112610246576020906010549051908152f35b5090346101f457806003193601126101f457610f0861115d565b91602435610f15816116a2565b33151580610fb5575b80610f8d575b610f775781906001600160a01b03809616958691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258880a484526020528220906001600160a01b031982541617905580f35b835163a9fbf51f60e01b81523381850152602490fd5b506001600160a01b0381168652600560205283862033875260205260ff848720541615610f24565b50336001600160a01b0382161415610f1e565b50346101f45760203660031901126101f45781602093826001600160a01b039335610ff2816116a2565b50825285522054169051908152f35b5050346102465781600319360112610246578051908280546110228161126a565b80855291600191808316908115610754575060011461104d575050506106e68261027b9403836111f5565b80809650527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b828610611091575050506106e682602061027b95820101946106d4565b80546020878701810191909152909501948101611074565b925050346101f45760203660031901126101f4573563ffffffff60e01b81168091036101f457602092506380ac58cd60e01b8114908115611104575b81156110f3575b5015158152f35b6301ffc9a760e01b149050386110ec565b635b5e139f60e01b811491506110e5565b60005b8381106111285750506000910152565b8181015183820152602001611118565b9060209161115181518092818552858086019101611115565b601f01601f1916010190565b600435906001600160a01b038216820361117357565b600080fd5b602435906001600160a01b038216820361117357565b6060906003190112611173576001600160a01b0390600435828116810361117357916024359081168103611173579060443590565b6020810190811067ffffffffffffffff8211176111df57604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176111df57604052565b67ffffffffffffffff81116111df57601f01601f191660200190565b92919261123f82611217565b9161124d60405193846111f5565b829481845281830111611173578281602093846000960137010152565b90600182811c9216801561129a575b602083101461128457565b634e487b7160e01b600052602260045260246000fd5b91607f1691611279565b60405190600082601254916112b88361126a565b8083529260019081811690811561134057506001146112e1575b506112df925003836111f5565b565b6012600090815291507fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34445b84831061132557506112df9350508101602001386112d2565b81935090816020925483858a0101520191019091859261130c565b9050602092506112df94915060ff191682840152151560051b820101386112d2565b6001600160a01b0360065416330361137657565b60405163118cdaa760e01b8152336004820152602490fd5b90916001600160a01b0380931692831561152657600092828452826020956002875260409684888820541696879133151580611490575b509060027fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9284611458575b858352600381528b83208054600101905586835252898120805473ffffffffffffffffffffffffffffffffffffffff19168517905580a416928383036114375750505050565b6064945051926364283d7b60e01b8452600484015260248301526044820152fd5b61147987600052600460205260406000206001600160a01b03198154169055565b848352600381528b832080546000190190556113f1565b919394509150806114e5575b156114ac578592918791386113c5565b8786886114c9576024915190637e27328960e01b82526004820152fd5b604491519063177e802f60e01b82523360048301526024820152fd5b50338714801561150a575b8061149c575085825260048152338589842054161461149c565b5086825260058152878220338352815260ff88832054166114f0565b604051633250574960e11b815260006004820152602490fd5b61154a83838361138e565b813b611557575b50505050565b6001600160a01b0394919293948093169360405193630a85bd0160e11b92838652336004870152166024850152604484015260806064840152826115a16020966084830190611138565b039285816000958187895af184918161164a575b50611615575050503d60001461160d573d6115cf81611217565b906115dd60405192836111f5565b81528091843d92013e5b8051928361160857604051633250574960e11b815260048101849052602490fd5b019050fd5b5060606115e7565b919450915063ffffffff60e01b1603611632575038808080611551565b60249060405190633250574960e11b82526004820152fd5b9091508681813d831161169b575b61166281836111f5565b810103126105f857517fffffffff00000000000000000000000000000000000000000000000000000000811681036105f85790386115b5565b503d611658565b8060005260026020526001600160a01b03604060002054169081156116c5575090565b60249060405190637e27328960e01b82526004820152fd5b60001981146116ec5760010190565b634e487b7160e01b600052601160045260246000fd5b906001600160a01b038092169081156115265760009281845260026020526040842054169182151592836117a3575b81855260036020526040852060018154019055828552600260205260408520826001600160a01b03198254161790557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8580a461178b5750565b602490604051906339e3563760e11b82526004820152fd5b6117c483600052600460205260406000206001600160a01b03198154169055565b8085526003602052604085208054600019019055611731565b815191906041830361180e5761180792506020820151906060604084015193015160001a90611819565b9192909190565b505060009160029190565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841161189d57926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156118915780516001600160a01b0381161561188857918190565b50809160019190565b604051903d90823e3d90fd5b50505060009160039190565b600481101561191857806118bb575050565b600181036118d55760405163f645eedf60e01b8152600490fd5b600281036118f65760405163fce698f760e01b815260048101839052602490fd5b6003146119005750565b602490604051906335e2f38360e21b82526004820152fd5b634e487b7160e01b600052602160045260246000fdfea26469706673582212202f6d57e854de7b8e5f7bd0a5cbc8fb107400587c8f004147cf7945fe43d67caa64736f6c63430008140033000000000000000000000000c2ca0edb941926dec0e2bf2f146e9c833b10a514000000000000000000000000007a4bf150f46ccf491edbef5a80cb240f02d264
Deployed Bytecode
0x6080604081815260048036101561001557600080fd5b600092833560e01c90816301ffc9a7146110a95750806306fdde0314611001578063081812fc14610fc8578063095ea7b314610eee57806318160ddd14610ecf57806323b872dd14610eb757806333bc1c5c14610e905780633644e51514610e715780633b639e6f14610e3657806342842e0e14610e0d57806349d2a11e14610de257806355f804b314610c455780635aca1bb614610c075780635bf5d54c14610be85780636352211e14610bb857806366d38ba914610b6f57806370a0823114610b1a578063715018a614610ac65780637ba0e2e7146107db5780637de77ecc146107a45780638da5cb5b1461077c57806395d89b4114610699578063a22cb465146105fc578063b88d4fde14610594578063c1ea07f5146104de578063c87b56dd146102c1578063cd7708331461027f578063cfc86f7b1461024a578063e985e9c5146101f85763f2fde38b1461016d57600080fd5b346101f45760203660031901126101f45761018661115d565b9061018f611362565b6001600160a01b038092169283156101de575050600654826001600160a01b0319821617600655167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b51631e4fbdf760e01b8152908101849052602490fd5b8280fd5b50503461024657806003193601126102465760ff8160209361021861115d565b610220611178565b6001600160a01b0391821683526005875283832091168252855220549151911615158152f35b5080fd5b50503461024657816003193601126102465761027b906102686112a4565b9051918291602083526020830190611138565b0390f35b83346102be5760203660031901126102be576001600160a01b036102a161115d565b6102a9611362565b166001600160a01b0319600754161760075580f35b80fd5b50346101f457602090816003193601126104da5781929381356102e3816116a2565b506102ec6112a4565b8051909390156104be5781829184937a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000090818110156104b1575b5050866d04ee2d6d415b85acef8100000000808510156104a3575b5050662386f26fc1000080841015610494575b506305f5e10080841015610485575b5061271080841015610477575b50506064821015610467575b600a8092101561045d575b6021908893600192816103af858094016103a761039e82611217565b9951998a6111f5565b808952611217565b878b019890601f1901368a3750860101905b61041a575b50505050926103fd926104099261027b95885195836103ee8895518092888089019101611115565b84019151809386840190611115565b010380845201826111f5565b925b51928284938452830190611138565b600019019083907f30313233343536373839616263646566000000000000000000000000000000008282061a835304918215610458579190826103c1565b6103c6565b9160010191610382565b9190606460029104910191610377565b93019290910490388061036b565b6008919493049201923861035e565b6010919493049201923861034f565b94019390920491863861033c565b8a95500492503880610321565b5050845161027b935091506104d2826111c3565b81529261040b565b8380fd5b50346101f45760203660031901126101f4576104f861115d565b91610501611362565b60ff60115416610551575050815b600f548110156105405761053b90601061052a815485611702565b61053481546116dd565b90556116dd565b61050f565b82600160ff19601154161760115580f35b906020606492519162461bcd60e51b8352820152601760248201527f526573657276657320616c7265616479206d696e7465640000000000000000006044820152fd5b838234610246576080366003190112610246576105af61115d565b6105b7611178565b9060643567ffffffffffffffff81116105f857366023820112156105f8576105f5938160246105eb93369301359101611233565b916044359161153f565b80f35b8480fd5b5090346101f457806003193601126101f45761061661115d565b90602435918215158093036105f8576001600160a01b03169283156106845750338452600560205280842083855260205280842060ff1981541660ff8416179055519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a380f35b836024925191630b61174360e31b8352820152fd5b5050346102465781600319360112610246578051908260018054916106bd8361126a565b8086529282811690811561075457506001146106f8575b5050506106e68261027b9403836111f5565b51918291602083526020830190611138565b94508085527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b82861061073c575050506106e682602061027b95820101946106d4565b8054602087870181019190915290950194810161071f565b61027b9750869350602092506106e694915060ff191682840152151560051b820101946106d4565b5050346102465781600319360112610246576020906001600160a01b03600654169051908152f35b50503461024657602036600319011261024657806020926001600160a01b036107cb61115d565b1681526013845220549051908152f35b50346101f457602090816003193601126104da57803567ffffffffffffffff808211610ac25736602383011215610ac2578183013591818311610abe5760249236848284010111610aba57333203610a8d5760ff60115460081c1615610922575b505050601054600d5411156108d3573385526013835283852054600e54111561089357505060139033845252812061087481546116dd565b905561088260105433611702565b61088d6010546116dd565b60105580f35b601b9192606494519362461bcd60e51b85528401528201527f4d6178206d696e74207065722077616c6c6574207265616368656400000000006044820152fd5b60269192608494519362461bcd60e51b85528401528201527f4d617820737570706c79207265616368656420666f722074686973206d696e7460448201526520737461676560d01b6064820152fd5b6001600160a01b03918260075416938415610a4b5760085490895190898201917f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c98352338c8201528b8152606081019281841083851117610a3957838d528151902061190160f01b60808301908152608283019590955260a28201526042835260e00190811182821017610a27578a525190206109d9926109d0926109ca9136918901611233565b906117dd565b909291926118a9565b16036109e75738808061083c565b60119192606494519362461bcd60e51b85528401528201527f496e76616c6964205369676e61747572650000000000000000000000000000006044820152fd5b634e487b7160e01b8c5260418952878cfd5b634e487b7160e01b8e5260418b52898efd5b885162461bcd60e51b81528088018990526015818801527f57686974656c697374206e6f7420656e61626c656400000000000000000000006044820152606490fd5b865162461bcd60e51b8152808601879052600881860152674f6e6c7920454f4160c01b6044820152606490fd5b8780fd5b8680fd5b8580fd5b83346102be57806003193601126102be57610adf611362565b806001600160a01b0360065481198116600655167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5091346102be5760203660031901126102be576001600160a01b03610b3d61115d565b16928315610b5a5750806020938392526003845220549051908152f35b91516322718ad960e21b815291820152602490fd5b83823461024657602036600319011261024657803590610b8d611362565b81600c556003821015610ba5575060090154600d5580f35b634e487b7160e01b835260329052602482fd5b5091346102be5760203660031901126102be57506001600160a01b03610be0602093356116a2565b915191168152f35b505034610246578160031936011261024657602090600c549051908152f35b838234610246576020366003190112610246573580151580910361024657610c2d611362565b61ff006011549160081b169061ff0019161760115580f35b5082346102be576020806003193601126102465767ffffffffffffffff9083358281116104da57366023820112156104da57610c8a9036906024818801359101611233565b93610c93611362565b8451928311610dcf5750610ca860125461126a565b601f8111610d6d575b5080601f8311600114610cec57508293829392610ce1575b50508160011b916000199060031b1c19161760125580f35b015190508380610cc9565b60128452601f198316947fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444929185905b878210610d55575050836001959610610d3c575b505050811b0160125580f35b015160001960f88460031b161c19169055838080610d30565b80600185968294968601518155019501930190610d1c565b601284527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444601f840160051c810191838510610dc5575b601f0160051c01905b818110610dba5750610cb1565b848155600101610dad565b9091508190610da4565b634e487b7160e01b845260419052602483fd5b50346101f45760203660031901126101f4573560038110156101f45760209250600901549051908152f35b505034610246576105f590610e213661118e565b91925192610e2e846111c3565b85845261153f565b505034610246578160031936011261024657602090517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c98152f35b5050346102465781600319360112610246576020906008549051908152f35b50503461024657816003193601126102465760209060ff60115460081c1690519015158152f35b83346102be576105f5610ec93661118e565b9161138e565b5050346102465781600319360112610246576020906010549051908152f35b5090346101f457806003193601126101f457610f0861115d565b91602435610f15816116a2565b33151580610fb5575b80610f8d575b610f775781906001600160a01b03809616958691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258880a484526020528220906001600160a01b031982541617905580f35b835163a9fbf51f60e01b81523381850152602490fd5b506001600160a01b0381168652600560205283862033875260205260ff848720541615610f24565b50336001600160a01b0382161415610f1e565b50346101f45760203660031901126101f45781602093826001600160a01b039335610ff2816116a2565b50825285522054169051908152f35b5050346102465781600319360112610246578051908280546110228161126a565b80855291600191808316908115610754575060011461104d575050506106e68261027b9403836111f5565b80809650527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b828610611091575050506106e682602061027b95820101946106d4565b80546020878701810191909152909501948101611074565b925050346101f45760203660031901126101f4573563ffffffff60e01b81168091036101f457602092506380ac58cd60e01b8114908115611104575b81156110f3575b5015158152f35b6301ffc9a760e01b149050386110ec565b635b5e139f60e01b811491506110e5565b60005b8381106111285750506000910152565b8181015183820152602001611118565b9060209161115181518092818552858086019101611115565b601f01601f1916010190565b600435906001600160a01b038216820361117357565b600080fd5b602435906001600160a01b038216820361117357565b6060906003190112611173576001600160a01b0390600435828116810361117357916024359081168103611173579060443590565b6020810190811067ffffffffffffffff8211176111df57604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176111df57604052565b67ffffffffffffffff81116111df57601f01601f191660200190565b92919261123f82611217565b9161124d60405193846111f5565b829481845281830111611173578281602093846000960137010152565b90600182811c9216801561129a575b602083101461128457565b634e487b7160e01b600052602260045260246000fd5b91607f1691611279565b60405190600082601254916112b88361126a565b8083529260019081811690811561134057506001146112e1575b506112df925003836111f5565b565b6012600090815291507fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34445b84831061132557506112df9350508101602001386112d2565b81935090816020925483858a0101520191019091859261130c565b9050602092506112df94915060ff191682840152151560051b820101386112d2565b6001600160a01b0360065416330361137657565b60405163118cdaa760e01b8152336004820152602490fd5b90916001600160a01b0380931692831561152657600092828452826020956002875260409684888820541696879133151580611490575b509060027fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9284611458575b858352600381528b83208054600101905586835252898120805473ffffffffffffffffffffffffffffffffffffffff19168517905580a416928383036114375750505050565b6064945051926364283d7b60e01b8452600484015260248301526044820152fd5b61147987600052600460205260406000206001600160a01b03198154169055565b848352600381528b832080546000190190556113f1565b919394509150806114e5575b156114ac578592918791386113c5565b8786886114c9576024915190637e27328960e01b82526004820152fd5b604491519063177e802f60e01b82523360048301526024820152fd5b50338714801561150a575b8061149c575085825260048152338589842054161461149c565b5086825260058152878220338352815260ff88832054166114f0565b604051633250574960e11b815260006004820152602490fd5b61154a83838361138e565b813b611557575b50505050565b6001600160a01b0394919293948093169360405193630a85bd0160e11b92838652336004870152166024850152604484015260806064840152826115a16020966084830190611138565b039285816000958187895af184918161164a575b50611615575050503d60001461160d573d6115cf81611217565b906115dd60405192836111f5565b81528091843d92013e5b8051928361160857604051633250574960e11b815260048101849052602490fd5b019050fd5b5060606115e7565b919450915063ffffffff60e01b1603611632575038808080611551565b60249060405190633250574960e11b82526004820152fd5b9091508681813d831161169b575b61166281836111f5565b810103126105f857517fffffffff00000000000000000000000000000000000000000000000000000000811681036105f85790386115b5565b503d611658565b8060005260026020526001600160a01b03604060002054169081156116c5575090565b60249060405190637e27328960e01b82526004820152fd5b60001981146116ec5760010190565b634e487b7160e01b600052601160045260246000fd5b906001600160a01b038092169081156115265760009281845260026020526040842054169182151592836117a3575b81855260036020526040852060018154019055828552600260205260408520826001600160a01b03198254161790557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8580a461178b5750565b602490604051906339e3563760e11b82526004820152fd5b6117c483600052600460205260406000206001600160a01b03198154169055565b8085526003602052604085208054600019019055611731565b815191906041830361180e5761180792506020820151906060604084015193015160001a90611819565b9192909190565b505060009160029190565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841161189d57926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156118915780516001600160a01b0381161561188857918190565b50809160019190565b604051903d90823e3d90fd5b50505060009160039190565b600481101561191857806118bb575050565b600181036118d55760405163f645eedf60e01b8152600490fd5b600281036118f65760405163fce698f760e01b815260048101839052602490fd5b6003146119005750565b602490604051906335e2f38360e21b82526004820152fd5b634e487b7160e01b600052602160045260246000fdfea26469706673582212202f6d57e854de7b8e5f7bd0a5cbc8fb107400587c8f004147cf7945fe43d67caa64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c2ca0edb941926dec0e2bf2f146e9c833b10a514000000000000000000000000007a4bf150f46ccf491edbef5a80cb240f02d264
-----Decoded View---------------
Arg [0] : initialOwner (address): 0xC2cA0Edb941926dEC0e2BF2F146e9c833b10a514
Arg [1] : signerAddress (address): 0x007A4Bf150F46CCF491EdbeF5A80cB240f02d264
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c2ca0edb941926dec0e2bf2f146e9c833b10a514
Arg [1] : 000000000000000000000000007a4bf150f46ccf491edbef5a80cb240f02d264
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.