Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 11 from a total of 11 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Update Sales | 19406346 | 734 days ago | IN | 0 ETH | 0.00329516 | ||||
| Update Round Max... | 19405712 | 734 days ago | IN | 0 ETH | 0.00295958 | ||||
| Update Promotion | 19405683 | 734 days ago | IN | 0 ETH | 0.00311811 | ||||
| Mint Reserved NF... | 17248628 | 1036 days ago | IN | 0 ETH | 0.00668843 | ||||
| Mint Reserved NF... | 17043122 | 1065 days ago | IN | 0 ETH | 0.00399538 | ||||
| Mint Reserved NF... | 16894270 | 1087 days ago | IN | 0 ETH | 0.00235635 | ||||
| Mint Reserved NF... | 16788592 | 1101 days ago | IN | 0 ETH | 0.00368651 | ||||
| Mint Reserved NF... | 15367155 | 1304 days ago | IN | 0 ETH | 0.00128055 | ||||
| Mint Reserved NF... | 15318525 | 1311 days ago | IN | 0 ETH | 0.00276792 | ||||
| Mint Reserved NF... | 15318377 | 1311 days ago | IN | 0 ETH | 0.00330051 | ||||
| Mint Reserved NF... | 15202255 | 1330 days ago | IN | 0 ETH | 0.00122765 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WishfulDolphin
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./ERC721Tradable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
contract WishfulDolphin is ERC721Tradable, ReentrancyGuard {
using ECDSA for bytes32;
using SafeMath for uint256;
using Address for address;
using Strings for uint256;
enum salesRound { Wait, First, Second, Third, Fourth }
enum salesStatus { Pause, Sold, Progress }
enum salesType { General, Whitelist }
salesRound private currentSalesRound = salesRound.Wait;
salesStatus private currentSalesStatus = salesStatus.Pause;
salesType private currentSalesType = salesType.General;
string private baseURI;
uint256 public immutable maxSupply;
uint256 public immutable reservedSupply;
uint256 public maxAllowedMints;
uint256 public maxWhiteListMints;
uint256 private constant _numTier = 4;
uint256[5] private roundMaxSupply;
bool public onPromo = false;
uint256 public promoPrice = 0.02 ether;
uint256 public reservedMinted;
mapping (address => uint256) public totalMints;
mapping (salesRound => mapping(address => uint256)) public whiteListMints;
address private _signer = 0x47ED4eE4021d3CF5e6582ceF3e6756D1b88efB6e;
constructor(
string memory bURI,
address _proxyRegistryAddress,
uint256 maxSupply_,
uint256 reservedSupply_,
uint256 maxAllowedMints_,
uint256 maxWhiteListMints_
) ERC721Tradable("Wishful Dolphin", "WFD", _proxyRegistryAddress) {
require(maxSupply_ % _numTier == 0, "maxSupply must be divisible by numTier");
baseURI = bURI;
maxSupply = maxSupply_;
reservedSupply = reservedSupply_;
maxAllowedMints = maxAllowedMints_;
maxWhiteListMints = maxWhiteListMints_;
uint256 roundSupply = maxSupply / _numTier;
roundMaxSupply[0] = 0;
for (uint256 i=1; i<=_numTier; i++) {
roundMaxSupply[i]=roundSupply;
}
}
function baseTokenURI() override public view returns (string memory) {
return baseURI;
}
function setBaseTokenURI(string calldata bURI) external onlyOwner {
baseURI = bURI;
}
modifier isSaleOpen {
require(totalSupply() < maxSupply, "Sorry, All Wishful Dolphins are sold.");
_;
}
function updateSales(uint8 sRound, uint8 sStatus, uint8 sType) external onlyOwner {
currentSalesRound = salesRound(sRound);
currentSalesStatus = salesStatus(sStatus);
currentSalesType = salesType(sType);
}
function updateRoundMaxSupply(uint256[] calldata supplies) external onlyOwner {
require( supplies.length == _numTier + 1, "You need 5 uint256 values");
for (uint256 i = 0; i < supplies.length; i++) {
roundMaxSupply[i] = supplies[i];
}
}
function updateMaxAllowedMints(uint256 amount) external onlyOwner {
maxAllowedMints = amount;
}
function updateMaxWhiteListMints(uint256 amount) external onlyOwner {
maxWhiteListMints = amount;
}
function updatePromotion(bool enablePromo, uint256 price) external onlyOwner {
onPromo = enablePromo;
promoPrice = price;
}
function _nextTokenId() private view returns (uint256) {
return totalSupply() + 1;
}
function mintNFT(
bytes32 messageHash,
bytes calldata signature,
uint256 numTokens) external payable nonReentrant isSaleOpen {
require( currentSalesRound > salesRound.Wait, "Whitelist Sales has not begun yet.");
require( currentSalesType == salesType.Whitelist, "Whitelist sales is not available at the moment.");
require( currentSalesStatus > salesStatus.Sold, "Whitelist sales is not active at the moment.");
require( hashMessage(msg.sender) == messageHash, "Invalid Message");
require( messageSigner(messageHash, signature) == _signer, "Signature validation failed");
require( totalSupply() + numTokens <= soFarSupply(uint256(currentSalesRound)), "Exceeds current maximum NFT supply.");
require( totalSupply() + numTokens <= maxSupply, "Exceeds maximum NFT supply.");
require( numTokens > 0 && numTokens <= maxWhiteListMints, "Invalid mint amount");
require( whiteListMints[currentSalesRound][msg.sender] + numTokens <= maxWhiteListMints, "Address exceeds max whitelist allowed mints.");
require( currentPrice().mul(numTokens) == msg.value, "Incorrect ether value sent. Please check again.");
for (uint256 i = 0; i < numTokens; i++) {
_safeMint(msg.sender, _nextTokenId());
totalMints[msg.sender]++;
whiteListMints[currentSalesRound][msg.sender]++;
}
updateSalesStatus();
}
function mintNFT(uint256 numTokens) external payable nonReentrant isSaleOpen {
require( currentSalesRound > salesRound.Wait, "Public Sales has not begun yet.");
require( currentSalesType == salesType.General, "Public sales is not available at the moment");
require( currentSalesStatus > salesStatus.Sold, "Public sales is not active at the moment.");
require( totalSupply() + numTokens <= soFarSupply(uint256(currentSalesRound)), "Exceeds current maximum NFT supply.");
require( totalSupply() + numTokens <= maxSupply, "Exceeds maximum NFT supply.");
require( numTokens > 0 && numTokens <= 10, "Invalid mint amount");
require( totalMints[msg.sender] + numTokens <= maxAllowedMints, "Address exceeds max allowed mints.");
require( currentPrice().mul(numTokens) == msg.value, "Incorrect ether value sent. Please check again.");
for (uint256 i = 0; i < numTokens; i++) {
_safeMint(msg.sender, _nextTokenId());
totalMints[msg.sender]++;
}
updateSalesStatus();
}
function mintReservedNFT(address[] calldata recipients, uint256 numTokens) external onlyOwner isSaleOpen {
require( numTokens > 0, "numTokens should be 1 or greater.");
require( totalSupply() + recipients.length * numTokens <= maxSupply, "Exceeds maximum NFT supply.");
require( reservedMinted + recipients.length * numTokens <= reservedSupply, "Exceeds maximum reserved supply.");
for (uint256 i = 0; i < recipients.length; i++) {
for (uint256 j = 0; j < numTokens; j++) {
_safeMint(recipients[i], _nextTokenId());
reservedMinted++;
}
}
updateSalesStatus();
}
function contractStatus() external view returns (uint256, uint256, uint256, uint256, uint256[5] memory,
salesRound, salesStatus, salesType ) {
return (totalSupply(), currentPrice(), maxAllowedMints, maxWhiteListMints, roundMaxSupply,
currentSalesRound, currentSalesStatus, currentSalesType);
}
function currentPrice() public view returns (uint256) {
if ( onPromo ) {
return promoPrice;
}
uint256 pricePerToken = 0.02 ether;
if ( currentSalesRound == salesRound.First ) {
pricePerToken = 0.02 ether;
} else if ( currentSalesRound == salesRound.Second ) {
pricePerToken = 0.04 ether;
} else if ( currentSalesRound == salesRound.Third ) {
pricePerToken = 0.06 ether;
} else if ( currentSalesRound == salesRound.Fourth ) {
pricePerToken = 0.08 ether;
}
return pricePerToken;
}
function soFarSupply(uint256 round) private view returns (uint256) {
uint256 supply;
for (uint256 i=1; i<=round; i++) {
supply += roundMaxSupply[i];
}
return supply;
}
function updateSalesStatus() private {
if ( currentSalesRound > salesRound.Wait && totalSupply() >= soFarSupply(uint256(currentSalesRound)) ) {
currentSalesStatus = salesStatus.Sold;
}
}
function withdraw(uint256 amount) external onlyOwner {
uint256 balance = address(this).balance;
require(amount <= balance, "The amount exceeds your balance");
payable(owner()).transfer(amount);
}
function hashMessage(address sender) private pure returns (bytes32) {
return keccak256(abi.encodePacked(sender));
}
function messageSigner(bytes32 messageHash, bytes memory signature) private pure returns (address) {
return messageHash.toEthSignedMessageHash().recover(signature);
}
function updateSigner(address newSigner) external onlyOwner {
require(newSigner != address(0));
_signer = newSigner;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./common/meta-transactions/ContentMixin.sol";
import "./common/meta-transactions/NativeMetaTransaction.sol";
contract OwnableDelegateProxy {}
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}
/**
* @title ERC721Tradable
* ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
*/
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
using SafeMath for uint256;
using Counters for Counters.Counter;
Counters.Counter private _nextTokenId;
address proxyRegistryAddress;
constructor(
string memory _name,
string memory _symbol,
address _proxyRegistryAddress
) ERC721(_name, _symbol) {
proxyRegistryAddress = _proxyRegistryAddress;
_nextTokenId.increment();
_initializeEIP712(_name);
}
/**
* @dev Mints a token to an address with a tokenURI.
* @param _to address of the future owner of the token
*/
function mintTo(address _to) public onlyOwner {
uint256 newTokenId = _nextTokenId.current();
_nextTokenId.increment();
_safeMint(_to, newTokenId);
}
function baseTokenURI() virtual public view returns (string memory);
function tokenURI(uint256 _tokenId) override public view returns (string memory) {
return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId), ".json"));
}
/**
* Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
*/
function isApprovedForAll(address owner, address operator)
override
public
view
returns (bool)
{
// Whitelist OpenSea proxy contract for easy trading.
ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
if (address(proxyRegistry.proxies(owner)) == operator) {
return true;
}
return super.isApprovedForAll(owner, operator);
}
/**
* This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
*/
function _msgSender()
internal
override
view
returns (address sender)
{
return ContextMixin.msgSender();
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} else if (error == RecoverError.InvalidSignatureV) {
revert("ECDSA: invalid signature 'v' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
// Check the signature length
// - case 65: r,s,v signature (standard)
// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else if (signature.length == 64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
return tryRecover(hash, r, vs);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s;
uint8 v;
assembly {
s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
v := add(shr(255, vs), 27)
}
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
if (v != 27 && v != 28) {
return (address(0), RecoverError.InvalidSignatureV);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract ContextMixin {
function msgSender()
internal
view
returns (address payable sender)
{
if (msg.sender == address(this)) {
bytes memory array = msg.data;
uint256 index = msg.data.length;
assembly {
// Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
sender := and(
mload(add(array, index)),
0xffffffffffffffffffffffffffffffffffffffff
)
}
} else {
sender = payable(msg.sender);
}
return sender;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";
contract NativeMetaTransaction is EIP712Base {
using SafeMath for uint256;
bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
bytes(
"MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
)
);
event MetaTransactionExecuted(
address userAddress,
address payable relayerAddress,
bytes functionSignature
);
mapping(address => uint256) nonces;
/*
* Meta transaction structure.
* No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
* He should call the desired function directly in that case.
*/
struct MetaTransaction {
uint256 nonce;
address from;
bytes functionSignature;
}
function executeMetaTransaction(
address userAddress,
bytes memory functionSignature,
bytes32 sigR,
bytes32 sigS,
uint8 sigV
) public payable returns (bytes memory) {
MetaTransaction memory metaTx = MetaTransaction({
nonce: nonces[userAddress],
from: userAddress,
functionSignature: functionSignature
});
require(
verify(userAddress, metaTx, sigR, sigS, sigV),
"Signer and signature do not match"
);
// increase nonce for user (to avoid re-use)
nonces[userAddress] = nonces[userAddress].add(1);
emit MetaTransactionExecuted(
userAddress,
payable(msg.sender),
functionSignature
);
// Append userAddress and relayer address at the end to extract it from calling context
(bool success, bytes memory returnData) = address(this).call(
abi.encodePacked(functionSignature, userAddress)
);
require(success, "Function call not successful");
return returnData;
}
function hashMetaTransaction(MetaTransaction memory metaTx)
internal
pure
returns (bytes32)
{
return
keccak256(
abi.encode(
META_TRANSACTION_TYPEHASH,
metaTx.nonce,
metaTx.from,
keccak256(metaTx.functionSignature)
)
);
}
function getNonce(address user) public view returns (uint256 nonce) {
nonce = nonces[user];
}
function verify(
address signer,
MetaTransaction memory metaTx,
bytes32 sigR,
bytes32 sigS,
uint8 sigV
) internal view returns (bool) {
require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
return
signer ==
ecrecover(
toTypedMessageHash(hashMetaTransaction(metaTx)),
sigV,
sigR,
sigS
);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @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.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.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.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^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.8.0;
import {Initializable} from "./Initializable.sol";
contract EIP712Base is Initializable {
struct EIP712Domain {
string name;
string version;
address verifyingContract;
bytes32 salt;
}
string constant public ERC712_VERSION = "1";
bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
bytes(
"EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
)
);
bytes32 internal domainSeperator;
// supposed to be called once while initializing.
// one of the contracts that inherits this contract follows proxy pattern
// so it is not possible to do this in a constructor
function _initializeEIP712(
string memory name
)
internal
initializer
{
_setDomainSeperator(name);
}
function _setDomainSeperator(string memory name) internal {
domainSeperator = keccak256(
abi.encode(
EIP712_DOMAIN_TYPEHASH,
keccak256(bytes(name)),
keccak256(bytes(ERC712_VERSION)),
address(this),
bytes32(getChainId())
)
);
}
function getDomainSeperator() public view returns (bytes32) {
return domainSeperator;
}
function getChainId() public view returns (uint256) {
uint256 id;
assembly {
id := chainid()
}
return id;
}
/**
* Accept message hash and returns hash message in EIP712 compatible form
* So that it can be used to recover signer from signature signed using EIP712 formatted data
* https://eips.ethereum.org/EIPS/eip-712
* "\\x19" makes the encoding deterministic
* "\\x01" is the version byte to make it compatible to EIP-191
*/
function toTypedMessageHash(bytes32 messageHash)
internal
view
returns (bytes32)
{
return
keccak256(
abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Initializable {
bool inited = false;
modifier initializer() {
require(!inited, "already inited");
_;
inited = true;
}
}{
"optimizer": {
"enabled": true,
"runs": 10000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"bURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"reservedSupply_","type":"uint256"},{"internalType":"uint256","name":"maxAllowedMints_","type":"uint256"},{"internalType":"uint256","name":"maxWhiteListMints_","type":"uint256"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256[5]","name":"","type":"uint256[5]"},{"internalType":"enum WishfulDolphin.salesRound","name":"","type":"uint8"},{"internalType":"enum WishfulDolphin.salesStatus","name":"","type":"uint8"},{"internalType":"enum WishfulDolphin.salesType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"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":"maxAllowedMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhiteListMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintReservedNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onPromo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"promoPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"bURI","type":"string"}],"name":"setBaseTokenURI","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxAllowedMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxWhiteListMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enablePromo","type":"bool"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"updatePromotion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"supplies","type":"uint256[]"}],"name":"updateRoundMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"sRound","type":"uint8"},{"internalType":"uint8","name":"sStatus","type":"uint8"},{"internalType":"uint8","name":"sType","type":"uint8"}],"name":"updateSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum WishfulDolphin.salesRound","name":"","type":"uint8"},{"internalType":"address","name":"","type":"address"}],"name":"whiteListMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c0604052600a805460ff199081169091556011805462ffffff19169055601a8054909116905566470de4df820000601b55601f80546001600160a01b0319167347ed4ee4021d3cf5e6582cef3e6756d1b88efb6e1790553480156200006457600080fd5b506040516200552538038062005525833981016040819052620000879162000508565b6040518060400160405280600f81526020016e2bb4b9b4333ab6102237b6383434b760891b8152506040518060400160405280600381526020016215d19160ea1b8152508682828160009080519060200190620000e69291906200042f565b508051620000fc9060019060208401906200042f565b50505062000119620001136200025660201b60201c565b62000272565b600f80546001600160a01b0319166001600160a01b0383161790556200014c600e620002c4602090811b62002e4217901c565b6200015783620002cd565b50506001601055506200016c60048562000634565b15620001ce5760405162461bcd60e51b815260206004820152602660248201527f6d6178537570706c79206d75737420626520646976697369626c65206279206e6044820152653ab6aa34b2b960d11b60648201526084015b60405180910390fd5b8551620001e39060129060208901906200042f565b50608084905260a0839052601382905560148190556000620002076004866200064b565b6000601555905060015b600481116200024857816015826005811062000231576200023162000662565b0155806200023f8162000678565b91505062000211565b5050505050505050620006df565b60006200026d6200032e60201b62002e4b1760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b600a5460ff1615620003135760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b6044820152606401620001c5565b6200031e816200038d565b50600a805460ff19166001179055565b6000333014156200038757600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200038a9050565b50335b90565b6040518060800160405280604f8152602001620054d6604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b8280546200043d90620006a2565b90600052602060002090601f016020900481019282620004615760008555620004ac565b82601f106200047c57805160ff1916838001178555620004ac565b82800160010185558215620004ac579182015b82811115620004ac5782518255916020019190600101906200048f565b50620004ba929150620004be565b5090565b5b80821115620004ba5760008155600101620004bf565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200050357600080fd5b919050565b60008060008060008060c087890312156200052257600080fd5b86516001600160401b03808211156200053a57600080fd5b818901915089601f8301126200054f57600080fd5b815181811115620005645762000564620004d5565b604051601f8201601f19908116603f011681019083821181831017156200058f576200058f620004d5565b81604052828152602093508c84848701011115620005ac57600080fd5b600091505b82821015620005d05784820184015181830185015290830190620005b1565b82821115620005e25760008484830101525b9950620005f4915050898201620004eb565b9650505060408701519350606087015192506080870151915060a087015190509295509295509295565b634e487b7160e01b600052601260045260246000fd5b6000826200064657620006466200061e565b500690565b6000826200065d576200065d6200061e565b500490565b634e487b7160e01b600052603260045260246000fd5b60006000198214156200069b57634e487b7160e01b600052601160045260246000fd5b5060010190565b600181811c90821680620006b757607f821691505b60208210811415620006d957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051614da062000736600039600081816106130152610b5b01526000818161086a015281816109c201528181610ad50152818161176c01528181611b5b01528181612063015261232c0152614da06000f3fe6080604052600436106103135760003560e01c80636352211e1161019a578063b88d4fde116100e1578063d6966cd81161008a578063e985e9c511610064578063e985e9c5146108e2578063f2fde38b14610902578063f9de3b011461092257600080fd5b8063d6966cd81461088c578063e17e7a65146108a2578063e448b36c146108c257600080fd5b8063cd42cbd4116100bb578063cd42cbd41461082d578063d547cfb714610843578063d5abeb011461085857600080fd5b8063b88d4fde146107c4578063c6ee20d2146107e4578063c87b56dd1461080d57600080fd5b80638da5cb5b116101435780639d1b464a1161011d5780639d1b464a1461076f578063a22cb46514610784578063a7ecd37e146107a457600080fd5b80638da5cb5b14610729578063926427441461074757806395d89b411461075a57600080fd5b80637228aa23116101745780637228aa23146106d6578063755edd17146106e95780638307fde71461070957600080fd5b80636352211e1461068157806370a08231146106a1578063715018a6146106c157600080fd5b80632e1a7d4d1161025e5780633f1be93e1161020757806344fead9e116101e157806344fead9e146106355780634f297ccc1461064b5780634f6ccce71461066157600080fd5b80633f1be93e146105a957806342842e0e146105e157806344d19d2b1461060157600080fd5b80633408e470116102385780633408e4701461055c5780633a9fbc561461056f5780633b6e1f491461058957600080fd5b80632e1a7d4d146104fc5780632f745c591461051c57806330176e131461053c57600080fd5b80630f7e5970116102c057806320863f731161029a57806320863f731461047957806323b872dd146104a65780632d0335ab146104c657600080fd5b80630f7e5970146103fc57806318160ddd1461044557806320379ee51461046457600080fd5b8063081812fc116102f1578063081812fc14610391578063095ea7b3146103c95780630c53c51c146103e957600080fd5b806301ebdc931461031857806301ffc9a71461033a57806306fdde031461036f575b600080fd5b34801561032457600080fd5b50610338610333366004614358565b610942565b005b34801561034657600080fd5b5061035a6103553660046143d2565b610c75565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610cd1565b6040516103669190614465565b34801561039d57600080fd5b506103b16103ac366004614478565b610d63565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103386103e43660046144a6565b610e09565b6103846103f73660046145bd565b610f48565b34801561040857600080fd5b506103846040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561045157600080fd5b506008545b604051908152602001610366565b34801561047057600080fd5b50600b54610456565b34801561048557600080fd5b50610456610494366004614631565b601d6020526000908152604090205481565b3480156104b257600080fd5b506103386104c136600461464e565b61116c565b3480156104d257600080fd5b506104566104e1366004614631565b6001600160a01b03166000908152600c602052604090205490565b34801561050857600080fd5b50610338610517366004614478565b6111fa565b34801561052857600080fd5b506104566105373660046144a6565b6112fe565b34801561054857600080fd5b506103386105573660046146d1565b6113a6565b34801561056857600080fd5b5046610456565b34801561057b57600080fd5b50601a5461035a9060ff1681565b34801561059557600080fd5b506103386105a4366004614478565b61142b565b3480156105b557600080fd5b506104566105c4366004614713565b601e60209081526000928352604080842090915290825290205481565b3480156105ed57600080fd5b506103386105fc36600461464e565b6114a9565b34801561060d57600080fd5b506104567f000000000000000000000000000000000000000000000000000000000000000081565b34801561064157600080fd5b5061045660135481565b34801561065757600080fd5b50610456601c5481565b34801561066d57600080fd5b5061045661067c366004614478565b6114c4565b34801561068d57600080fd5b506103b161069c366004614478565b611568565b3480156106ad57600080fd5b506104566106bc366004614631565b6115f3565b3480156106cd57600080fd5b5061033861168d565b6103386106e4366004614750565b611712565b3480156106f557600080fd5b50610338610704366004614631565b611e49565b34801561071557600080fd5b506103386107243660046147a3565b611eeb565b34801561073557600080fd5b50600d546001600160a01b03166103b1565b610338610755366004614478565b612009565b34801561076657600080fd5b50610384612577565b34801561077b57600080fd5b50610456612586565b34801561079057600080fd5b5061033861079f3660046147e9565b612659565b3480156107b057600080fd5b506103386107bf366004614631565b612779565b3480156107d057600080fd5b506103386107df36600461481e565b61283f565b3480156107f057600080fd5b506107f96128d4565b6040516103669897969594939291906148dd565b34801561081957600080fd5b50610384610828366004614478565b612966565b34801561083957600080fd5b50610456601b5481565b34801561084f57600080fd5b506103846129a0565b34801561086457600080fd5b506104567f000000000000000000000000000000000000000000000000000000000000000081565b34801561089857600080fd5b5061045660145481565b3480156108ae57600080fd5b506103386108bd366004614965565b6129af565b3480156108ce57600080fd5b506103386108dd366004614478565b612a5d565b3480156108ee57600080fd5b5061035a6108fd366004614981565b612adb565b34801561090e57600080fd5b5061033861091d366004614631565b612bc4565b34801561092e57600080fd5b5061033861093d36600461499f565b612cc5565b61094a612ea8565b6001600160a01b0316610965600d546001600160a01b031690565b6001600160a01b0316146109c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006109ea60085490565b10610a5d5760405162461bcd60e51b815260206004820152602560248201527f536f7272792c20416c6c205769736866756c20446f6c7068696e73206172652060448201527f736f6c642e00000000000000000000000000000000000000000000000000000060648201526084016109b7565b60008111610ad35760405162461bcd60e51b815260206004820152602160248201527f6e756d546f6b656e732073686f756c642062652031206f72206772656174657260448201527f2e0000000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b7f0000000000000000000000000000000000000000000000000000000000000000610afe8284614a11565b600854610b0b9190614a4e565b1115610b595760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178696d756d204e465420737570706c792e000000000060448201526064016109b7565b7f0000000000000000000000000000000000000000000000000000000000000000610b848284614a11565b601c54610b919190614a4e565b1115610bdf5760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178696d756d20726573657276656420737570706c792e60448201526064016109b7565b60005b82811015610c675760005b82811015610c5457610c2c858584818110610c0a57610c0a614a66565b9050602002016020810190610c1f9190614631565b610c27612eb7565b612ecd565b601c8054906000610c3c83614a95565b91905055508080610c4c90614a95565b915050610bed565b5080610c5f81614a95565b915050610be2565b50610c70612ee7565b505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610ccb5750610ccb82612f5c565b92915050565b606060008054610ce090614ace565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0c90614ace565b8015610d595780601f10610d2e57610100808354040283529160200191610d59565b820191906000526020600020905b815481529060010190602001808311610d3c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ded5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109b7565b506000908152600460205260409020546001600160a01b031690565b6000610e1482611568565b9050806001600160a01b0316836001600160a01b03161415610e9e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b806001600160a01b0316610eb0612ea8565b6001600160a01b03161480610ecc5750610ecc816108fd612ea8565b610f3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b7565b610c70838361303f565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610f8687828787876130c5565b610ff85760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b6001600160a01b0387166000908152600c602052604090205461101c9060016131cd565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061106c90899033908a90614b22565b60405180910390a1600080306001600160a01b0316888a604051602001611094929190614b57565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290526110cc91614ba1565b6000604051808303816000865af19150503d8060008114611109576040519150601f19603f3d011682016040523d82523d6000602084013e61110e565b606091505b5091509150816111605760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016109b7565b98975050505050505050565b61117d611177612ea8565b826131e0565b6111ef5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109b7565b610c708383836132c0565b611202612ea8565b6001600160a01b031661121d600d546001600160a01b031690565b6001600160a01b0316146112735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b47808211156112c45760405162461bcd60e51b815260206004820152601f60248201527f54686520616d6f756e74206578636565647320796f75722062616c616e63650060448201526064016109b7565b600d546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610c70573d6000803e3d6000fd5b6000611309836115f3565b821061137d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016109b7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6113ae612ea8565b6001600160a01b03166113c9600d546001600160a01b031690565b6001600160a01b03161461141f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b610c706012838361423e565b611433612ea8565b6001600160a01b031661144e600d546001600160a01b031690565b6001600160a01b0316146114a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b601455565b610c708383836040518060200160405280600081525061283f565b60006114cf60085490565b82106115435760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016109b7565b6008828154811061155657611556614a66565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610ccb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109b7565b60006001600160a01b0382166116715760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109b7565b506001600160a01b031660009081526003602052604090205490565b611695612ea8565b6001600160a01b03166116b0600d546001600160a01b031690565b6001600160a01b0316146117065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b61171060006134b0565b565b600260105414156117655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109b7565b60026010557f000000000000000000000000000000000000000000000000000000000000000061179460085490565b106118075760405162461bcd60e51b815260206004820152602560248201527f536f7272792c20416c6c205769736866756c20446f6c7068696e73206172652060448201527f736f6c642e00000000000000000000000000000000000000000000000000000060648201526084016109b7565b600060115460ff1660048111156118205761182061488a565b116118935760405162461bcd60e51b815260206004820152602260248201527f57686974656c6973742053616c657320686173206e6f7420626567756e20796560448201527f742e00000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b600160115462010000900460ff1660018111156118b2576118b261488a565b146119255760405162461bcd60e51b815260206004820152602f60248201527f57686974656c6973742073616c6573206973206e6f7420617661696c61626c6560448201527f20617420746865206d6f6d656e742e000000000000000000000000000000000060648201526084016109b7565b6001601154610100900460ff1660028111156119435761194361488a565b116119b65760405162461bcd60e51b815260206004820152602c60248201527f57686974656c6973742073616c6573206973206e6f742061637469766520617460448201527f20746865206d6f6d656e742e000000000000000000000000000000000000000060648201526084016109b7565b836119c03361351a565b14611a0d5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964204d657373616765000000000000000000000000000000000060448201526064016109b7565b601f80546040805160209386018490048402810184019091528481526001600160a01b0390911691611a5b918791879087908190840183828082843760009201919091525061356d92505050565b6001600160a01b031614611ab15760405162461bcd60e51b815260206004820152601b60248201527f5369676e61747572652076616c69646174696f6e206661696c6564000000000060448201526064016109b7565b601154611ad19060ff166004811115611acc57611acc61488a565b613582565b81611adb60085490565b611ae59190614a4e565b1115611b595760405162461bcd60e51b815260206004820152602360248201527f457863656564732063757272656e74206d6178696d756d204e4654207375707060448201527f6c792e000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b7f000000000000000000000000000000000000000000000000000000000000000081611b8460085490565b611b8e9190614a4e565b1115611bdc5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178696d756d204e465420737570706c792e000000000060448201526064016109b7565b600081118015611bee57506014548111155b611c3a5760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e740000000000000000000000000060448201526064016109b7565b6014546011548290601e9060009060ff166004811115611c5c57611c5c61488a565b6004811115611c6d57611c6d61488a565b815260208082019290925260409081016000908120338252909252902054611c959190614a4e565b1115611d095760405162461bcd60e51b815260206004820152602c60248201527f416464726573732065786365656473206d61782077686974656c69737420616c60448201527f6c6f776564206d696e74732e000000000000000000000000000000000000000060648201526084016109b7565b34611d1c82611d16612586565b906135c9565b14611d8f5760405162461bcd60e51b815260206004820152602f60248201527f496e636f72726563742065746865722076616c75652073656e742e20506c656160448201527f736520636865636b20616761696e2e000000000000000000000000000000000060648201526084016109b7565b60005b81811015611e3557611da633610c27612eb7565b336000908152601d60205260408120805491611dc183614a95565b9091555050601154601e9060009060ff166004811115611de357611de361488a565b6004811115611df457611df461488a565b8152602080820192909252604090810160009081203382529092528120805491611e1d83614a95565b91905055508080611e2d90614a95565b915050611d92565b50611e3e612ee7565b505060016010555050565b611e51612ea8565b6001600160a01b0316611e6c600d546001600160a01b031690565b6001600160a01b031614611ec25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b6000611ecd600e5490565b9050611edd600e80546001019055565b611ee78282612ecd565b5050565b611ef3612ea8565b6001600160a01b0316611f0e600d546001600160a01b031690565b6001600160a01b031614611f645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b611f7060046001614a4e565b8114611fbe5760405162461bcd60e51b815260206004820152601960248201527f596f75206e65656420352075696e743235362076616c7565730000000000000060448201526064016109b7565b60005b81811015610c7057828282818110611fdb57611fdb614a66565b9050602002013560158260058110611ff557611ff5614a66565b01558061200181614a95565b915050611fc1565b6002601054141561205c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109b7565b60026010557f000000000000000000000000000000000000000000000000000000000000000061208b60085490565b106120fe5760405162461bcd60e51b815260206004820152602560248201527f536f7272792c20416c6c205769736866756c20446f6c7068696e73206172652060448201527f736f6c642e00000000000000000000000000000000000000000000000000000060648201526084016109b7565b600060115460ff1660048111156121175761211761488a565b116121645760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632053616c657320686173206e6f7420626567756e207965742e0060448201526064016109b7565b600060115462010000900460ff1660018111156121835761218361488a565b146121f65760405162461bcd60e51b815260206004820152602b60248201527f5075626c69632073616c6573206973206e6f7420617661696c61626c6520617460448201527f20746865206d6f6d656e7400000000000000000000000000000000000000000060648201526084016109b7565b6001601154610100900460ff1660028111156122145761221461488a565b116122875760405162461bcd60e51b815260206004820152602960248201527f5075626c69632073616c6573206973206e6f742061637469766520617420746860448201527f65206d6f6d656e742e000000000000000000000000000000000000000000000060648201526084016109b7565b6011546122a29060ff166004811115611acc57611acc61488a565b816122ac60085490565b6122b69190614a4e565b111561232a5760405162461bcd60e51b815260206004820152602360248201527f457863656564732063757272656e74206d6178696d756d204e4654207375707060448201527f6c792e000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b7f00000000000000000000000000000000000000000000000000000000000000008161235560085490565b61235f9190614a4e565b11156123ad5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178696d756d204e465420737570706c792e000000000060448201526064016109b7565b6000811180156123be5750600a8111155b61240a5760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e740000000000000000000000000060448201526064016109b7565b601354336000908152601d6020526040902054612428908390614a4e565b111561249c5760405162461bcd60e51b815260206004820152602260248201527f416464726573732065786365656473206d617820616c6c6f776564206d696e7460448201527f732e00000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b346124a982611d16612586565b1461251c5760405162461bcd60e51b815260206004820152602f60248201527f496e636f72726563742065746865722076616c75652073656e742e20506c656160448201527f736520636865636b20616761696e2e000000000000000000000000000000000060648201526084016109b7565b60005b818110156125665761253333610c27612eb7565b336000908152601d6020526040812080549161254e83614a95565b9190505550808061255e90614a95565b91505061251f565b5061256f612ee7565b506001601055565b606060018054610ce090614ace565b601a5460009060ff161561259b5750601b5490565b66470de4df820000600160115460ff1660048111156125bc576125bc61488a565b14156125d0575066470de4df820000919050565b600260115460ff1660048111156125e9576125e961488a565b14156125fd5750668e1bc9bf040000919050565b600360115460ff1660048111156126165761261661488a565b141561262a575066d529ae9e860000919050565b600460115460ff1660048111156126435761264361488a565b1415612654575067011c37937e0800005b919050565b612661612ea8565b6001600160a01b0316826001600160a01b031614156126c25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b7565b80600560006126cf612ea8565b6001600160a01b0390811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692151592909217909155612731612ea8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161276d911515815260200190565b60405180910390a35050565b612781612ea8565b6001600160a01b031661279c600d546001600160a01b031690565b6001600160a01b0316146127f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b6001600160a01b03811661280557600080fd5b601f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b61285061284a612ea8565b836131e0565b6128c25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109b7565b6128ce848484846135d5565b50505050565b6000806000806128e26142e0565b60008060006128f060085490565b6128f8612586565b6013546014546011546040805160a081019182905260159260ff808216936101008304821693620100009093049091169190859060059082845b8154815260200190600101908083116129325750505050509350975097509750975097509750975097509091929394959697565b60606129706129a0565b6129798361365e565b60405160200161298a929190614bbd565b6040516020818303038152906040529050919050565b606060128054610ce090614ace565b6129b7612ea8565b6001600160a01b03166129d2600d546001600160a01b031690565b6001600160a01b031614612a285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b601a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692151592909217909155601b55565b612a65612ea8565b6001600160a01b0316612a80600d546001600160a01b031690565b6001600160a01b031614612ad65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b601355565b600f546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015612b4157600080fd5b505afa158015612b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b799190614c14565b6001600160a01b03161415612b92576001915050610ccb565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b612bcc612ea8565b6001600160a01b0316612be7600d546001600160a01b031690565b6001600160a01b031614612c3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b6001600160a01b038116612cb95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109b7565b612cc2816134b0565b50565b612ccd612ea8565b6001600160a01b0316612ce8600d546001600160a01b031690565b6001600160a01b031614612d3e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b8260ff166004811115612d5357612d5361488a565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001836004811115612d8d57612d8d61488a565b02179055508160ff166002811115612da757612da761488a565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100836002811115612de257612de261488a565b02179055508060ff166001811115612dfc57612dfc61488a565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000836001811115612e3857612e3861488a565b0217905550505050565b80546001019055565b600033301415612ea257600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150612ea59050565b50335b90565b6000612eb2612e4b565b905090565b6000612ec260085490565b612eb2906001614a4e565b611ee7828260405180602001604052806000815250613790565b600060115460ff166004811115612f0057612f0061488a565b118015612f295750601154612f239060ff166004811115611acc57611acc61488a565b60085410155b1561171057601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612fef57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ccb57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610ccb565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061308c82611568565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166131435760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e455200000000000000000000000000000000000000000000000000000060648201526084016109b7565b600161315661315187613819565b613879565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156131a4573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006131d98284614a4e565b9392505050565b6000818152600260205260408120546001600160a01b031661326a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109b7565b600061327583611568565b9050806001600160a01b0316846001600160a01b031614806132b05750836001600160a01b03166132a584610d63565b6001600160a01b0316145b80612bbc5750612bbc8185612adb565b826001600160a01b03166132d382611568565b6001600160a01b03161461334f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109b7565b6001600160a01b0382166133ca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109b7565b6133d58383836138c4565b6133e060008261303f565b6001600160a01b0383166000908152600360205260408120805460019290613409908490614c31565b90915550506001600160a01b0382166000908152600360205260408120805460019290613437908490614a4e565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606083901b1660208201526000906034015b604051602081830303815290604052805190602001209050919050565b60006131d98261357c8561397c565b906139b7565b60008060015b8381116135c257601581600581106135a2576135a2614a66565b01546135ae9083614a4e565b9150806135ba81614a95565b915050613588565b5092915050565b60006131d98284614a11565b6135e08484846132c0565b6135ec848484846139db565b6128ce5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b7565b60608161369e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156136c857806136b281614a95565b91506136c19050600a83614c77565b91506136a2565b60008167ffffffffffffffff8111156136e3576136e36144d2565b6040519080825280601f01601f19166020018201604052801561370d576020820181803683370190505b5090505b8415612bbc57613722600183614c31565b915061372f600a86614c8b565b61373a906030614a4e565b60f81b81838151811061374f5761374f614a66565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613789600a86614c77565b9450613711565b61379a8383613b94565b6137a760008484846139db565b610c705760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b7565b6000604051806080016040528060438152602001614d286043913980516020918201208351848301516040808701518051908601209051613550950193845260208401929092526001600160a01b03166040830152606082015260800190565b6000613884600b5490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201613550565b6001600160a01b03831661391f5761391a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613942565b816001600160a01b0316836001600160a01b031614613942576139428382613cfa565b6001600160a01b03821661395957610c7081613d97565b826001600160a01b0316826001600160a01b031614610c7057610c708282613e46565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01613550565b60008060006139c68585613e8a565b915091506139d381613efa565b509392505050565b60006001600160a01b0384163b15613b8957836001600160a01b031663150b7a02613a04612ea8565b8786866040518563ffffffff1660e01b8152600401613a269493929190614c9f565b602060405180830381600087803b158015613a4057600080fd5b505af1925050508015613a8e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613a8b91810190614cdb565b60015b613b3e573d808015613abc576040519150601f19603f3d011682016040523d82523d6000602084013e613ac1565b606091505b508051613b365760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612bbc565b506001949350505050565b6001600160a01b038216613bea5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b7565b6000818152600260205260409020546001600160a01b031615613c4f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b7565b613c5b600083836138c4565b6001600160a01b0382166000908152600360205260408120805460019290613c84908490614a4e565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613d07846115f3565b613d119190614c31565b600083815260076020526040902054909150808214613d64576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613da990600190614c31565b60008381526009602052604081205460088054939450909284908110613dd157613dd1614a66565b906000526020600020015490508060088381548110613df257613df2614a66565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613e2a57613e2a614cf8565b6001900381819060005260206000200160009055905550505050565b6000613e51836115f3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600080825160411415613ec15760208301516040840151606085015160001a613eb5878285856140eb565b94509450505050613ef3565b825160401415613eeb5760208301516040840151613ee08683836141f6565b935093505050613ef3565b506000905060025b9250929050565b6000816004811115613f0e57613f0e61488a565b1415613f175750565b6001816004811115613f2b57613f2b61488a565b1415613f795760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109b7565b6002816004811115613f8d57613f8d61488a565b1415613fdb5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109b7565b6003816004811115613fef57613fef61488a565b14156140635760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b60048160048111156140775761407761488a565b1415612cc25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561412257506000905060036141ed565b8460ff16601b1415801561413a57508460ff16601c14155b1561414b57506000905060046141ed565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561419f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b0381166141e6576000600192509250506141ed565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01614230878288856140eb565b935093505050935093915050565b82805461424a90614ace565b90600052602060002090601f01602090048101928261426c57600085556142d0565b82601f106142a3578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008235161785556142d0565b828001600101855582156142d0579182015b828111156142d05782358255916020019190600101906142b5565b506142dc9291506142fe565b5090565b6040518060a001604052806005906020820280368337509192915050565b5b808211156142dc57600081556001016142ff565b60008083601f84011261432557600080fd5b50813567ffffffffffffffff81111561433d57600080fd5b6020830191508360208260051b8501011115613ef357600080fd5b60008060006040848603121561436d57600080fd5b833567ffffffffffffffff81111561438457600080fd5b61439086828701614313565b909790965060209590950135949350505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612cc257600080fd5b6000602082840312156143e457600080fd5b81356131d9816143a4565b60005b8381101561440a5781810151838201526020016143f2565b838111156128ce5750506000910152565b600081518084526144338160208601602086016143ef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006131d9602083018461441b565b60006020828403121561448a57600080fd5b5035919050565b6001600160a01b0381168114612cc257600080fd5b600080604083850312156144b957600080fd5b82356144c481614491565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261451257600080fd5b813567ffffffffffffffff8082111561452d5761452d6144d2565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614573576145736144d2565b8160405283815286602085880101111561458c57600080fd5b836020870160208301376000602085830101528094505050505092915050565b803560ff8116811461265457600080fd5b600080600080600060a086880312156145d557600080fd5b85356145e081614491565b9450602086013567ffffffffffffffff8111156145fc57600080fd5b61460888828901614501565b9450506040860135925060608601359150614625608087016145ac565b90509295509295909350565b60006020828403121561464357600080fd5b81356131d981614491565b60008060006060848603121561466357600080fd5b833561466e81614491565b9250602084013561467e81614491565b929592945050506040919091013590565b60008083601f8401126146a157600080fd5b50813567ffffffffffffffff8111156146b957600080fd5b602083019150836020828501011115613ef357600080fd5b600080602083850312156146e457600080fd5b823567ffffffffffffffff8111156146fb57600080fd5b6147078582860161468f565b90969095509350505050565b6000806040838503121561472657600080fd5b82356005811061473557600080fd5b9150602083013561474581614491565b809150509250929050565b6000806000806060858703121561476657600080fd5b84359350602085013567ffffffffffffffff81111561478457600080fd5b6147908782880161468f565b9598909750949560400135949350505050565b600080602083850312156147b657600080fd5b823567ffffffffffffffff8111156147cd57600080fd5b61470785828601614313565b8035801515811461265457600080fd5b600080604083850312156147fc57600080fd5b823561480781614491565b9150614815602084016147d9565b90509250929050565b6000806000806080858703121561483457600080fd5b843561483f81614491565b9350602085013561484f81614491565b925060408501359150606085013567ffffffffffffffff81111561487257600080fd5b61487e87828801614501565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106148c9576148c961488a565b9052565b600281106148c9576148c961488a565b60006101808201905089825260208981840152886040840152876060840152608083018760005b600581101561492157815183529183019190830190600101614904565b50505050600585106149355761493561488a565b8461012083015261494a6101408301856148b9565b6149586101608301846148cd565b9998505050505050505050565b6000806040838503121561497857600080fd5b6144c4836147d9565b6000806040838503121561499457600080fd5b823561473581614491565b6000806000606084860312156149b457600080fd5b6149bd846145ac565b92506149cb602085016145ac565b91506149d9604085016145ac565b90509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a4957614a496149e2565b500290565b60008219821115614a6157614a616149e2565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ac757614ac76149e2565b5060010190565b600181811c90821680614ae257607f821691505b60208210811415614b1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006001600160a01b03808616835280851660208401525060606040830152614b4e606083018461441b565b95945050505050565b60008351614b698184602088016143ef565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008251614bb38184602087016143ef565b9190910192915050565b60008351614bcf8184602088016143ef565b835190830190614be38183602088016143ef565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600060208284031215614c2657600080fd5b81516131d981614491565b600082821015614c4357614c436149e2565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614c8657614c86614c48565b500490565b600082614c9a57614c9a614c48565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152614cd1608083018461441b565b9695505050505050565b600060208284031215614ced57600080fd5b81516131d9816143a4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220fc955912dde23273aa7702d6f869f9ab1eadbad8ec0cc1998d65778a47cf389164736f6c63430008090033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e7769736866756c646f6c7068696e2e696f2f6d657461646174612f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103135760003560e01c80636352211e1161019a578063b88d4fde116100e1578063d6966cd81161008a578063e985e9c511610064578063e985e9c5146108e2578063f2fde38b14610902578063f9de3b011461092257600080fd5b8063d6966cd81461088c578063e17e7a65146108a2578063e448b36c146108c257600080fd5b8063cd42cbd4116100bb578063cd42cbd41461082d578063d547cfb714610843578063d5abeb011461085857600080fd5b8063b88d4fde146107c4578063c6ee20d2146107e4578063c87b56dd1461080d57600080fd5b80638da5cb5b116101435780639d1b464a1161011d5780639d1b464a1461076f578063a22cb46514610784578063a7ecd37e146107a457600080fd5b80638da5cb5b14610729578063926427441461074757806395d89b411461075a57600080fd5b80637228aa23116101745780637228aa23146106d6578063755edd17146106e95780638307fde71461070957600080fd5b80636352211e1461068157806370a08231146106a1578063715018a6146106c157600080fd5b80632e1a7d4d1161025e5780633f1be93e1161020757806344fead9e116101e157806344fead9e146106355780634f297ccc1461064b5780634f6ccce71461066157600080fd5b80633f1be93e146105a957806342842e0e146105e157806344d19d2b1461060157600080fd5b80633408e470116102385780633408e4701461055c5780633a9fbc561461056f5780633b6e1f491461058957600080fd5b80632e1a7d4d146104fc5780632f745c591461051c57806330176e131461053c57600080fd5b80630f7e5970116102c057806320863f731161029a57806320863f731461047957806323b872dd146104a65780632d0335ab146104c657600080fd5b80630f7e5970146103fc57806318160ddd1461044557806320379ee51461046457600080fd5b8063081812fc116102f1578063081812fc14610391578063095ea7b3146103c95780630c53c51c146103e957600080fd5b806301ebdc931461031857806301ffc9a71461033a57806306fdde031461036f575b600080fd5b34801561032457600080fd5b50610338610333366004614358565b610942565b005b34801561034657600080fd5b5061035a6103553660046143d2565b610c75565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610cd1565b6040516103669190614465565b34801561039d57600080fd5b506103b16103ac366004614478565b610d63565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103386103e43660046144a6565b610e09565b6103846103f73660046145bd565b610f48565b34801561040857600080fd5b506103846040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561045157600080fd5b506008545b604051908152602001610366565b34801561047057600080fd5b50600b54610456565b34801561048557600080fd5b50610456610494366004614631565b601d6020526000908152604090205481565b3480156104b257600080fd5b506103386104c136600461464e565b61116c565b3480156104d257600080fd5b506104566104e1366004614631565b6001600160a01b03166000908152600c602052604090205490565b34801561050857600080fd5b50610338610517366004614478565b6111fa565b34801561052857600080fd5b506104566105373660046144a6565b6112fe565b34801561054857600080fd5b506103386105573660046146d1565b6113a6565b34801561056857600080fd5b5046610456565b34801561057b57600080fd5b50601a5461035a9060ff1681565b34801561059557600080fd5b506103386105a4366004614478565b61142b565b3480156105b557600080fd5b506104566105c4366004614713565b601e60209081526000928352604080842090915290825290205481565b3480156105ed57600080fd5b506103386105fc36600461464e565b6114a9565b34801561060d57600080fd5b506104567f000000000000000000000000000000000000000000000000000000000000012c81565b34801561064157600080fd5b5061045660135481565b34801561065757600080fd5b50610456601c5481565b34801561066d57600080fd5b5061045661067c366004614478565b6114c4565b34801561068d57600080fd5b506103b161069c366004614478565b611568565b3480156106ad57600080fd5b506104566106bc366004614631565b6115f3565b3480156106cd57600080fd5b5061033861168d565b6103386106e4366004614750565b611712565b3480156106f557600080fd5b50610338610704366004614631565b611e49565b34801561071557600080fd5b506103386107243660046147a3565b611eeb565b34801561073557600080fd5b50600d546001600160a01b03166103b1565b610338610755366004614478565b612009565b34801561076657600080fd5b50610384612577565b34801561077b57600080fd5b50610456612586565b34801561079057600080fd5b5061033861079f3660046147e9565b612659565b3480156107b057600080fd5b506103386107bf366004614631565b612779565b3480156107d057600080fd5b506103386107df36600461481e565b61283f565b3480156107f057600080fd5b506107f96128d4565b6040516103669897969594939291906148dd565b34801561081957600080fd5b50610384610828366004614478565b612966565b34801561083957600080fd5b50610456601b5481565b34801561084f57600080fd5b506103846129a0565b34801561086457600080fd5b506104567f000000000000000000000000000000000000000000000000000000000000271081565b34801561089857600080fd5b5061045660145481565b3480156108ae57600080fd5b506103386108bd366004614965565b6129af565b3480156108ce57600080fd5b506103386108dd366004614478565b612a5d565b3480156108ee57600080fd5b5061035a6108fd366004614981565b612adb565b34801561090e57600080fd5b5061033861091d366004614631565b612bc4565b34801561092e57600080fd5b5061033861093d36600461499f565b612cc5565b61094a612ea8565b6001600160a01b0316610965600d546001600160a01b031690565b6001600160a01b0316146109c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000027106109ea60085490565b10610a5d5760405162461bcd60e51b815260206004820152602560248201527f536f7272792c20416c6c205769736866756c20446f6c7068696e73206172652060448201527f736f6c642e00000000000000000000000000000000000000000000000000000060648201526084016109b7565b60008111610ad35760405162461bcd60e51b815260206004820152602160248201527f6e756d546f6b656e732073686f756c642062652031206f72206772656174657260448201527f2e0000000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b7f0000000000000000000000000000000000000000000000000000000000002710610afe8284614a11565b600854610b0b9190614a4e565b1115610b595760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178696d756d204e465420737570706c792e000000000060448201526064016109b7565b7f000000000000000000000000000000000000000000000000000000000000012c610b848284614a11565b601c54610b919190614a4e565b1115610bdf5760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178696d756d20726573657276656420737570706c792e60448201526064016109b7565b60005b82811015610c675760005b82811015610c5457610c2c858584818110610c0a57610c0a614a66565b9050602002016020810190610c1f9190614631565b610c27612eb7565b612ecd565b601c8054906000610c3c83614a95565b91905055508080610c4c90614a95565b915050610bed565b5080610c5f81614a95565b915050610be2565b50610c70612ee7565b505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610ccb5750610ccb82612f5c565b92915050565b606060008054610ce090614ace565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0c90614ace565b8015610d595780601f10610d2e57610100808354040283529160200191610d59565b820191906000526020600020905b815481529060010190602001808311610d3c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ded5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109b7565b506000908152600460205260409020546001600160a01b031690565b6000610e1482611568565b9050806001600160a01b0316836001600160a01b03161415610e9e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b806001600160a01b0316610eb0612ea8565b6001600160a01b03161480610ecc5750610ecc816108fd612ea8565b610f3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b7565b610c70838361303f565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610f8687828787876130c5565b610ff85760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b6001600160a01b0387166000908152600c602052604090205461101c9060016131cd565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061106c90899033908a90614b22565b60405180910390a1600080306001600160a01b0316888a604051602001611094929190614b57565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290526110cc91614ba1565b6000604051808303816000865af19150503d8060008114611109576040519150601f19603f3d011682016040523d82523d6000602084013e61110e565b606091505b5091509150816111605760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016109b7565b98975050505050505050565b61117d611177612ea8565b826131e0565b6111ef5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109b7565b610c708383836132c0565b611202612ea8565b6001600160a01b031661121d600d546001600160a01b031690565b6001600160a01b0316146112735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b47808211156112c45760405162461bcd60e51b815260206004820152601f60248201527f54686520616d6f756e74206578636565647320796f75722062616c616e63650060448201526064016109b7565b600d546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610c70573d6000803e3d6000fd5b6000611309836115f3565b821061137d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016109b7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6113ae612ea8565b6001600160a01b03166113c9600d546001600160a01b031690565b6001600160a01b03161461141f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b610c706012838361423e565b611433612ea8565b6001600160a01b031661144e600d546001600160a01b031690565b6001600160a01b0316146114a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b601455565b610c708383836040518060200160405280600081525061283f565b60006114cf60085490565b82106115435760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016109b7565b6008828154811061155657611556614a66565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610ccb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109b7565b60006001600160a01b0382166116715760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109b7565b506001600160a01b031660009081526003602052604090205490565b611695612ea8565b6001600160a01b03166116b0600d546001600160a01b031690565b6001600160a01b0316146117065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b61171060006134b0565b565b600260105414156117655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109b7565b60026010557f000000000000000000000000000000000000000000000000000000000000271061179460085490565b106118075760405162461bcd60e51b815260206004820152602560248201527f536f7272792c20416c6c205769736866756c20446f6c7068696e73206172652060448201527f736f6c642e00000000000000000000000000000000000000000000000000000060648201526084016109b7565b600060115460ff1660048111156118205761182061488a565b116118935760405162461bcd60e51b815260206004820152602260248201527f57686974656c6973742053616c657320686173206e6f7420626567756e20796560448201527f742e00000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b600160115462010000900460ff1660018111156118b2576118b261488a565b146119255760405162461bcd60e51b815260206004820152602f60248201527f57686974656c6973742073616c6573206973206e6f7420617661696c61626c6560448201527f20617420746865206d6f6d656e742e000000000000000000000000000000000060648201526084016109b7565b6001601154610100900460ff1660028111156119435761194361488a565b116119b65760405162461bcd60e51b815260206004820152602c60248201527f57686974656c6973742073616c6573206973206e6f742061637469766520617460448201527f20746865206d6f6d656e742e000000000000000000000000000000000000000060648201526084016109b7565b836119c03361351a565b14611a0d5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964204d657373616765000000000000000000000000000000000060448201526064016109b7565b601f80546040805160209386018490048402810184019091528481526001600160a01b0390911691611a5b918791879087908190840183828082843760009201919091525061356d92505050565b6001600160a01b031614611ab15760405162461bcd60e51b815260206004820152601b60248201527f5369676e61747572652076616c69646174696f6e206661696c6564000000000060448201526064016109b7565b601154611ad19060ff166004811115611acc57611acc61488a565b613582565b81611adb60085490565b611ae59190614a4e565b1115611b595760405162461bcd60e51b815260206004820152602360248201527f457863656564732063757272656e74206d6178696d756d204e4654207375707060448201527f6c792e000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b7f000000000000000000000000000000000000000000000000000000000000271081611b8460085490565b611b8e9190614a4e565b1115611bdc5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178696d756d204e465420737570706c792e000000000060448201526064016109b7565b600081118015611bee57506014548111155b611c3a5760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e740000000000000000000000000060448201526064016109b7565b6014546011548290601e9060009060ff166004811115611c5c57611c5c61488a565b6004811115611c6d57611c6d61488a565b815260208082019290925260409081016000908120338252909252902054611c959190614a4e565b1115611d095760405162461bcd60e51b815260206004820152602c60248201527f416464726573732065786365656473206d61782077686974656c69737420616c60448201527f6c6f776564206d696e74732e000000000000000000000000000000000000000060648201526084016109b7565b34611d1c82611d16612586565b906135c9565b14611d8f5760405162461bcd60e51b815260206004820152602f60248201527f496e636f72726563742065746865722076616c75652073656e742e20506c656160448201527f736520636865636b20616761696e2e000000000000000000000000000000000060648201526084016109b7565b60005b81811015611e3557611da633610c27612eb7565b336000908152601d60205260408120805491611dc183614a95565b9091555050601154601e9060009060ff166004811115611de357611de361488a565b6004811115611df457611df461488a565b8152602080820192909252604090810160009081203382529092528120805491611e1d83614a95565b91905055508080611e2d90614a95565b915050611d92565b50611e3e612ee7565b505060016010555050565b611e51612ea8565b6001600160a01b0316611e6c600d546001600160a01b031690565b6001600160a01b031614611ec25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b6000611ecd600e5490565b9050611edd600e80546001019055565b611ee78282612ecd565b5050565b611ef3612ea8565b6001600160a01b0316611f0e600d546001600160a01b031690565b6001600160a01b031614611f645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b611f7060046001614a4e565b8114611fbe5760405162461bcd60e51b815260206004820152601960248201527f596f75206e65656420352075696e743235362076616c7565730000000000000060448201526064016109b7565b60005b81811015610c7057828282818110611fdb57611fdb614a66565b9050602002013560158260058110611ff557611ff5614a66565b01558061200181614a95565b915050611fc1565b6002601054141561205c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109b7565b60026010557f000000000000000000000000000000000000000000000000000000000000271061208b60085490565b106120fe5760405162461bcd60e51b815260206004820152602560248201527f536f7272792c20416c6c205769736866756c20446f6c7068696e73206172652060448201527f736f6c642e00000000000000000000000000000000000000000000000000000060648201526084016109b7565b600060115460ff1660048111156121175761211761488a565b116121645760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632053616c657320686173206e6f7420626567756e207965742e0060448201526064016109b7565b600060115462010000900460ff1660018111156121835761218361488a565b146121f65760405162461bcd60e51b815260206004820152602b60248201527f5075626c69632073616c6573206973206e6f7420617661696c61626c6520617460448201527f20746865206d6f6d656e7400000000000000000000000000000000000000000060648201526084016109b7565b6001601154610100900460ff1660028111156122145761221461488a565b116122875760405162461bcd60e51b815260206004820152602960248201527f5075626c69632073616c6573206973206e6f742061637469766520617420746860448201527f65206d6f6d656e742e000000000000000000000000000000000000000000000060648201526084016109b7565b6011546122a29060ff166004811115611acc57611acc61488a565b816122ac60085490565b6122b69190614a4e565b111561232a5760405162461bcd60e51b815260206004820152602360248201527f457863656564732063757272656e74206d6178696d756d204e4654207375707060448201527f6c792e000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b7f00000000000000000000000000000000000000000000000000000000000027108161235560085490565b61235f9190614a4e565b11156123ad5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178696d756d204e465420737570706c792e000000000060448201526064016109b7565b6000811180156123be5750600a8111155b61240a5760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e740000000000000000000000000060448201526064016109b7565b601354336000908152601d6020526040902054612428908390614a4e565b111561249c5760405162461bcd60e51b815260206004820152602260248201527f416464726573732065786365656473206d617820616c6c6f776564206d696e7460448201527f732e00000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b346124a982611d16612586565b1461251c5760405162461bcd60e51b815260206004820152602f60248201527f496e636f72726563742065746865722076616c75652073656e742e20506c656160448201527f736520636865636b20616761696e2e000000000000000000000000000000000060648201526084016109b7565b60005b818110156125665761253333610c27612eb7565b336000908152601d6020526040812080549161254e83614a95565b9190505550808061255e90614a95565b91505061251f565b5061256f612ee7565b506001601055565b606060018054610ce090614ace565b601a5460009060ff161561259b5750601b5490565b66470de4df820000600160115460ff1660048111156125bc576125bc61488a565b14156125d0575066470de4df820000919050565b600260115460ff1660048111156125e9576125e961488a565b14156125fd5750668e1bc9bf040000919050565b600360115460ff1660048111156126165761261661488a565b141561262a575066d529ae9e860000919050565b600460115460ff1660048111156126435761264361488a565b1415612654575067011c37937e0800005b919050565b612661612ea8565b6001600160a01b0316826001600160a01b031614156126c25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b7565b80600560006126cf612ea8565b6001600160a01b0390811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692151592909217909155612731612ea8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161276d911515815260200190565b60405180910390a35050565b612781612ea8565b6001600160a01b031661279c600d546001600160a01b031690565b6001600160a01b0316146127f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b6001600160a01b03811661280557600080fd5b601f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b61285061284a612ea8565b836131e0565b6128c25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109b7565b6128ce848484846135d5565b50505050565b6000806000806128e26142e0565b60008060006128f060085490565b6128f8612586565b6013546014546011546040805160a081019182905260159260ff808216936101008304821693620100009093049091169190859060059082845b8154815260200190600101908083116129325750505050509350975097509750975097509750975097509091929394959697565b60606129706129a0565b6129798361365e565b60405160200161298a929190614bbd565b6040516020818303038152906040529050919050565b606060128054610ce090614ace565b6129b7612ea8565b6001600160a01b03166129d2600d546001600160a01b031690565b6001600160a01b031614612a285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b601a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692151592909217909155601b55565b612a65612ea8565b6001600160a01b0316612a80600d546001600160a01b031690565b6001600160a01b031614612ad65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b601355565b600f546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015612b4157600080fd5b505afa158015612b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b799190614c14565b6001600160a01b03161415612b92576001915050610ccb565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b612bcc612ea8565b6001600160a01b0316612be7600d546001600160a01b031690565b6001600160a01b031614612c3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b6001600160a01b038116612cb95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109b7565b612cc2816134b0565b50565b612ccd612ea8565b6001600160a01b0316612ce8600d546001600160a01b031690565b6001600160a01b031614612d3e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b7565b8260ff166004811115612d5357612d5361488a565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001836004811115612d8d57612d8d61488a565b02179055508160ff166002811115612da757612da761488a565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100836002811115612de257612de261488a565b02179055508060ff166001811115612dfc57612dfc61488a565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000836001811115612e3857612e3861488a565b0217905550505050565b80546001019055565b600033301415612ea257600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150612ea59050565b50335b90565b6000612eb2612e4b565b905090565b6000612ec260085490565b612eb2906001614a4e565b611ee7828260405180602001604052806000815250613790565b600060115460ff166004811115612f0057612f0061488a565b118015612f295750601154612f239060ff166004811115611acc57611acc61488a565b60085410155b1561171057601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612fef57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ccb57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610ccb565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061308c82611568565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166131435760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e455200000000000000000000000000000000000000000000000000000060648201526084016109b7565b600161315661315187613819565b613879565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156131a4573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006131d98284614a4e565b9392505050565b6000818152600260205260408120546001600160a01b031661326a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109b7565b600061327583611568565b9050806001600160a01b0316846001600160a01b031614806132b05750836001600160a01b03166132a584610d63565b6001600160a01b0316145b80612bbc5750612bbc8185612adb565b826001600160a01b03166132d382611568565b6001600160a01b03161461334f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109b7565b6001600160a01b0382166133ca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109b7565b6133d58383836138c4565b6133e060008261303f565b6001600160a01b0383166000908152600360205260408120805460019290613409908490614c31565b90915550506001600160a01b0382166000908152600360205260408120805460019290613437908490614a4e565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606083901b1660208201526000906034015b604051602081830303815290604052805190602001209050919050565b60006131d98261357c8561397c565b906139b7565b60008060015b8381116135c257601581600581106135a2576135a2614a66565b01546135ae9083614a4e565b9150806135ba81614a95565b915050613588565b5092915050565b60006131d98284614a11565b6135e08484846132c0565b6135ec848484846139db565b6128ce5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b7565b60608161369e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156136c857806136b281614a95565b91506136c19050600a83614c77565b91506136a2565b60008167ffffffffffffffff8111156136e3576136e36144d2565b6040519080825280601f01601f19166020018201604052801561370d576020820181803683370190505b5090505b8415612bbc57613722600183614c31565b915061372f600a86614c8b565b61373a906030614a4e565b60f81b81838151811061374f5761374f614a66565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613789600a86614c77565b9450613711565b61379a8383613b94565b6137a760008484846139db565b610c705760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b7565b6000604051806080016040528060438152602001614d286043913980516020918201208351848301516040808701518051908601209051613550950193845260208401929092526001600160a01b03166040830152606082015260800190565b6000613884600b5490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201613550565b6001600160a01b03831661391f5761391a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613942565b816001600160a01b0316836001600160a01b031614613942576139428382613cfa565b6001600160a01b03821661395957610c7081613d97565b826001600160a01b0316826001600160a01b031614610c7057610c708282613e46565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01613550565b60008060006139c68585613e8a565b915091506139d381613efa565b509392505050565b60006001600160a01b0384163b15613b8957836001600160a01b031663150b7a02613a04612ea8565b8786866040518563ffffffff1660e01b8152600401613a269493929190614c9f565b602060405180830381600087803b158015613a4057600080fd5b505af1925050508015613a8e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613a8b91810190614cdb565b60015b613b3e573d808015613abc576040519150601f19603f3d011682016040523d82523d6000602084013e613ac1565b606091505b508051613b365760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612bbc565b506001949350505050565b6001600160a01b038216613bea5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b7565b6000818152600260205260409020546001600160a01b031615613c4f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b7565b613c5b600083836138c4565b6001600160a01b0382166000908152600360205260408120805460019290613c84908490614a4e565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613d07846115f3565b613d119190614c31565b600083815260076020526040902054909150808214613d64576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613da990600190614c31565b60008381526009602052604081205460088054939450909284908110613dd157613dd1614a66565b906000526020600020015490508060088381548110613df257613df2614a66565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613e2a57613e2a614cf8565b6001900381819060005260206000200160009055905550505050565b6000613e51836115f3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600080825160411415613ec15760208301516040840151606085015160001a613eb5878285856140eb565b94509450505050613ef3565b825160401415613eeb5760208301516040840151613ee08683836141f6565b935093505050613ef3565b506000905060025b9250929050565b6000816004811115613f0e57613f0e61488a565b1415613f175750565b6001816004811115613f2b57613f2b61488a565b1415613f795760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109b7565b6002816004811115613f8d57613f8d61488a565b1415613fdb5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109b7565b6003816004811115613fef57613fef61488a565b14156140635760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b60048160048111156140775761407761488a565b1415612cc25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016109b7565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561412257506000905060036141ed565b8460ff16601b1415801561413a57508460ff16601c14155b1561414b57506000905060046141ed565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561419f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b0381166141e6576000600192509250506141ed565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01614230878288856140eb565b935093505050935093915050565b82805461424a90614ace565b90600052602060002090601f01602090048101928261426c57600085556142d0565b82601f106142a3578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008235161785556142d0565b828001600101855582156142d0579182015b828111156142d05782358255916020019190600101906142b5565b506142dc9291506142fe565b5090565b6040518060a001604052806005906020820280368337509192915050565b5b808211156142dc57600081556001016142ff565b60008083601f84011261432557600080fd5b50813567ffffffffffffffff81111561433d57600080fd5b6020830191508360208260051b8501011115613ef357600080fd5b60008060006040848603121561436d57600080fd5b833567ffffffffffffffff81111561438457600080fd5b61439086828701614313565b909790965060209590950135949350505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612cc257600080fd5b6000602082840312156143e457600080fd5b81356131d9816143a4565b60005b8381101561440a5781810151838201526020016143f2565b838111156128ce5750506000910152565b600081518084526144338160208601602086016143ef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006131d9602083018461441b565b60006020828403121561448a57600080fd5b5035919050565b6001600160a01b0381168114612cc257600080fd5b600080604083850312156144b957600080fd5b82356144c481614491565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261451257600080fd5b813567ffffffffffffffff8082111561452d5761452d6144d2565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614573576145736144d2565b8160405283815286602085880101111561458c57600080fd5b836020870160208301376000602085830101528094505050505092915050565b803560ff8116811461265457600080fd5b600080600080600060a086880312156145d557600080fd5b85356145e081614491565b9450602086013567ffffffffffffffff8111156145fc57600080fd5b61460888828901614501565b9450506040860135925060608601359150614625608087016145ac565b90509295509295909350565b60006020828403121561464357600080fd5b81356131d981614491565b60008060006060848603121561466357600080fd5b833561466e81614491565b9250602084013561467e81614491565b929592945050506040919091013590565b60008083601f8401126146a157600080fd5b50813567ffffffffffffffff8111156146b957600080fd5b602083019150836020828501011115613ef357600080fd5b600080602083850312156146e457600080fd5b823567ffffffffffffffff8111156146fb57600080fd5b6147078582860161468f565b90969095509350505050565b6000806040838503121561472657600080fd5b82356005811061473557600080fd5b9150602083013561474581614491565b809150509250929050565b6000806000806060858703121561476657600080fd5b84359350602085013567ffffffffffffffff81111561478457600080fd5b6147908782880161468f565b9598909750949560400135949350505050565b600080602083850312156147b657600080fd5b823567ffffffffffffffff8111156147cd57600080fd5b61470785828601614313565b8035801515811461265457600080fd5b600080604083850312156147fc57600080fd5b823561480781614491565b9150614815602084016147d9565b90509250929050565b6000806000806080858703121561483457600080fd5b843561483f81614491565b9350602085013561484f81614491565b925060408501359150606085013567ffffffffffffffff81111561487257600080fd5b61487e87828801614501565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106148c9576148c961488a565b9052565b600281106148c9576148c961488a565b60006101808201905089825260208981840152886040840152876060840152608083018760005b600581101561492157815183529183019190830190600101614904565b50505050600585106149355761493561488a565b8461012083015261494a6101408301856148b9565b6149586101608301846148cd565b9998505050505050505050565b6000806040838503121561497857600080fd5b6144c4836147d9565b6000806040838503121561499457600080fd5b823561473581614491565b6000806000606084860312156149b457600080fd5b6149bd846145ac565b92506149cb602085016145ac565b91506149d9604085016145ac565b90509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a4957614a496149e2565b500290565b60008219821115614a6157614a616149e2565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ac757614ac76149e2565b5060010190565b600181811c90821680614ae257607f821691505b60208210811415614b1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006001600160a01b03808616835280851660208401525060606040830152614b4e606083018461441b565b95945050505050565b60008351614b698184602088016143ef565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008251614bb38184602087016143ef565b9190910192915050565b60008351614bcf8184602088016143ef565b835190830190614be38183602088016143ef565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600060208284031215614c2657600080fd5b81516131d981614491565b600082821015614c4357614c436149e2565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614c8657614c86614c48565b500490565b600082614c9a57614c9a614c48565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152614cd1608083018461441b565b9695505050505050565b600060208284031215614ced57600080fd5b81516131d9816143a4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220fc955912dde23273aa7702d6f869f9ab1eadbad8ec0cc1998d65778a47cf389164736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e7769736866756c646f6c7068696e2e696f2f6d657461646174612f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : bURI (string): https://api.wishfuldolphin.io/metadata/
Arg [1] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [2] : maxSupply_ (uint256): 10000
Arg [3] : reservedSupply_ (uint256): 300
Arg [4] : maxAllowedMints_ (uint256): 10
Arg [5] : maxWhiteListMints_ (uint256): 5
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [7] : 68747470733a2f2f6170692e7769736866756c646f6c7068696e2e696f2f6d65
Arg [8] : 7461646174612f00000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.