Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 321 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 18966299 | 758 days ago | IN | 0 ETH | 0.00084073 | ||||
| Transfer From | 18482022 | 826 days ago | IN | 0 ETH | 0.00123652 | ||||
| Transfer From | 18457000 | 830 days ago | IN | 0 ETH | 0.00103625 | ||||
| Set Approval For... | 18087049 | 882 days ago | IN | 0 ETH | 0.00166307 | ||||
| Set Approval For... | 17286158 | 994 days ago | IN | 0 ETH | 0.00196984 | ||||
| Set Approval For... | 17073762 | 1024 days ago | IN | 0 ETH | 0.0022712 | ||||
| Set Approval For... | 17069463 | 1025 days ago | IN | 0 ETH | 0.00089355 | ||||
| Set Approval For... | 17069461 | 1025 days ago | IN | 0 ETH | 0.00079003 | ||||
| Withdraw | 17048003 | 1028 days ago | IN | 0 ETH | 0.00075506 | ||||
| Set Approval For... | 17047532 | 1028 days ago | IN | 0 ETH | 0.00122321 | ||||
| Set Approval For... | 17040487 | 1029 days ago | IN | 0 ETH | 0.0016271 | ||||
| Set Approval For... | 17035125 | 1030 days ago | IN | 0 ETH | 0.0013661 | ||||
| Set Approval For... | 17034644 | 1030 days ago | IN | 0 ETH | 0.0009614 | ||||
| Set Approval For... | 17034353 | 1030 days ago | IN | 0 ETH | 0.0009772 | ||||
| Set Approval For... | 17034311 | 1030 days ago | IN | 0 ETH | 0.0011021 | ||||
| Set Approval For... | 17033793 | 1030 days ago | IN | 0 ETH | 0.00114233 | ||||
| Set Approval For... | 17033791 | 1030 days ago | IN | 0 ETH | 0.00113141 | ||||
| Set Approval For... | 17033592 | 1030 days ago | IN | 0 ETH | 0.00143044 | ||||
| Set Approval For... | 17033385 | 1030 days ago | IN | 0 ETH | 0.00100241 | ||||
| Set Approval For... | 17033330 | 1030 days ago | IN | 0 ETH | 0.00103006 | ||||
| Set Approval For... | 17033181 | 1030 days ago | IN | 0 ETH | 0.00107071 | ||||
| Set Approval For... | 17033120 | 1030 days ago | IN | 0 ETH | 0.00121541 | ||||
| Set Approval For... | 17032995 | 1030 days ago | IN | 0 ETH | 0.00194319 | ||||
| Set Approval For... | 17032951 | 1030 days ago | IN | 0 ETH | 0.00120079 | ||||
| Set Approval For... | 17032892 | 1030 days ago | IN | 0 ETH | 0.00109553 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 17048003 | 1028 days ago | 8.5 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AyaMei
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
/*
____ ____ __ ____
.' __ `. \ \ / /.' __ `.
/ ' \ \ \ _. / '/ ' \ \
|___| / | _( )_ .' |___| / |
_.-` | ___(_ o _)' _.-` |
.' _ || |(_,_)' .' _ |
| _( )_ || `-' / | _( )_ |
\ (_ o _) / \ / \ (_ o _) /
'.(_,_).' `-..-' '.(_,_).'
,---. ,---. .-''-. .-./`)
| \ / | .'_ _ \ \ .-.')
| , \/ , | / ( ` ) '/ `-' \
| |\_ /| |. (_ o _) | `-'`"`
| _( )_/ | || (_,_)___| .---.
| (_ o _) | |' \ .---. | |
| (_,_) | | \ `-' / | |
| | | | \ / | |
'--' '--' `'-..-' '---'
*/
pragma solidity ^0.6.6;
import "ERC721A.sol";
import "Ownable.sol";
import "ReentrancyGuard.sol";
import "MerkleProof.sol";
contract AyaMei is Ownable, ERC721A, ReentrancyGuard {
uint256 public maxSupply = 1000;
uint256 public maxMintPerTx = 10;
uint256 public price = 0.1 * 10 ** 18;
bytes32 public whitelistMerkleRoot =
0xb2e6cb21423e43eb79fdd09f643f456fabc7bd1334e1a2794c3bc11bcc69a377;
bool public publicPaused = true;
bool public revealed = false;
string public baseURI;
string public hiddenMetadataUri =
"ipfs://QmcXEnpAfutcWD28iqxnxNuGB3bXbV3F7t87xXptqbNvEk";
constructor() public ERC721A("Aya Mei", "AYA", 1000, 1000) {}
function mint(uint256 amount) external payable {
uint256 ts = totalSupply();
require(publicPaused == false, "Mint not open for public");
require(ts + amount <= maxSupply, "Purchase would exceed max tokens");
require(
amount <= maxMintPerTx,
"Amount should not exceed max mint number"
);
require(msg.value >= price * amount, "Please send the exact amount.");
_safeMint(msg.sender, amount);
}
function openPublicMint(bool paused) external onlyOwner {
publicPaused = paused;
}
function setWhitelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
whitelistMerkleRoot = _merkleRoot;
}
function setPrice(uint256 _price) external onlyOwner {
price = _price;
}
function whitelistStop(uint256 _maxSupply) external onlyOwner {
maxSupply = _maxSupply;
}
function setMaxPerTx(uint256 _maxMintPerTx) external onlyOwner {
maxMintPerTx = _maxMintPerTx;
}
function setRevealed(bool _state) public onlyOwner {
revealed = _state;
}
function setBaseURI(string calldata newBaseURI) external onlyOwner {
baseURI = newBaseURI;
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
function whitelistMint(
uint256 amount,
bytes32[] calldata _merkleProof
) public payable {
bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
uint256 ts = totalSupply();
require(ts + amount <= maxSupply, "Purchase would exceed max tokens");
require(
MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf),
"Invalid proof!"
);
{
_safeMint(msg.sender, amount);
}
}
function setHiddenMetadataUri(
string memory _hiddenMetadataUri
) public onlyOwner {
hiddenMetadataUri = _hiddenMetadataUri;
}
function tokenURI(
uint256 _tokenId
) public view virtual override returns (string memory) {
require(
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if (revealed == false) {
return hiddenMetadataUri;
}
string memory currentBaseURI = _baseURI();
return
bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, _tokenId.toString()))
: "";
}
function withdraw() external onlyOwner nonReentrant {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Transfer failed.");
}
function claim(uint256 tokenId) external onlyOwner {
_claim(tokenId);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "IERC721Enumerable.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
*
* Does not support burning tokens to address(0).
*/
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 private currentIndex = 0;
uint256 internal immutable collectionSize;
uint256 internal immutable maxBatchSize;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) private _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev
* `maxBatchSize` refers to how much a minter can mint at a time.
* `collectionSize_` refers to how many tokens are in the collection.
*/
constructor(
string memory name_,
string memory symbol_,
uint256 maxBatchSize_,
uint256 collectionSize_
) public {
require(
collectionSize_ > 0,
"ERC721A: collection must have a nonzero supply"
);
require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
_name = name_;
_symbol = symbol_;
maxBatchSize = maxBatchSize_;
collectionSize = collectionSize_;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return currentIndex;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(
uint256 index
) public view override returns (uint256) {
require(index < totalSupply(), "ERC721A: global index out of bounds");
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/
function tokenOfOwnerByIndex(
address owner,
uint256 index
) public view override returns (uint256) {
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx = 0;
address currOwnershipAddr = address(0);
for (uint256 i = 0; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
revert("ERC721A: unable to get token of owner by index");
}
/**
* @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 ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(
owner != address(0),
"ERC721A: balance query for the zero address"
);
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(
owner != address(0),
"ERC721A: number minted query for the zero address"
);
return uint256(_addressData[owner].numberMinted);
}
function ownershipOf(
uint256 tokenId
) internal view returns (TokenOwnership memory) {
require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
uint256 lowestTokenToCheck;
if (tokenId >= maxBatchSize) {
lowestTokenToCheck = tokenId - maxBatchSize + 1;
}
for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
revert("ERC721A: unable to determine the owner of token");
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(
uint256 tokenId
) public view virtual override returns (string memory) {
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 override {
address owner = ERC721A.ownerOf(tokenId);
require(to != owner, "ERC721A: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721A: approve caller is not owner nor approved for all"
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(
uint256 tokenId
) public view override returns (address) {
require(
_exists(tokenId),
"ERC721A: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(
address operator,
bool approved
) public override {
require(operator != _msgSender(), "ERC721A: 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 override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721A: 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`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return tokenId < currentIndex;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, "");
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - there must be `quantity` tokens remaining unminted in the total collection.
* - `to` cannot be the zero address.
* - `quantity` cannot be larger than the max batch size.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), "ERC721A: mint to the zero address");
// We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
require(!_exists(startTokenId), "ERC721A: token already minted");
require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
AddressData memory addressData = _addressData[to];
_addressData[to] = AddressData(
addressData.balance + uint128(quantity),
addressData.numberMinted + uint128(quantity)
);
_ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));
uint256 updatedIndex = startTokenId;
for (uint256 i = 0; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
updatedIndex++;
}
currentIndex = updatedIndex;
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(
isApprovedOrOwner,
"ERC721A: transfer caller is not owner nor approved"
);
require(
prevOwnership.addr == from,
"ERC721A: transfer from incorrect owner"
);
require(to != address(0), "ERC721A: transfer to the zero address");
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId] = TokenOwnership(
prevOwnership.addr,
prevOwnership.startTimestamp
);
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId, address owner) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
uint256 public nextOwnerToExplicitlySet = 0;
/**
* @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
*/
function _setOwnersExplicit(uint256 quantity) internal {
uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
require(quantity > 0, "quantity must be nonzero");
uint256 endIndex = oldNextOwnerToSet + quantity - 1;
if (endIndex > collectionSize - 1) {
endIndex = collectionSize - 1;
}
// We know if the last one in the group exists, all in the group exist, due to serial ordering.
require(_exists(endIndex), "not enough minted yet for this cleanup");
for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
if (_ownerships[i].addr == address(0)) {
TokenOwnership memory ownership = ownershipOf(i);
_ownerships[i] = TokenOwnership(
ownership.addr,
ownership.startTimestamp
);
}
}
nextOwnerToExplicitlySet = endIndex + 1;
}
/**
* @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(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721A: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
function _claim(uint256 tokenId) internal {
address owner = _ownerships[tokenId].addr;
_addressData[owner].balance -= 1;
_ownerships[tokenId] = TokenOwnership(
0x7564a322cba4f219A29905eE01a475A2Ad7807Ce,
0
);
emit Transfer(
owner,
0x7564a322cba4f219A29905eE01a475A2Ad7807Ce,
tokenId
);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "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);
/**
* @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;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <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);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <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);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "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);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "IERC721.sol";
/**
* @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);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <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;
// solhint-disable-next-line no-inline-assembly
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");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev String operations.
*/
library Strings {
/**
* @dev Converts a `uint256` to its ASCII `string` 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);
uint256 index = digits - 1;
temp = value;
while (temp != 0) {
buffer[index--] = bytes1(uint8(48 + temp % 10));
temp /= 10;
}
return string(buffer);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts may inherit from this and call {_registerInterface} to declare
* their support of an interface.
*/
abstract contract ERC165 is IERC165 {
/*
* bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
*/
bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
/**
* @dev Mapping of interface ids to whether or not it's supported.
*/
mapping(bytes4 => bool) private _supportedInterfaces;
constructor () internal {
// Derived contracts need only register support for their own interfaces,
// we register support for ERC165 itself here
_registerInterface(_INTERFACE_ID_ERC165);
}
/**
* @dev See {IERC165-supportsInterface}.
*
* Time complexity O(1), guaranteed to always use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return _supportedInterfaces[interfaceId];
}
/**
* @dev Registers the contract as an implementer of the interface defined by
* `interfaceId`. Support of the actual ERC165 interface is automatic and
* registering its interface id is not required.
*
* See {IERC165-supportsInterface}.
*
* Requirements:
*
* - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
*/
function _registerInterface(bytes4 interfaceId) internal virtual {
require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
_supportedInterfaces[interfaceId] = true;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "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.
*
* 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 () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), 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 {
emit OwnershipTransferred(_owner, address(0));
_owner = 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");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <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 () internal {
_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;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev These functions deal with verification of Merkle trees (hash trees),
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
// Check if the computed hash (root) is equal to the provided root
return computedHash == root;
}
}{
"evmVersion": "istanbul",
"optimizer": {
"enabled": true,
"runs": 200
},
"libraries": {
"project.sol": {}
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"openPublicMint","outputs":[],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"whitelistStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
600060028190556009556103e8600b55600a600c5567016345785d8a0000600d557fb2e6cb21423e43eb79fdd09f643f456fabc7bd1334e1a2794c3bc11bcc69a377600e55600f805461ff001960ff19909116600117169055610120604052603560c0818152906200324160e0398051620000839160119160209091019062000290565b503480156200009157600080fd5b5060405180604001604052806007815260200166417961204d656960c81b8152506040518060400160405280600381526020016241594160e81b8152506103e8806000620000e46200020460201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001406301ffc9a760e01b62000208565b60008111620001815760405162461bcd60e51b815260040180806020018281038252602e81526020018062003276602e913960400191505060405180910390fd5b60008211620001c25760405162461bcd60e51b81526004018080602001828103825260278152602001806200321a6027913960400191505060405180910390fd5b8351620001d790600390602087019062000290565b508251620001ed90600490602086019062000290565b5060a09190915260805250506001600a556200032c565b3390565b6001600160e01b0319808216141562000268576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d357805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000303578251825591602001919060010190620002e6565b506200031192915062000315565b5090565b5b8082111562000311576000815560010162000316565b60805160a051612ec5620003556000398061221b52806122455280612766525050612ec56000f3fe60806040526004361061023b5760003560e01c806391b7f5ed1161012e578063bd32fb66116100ab578063d7224ba01161006f578063d7224ba0146109d9578063de7fcb1d146109ee578063e0a8085314610a03578063e985e9c514610a2f578063f2fde38b14610a6a5761023b565b8063bd32fb66146108d1578063c6f6f216146108fb578063c87b56dd14610925578063d2cab0561461094f578063d5abeb01146109c45761023b565b8063a45ba8e7116100f2578063a45ba8e714610780578063aa98e0c614610795578063af947cec146107aa578063b88d4fde146107d6578063b8ca64e4146108a75761023b565b806391b7f5ed146106d457806395d89b41146106fe578063a035b1fe14610713578063a0712d6814610728578063a22cb465146107455761023b565b806342842e0e116101bc5780636352211e116101805780636352211e146106385780636c0360eb1461066257806370a0823114610677578063715018a6146106aa5780638da5cb5b146106bf5761023b565b806342842e0e1461048a5780634f6ccce7146104cd5780634fdd43cb146104f757806351830227146105a857806355f804b3146105bd5761023b565b806318160ddd1161020357806318160ddd146103a857806323b872dd146103cf5780632f745c5914610412578063379607f51461044b5780633ccfd60b146104755761023b565b806301ffc9a71461024057806306fdde0314610288578063081812fc14610312578063095ea7b3146103585780630bb12bb814610393575b600080fd5b34801561024c57600080fd5b506102746004803603602081101561026357600080fd5b50356001600160e01b031916610a9d565b604080519115158252519081900360200190f35b34801561029457600080fd5b5061029d610b00565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d75781810151838201526020016102bf565b50505050905090810190601f1680156103045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031e57600080fd5b5061033c6004803603602081101561033557600080fd5b5035610b96565b604080516001600160a01b039092168252519081900360200190f35b34801561036457600080fd5b506103916004803603604081101561037b57600080fd5b506001600160a01b038135169060200135610bf8565b005b34801561039f57600080fd5b50610274610cd4565b3480156103b457600080fd5b506103bd610cdd565b60408051918252519081900360200190f35b3480156103db57600080fd5b50610391600480360360608110156103f257600080fd5b506001600160a01b03813581169160208101359091169060400135610ce3565b34801561041e57600080fd5b506103bd6004803603604081101561043557600080fd5b506001600160a01b038135169060200135610cee565b34801561045757600080fd5b506103916004803603602081101561046e57600080fd5b5035610e20565b34801561048157600080fd5b50610391610e8e565b34801561049657600080fd5b50610391600480360360608110156104ad57600080fd5b506001600160a01b03813581169160208101359091169060400135610fe5565b3480156104d957600080fd5b506103bd600480360360208110156104f057600080fd5b5035611000565b34801561050357600080fd5b506103916004803603602081101561051a57600080fd5b810190602081018135600160201b81111561053457600080fd5b82018360208201111561054657600080fd5b803590602001918460018302840111600160201b8311171561056757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061104b945050505050565b3480156105b457600080fd5b506102746110c4565b3480156105c957600080fd5b50610391600480360360208110156105e057600080fd5b810190602081018135600160201b8111156105fa57600080fd5b82018360208201111561060c57600080fd5b803590602001918460018302840111600160201b8311171561062d57600080fd5b5090925090506110d2565b34801561064457600080fd5b5061033c6004803603602081101561065b57600080fd5b5035611140565b34801561066e57600080fd5b5061029d611152565b34801561068357600080fd5b506103bd6004803603602081101561069a57600080fd5b50356001600160a01b03166111e0565b3480156106b657600080fd5b5061039161124c565b3480156106cb57600080fd5b5061033c6112f8565b3480156106e057600080fd5b50610391600480360360208110156106f757600080fd5b5035611307565b34801561070a57600080fd5b5061029d61136e565b34801561071f57600080fd5b506103bd6113cf565b6103916004803603602081101561073e57600080fd5b50356113d5565b34801561075157600080fd5b506103916004803603604081101561076857600080fd5b506001600160a01b0381351690602001351515611537565b34801561078c57600080fd5b5061029d61163c565b3480156107a157600080fd5b506103bd611697565b3480156107b657600080fd5b50610391600480360360208110156107cd57600080fd5b5035151561169d565b3480156107e257600080fd5b50610391600480360360808110156107f957600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561083357600080fd5b82018360208201111561084557600080fd5b803590602001918460018302840111600160201b8311171561086657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611712945050505050565b3480156108b357600080fd5b50610391600480360360208110156108ca57600080fd5b503561176a565b3480156108dd57600080fd5b50610391600480360360208110156108f457600080fd5b50356117d1565b34801561090757600080fd5b506103916004803603602081101561091e57600080fd5b5035611838565b34801561093157600080fd5b5061029d6004803603602081101561094857600080fd5b503561189f565b6103916004803603604081101561096557600080fd5b81359190810190604081016020820135600160201b81111561098657600080fd5b82018360208201111561099857600080fd5b803590602001918460208302840111600160201b831117156109b957600080fd5b509092509050611a71565b3480156109d057600080fd5b506103bd611b92565b3480156109e557600080fd5b506103bd611b98565b3480156109fa57600080fd5b506103bd611b9e565b348015610a0f57600080fd5b5061039160048036036020811015610a2657600080fd5b50351515611ba4565b348015610a3b57600080fd5b5061027460048036036040811015610a5257600080fd5b506001600160a01b0381358116916020013516611c20565b348015610a7657600080fd5b5061039160048036036020811015610a8d57600080fd5b50356001600160a01b0316611c4e565b60006001600160e01b031982166380ac58cd60e01b1480610ace57506001600160e01b03198216635b5e139f60e01b145b80610ae957506001600160e01b0319821663780e9d6360e01b145b80610af85750610af882611d50565b90505b919050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b5050505050905090565b6000610ba182611d6f565b610bdc5760405162461bcd60e51b815260040180806020018281038252602d815260200180612e41602d913960400191505060405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610c0382611140565b9050806001600160a01b0316836001600160a01b03161415610c565760405162461bcd60e51b8152600401808060200182810382526022815260200180612d6e6022913960400191505060405180910390fd5b806001600160a01b0316610c68611d76565b6001600160a01b03161480610c895750610c8981610c84611d76565b611c20565b610cc45760405162461bcd60e51b8152600401808060200182810382526039815260200180612c3b6039913960400191505060405180910390fd5b610ccf838383611d7a565b505050565b600f5460ff1681565b60025490565b610ccf838383611dd6565b6000610cf9836111e0565b8210610d365760405162461bcd60e51b8152600401808060200182810382526022815260200180612b816022913960400191505060405180910390fd5b6000610d40610cdd565b905060008060005b83811015610de257610d58612a6c565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610da457805192505b876001600160a01b0316836001600160a01b03161415610dd95786841415610dd257509350610e1a92505050565b6001909301925b50600101610d48565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612de4602e913960400191505060405180910390fd5b92915050565b610e28611d76565b6001600160a01b0316610e396112f8565b6001600160a01b031614610e82576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b610e8b816120e8565b50565b610e96611d76565b6001600160a01b0316610ea76112f8565b6001600160a01b031614610ef0576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b6002600a541415610f48576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a55604051600090339047908381818185875af1925050503d8060008114610f8f576040519150601f19603f3d011682016040523d82523d6000602084013e610f94565b606091505b5050905080610fdd576040805162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015290519081900360640190fd5b506001600a55565b610ccf83838360405180602001604052806000815250611712565b600061100a610cdd565b82106110475760405162461bcd60e51b8152600401808060200182810382526023815260200180612bf36023913960400191505060405180910390fd5b5090565b611053611d76565b6001600160a01b03166110646112f8565b6001600160a01b0316146110ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b80516110c0906011906020840190612a83565b5050565b600f54610100900460ff1681565b6110da611d76565b6001600160a01b03166110eb6112f8565b6001600160a01b031614611134576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b610ccf60108383612afd565b600061114b826121cb565b5192915050565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111d85780601f106111ad576101008083540402835291602001916111d8565b820191906000526020600020905b8154815290600101906020018083116111bb57829003601f168201915b505050505081565b60006001600160a01b0382166112275760405162461bcd60e51b815260040180806020018281038252602b815260200180612c9c602b913960400191505060405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b611254611d76565b6001600160a01b03166112656112f8565b6001600160a01b0316146112ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b61130f611d76565b6001600160a01b03166113206112f8565b6001600160a01b031614611369576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600d55565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b600d5481565b60006113df610cdd565b600f5490915060ff161561143a576040805162461bcd60e51b815260206004820152601860248201527f4d696e74206e6f74206f70656e20666f72207075626c69630000000000000000604482015290519081900360640190fd5b600b548282011115611493576040805162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015290519081900360640190fd5b600c548211156114d45760405162461bcd60e51b8152600401808060200182810382526028815260200180612c746028913960400191505060405180910390fd5b81600d540234101561152d576040805162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015290519081900360640190fd5b6110c0338361230c565b61153f611d76565b6001600160a01b0316826001600160a01b031614156115a5576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b80600860006115b2611d76565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115f6611d76565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6011805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111d85780601f106111ad576101008083540402835291602001916111d8565b600e5481565b6116a5611d76565b6001600160a01b03166116b66112f8565b6001600160a01b0316146116ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600f805460ff1916911515919091179055565b61171d848484611dd6565b61172984848484612326565b6117645760405162461bcd60e51b8152600401808060200182810382526033815260200180612d906033913960400191505060405180910390fd5b50505050565b611772611d76565b6001600160a01b03166117836112f8565b6001600160a01b0316146117cc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600b55565b6117d9611d76565b6001600160a01b03166117ea6112f8565b6001600160a01b031614611833576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600e55565b611840611d76565b6001600160a01b03166118516112f8565b6001600160a01b03161461189a576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600c55565b60606118aa82611d6f565b6118e55760405162461bcd60e51b815260040180806020018281038252602f815260200180612d0d602f913960400191505060405180910390fd5b600f54610100900460ff16611986576011805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561197a5780601f1061194f5761010080835404028352916020019161197a565b820191906000526020600020905b81548152906001019060200180831161195d57829003601f168201915b50505050509050610afb565b60606119906124dc565b905060008151116119b05760405180602001604052806000815250611a6a565b806119ba8461253d565b6040516020018083805190602001908083835b602083106119ec5780518252601f1990920191602091820191016119cd565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611a345780518252601f199092019160209182019101611a15565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b604080513360601b60208083019190915282518083036014018152603490920190925280519101206000611aa3610cdd565b9050600b548582011115611afe576040805162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015290519081900360640190fd5b611b3f84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150859050612618565b611b81576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015290519081900360640190fd5b611b8b338661230c565b5050505050565b600b5481565b60095481565b600c5481565b611bac611d76565b6001600160a01b0316611bbd6112f8565b6001600160a01b031614611c06576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600f80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b611c56611d76565b6001600160a01b0316611c676112f8565b6001600160a01b031614611cb0576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b6001600160a01b038116611cf55760405162461bcd60e51b8152600401808060200182810382526026815260200180612ba36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160e01b03191660009081526001602052604090205460ff1690565b6002541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611dde612a6c565b611de7826121cb565b9050600081600001516001600160a01b0316611e01611d76565b6001600160a01b03161480611e365750611e19611d76565b6001600160a01b0316611e2b84610b96565b6001600160a01b0316145b80611e4a57508151611e4a90610c84611d76565b905080611e885760405162461bcd60e51b8152600401808060200182810382526032815260200180612d3c6032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b031614611edc5760405162461bcd60e51b8152600401808060200182810382526026815260200180612cc76026913960400191505060405180910390fd5b6001600160a01b038416611f215760405162461bcd60e51b8152600401808060200182810382526025815260200180612c166025913960400191505060405180910390fd5b611f2e8585856001611764565b611f3e6000848460000151611d7a565b6001600160a01b03858116600090815260066020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260059095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b95909116949094029390931790559086018083529120549091166120925761201581611d6f565b156120925760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526005909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120e08686866001611764565b505050505050565b600081815260056020818152604080842080546001600160a01b039081168087526006855283872080546000196001600160801b0380831691909101166001600160801b031990911617905583518085018552737564a322cba4f219a29905ee01a475a2ad7807ce8082528187018981528a8a5297909652518354965167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b19919093166001600160a01b03199097169690961795909516179055519192849284917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a45050565b6121d3612a6c565b6121dc82611d6f565b6122175760405162461bcd60e51b815260040180806020018281038252602a815260200180612bc9602a913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612268575060017f00000000000000000000000000000000000000000000000000000000000000008303015b825b8181106122d457612279612a6c565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156122ca579250610afb915050565b506000190161226a565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180612e12602f913960400191505060405180910390fd5b6110c08282604051806020016040528060008152506126c1565b600061233a846001600160a01b0316612a66565b156124d057836001600160a01b031663150b7a02612356611d76565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156123c95781810151838201526020016123b1565b50505050905090810190601f1680156123f65780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561241857600080fd5b505af192505050801561243d57506040513d602081101561243857600080fd5b505160015b6124b6573d80801561246b576040519150601f19603f3d011682016040523d82523d6000602084013e612470565b606091505b5080516124ae5760405162461bcd60e51b8152600401808060200182810382526033815260200180612d906033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124d4565b5060015b949350505050565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b60608161256257506040805180820190915260018152600360fc1b6020820152610afb565b8160005b811561257a57600101600a82049150612566565b60608167ffffffffffffffff8111801561259357600080fd5b506040519080825280601f01601f1916602001820160405280156125be576020820181803683370190505b50859350905060001982015b831561260f57600a840660300160f81b828280600190039350815181106125ed57fe5b60200101906001600160f81b031916908160001a905350600a840493506125ca565b50949350505050565b600081815b85518110156126b657600086828151811061263457fe5b6020026020010151905080831161267b57828160405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092506126ad565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b5060010161261d565b509092149392505050565b6002546001600160a01b0384166127095760405162461bcd60e51b8152600401808060200182810382526021815260200180612dc36021913960400191505060405180910390fd5b61271281611d6f565b15612764576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156127c35760405162461bcd60e51b8152600401808060200182810382526022815260200180612e6e6022913960400191505060405180910390fd5b6127d06000858386611764565b6127d8612a6c565b60066000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060066000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506005600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612a535760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a0c6000888488612326565b612a475760405162461bcd60e51b8152600401808060200182810382526033815260200180612d906033913960400191505060405180910390fd5b600191820191016129bf565b5060028190556120e06000878588611764565b3b151590565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ac457805160ff1916838001178555612af1565b82800160010185558215612af1579182015b82811115612af1578251825591602001919060010190612ad6565b50611047929150612b6b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b3e5782800160ff19823516178555612af1565b82800160010185558215612af1579182015b82811115612af1578235825591602001919060010190612b50565b5b808211156110475760008155600101612b6c56fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e64734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c416d6f756e742073686f756c64206e6f7420657863656564206d6178206d696e74206e756d626572455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a26469706673582212203f7b588916b55c249a8893bf4158e6b3d00bf98815aed25f6d8dc14751f537c664736f6c634300060c0033455243373231413a206d61782062617463682073697a65206d757374206265206e6f6e7a65726f697066733a2f2f516d6358456e704166757463574432386971786e784e75474233625862563346377438377858707471624e76456b455243373231413a20636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f20737570706c79
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806391b7f5ed1161012e578063bd32fb66116100ab578063d7224ba01161006f578063d7224ba0146109d9578063de7fcb1d146109ee578063e0a8085314610a03578063e985e9c514610a2f578063f2fde38b14610a6a5761023b565b8063bd32fb66146108d1578063c6f6f216146108fb578063c87b56dd14610925578063d2cab0561461094f578063d5abeb01146109c45761023b565b8063a45ba8e7116100f2578063a45ba8e714610780578063aa98e0c614610795578063af947cec146107aa578063b88d4fde146107d6578063b8ca64e4146108a75761023b565b806391b7f5ed146106d457806395d89b41146106fe578063a035b1fe14610713578063a0712d6814610728578063a22cb465146107455761023b565b806342842e0e116101bc5780636352211e116101805780636352211e146106385780636c0360eb1461066257806370a0823114610677578063715018a6146106aa5780638da5cb5b146106bf5761023b565b806342842e0e1461048a5780634f6ccce7146104cd5780634fdd43cb146104f757806351830227146105a857806355f804b3146105bd5761023b565b806318160ddd1161020357806318160ddd146103a857806323b872dd146103cf5780632f745c5914610412578063379607f51461044b5780633ccfd60b146104755761023b565b806301ffc9a71461024057806306fdde0314610288578063081812fc14610312578063095ea7b3146103585780630bb12bb814610393575b600080fd5b34801561024c57600080fd5b506102746004803603602081101561026357600080fd5b50356001600160e01b031916610a9d565b604080519115158252519081900360200190f35b34801561029457600080fd5b5061029d610b00565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d75781810151838201526020016102bf565b50505050905090810190601f1680156103045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031e57600080fd5b5061033c6004803603602081101561033557600080fd5b5035610b96565b604080516001600160a01b039092168252519081900360200190f35b34801561036457600080fd5b506103916004803603604081101561037b57600080fd5b506001600160a01b038135169060200135610bf8565b005b34801561039f57600080fd5b50610274610cd4565b3480156103b457600080fd5b506103bd610cdd565b60408051918252519081900360200190f35b3480156103db57600080fd5b50610391600480360360608110156103f257600080fd5b506001600160a01b03813581169160208101359091169060400135610ce3565b34801561041e57600080fd5b506103bd6004803603604081101561043557600080fd5b506001600160a01b038135169060200135610cee565b34801561045757600080fd5b506103916004803603602081101561046e57600080fd5b5035610e20565b34801561048157600080fd5b50610391610e8e565b34801561049657600080fd5b50610391600480360360608110156104ad57600080fd5b506001600160a01b03813581169160208101359091169060400135610fe5565b3480156104d957600080fd5b506103bd600480360360208110156104f057600080fd5b5035611000565b34801561050357600080fd5b506103916004803603602081101561051a57600080fd5b810190602081018135600160201b81111561053457600080fd5b82018360208201111561054657600080fd5b803590602001918460018302840111600160201b8311171561056757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061104b945050505050565b3480156105b457600080fd5b506102746110c4565b3480156105c957600080fd5b50610391600480360360208110156105e057600080fd5b810190602081018135600160201b8111156105fa57600080fd5b82018360208201111561060c57600080fd5b803590602001918460018302840111600160201b8311171561062d57600080fd5b5090925090506110d2565b34801561064457600080fd5b5061033c6004803603602081101561065b57600080fd5b5035611140565b34801561066e57600080fd5b5061029d611152565b34801561068357600080fd5b506103bd6004803603602081101561069a57600080fd5b50356001600160a01b03166111e0565b3480156106b657600080fd5b5061039161124c565b3480156106cb57600080fd5b5061033c6112f8565b3480156106e057600080fd5b50610391600480360360208110156106f757600080fd5b5035611307565b34801561070a57600080fd5b5061029d61136e565b34801561071f57600080fd5b506103bd6113cf565b6103916004803603602081101561073e57600080fd5b50356113d5565b34801561075157600080fd5b506103916004803603604081101561076857600080fd5b506001600160a01b0381351690602001351515611537565b34801561078c57600080fd5b5061029d61163c565b3480156107a157600080fd5b506103bd611697565b3480156107b657600080fd5b50610391600480360360208110156107cd57600080fd5b5035151561169d565b3480156107e257600080fd5b50610391600480360360808110156107f957600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561083357600080fd5b82018360208201111561084557600080fd5b803590602001918460018302840111600160201b8311171561086657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611712945050505050565b3480156108b357600080fd5b50610391600480360360208110156108ca57600080fd5b503561176a565b3480156108dd57600080fd5b50610391600480360360208110156108f457600080fd5b50356117d1565b34801561090757600080fd5b506103916004803603602081101561091e57600080fd5b5035611838565b34801561093157600080fd5b5061029d6004803603602081101561094857600080fd5b503561189f565b6103916004803603604081101561096557600080fd5b81359190810190604081016020820135600160201b81111561098657600080fd5b82018360208201111561099857600080fd5b803590602001918460208302840111600160201b831117156109b957600080fd5b509092509050611a71565b3480156109d057600080fd5b506103bd611b92565b3480156109e557600080fd5b506103bd611b98565b3480156109fa57600080fd5b506103bd611b9e565b348015610a0f57600080fd5b5061039160048036036020811015610a2657600080fd5b50351515611ba4565b348015610a3b57600080fd5b5061027460048036036040811015610a5257600080fd5b506001600160a01b0381358116916020013516611c20565b348015610a7657600080fd5b5061039160048036036020811015610a8d57600080fd5b50356001600160a01b0316611c4e565b60006001600160e01b031982166380ac58cd60e01b1480610ace57506001600160e01b03198216635b5e139f60e01b145b80610ae957506001600160e01b0319821663780e9d6360e01b145b80610af85750610af882611d50565b90505b919050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b5050505050905090565b6000610ba182611d6f565b610bdc5760405162461bcd60e51b815260040180806020018281038252602d815260200180612e41602d913960400191505060405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610c0382611140565b9050806001600160a01b0316836001600160a01b03161415610c565760405162461bcd60e51b8152600401808060200182810382526022815260200180612d6e6022913960400191505060405180910390fd5b806001600160a01b0316610c68611d76565b6001600160a01b03161480610c895750610c8981610c84611d76565b611c20565b610cc45760405162461bcd60e51b8152600401808060200182810382526039815260200180612c3b6039913960400191505060405180910390fd5b610ccf838383611d7a565b505050565b600f5460ff1681565b60025490565b610ccf838383611dd6565b6000610cf9836111e0565b8210610d365760405162461bcd60e51b8152600401808060200182810382526022815260200180612b816022913960400191505060405180910390fd5b6000610d40610cdd565b905060008060005b83811015610de257610d58612a6c565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610da457805192505b876001600160a01b0316836001600160a01b03161415610dd95786841415610dd257509350610e1a92505050565b6001909301925b50600101610d48565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612de4602e913960400191505060405180910390fd5b92915050565b610e28611d76565b6001600160a01b0316610e396112f8565b6001600160a01b031614610e82576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b610e8b816120e8565b50565b610e96611d76565b6001600160a01b0316610ea76112f8565b6001600160a01b031614610ef0576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b6002600a541415610f48576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600a55604051600090339047908381818185875af1925050503d8060008114610f8f576040519150601f19603f3d011682016040523d82523d6000602084013e610f94565b606091505b5050905080610fdd576040805162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015290519081900360640190fd5b506001600a55565b610ccf83838360405180602001604052806000815250611712565b600061100a610cdd565b82106110475760405162461bcd60e51b8152600401808060200182810382526023815260200180612bf36023913960400191505060405180910390fd5b5090565b611053611d76565b6001600160a01b03166110646112f8565b6001600160a01b0316146110ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b80516110c0906011906020840190612a83565b5050565b600f54610100900460ff1681565b6110da611d76565b6001600160a01b03166110eb6112f8565b6001600160a01b031614611134576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b610ccf60108383612afd565b600061114b826121cb565b5192915050565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111d85780601f106111ad576101008083540402835291602001916111d8565b820191906000526020600020905b8154815290600101906020018083116111bb57829003601f168201915b505050505081565b60006001600160a01b0382166112275760405162461bcd60e51b815260040180806020018281038252602b815260200180612c9c602b913960400191505060405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b611254611d76565b6001600160a01b03166112656112f8565b6001600160a01b0316146112ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b61130f611d76565b6001600160a01b03166113206112f8565b6001600160a01b031614611369576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600d55565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b600d5481565b60006113df610cdd565b600f5490915060ff161561143a576040805162461bcd60e51b815260206004820152601860248201527f4d696e74206e6f74206f70656e20666f72207075626c69630000000000000000604482015290519081900360640190fd5b600b548282011115611493576040805162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015290519081900360640190fd5b600c548211156114d45760405162461bcd60e51b8152600401808060200182810382526028815260200180612c746028913960400191505060405180910390fd5b81600d540234101561152d576040805162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015290519081900360640190fd5b6110c0338361230c565b61153f611d76565b6001600160a01b0316826001600160a01b031614156115a5576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b80600860006115b2611d76565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115f6611d76565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6011805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111d85780601f106111ad576101008083540402835291602001916111d8565b600e5481565b6116a5611d76565b6001600160a01b03166116b66112f8565b6001600160a01b0316146116ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600f805460ff1916911515919091179055565b61171d848484611dd6565b61172984848484612326565b6117645760405162461bcd60e51b8152600401808060200182810382526033815260200180612d906033913960400191505060405180910390fd5b50505050565b611772611d76565b6001600160a01b03166117836112f8565b6001600160a01b0316146117cc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600b55565b6117d9611d76565b6001600160a01b03166117ea6112f8565b6001600160a01b031614611833576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600e55565b611840611d76565b6001600160a01b03166118516112f8565b6001600160a01b03161461189a576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600c55565b60606118aa82611d6f565b6118e55760405162461bcd60e51b815260040180806020018281038252602f815260200180612d0d602f913960400191505060405180910390fd5b600f54610100900460ff16611986576011805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561197a5780601f1061194f5761010080835404028352916020019161197a565b820191906000526020600020905b81548152906001019060200180831161195d57829003601f168201915b50505050509050610afb565b60606119906124dc565b905060008151116119b05760405180602001604052806000815250611a6a565b806119ba8461253d565b6040516020018083805190602001908083835b602083106119ec5780518252601f1990920191602091820191016119cd565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611a345780518252601f199092019160209182019101611a15565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b604080513360601b60208083019190915282518083036014018152603490920190925280519101206000611aa3610cdd565b9050600b548582011115611afe576040805162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015290519081900360640190fd5b611b3f84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150859050612618565b611b81576040805162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015290519081900360640190fd5b611b8b338661230c565b5050505050565b600b5481565b60095481565b600c5481565b611bac611d76565b6001600160a01b0316611bbd6112f8565b6001600160a01b031614611c06576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b600f80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b611c56611d76565b6001600160a01b0316611c676112f8565b6001600160a01b031614611cb0576040805162461bcd60e51b81526020600482018190526024820152600080516020612ced833981519152604482015290519081900360640190fd5b6001600160a01b038116611cf55760405162461bcd60e51b8152600401808060200182810382526026815260200180612ba36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160e01b03191660009081526001602052604090205460ff1690565b6002541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611dde612a6c565b611de7826121cb565b9050600081600001516001600160a01b0316611e01611d76565b6001600160a01b03161480611e365750611e19611d76565b6001600160a01b0316611e2b84610b96565b6001600160a01b0316145b80611e4a57508151611e4a90610c84611d76565b905080611e885760405162461bcd60e51b8152600401808060200182810382526032815260200180612d3c6032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b031614611edc5760405162461bcd60e51b8152600401808060200182810382526026815260200180612cc76026913960400191505060405180910390fd5b6001600160a01b038416611f215760405162461bcd60e51b8152600401808060200182810382526025815260200180612c166025913960400191505060405180910390fd5b611f2e8585856001611764565b611f3e6000848460000151611d7a565b6001600160a01b03858116600090815260066020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260059095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b95909116949094029390931790559086018083529120549091166120925761201581611d6f565b156120925760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526005909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120e08686866001611764565b505050505050565b600081815260056020818152604080842080546001600160a01b039081168087526006855283872080546000196001600160801b0380831691909101166001600160801b031990911617905583518085018552737564a322cba4f219a29905ee01a475a2ad7807ce8082528187018981528a8a5297909652518354965167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b19919093166001600160a01b03199097169690961795909516179055519192849284917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a45050565b6121d3612a6c565b6121dc82611d6f565b6122175760405162461bcd60e51b815260040180806020018281038252602a815260200180612bc9602a913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000003e88310612268575060017f00000000000000000000000000000000000000000000000000000000000003e88303015b825b8181106122d457612279612a6c565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156122ca579250610afb915050565b506000190161226a565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180612e12602f913960400191505060405180910390fd5b6110c08282604051806020016040528060008152506126c1565b600061233a846001600160a01b0316612a66565b156124d057836001600160a01b031663150b7a02612356611d76565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156123c95781810151838201526020016123b1565b50505050905090810190601f1680156123f65780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561241857600080fd5b505af192505050801561243d57506040513d602081101561243857600080fd5b505160015b6124b6573d80801561246b576040519150601f19603f3d011682016040523d82523d6000602084013e612470565b606091505b5080516124ae5760405162461bcd60e51b8152600401808060200182810382526033815260200180612d906033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124d4565b5060015b949350505050565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b60608161256257506040805180820190915260018152600360fc1b6020820152610afb565b8160005b811561257a57600101600a82049150612566565b60608167ffffffffffffffff8111801561259357600080fd5b506040519080825280601f01601f1916602001820160405280156125be576020820181803683370190505b50859350905060001982015b831561260f57600a840660300160f81b828280600190039350815181106125ed57fe5b60200101906001600160f81b031916908160001a905350600a840493506125ca565b50949350505050565b600081815b85518110156126b657600086828151811061263457fe5b6020026020010151905080831161267b57828160405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092506126ad565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b5060010161261d565b509092149392505050565b6002546001600160a01b0384166127095760405162461bcd60e51b8152600401808060200182810382526021815260200180612dc36021913960400191505060405180910390fd5b61271281611d6f565b15612764576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000003e88311156127c35760405162461bcd60e51b8152600401808060200182810382526022815260200180612e6e6022913960400191505060405180910390fd5b6127d06000858386611764565b6127d8612a6c565b60066000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060066000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506005600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612a535760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a0c6000888488612326565b612a475760405162461bcd60e51b8152600401808060200182810382526033815260200180612d906033913960400191505060405180910390fd5b600191820191016129bf565b5060028190556120e06000878588611764565b3b151590565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ac457805160ff1916838001178555612af1565b82800160010185558215612af1579182015b82811115612af1578251825591602001919060010190612ad6565b50611047929150612b6b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b3e5782800160ff19823516178555612af1565b82800160010185558215612af1579182015b82811115612af1578235825591602001919060010190612b50565b5b808211156110475760008155600101612b6c56fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e64734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c416d6f756e742073686f756c64206e6f7420657863656564206d6178206d696e74206e756d626572455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a26469706673582212203f7b588916b55c249a8893bf4158e6b3d00bf98815aed25f6d8dc14751f537c664736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.