More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 577 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 23136337 | 84 days ago | IN | 0 ETH | 0.00003358 | ||||
| Set Approval For... | 22870447 | 121 days ago | IN | 0 ETH | 0.0001262 | ||||
| Set Approval For... | 19614179 | 576 days ago | IN | 0 ETH | 0.00057655 | ||||
| Set Approval For... | 18909654 | 675 days ago | IN | 0 ETH | 0.00047588 | ||||
| Set Approval For... | 18909541 | 675 days ago | IN | 0 ETH | 0.00048582 | ||||
| Set Approval For... | 18884930 | 678 days ago | IN | 0 ETH | 0.00208025 | ||||
| Set Approval For... | 18802501 | 690 days ago | IN | 0 ETH | 0.0007488 | ||||
| Set Approval For... | 18799775 | 690 days ago | IN | 0 ETH | 0.00183887 | ||||
| Set Approval For... | 18658161 | 710 days ago | IN | 0 ETH | 0.00141629 | ||||
| Set Approval For... | 17942899 | 810 days ago | IN | 0 ETH | 0.0014818 | ||||
| Safe Transfer Fr... | 17500471 | 872 days ago | IN | 0 ETH | 0.00147566 | ||||
| Set Approval For... | 17494195 | 873 days ago | IN | 0 ETH | 0.00122119 | ||||
| Set Approval For... | 17336758 | 895 days ago | IN | 0 ETH | 0.001879 | ||||
| Set Approval For... | 17095204 | 929 days ago | IN | 0 ETH | 0.00160627 | ||||
| Safe Transfer Fr... | 16701275 | 985 days ago | IN | 0 ETH | 0.00157556 | ||||
| Set Approval For... | 16638301 | 994 days ago | IN | 0 ETH | 0.00155638 | ||||
| Safe Transfer Fr... | 16540875 | 1007 days ago | IN | 0 ETH | 0.00094617 | ||||
| Set Approval For... | 16523459 | 1010 days ago | IN | 0 ETH | 0.00110956 | ||||
| Set Approval For... | 16523451 | 1010 days ago | IN | 0 ETH | 0.00119198 | ||||
| Set Approval For... | 16491107 | 1014 days ago | IN | 0 ETH | 0.00039914 | ||||
| Set Approval For... | 16457266 | 1019 days ago | IN | 0 ETH | 0.00074517 | ||||
| Safe Transfer Fr... | 16421937 | 1024 days ago | IN | 0 ETH | 0.00161908 | ||||
| Set Approval For... | 16330090 | 1037 days ago | IN | 0 ETH | 0.00069193 | ||||
| Safe Transfer Fr... | 16308323 | 1040 days ago | IN | 0 ETH | 0.00105965 | ||||
| Set Approval For... | 16280906 | 1043 days ago | IN | 0 ETH | 0.00069995 |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BirbsCrew
Compiler Version
v0.8.15+commit.e14f2714
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.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./interfaces/IMoonbirds.sol";
import "./interfaces/IProof.sol";
contract BirbsCrew is ERC721, Ownable {
//MAINNET ADDRESSES
address public developer = address(0x7c5252031d236d5A17db832Fc8367e6850a3b4FB);
address public openSeaProxy = address(0xa5409ec958C83C3f309868babACA7c86DCB077c1);
IMoonbirds public moonbirds = IMoonbirds(0x23581767a106ae21c074b2276D25e5C3e136a68b);
IProof public proof = IProof(0x08D7C0242953446436F34b4C78Fe9da38c73668d);
string public uri;
uint256 public minted;
uint256 public MOONBIRD_EARLY_PRICE = 0.05 ether;
//July 22, 2022 11:00:00 EDT
uint256 public MOONBIRD_EARLY_START_TIME = 1658502000;
uint256 public MOONBIRD_EARLY_DURATION = 24 hours;
uint256 public MOONBIRD_PRICE = 0.07 ether;
uint256 public MOONBIRD_START_TIME =
MOONBIRD_EARLY_START_TIME + MOONBIRD_EARLY_DURATION;
uint256 public MOONBIRD_DURATION = 7 days;
uint256 public PUBLIC_PRICE = 0.1 ether;
uint256 public PUBLIC_START_TIME = MOONBIRD_START_TIME + MOONBIRD_DURATION;
mapping(uint256 => bool) public proofClaimed;
constructor(
string memory _uri
) ERC721("Birbs Crew", "BIRB") {
uri = _uri;
}
function totalSupply() external view returns (uint256) {
return minted;
}
function tokenURI(uint256 tokenId)
public
view
override
returns (string memory)
{
return
string(abi.encodePacked(uri, Strings.toString(tokenId), ".json"));
}
function setPublicStartTime(uint256 _publicStartTime) external onlyOwner {
PUBLIC_START_TIME = _publicStartTime;
}
function setPublicPrice(uint256 _publicPrice) external onlyOwner {
PUBLIC_PRICE = _publicPrice;
}
function setMoonbirdEarlyStartTime(uint256 _moonbirdEarlyStartTime)
external
onlyOwner
{
MOONBIRD_EARLY_START_TIME = _moonbirdEarlyStartTime;
}
function setMoonbirdEarlyPrice(uint256 _moonbirdEarlyPrice)
external
onlyOwner
{
MOONBIRD_EARLY_PRICE = _moonbirdEarlyPrice;
}
function setMoonbirdEarlyDuration(uint256 _moonbirdEarlyDuration)
external
onlyOwner
{
MOONBIRD_EARLY_DURATION = _moonbirdEarlyDuration;
}
function setMoonbirdStartTime(uint256 _moonbirdStartTime)
external
onlyOwner
{
MOONBIRD_START_TIME = _moonbirdStartTime;
}
function setMoonbirdPrice(uint256 _moonbirdPrice) external onlyOwner {
MOONBIRD_PRICE = _moonbirdPrice;
}
function setMoonbirdDuration(uint256 _moonbirdDuration) external onlyOwner {
MOONBIRD_DURATION = _moonbirdDuration;
}
function setURI(string memory _uri) public onlyOwner {
uri = _uri;
}
function mint(uint256[] calldata moonbirdIds, address sender) internal {
require(
block.timestamp > MOONBIRD_EARLY_START_TIME,
"Minting has not started yet."
);
require(moonbirdIds.length > 0, "No moonbirds to mint");
for (uint256 i = 0; i < moonbirdIds.length; i++) {
require(
moonbirds.ownerOf(moonbirdIds[i]) == sender,
"You do not own this Moonbird"
);
minted += 1;
_safeMint(sender, moonbirdIds[i]);
}
}
function claimProof(address sender, uint256 proofId) internal {
require(proof.ownerOf(proofId) == sender, "You do not own this proof");
proofClaimed[proofId] = true;
}
function mintMoonbird(
uint256[] calldata moonbirdIds,
uint256[] calldata proofIds
) external payable {
require(block.timestamp < PUBLIC_START_TIME, "Minting has ended");
uint256 amount = moonbirdIds.length;
uint256 proofBalance = proofIds.length;
for (uint256 i = 0; i < proofIds.length; i++) {
if (proofClaimed[proofIds[i]]) {
proofBalance -= 1;
} else {
claimProof(msg.sender, proofIds[i]);
}
}
//Prevent integer underflow
if (amount > proofBalance) {
if (block.timestamp < MOONBIRD_START_TIME) {
require(
msg.value >= MOONBIRD_EARLY_PRICE * (amount - proofBalance),
"Not enough ether sent (early)"
);
} else if (block.timestamp < PUBLIC_START_TIME) {
require(
msg.value >= MOONBIRD_PRICE * (amount - proofBalance),
"Not enough ether sent"
);
}
}
mint(moonbirdIds, msg.sender);
}
function verifyString(
string memory message,
uint8 v,
bytes32 r,
bytes32 s
) public pure returns (address signer) {
// The message header; we will fill in the length next
string memory header = "\x19Ethereum Signed Message:\n000000";
uint256 lengthOffset;
uint256 length;
assembly {
// The first word of a string is its length
length := mload(message)
// The beginning of the base-10 message length in the prefix
lengthOffset := add(header, 57)
}
// Maximum length we support
require(length <= 999999);
// The length of the message's length in base-10
uint256 lengthLength = 0;
// The divisor to get the next left-most message length digit
uint256 divisor = 100000;
// Move one digit of the message length to the right at a time
while (divisor != 0) {
// The place value at the divisor
uint256 digit = length / divisor;
if (digit == 0) {
// Skip leading zeros
if (lengthLength == 0) {
divisor /= 10;
continue;
}
}
// Found a non-zero digit or non-leading zero digit
lengthLength++;
// Remove this digit from the message length's current value
length -= digit * divisor;
// Shift our base-10 divisor over
divisor /= 10;
// Convert the digit to its ASCII representation (man ascii)
digit += 0x30;
// Move to the next character and write the digit
lengthOffset++;
assembly {
mstore8(lengthOffset, digit)
}
}
// The null string requires exactly 1 zero (unskip 1 leading 0)
if (lengthLength == 0) {
lengthLength = 1 + 0x19 + 1;
} else {
lengthLength += 1 + 0x19;
}
// Truncate the tailing zeros from the header
assembly {
mstore(header, lengthLength)
}
// Perform the elliptic curve recover operation
bytes32 check = keccak256(abi.encodePacked(header, message));
return ecrecover(check, v, r, s);
}
function mintVault(
uint256[] calldata moonbirdIds,
uint256[] calldata proofIds,
address _vaultAddress,
string memory _msg,
uint8 _v,
bytes32 _r,
bytes32 _s
) external payable {
require(block.timestamp < PUBLIC_START_TIME, "Minting has ended");
require(
_vaultAddress == verifyString(_msg, _v, _r, _s),
"You do not own this vault"
);
uint256 amount = moonbirdIds.length;
uint256 proofBalance = proofIds.length;
for (uint256 i = 0; i < proofIds.length; i++) {
if (proofClaimed[proofIds[i]]) {
proofBalance -= 1;
} else {
claimProof(_vaultAddress, proofIds[i]);
}
}
//Prevent integer underflow
if (amount > proofBalance) {
if (block.timestamp < MOONBIRD_START_TIME) {
require(
msg.value >= MOONBIRD_EARLY_PRICE * (amount - proofBalance),
"Not enough ether sent"
);
} else {
require(
msg.value >= MOONBIRD_PRICE * (amount - proofBalance),
"Not enough ether sent"
);
}
}
mint(moonbirdIds, _vaultAddress);
}
function mintPublic(uint256 tokenId) external payable {
require(
block.timestamp > PUBLIC_START_TIME,
"Minting has not started yet"
);
require(msg.value >= PUBLIC_PRICE);
_safeMint(msg.sender, tokenId);
minted += 1;
}
function mint(uint256 tokenId) external onlyOwner {
_safeMint(msg.sender, tokenId);
minted += 1;
}
function withdraw() external onlyOwner {
uint256 rate = 6250;
if (minted <= 1000) {
rate = 12500;
} else if (minted <= 2500) {
rate = 10625;
} else if (minted <= 5000) {
rate = 9375;
} else if (minted <= 7500) {
rate = 8125;
}
(bool success, ) = developer.call{
value: (address(this).balance * rate) / 100000
}("");
require(success, "Could not send ether to developer");
(success, ) = owner().call{value: address(this).balance}("");
require(success, "Could not send ether to owner");
}
function isApprovedForAll(address _owner, address operator)
public
view
override
returns (bool)
{
OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(openSeaProxy);
if (address(proxyRegistry.proxies(_owner)) == operator) return true;
return super.isApprovedForAll(_owner, operator);
}
}
contract OwnableDelegateProxy {}
contract OpenSeaProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
interface IProof {
function ownerOf(uint256 tokenId) external view returns (address);
function balanceOf(address owner) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
interface IMoonbirds {
function ownerOf(uint256 tokenId) external view returns (address);
function nestingPeriod(uint256 tokenId) external view returns (bool nesting, uint256 current, uint256 total);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
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: address zero is not a valid owner");
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: invalid token ID");
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) {
_requireMinted(tokenId);
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 overridden 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 token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);
_afterTokenTransfer(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);
_afterTokenTransfer(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 from incorrect owner");
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);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @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 {
/// @solidity memory-safe-assembly
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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
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() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
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 {
_transferOwnership(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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
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
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
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
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
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`.
*
* 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;
/**
* @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 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 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 the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": true,
"runs": 10000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MOONBIRD_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONBIRD_EARLY_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONBIRD_EARLY_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONBIRD_EARLY_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONBIRD_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONBIRD_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"moonbirdIds","type":"uint256[]"},{"internalType":"uint256[]","name":"proofIds","type":"uint256[]"}],"name":"mintMoonbird","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"moonbirdIds","type":"uint256[]"},{"internalType":"uint256[]","name":"proofIds","type":"uint256[]"},{"internalType":"address","name":"_vaultAddress","type":"address"},{"internalType":"string","name":"_msg","type":"string"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintVault","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moonbirds","outputs":[{"internalType":"contract IMoonbirds","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openSeaProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"proof","outputs":[{"internalType":"contract IProof","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proofClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_moonbirdDuration","type":"uint256"}],"name":"setMoonbirdDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_moonbirdEarlyDuration","type":"uint256"}],"name":"setMoonbirdEarlyDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_moonbirdEarlyPrice","type":"uint256"}],"name":"setMoonbirdEarlyPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_moonbirdEarlyStartTime","type":"uint256"}],"name":"setMoonbirdEarlyStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_moonbirdPrice","type":"uint256"}],"name":"setMoonbirdPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_moonbirdStartTime","type":"uint256"}],"name":"setMoonbirdStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicStartTime","type":"uint256"}],"name":"setPublicStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"message","type":"string"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"verifyString","outputs":[{"internalType":"address","name":"signer","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600780546001600160a01b0319908116737c5252031d236d5a17db832fc8367e6850a3b4fb1790915560088054821673a5409ec958c83c3f309868babaca7c86dcb077c11790556009805482167323581767a106ae21c074b2276d25e5c3e136a68b179055600a80549091167308d7c0242953446436f34b4c78fe9da38c73668d17905566b1a2bc2ec50000600d556362dabb70600e81905562015180600f81905566f8b0a10e470000601055620000bc91620001fd565b601181905562093a80601281905567016345785d8a0000601355620000e191620001fd565b601455348015620000f157600080fd5b50604051620034963803806200349683398101604081905262000114916200023a565b6040518060400160405280600a8152602001694269726273204372657760b01b815250604051806040016040528060048152602001632124a92160e11b8152508160009081620001659190620003a5565b506001620001748282620003a5565b505050620001916200018b620001a760201b60201c565b620001ab565b600b6200019f8282620003a5565b505062000471565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082198211156200021f57634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200024e57600080fd5b82516001600160401b03808211156200026657600080fd5b818501915085601f8301126200027b57600080fd5b81518181111562000290576200029062000224565b604051601f8201601f19908116603f01168101908382118183101715620002bb57620002bb62000224565b816040528281528886848701011115620002d457600080fd5b600093505b82841015620002f85784840186015181850187015292850192620002d9565b828411156200030a5760008684830101525b98975050505050505050565b600181811c908216806200032b57607f821691505b6020821081036200034c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a057600081815260208120601f850160051c810160208610156200037b5750805b601f850160051c820191505b818110156200039c5782815560010162000387565b5050505b505050565b81516001600160401b03811115620003c157620003c162000224565b620003d981620003d2845462000316565b8462000352565b602080601f831160018114620004115760008415620003f85750858301515b600019600386901b1c1916600185901b1785556200039c565b600085815260208120601f198616915b82811015620004425788860151825594840194600190910190840162000421565b5085821015620004615787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61301580620004816000396000f3fe6080604052600436106103085760003560e01c80637311d6e41161019a578063c87b56dd116100e1578063e985e9c51161008a578063efd0cbf911610064578063efd0cbf91461082b578063f2fde38b1461083e578063faf924cf1461085e57600080fd5b8063e985e9c5146107e0578063ea666cc514610800578063eac989f81461081657600080fd5b8063d2c3fbb7116100bb578063d2c3fbb714610780578063d3571a04146107a0578063db8cc8fa146107c057600080fd5b8063c87b56dd1461072d578063ca4b208b1461074d578063d227557d1461076d57600080fd5b806395d89b4111610143578063a5ac4d6e1161011d578063a5ac4d6e146106cd578063b88d4fde146106ed578063c62752551461070d57600080fd5b806395d89b4114610678578063a0712d681461068d578063a22cb465146106ad57600080fd5b80637a7e0e43116101745780637a7e0e431461062e5780638a9b17a4146106445780638da5cb5b1461065a57600080fd5b80637311d6e4146105d857806377d187e6146105f857806378df957c1461060e57600080fd5b80633ccfd60b1161025e578063611f3f10116102075780636f7013a8116101e15780636f7013a81461058357806370a08231146105a3578063715018a6146105c357600080fd5b8063611f3f101461051d5780636352211e146105335780636adca3a41461055357600080fd5b80634f02c420116102385780634f02c420146104d45780635c77ec7b146104ea5780635ca1694e146104fd57600080fd5b80633ccfd60b1461048957806340d7ca0d1461049e57806342842e0e146104b457600080fd5b8063095ea7b3116102c057806323b872dd1161029a57806323b872dd1461043d578063297c41431461045d57806332dca32c1461047357600080fd5b8063095ea7b3146103de5780630d03c1da146103fe57806318160ddd1461041e57600080fd5b806306fdde03116102f157806306fdde0314610364578063081812fc1461038657806309513b86146103be57600080fd5b806301ffc9a71461030d57806302fe530514610342575b600080fd5b34801561031957600080fd5b5061032d610328366004612602565b61087e565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b5061036261035d366004612709565b610963565b005b34801561037057600080fd5b5061037961097b565b60405161033991906127b4565b34801561039257600080fd5b506103a66103a13660046127c7565b610a0d565b6040516001600160a01b039091168152602001610339565b3480156103ca57600080fd5b506103626103d93660046127c7565b610a34565b3480156103ea57600080fd5b506103626103f93660046127f5565b610a41565b34801561040a57600080fd5b506008546103a6906001600160a01b031681565b34801561042a57600080fd5b50600c545b604051908152602001610339565b34801561044957600080fd5b50610362610458366004612821565b610b77565b34801561046957600080fd5b5061042f60145481565b34801561047f57600080fd5b5061042f60115481565b34801561049557600080fd5b50610362610bfe565b3480156104aa57600080fd5b5061042f60125481565b3480156104c057600080fd5b506103626104cf366004612821565b610dda565b3480156104e057600080fd5b5061042f600c5481565b6103626104f83660046128c4565b610df5565b34801561050957600080fd5b506103626105183660046127c7565b611039565b34801561052957600080fd5b5061042f60135481565b34801561053f57600080fd5b506103a661054e3660046127c7565b611046565b34801561055f57600080fd5b5061032d61056e3660046127c7565b60156020526000908152604090205460ff1681565b34801561058f57600080fd5b506009546103a6906001600160a01b031681565b3480156105af57600080fd5b5061042f6105be36600461298f565b6110ab565b3480156105cf57600080fd5b50610362611145565b3480156105e457600080fd5b506103626105f33660046127c7565b611159565b34801561060457600080fd5b5061042f60105481565b34801561061a57600080fd5b506103626106293660046127c7565b611166565b34801561063a57600080fd5b5061042f600d5481565b34801561065057600080fd5b5061042f600f5481565b34801561066657600080fd5b506006546001600160a01b03166103a6565b34801561068457600080fd5b50610379611173565b34801561069957600080fd5b506103626106a83660046127c7565b611182565b3480156106b957600080fd5b506103626106c83660046129ac565b6111af565b3480156106d957600080fd5b506103626106e83660046127c7565b6111ba565b3480156106f957600080fd5b506103626107083660046129ea565b6111c7565b34801561071957600080fd5b506103626107283660046127c7565b611255565b34801561073957600080fd5b506103796107483660046127c7565b611262565b34801561075957600080fd5b506007546103a6906001600160a01b031681565b61036261077b366004612a6a565b611296565b34801561078c57600080fd5b506103a661079b366004612ad6565b611467565b3480156107ac57600080fd5b506103626107bb3660046127c7565b611620565b3480156107cc57600080fd5b506103626107db3660046127c7565b61162d565b3480156107ec57600080fd5b5061032d6107fb366004612b33565b61163a565b34801561080c57600080fd5b5061042f600e5481565b34801561082257600080fd5b50610379611711565b6103626108393660046127c7565b61179f565b34801561084a57600080fd5b5061036261085936600461298f565b6117ff565b34801561086a57600080fd5b50600a546103a6906001600160a01b031681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061091157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061095d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b61096b61188f565b600b6109778282612bfa565b5050565b60606000805461098a90612b61565b80601f01602080910402602001604051908101604052809291908181526020018280546109b690612b61565b8015610a035780601f106109d857610100808354040283529160200191610a03565b820191906000526020600020905b8154815290600101906020018083116109e657829003601f168201915b5050505050905090565b6000610a18826118e9565b506000908152600460205260409020546001600160a01b031690565b610a3c61188f565b601255565b6000610a4c82611046565b9050806001600160a01b0316836001600160a01b031603610ada5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b0382161480610af65750610af6813361163a565b610b685760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610ad1565b610b72838361194d565b505050565b610b8133826119d3565b610bf35760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610ad1565b610b72838383611a31565b610c0661188f565b600c5461186a906103e810610c1e57506130d4610c56565b6109c4600c5411610c325750612981610c56565b611388600c5411610c46575061249f610c56565b611d4c600c5411610c565750611fbd5b6007546000906001600160a01b0316620186a0610c738447612d43565b610c7d9190612daf565b604051600081818185875af1925050503d8060008114610cb9576040519150601f19603f3d011682016040523d82523d6000602084013e610cbe565b606091505b5050905080610d355760405162461bcd60e51b815260206004820152602160248201527f436f756c64206e6f742073656e6420657468657220746f20646576656c6f706560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ad1565b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610d82576040519150601f19603f3d011682016040523d82523d6000602084013e610d87565b606091505b505080915050806109775760405162461bcd60e51b815260206004820152601d60248201527f436f756c64206e6f742073656e6420657468657220746f206f776e65720000006044820152606401610ad1565b610b72838383604051806020016040528060008152506111c7565b6014544210610e465760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e672068617320656e6465640000000000000000000000000000006044820152606401610ad1565b610e5284848484611467565b6001600160a01b0316856001600160a01b031614610eb25760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e2074686973207661756c74000000000000006044820152606401610ad1565b878660005b88811015610f3d57601560008b8b84818110610ed557610ed5612dc3565b602090810292909201358352508101919091526040016000205460ff1615610f0957610f02600183612df2565b9150610f2b565b610f2b888b8b84818110610f1f57610f1f612dc3565b90506020020135611c16565b80610f3581612e09565b915050610eb7565b508082111561102157601154421015610fbb57610f5a8183612df2565b600d54610f679190612d43565b341015610fb65760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610ad1565b611021565b610fc58183612df2565b601054610fd29190612d43565b3410156110215760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610ad1565b61102c8b8b89611d2e565b5050505050505050505050565b61104161188f565b600d55565b6000818152600260205260408120546001600160a01b03168061095d5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610ad1565b60006001600160a01b0382166111295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610ad1565b506001600160a01b031660009081526003602052604090205490565b61114d61188f565b6111576000611f07565b565b61116161188f565b600e55565b61116e61188f565b600f55565b60606001805461098a90612b61565b61118a61188f565b6111943382611f71565b6001600c60008282546111a79190612e41565b909155505050565b610977338383611f8b565b6111c261188f565b601155565b6111d133836119d3565b6112435760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610ad1565b61124f84848484612077565b50505050565b61125d61188f565b601355565b6060600b61126f83612100565b604051602001611280929190612e59565b6040516020818303038152906040529050919050565b60145442106112e75760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e672068617320656e6465640000000000000000000000000000006044820152606401610ad1565b828160005b83811015611366576015600086868481811061130a5761130a612dc3565b602090810292909201358352508101919091526040016000205460ff161561133e57611337600183612df2565b9150611354565b61135433868684818110610f1f57610f1f612dc3565b8061135e81612e09565b9150506112ec565b5080821115611454576011544210156113e4576113838183612df2565b600d546113909190612d43565b3410156113df5760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420656e6f7567682065746865722073656e7420286561726c79290000006044820152606401610ad1565b611454565b601454421015611454576113f88183612df2565b6010546114059190612d43565b3410156114545760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610ad1565b61145f868633611d2e565b505050505050565b6040805180820190915260208082527f19457468657265756d205369676e6564204d6573736167653a0a303030303030908201528451600091906039820190620f423f8111156114b657600080fd5b6000620186a05b80156115485760006114cf8285612daf565b9050806000036114f457826000036114f4576114ec600a83612daf565b9150506114bd565b826114fe81612e09565b935061150c90508282612d43565b6115169085612df2565b9350611523600a83612daf565b9150611530603082612e41565b90508461153c81612e09565b955050808553506114bd565b8160000361155957601b9150611567565b611564601a83612e41565b91505b8185526000858b60405160200161157f929190612f26565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815282825280516020918201206000845290830180835281905260ff8d1691830191909152606082018b9052608082018a9052915060019060a0016020604051602081039080840390855afa158015611605573d6000803e3d6000fd5b5050506020604051035196505050505050505b949350505050565b61162861188f565b601055565b61163561188f565b601455565b6008546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa1580156116a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c99190612f55565b6001600160a01b0316036116e157600191505061095d565b50506001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600b805461171e90612b61565b80601f016020809104026020016040519081016040528092919081815260200182805461174a90612b61565b80156117975780601f1061176c57610100808354040283529160200191611797565b820191906000526020600020905b81548152906001019060200180831161177a57829003601f168201915b505050505081565b60145442116117f05760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e6720686173206e6f7420737461727465642079657400000000006044820152606401610ad1565b60135434101561118a57600080fd5b61180761188f565b6001600160a01b0381166118835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ad1565b61188c81611f07565b50565b6006546001600160a01b031633146111575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ad1565b6000818152600260205260409020546001600160a01b031661188c5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610ad1565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061199a82611046565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119df83611046565b9050806001600160a01b0316846001600160a01b03161480611a065750611a06818561163a565b806116185750836001600160a01b0316611a1f84610a0d565b6001600160a01b031614949350505050565b826001600160a01b0316611a4482611046565b6001600160a01b031614611ac05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610ad1565b6001600160a01b038216611b3b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ad1565b611b4660008261194d565b6001600160a01b0383166000908152600360205260408120805460019290611b6f908490612df2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b9d908490612e41565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03848116921690636352211e90602401602060405180830381865afa158015611c7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9e9190612f55565b6001600160a01b031614611cf45760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e20746869732070726f6f66000000000000006044820152606401610ad1565b600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905550565b600e544211611d7f5760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720686173206e6f742073746172746564207965742e000000006044820152606401610ad1565b81611dcc5760405162461bcd60e51b815260206004820152601460248201527f4e6f206d6f6f6e626972647320746f206d696e740000000000000000000000006044820152606401610ad1565b60005b8281101561124f576009546001600160a01b038084169116636352211e868685818110611dfe57611dfe612dc3565b905060200201356040518263ffffffff1660e01b8152600401611e2391815260200190565b602060405180830381865afa158015611e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e649190612f55565b6001600160a01b031614611eba5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f74206f776e2074686973204d6f6f6e62697264000000006044820152606401610ad1565b6001600c6000828254611ecd9190612e41565b90915550611ef5905082858584818110611ee957611ee9612dc3565b90506020020135611f71565b80611eff81612e09565b915050611dcf565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610977828260405180602001604052806000815250612235565b816001600160a01b0316836001600160a01b031603611fec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ad1565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612082848484611a31565b61208e848484846122be565b61124f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ad1565b60608160000361214357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561216d578061215781612e09565b91506121669050600a83612daf565b9150612147565b60008167ffffffffffffffff81111561218857612188612626565b6040519080825280601f01601f1916602001820160405280156121b2576020820181803683370190505b5090505b8415611618576121c7600183612df2565b91506121d4600a86612f72565b6121df906030612e41565b60f81b8183815181106121f4576121f4612dc3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061222e600a86612daf565b94506121b6565b61223f838361247a565b61224c60008484846122be565b610b725760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ad1565b60006001600160a01b0384163b15612472576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061231b903390899088908890600401612f86565b6020604051808303816000875af1925050508015612374575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261237191810190612fc2565b60015b612427573d8080156123a2576040519150601f19603f3d011682016040523d82523d6000602084013e6123a7565b606091505b50805160000361241f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ad1565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611618565b506001611618565b6001600160a01b0382166124d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ad1565b6000818152600260205260409020546001600160a01b0316156125355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ad1565b6001600160a01b038216600090815260036020526040812080546001929061255e908490612e41565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461188c57600080fd5b60006020828403121561261457600080fd5b813561261f816125d4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561267057612670612626565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156126b6576126b6612626565b816040528093508581528686860111156126cf57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126126fa57600080fd5b61261f83833560208501612655565b60006020828403121561271b57600080fd5b813567ffffffffffffffff81111561273257600080fd5b611618848285016126e9565b60005b83811015612759578181015183820152602001612741565b8381111561124f5750506000910152565b6000815180845261278281602086016020860161273e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061261f602083018461276a565b6000602082840312156127d957600080fd5b5035919050565b6001600160a01b038116811461188c57600080fd5b6000806040838503121561280857600080fd5b8235612813816127e0565b946020939093013593505050565b60008060006060848603121561283657600080fd5b8335612841816127e0565b92506020840135612851816127e0565b929592945050506040919091013590565b60008083601f84011261287457600080fd5b50813567ffffffffffffffff81111561288c57600080fd5b6020830191508360208260051b85010111156128a757600080fd5b9250929050565b803560ff811681146128bf57600080fd5b919050565b600080600080600080600080600060e08a8c0312156128e257600080fd5b893567ffffffffffffffff808211156128fa57600080fd5b6129068d838e01612862565b909b50995060208c013591508082111561291f57600080fd5b61292b8d838e01612862565b909950975060408c01359150612940826127e0565b90955060608b0135908082111561295657600080fd5b506129638c828d016126e9565b94505061297260808b016128ae565b925060a08a0135915060c08a013590509295985092959850929598565b6000602082840312156129a157600080fd5b813561261f816127e0565b600080604083850312156129bf57600080fd5b82356129ca816127e0565b9150602083013580151581146129df57600080fd5b809150509250929050565b60008060008060808587031215612a0057600080fd5b8435612a0b816127e0565b93506020850135612a1b816127e0565b925060408501359150606085013567ffffffffffffffff811115612a3e57600080fd5b8501601f81018713612a4f57600080fd5b612a5e87823560208401612655565b91505092959194509250565b60008060008060408587031215612a8057600080fd5b843567ffffffffffffffff80821115612a9857600080fd5b612aa488838901612862565b90965094506020870135915080821115612abd57600080fd5b50612aca87828801612862565b95989497509550505050565b60008060008060808587031215612aec57600080fd5b843567ffffffffffffffff811115612b0357600080fd5b612b0f878288016126e9565b945050612b1e602086016128ae565b93969395505050506040820135916060013590565b60008060408385031215612b4657600080fd5b8235612b51816127e0565b915060208301356129df816127e0565b600181811c90821680612b7557607f821691505b602082108103612bae577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115610b7257600081815260208120601f850160051c81016020861015612bdb5750805b601f850160051c820191505b8181101561145f57828155600101612be7565b815167ffffffffffffffff811115612c1457612c14612626565b612c2881612c228454612b61565b84612bb4565b602080601f831160018114612c7b5760008415612c455750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561145f565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015612cc857888601518255948401946001909101908401612ca9565b5085821015612d0457878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d7b57612d7b612d14565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612dbe57612dbe612d80565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082821015612e0457612e04612d14565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e3a57612e3a612d14565b5060010190565b60008219821115612e5457612e54612d14565b500190565b6000808454612e6781612b61565b60018281168015612e7f5760018114612eb257612ee1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450612ee1565b8860005260208060002060005b85811015612ed85781548a820152908401908201612ebf565b50505082870194505b505050508351612ef581836020880161273e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60008351612f3881846020880161273e565b835190830190612f4c81836020880161273e565b01949350505050565b600060208284031215612f6757600080fd5b815161261f816127e0565b600082612f8157612f81612d80565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612fb8608083018461276a565b9695505050505050565b600060208284031215612fd457600080fd5b815161261f816125d456fea2646970667358221220ac4637ffd9a838bae4179a7d4697a618a5f08511c85722956d7e1762b4210acf64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964657868646e6b3437327232736c6d78663561337a366132686a7a71736a6f6e736c337a34786e6f7a61647937756275366c696d2f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103085760003560e01c80637311d6e41161019a578063c87b56dd116100e1578063e985e9c51161008a578063efd0cbf911610064578063efd0cbf91461082b578063f2fde38b1461083e578063faf924cf1461085e57600080fd5b8063e985e9c5146107e0578063ea666cc514610800578063eac989f81461081657600080fd5b8063d2c3fbb7116100bb578063d2c3fbb714610780578063d3571a04146107a0578063db8cc8fa146107c057600080fd5b8063c87b56dd1461072d578063ca4b208b1461074d578063d227557d1461076d57600080fd5b806395d89b4111610143578063a5ac4d6e1161011d578063a5ac4d6e146106cd578063b88d4fde146106ed578063c62752551461070d57600080fd5b806395d89b4114610678578063a0712d681461068d578063a22cb465146106ad57600080fd5b80637a7e0e43116101745780637a7e0e431461062e5780638a9b17a4146106445780638da5cb5b1461065a57600080fd5b80637311d6e4146105d857806377d187e6146105f857806378df957c1461060e57600080fd5b80633ccfd60b1161025e578063611f3f10116102075780636f7013a8116101e15780636f7013a81461058357806370a08231146105a3578063715018a6146105c357600080fd5b8063611f3f101461051d5780636352211e146105335780636adca3a41461055357600080fd5b80634f02c420116102385780634f02c420146104d45780635c77ec7b146104ea5780635ca1694e146104fd57600080fd5b80633ccfd60b1461048957806340d7ca0d1461049e57806342842e0e146104b457600080fd5b8063095ea7b3116102c057806323b872dd1161029a57806323b872dd1461043d578063297c41431461045d57806332dca32c1461047357600080fd5b8063095ea7b3146103de5780630d03c1da146103fe57806318160ddd1461041e57600080fd5b806306fdde03116102f157806306fdde0314610364578063081812fc1461038657806309513b86146103be57600080fd5b806301ffc9a71461030d57806302fe530514610342575b600080fd5b34801561031957600080fd5b5061032d610328366004612602565b61087e565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b5061036261035d366004612709565b610963565b005b34801561037057600080fd5b5061037961097b565b60405161033991906127b4565b34801561039257600080fd5b506103a66103a13660046127c7565b610a0d565b6040516001600160a01b039091168152602001610339565b3480156103ca57600080fd5b506103626103d93660046127c7565b610a34565b3480156103ea57600080fd5b506103626103f93660046127f5565b610a41565b34801561040a57600080fd5b506008546103a6906001600160a01b031681565b34801561042a57600080fd5b50600c545b604051908152602001610339565b34801561044957600080fd5b50610362610458366004612821565b610b77565b34801561046957600080fd5b5061042f60145481565b34801561047f57600080fd5b5061042f60115481565b34801561049557600080fd5b50610362610bfe565b3480156104aa57600080fd5b5061042f60125481565b3480156104c057600080fd5b506103626104cf366004612821565b610dda565b3480156104e057600080fd5b5061042f600c5481565b6103626104f83660046128c4565b610df5565b34801561050957600080fd5b506103626105183660046127c7565b611039565b34801561052957600080fd5b5061042f60135481565b34801561053f57600080fd5b506103a661054e3660046127c7565b611046565b34801561055f57600080fd5b5061032d61056e3660046127c7565b60156020526000908152604090205460ff1681565b34801561058f57600080fd5b506009546103a6906001600160a01b031681565b3480156105af57600080fd5b5061042f6105be36600461298f565b6110ab565b3480156105cf57600080fd5b50610362611145565b3480156105e457600080fd5b506103626105f33660046127c7565b611159565b34801561060457600080fd5b5061042f60105481565b34801561061a57600080fd5b506103626106293660046127c7565b611166565b34801561063a57600080fd5b5061042f600d5481565b34801561065057600080fd5b5061042f600f5481565b34801561066657600080fd5b506006546001600160a01b03166103a6565b34801561068457600080fd5b50610379611173565b34801561069957600080fd5b506103626106a83660046127c7565b611182565b3480156106b957600080fd5b506103626106c83660046129ac565b6111af565b3480156106d957600080fd5b506103626106e83660046127c7565b6111ba565b3480156106f957600080fd5b506103626107083660046129ea565b6111c7565b34801561071957600080fd5b506103626107283660046127c7565b611255565b34801561073957600080fd5b506103796107483660046127c7565b611262565b34801561075957600080fd5b506007546103a6906001600160a01b031681565b61036261077b366004612a6a565b611296565b34801561078c57600080fd5b506103a661079b366004612ad6565b611467565b3480156107ac57600080fd5b506103626107bb3660046127c7565b611620565b3480156107cc57600080fd5b506103626107db3660046127c7565b61162d565b3480156107ec57600080fd5b5061032d6107fb366004612b33565b61163a565b34801561080c57600080fd5b5061042f600e5481565b34801561082257600080fd5b50610379611711565b6103626108393660046127c7565b61179f565b34801561084a57600080fd5b5061036261085936600461298f565b6117ff565b34801561086a57600080fd5b50600a546103a6906001600160a01b031681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061091157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061095d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b61096b61188f565b600b6109778282612bfa565b5050565b60606000805461098a90612b61565b80601f01602080910402602001604051908101604052809291908181526020018280546109b690612b61565b8015610a035780601f106109d857610100808354040283529160200191610a03565b820191906000526020600020905b8154815290600101906020018083116109e657829003601f168201915b5050505050905090565b6000610a18826118e9565b506000908152600460205260409020546001600160a01b031690565b610a3c61188f565b601255565b6000610a4c82611046565b9050806001600160a01b0316836001600160a01b031603610ada5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b0382161480610af65750610af6813361163a565b610b685760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610ad1565b610b72838361194d565b505050565b610b8133826119d3565b610bf35760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610ad1565b610b72838383611a31565b610c0661188f565b600c5461186a906103e810610c1e57506130d4610c56565b6109c4600c5411610c325750612981610c56565b611388600c5411610c46575061249f610c56565b611d4c600c5411610c565750611fbd5b6007546000906001600160a01b0316620186a0610c738447612d43565b610c7d9190612daf565b604051600081818185875af1925050503d8060008114610cb9576040519150601f19603f3d011682016040523d82523d6000602084013e610cbe565b606091505b5050905080610d355760405162461bcd60e51b815260206004820152602160248201527f436f756c64206e6f742073656e6420657468657220746f20646576656c6f706560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ad1565b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610d82576040519150601f19603f3d011682016040523d82523d6000602084013e610d87565b606091505b505080915050806109775760405162461bcd60e51b815260206004820152601d60248201527f436f756c64206e6f742073656e6420657468657220746f206f776e65720000006044820152606401610ad1565b610b72838383604051806020016040528060008152506111c7565b6014544210610e465760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e672068617320656e6465640000000000000000000000000000006044820152606401610ad1565b610e5284848484611467565b6001600160a01b0316856001600160a01b031614610eb25760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e2074686973207661756c74000000000000006044820152606401610ad1565b878660005b88811015610f3d57601560008b8b84818110610ed557610ed5612dc3565b602090810292909201358352508101919091526040016000205460ff1615610f0957610f02600183612df2565b9150610f2b565b610f2b888b8b84818110610f1f57610f1f612dc3565b90506020020135611c16565b80610f3581612e09565b915050610eb7565b508082111561102157601154421015610fbb57610f5a8183612df2565b600d54610f679190612d43565b341015610fb65760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610ad1565b611021565b610fc58183612df2565b601054610fd29190612d43565b3410156110215760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610ad1565b61102c8b8b89611d2e565b5050505050505050505050565b61104161188f565b600d55565b6000818152600260205260408120546001600160a01b03168061095d5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610ad1565b60006001600160a01b0382166111295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610ad1565b506001600160a01b031660009081526003602052604090205490565b61114d61188f565b6111576000611f07565b565b61116161188f565b600e55565b61116e61188f565b600f55565b60606001805461098a90612b61565b61118a61188f565b6111943382611f71565b6001600c60008282546111a79190612e41565b909155505050565b610977338383611f8b565b6111c261188f565b601155565b6111d133836119d3565b6112435760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610ad1565b61124f84848484612077565b50505050565b61125d61188f565b601355565b6060600b61126f83612100565b604051602001611280929190612e59565b6040516020818303038152906040529050919050565b60145442106112e75760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e672068617320656e6465640000000000000000000000000000006044820152606401610ad1565b828160005b83811015611366576015600086868481811061130a5761130a612dc3565b602090810292909201358352508101919091526040016000205460ff161561133e57611337600183612df2565b9150611354565b61135433868684818110610f1f57610f1f612dc3565b8061135e81612e09565b9150506112ec565b5080821115611454576011544210156113e4576113838183612df2565b600d546113909190612d43565b3410156113df5760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420656e6f7567682065746865722073656e7420286561726c79290000006044820152606401610ad1565b611454565b601454421015611454576113f88183612df2565b6010546114059190612d43565b3410156114545760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610ad1565b61145f868633611d2e565b505050505050565b6040805180820190915260208082527f19457468657265756d205369676e6564204d6573736167653a0a303030303030908201528451600091906039820190620f423f8111156114b657600080fd5b6000620186a05b80156115485760006114cf8285612daf565b9050806000036114f457826000036114f4576114ec600a83612daf565b9150506114bd565b826114fe81612e09565b935061150c90508282612d43565b6115169085612df2565b9350611523600a83612daf565b9150611530603082612e41565b90508461153c81612e09565b955050808553506114bd565b8160000361155957601b9150611567565b611564601a83612e41565b91505b8185526000858b60405160200161157f929190612f26565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815282825280516020918201206000845290830180835281905260ff8d1691830191909152606082018b9052608082018a9052915060019060a0016020604051602081039080840390855afa158015611605573d6000803e3d6000fd5b5050506020604051035196505050505050505b949350505050565b61162861188f565b601055565b61163561188f565b601455565b6008546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa1580156116a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c99190612f55565b6001600160a01b0316036116e157600191505061095d565b50506001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600b805461171e90612b61565b80601f016020809104026020016040519081016040528092919081815260200182805461174a90612b61565b80156117975780601f1061176c57610100808354040283529160200191611797565b820191906000526020600020905b81548152906001019060200180831161177a57829003601f168201915b505050505081565b60145442116117f05760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e6720686173206e6f7420737461727465642079657400000000006044820152606401610ad1565b60135434101561118a57600080fd5b61180761188f565b6001600160a01b0381166118835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ad1565b61188c81611f07565b50565b6006546001600160a01b031633146111575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ad1565b6000818152600260205260409020546001600160a01b031661188c5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610ad1565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061199a82611046565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119df83611046565b9050806001600160a01b0316846001600160a01b03161480611a065750611a06818561163a565b806116185750836001600160a01b0316611a1f84610a0d565b6001600160a01b031614949350505050565b826001600160a01b0316611a4482611046565b6001600160a01b031614611ac05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610ad1565b6001600160a01b038216611b3b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ad1565b611b4660008261194d565b6001600160a01b0383166000908152600360205260408120805460019290611b6f908490612df2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b9d908490612e41565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03848116921690636352211e90602401602060405180830381865afa158015611c7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9e9190612f55565b6001600160a01b031614611cf45760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e20746869732070726f6f66000000000000006044820152606401610ad1565b600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905550565b600e544211611d7f5760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720686173206e6f742073746172746564207965742e000000006044820152606401610ad1565b81611dcc5760405162461bcd60e51b815260206004820152601460248201527f4e6f206d6f6f6e626972647320746f206d696e740000000000000000000000006044820152606401610ad1565b60005b8281101561124f576009546001600160a01b038084169116636352211e868685818110611dfe57611dfe612dc3565b905060200201356040518263ffffffff1660e01b8152600401611e2391815260200190565b602060405180830381865afa158015611e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e649190612f55565b6001600160a01b031614611eba5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f74206f776e2074686973204d6f6f6e62697264000000006044820152606401610ad1565b6001600c6000828254611ecd9190612e41565b90915550611ef5905082858584818110611ee957611ee9612dc3565b90506020020135611f71565b80611eff81612e09565b915050611dcf565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610977828260405180602001604052806000815250612235565b816001600160a01b0316836001600160a01b031603611fec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ad1565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612082848484611a31565b61208e848484846122be565b61124f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ad1565b60608160000361214357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561216d578061215781612e09565b91506121669050600a83612daf565b9150612147565b60008167ffffffffffffffff81111561218857612188612626565b6040519080825280601f01601f1916602001820160405280156121b2576020820181803683370190505b5090505b8415611618576121c7600183612df2565b91506121d4600a86612f72565b6121df906030612e41565b60f81b8183815181106121f4576121f4612dc3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061222e600a86612daf565b94506121b6565b61223f838361247a565b61224c60008484846122be565b610b725760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ad1565b60006001600160a01b0384163b15612472576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061231b903390899088908890600401612f86565b6020604051808303816000875af1925050508015612374575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261237191810190612fc2565b60015b612427573d8080156123a2576040519150601f19603f3d011682016040523d82523d6000602084013e6123a7565b606091505b50805160000361241f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ad1565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611618565b506001611618565b6001600160a01b0382166124d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ad1565b6000818152600260205260409020546001600160a01b0316156125355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ad1565b6001600160a01b038216600090815260036020526040812080546001929061255e908490612e41565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461188c57600080fd5b60006020828403121561261457600080fd5b813561261f816125d4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561267057612670612626565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156126b6576126b6612626565b816040528093508581528686860111156126cf57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126126fa57600080fd5b61261f83833560208501612655565b60006020828403121561271b57600080fd5b813567ffffffffffffffff81111561273257600080fd5b611618848285016126e9565b60005b83811015612759578181015183820152602001612741565b8381111561124f5750506000910152565b6000815180845261278281602086016020860161273e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061261f602083018461276a565b6000602082840312156127d957600080fd5b5035919050565b6001600160a01b038116811461188c57600080fd5b6000806040838503121561280857600080fd5b8235612813816127e0565b946020939093013593505050565b60008060006060848603121561283657600080fd5b8335612841816127e0565b92506020840135612851816127e0565b929592945050506040919091013590565b60008083601f84011261287457600080fd5b50813567ffffffffffffffff81111561288c57600080fd5b6020830191508360208260051b85010111156128a757600080fd5b9250929050565b803560ff811681146128bf57600080fd5b919050565b600080600080600080600080600060e08a8c0312156128e257600080fd5b893567ffffffffffffffff808211156128fa57600080fd5b6129068d838e01612862565b909b50995060208c013591508082111561291f57600080fd5b61292b8d838e01612862565b909950975060408c01359150612940826127e0565b90955060608b0135908082111561295657600080fd5b506129638c828d016126e9565b94505061297260808b016128ae565b925060a08a0135915060c08a013590509295985092959850929598565b6000602082840312156129a157600080fd5b813561261f816127e0565b600080604083850312156129bf57600080fd5b82356129ca816127e0565b9150602083013580151581146129df57600080fd5b809150509250929050565b60008060008060808587031215612a0057600080fd5b8435612a0b816127e0565b93506020850135612a1b816127e0565b925060408501359150606085013567ffffffffffffffff811115612a3e57600080fd5b8501601f81018713612a4f57600080fd5b612a5e87823560208401612655565b91505092959194509250565b60008060008060408587031215612a8057600080fd5b843567ffffffffffffffff80821115612a9857600080fd5b612aa488838901612862565b90965094506020870135915080821115612abd57600080fd5b50612aca87828801612862565b95989497509550505050565b60008060008060808587031215612aec57600080fd5b843567ffffffffffffffff811115612b0357600080fd5b612b0f878288016126e9565b945050612b1e602086016128ae565b93969395505050506040820135916060013590565b60008060408385031215612b4657600080fd5b8235612b51816127e0565b915060208301356129df816127e0565b600181811c90821680612b7557607f821691505b602082108103612bae577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115610b7257600081815260208120601f850160051c81016020861015612bdb5750805b601f850160051c820191505b8181101561145f57828155600101612be7565b815167ffffffffffffffff811115612c1457612c14612626565b612c2881612c228454612b61565b84612bb4565b602080601f831160018114612c7b5760008415612c455750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561145f565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015612cc857888601518255948401946001909101908401612ca9565b5085821015612d0457878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d7b57612d7b612d14565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612dbe57612dbe612d80565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082821015612e0457612e04612d14565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e3a57612e3a612d14565b5060010190565b60008219821115612e5457612e54612d14565b500190565b6000808454612e6781612b61565b60018281168015612e7f5760018114612eb257612ee1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450612ee1565b8860005260208060002060005b85811015612ed85781548a820152908401908201612ebf565b50505082870194505b505050508351612ef581836020880161273e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60008351612f3881846020880161273e565b835190830190612f4c81836020880161273e565b01949350505050565b600060208284031215612f6757600080fd5b815161261f816127e0565b600082612f8157612f81612d80565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612fb8608083018461276a565b9695505050505050565b600060208284031215612fd457600080fd5b815161261f816125d456fea2646970667358221220ac4637ffd9a838bae4179a7d4697a618a5f08511c85722956d7e1762b4210acf64736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964657868646e6b3437327232736c6d78663561337a366132686a7a71736a6f6e736c337a34786e6f7a61647937756275366c696d2f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://bafybeidexhdnk472r2slmxf5a3z6a2hjzqsjonsl3z4xnozady7ubu6lim/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f6261667962656964657868646e6b3437327232736c6d786635
Arg [3] : 61337a366132686a7a71736a6f6e736c337a34786e6f7a61647937756275366c
Arg [4] : 696d2f0000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
OVERVIEW
Birbs Crew is a collection of 1 for 1 3D Moonbirds that is built to drive more utility to Moonbirds holders. Holding a Birbs Crew NFT gives you access to upcoming events, grants for building more projects, and a sub-parliament.Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $3,432.46 | 0.84 | $2,883.27 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.