ETH Price: $2,636.55 (-0.85%)
Gas: 2 Gwei

Token

Jinzo Heads of Lettuce (HEADSOFLETTUCE)
 

Overview

Max Total Supply

777 HEADSOFLETTUCE

Holders

554

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 HEADSOFLETTUCE
0x54e729767a75b6723551f62f05d801cb7e74e556
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JinzoHeadsOfLettuce

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion
File 1 of 6 : headsoflettuce.sol
// SPDX-License-Identifier: MIT

/*
 **************************************************************************

 Jinzo Heads of Lettuce

 * Global supply-chain issues have recently been challenging.
   Jinzo, a web3-native degen, restaurantoor, and friend to many,
   once spent upwards of $92 USD on a box of lettuce for his restaurant. 
   Jinzo just wanted to share his tasty delights with the world.

 * In this same spirit -
   and with careful consideration of current supply-chain dynamics -
   *** I have decided to drop-off 777 mysterious heads of lettuce for free ***

 * These heads are claimable, collectible, and utilizable via this smart contract.
   The truth about their history may be earth-shattering...
   but can only be obtained by those that hold 2 or more heads (in a month or two).

 **************************************************************************

 Jinzo Heads of Lettuce

 * No fancy website
 * No socials.
 * Just a smart contract with lettuce and hidden truths.
 * Original art.
 * cc0
 * 1 per wallet.
 * SUPPLY: whatever comes first- 777 mints or 2 hours without a new mint
 * Reserved: 0
 * Reveal: Instant

 **************************************************************************

 Jinzo Heads of Lettuce

 * if you are chill like an iceberg :  you will mint ONE AND ONLY ONE (from mint).
 * if you want more heads of lettuce :  you will paste the contract address into opensea.
 * if you follow these rules         :  you will be spoiled with great delights.

 * Stealth launch has begun
   Official links will be viewable through getOfficialLinks in the view API
   The most important utility is the friends made along the way

 * cooler heads prevail,
    - anonlettuce.eth

 */

pragma solidity ^0.8.4;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./IHistoricalContract.sol";

contract JinzoHeadsOfLettuce is ERC721A, Ownable {

    uint256 public headMax = 777; // can be lowered but not raised

    mapping(address => bool) public addressHasMinted;

    string public baseURI;
    string public baseExtension = ".json";

    bool public publicSaleActive; 
    bool public specialPeriodActive;

    uint256 lastMintTimestamp;

    constructor(string memory _baseURI) ERC721A("Jinzo Heads of Lettuce", "HEADSOFLETTUCE") {
        baseURI = _baseURI;
        lastMintTimestamp = block.timestamp + 2 hours;
    }

    function mint() external { // free, 1 per wallet
        require(_totalMinted() < headMax, "no more");
        require(publicSaleActive, "public sale inactive");
        // require that the last mint was less than 2 hours ago
        uint256 _currentTimestamp = block.timestamp;
        if(lastMintTimestamp != _currentTimestamp) {
            require(lastMintTimestamp + 2 hours > _currentTimestamp, "you waited too long");
            lastMintTimestamp = _currentTimestamp;
        }
        require(!addressHasMinted[_msgSender()], "you already minted");
        addressHasMinted[_msgSender()] = true;
        _safeMint(_msgSender(), 1);
    }

    mapping(address => bool) public canSummonAlpha;
    mapping(uint256 => bool) public hasBeenUsed;
    IHistoricalContract public historicalContract;
    function initializeSummoningAbilities(uint256 _id1, uint256 _id2) external {
        require(specialPeriodActive);
        require(ownerOf(_id1) == _msgSender() && ownerOf(_id2) == _msgSender(), "not yours");
        require(!hasBeenUsed[_id1] && !hasBeenUsed[_id2], "one or both of these have been used");
        hasBeenUsed[_id1] = true;
        hasBeenUsed[_id2] = true;
        canSummonAlpha[_msgSender()] = true;
        historicalContract.lettuceMint(_msgSender());
    }

    function checkSummoningAbilities(address _addr) external view returns(bool) {
        return canSummonAlpha[_addr];
    }

    function mintGift(address _addr, uint256 _amount) external onlyOwner {
        require(_totalMinted() < headMax, "no more");
        _safeMint(_addr, _amount);
    }

    function setPublicSaleActive(bool _intended) external onlyOwner {
        require(publicSaleActive != _intended, "This is already the value");
        publicSaleActive = _intended;
        lastMintTimestamp = block.timestamp;
    }

    function setSpecialPeriodActive(bool _intended) external onlyOwner {
        require(specialPeriodActive != _intended, "This is already the value");
        specialPeriodActive = _intended;
    }

    function setBaseURI(string calldata _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setBaseExtension(string calldata _baseExtension) external onlyOwner {
        baseExtension = _baseExtension;
    }

    function setHeadsMax(uint256 _newHeadMax) external onlyOwner { 
        require(_newHeadMax < headMax, "supply cap can only be lowered");
        headMax = _newHeadMax;
    }

    function createOfficialLink(string memory _link) external onlyOwner {
        officialLinks.push(_link);
    }
    function setOfficialLink(uint256 _i, string memory _newLink) external onlyOwner {
        officialLinks[_i] = _newLink;
    }

    // SOURCE OF TRUTH
    string public lettuceTalk = "check back soon"; // view API for most recent alpha
    function setLettuceWords(string memory _newWords) external onlyOwner {
        lettuceTalk = _newWords;
    }

    function setHistoricalContract(address _addr) external onlyOwner {
        historicalContract = IHistoricalContract(_addr);
    }
  
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "Cannot query non-existent token");
        return string(abi.encodePacked(baseURI, _toString(_tokenId), baseExtension));
    }

    function withdraw(address _to) external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _to.call{value: balance}("");
        require(success, "Failed to send ether");
    }

    function donate() public payable {
        (bool thanks, ) = owner().call{value: address(this).balance}("");
        require(thanks);
	}

    string[] officialLinks; // SOURCE OF TRUTH
    function getOfficialLinks() external view returns(string[] memory){
        return officialLinks; 
    }

    /* 
     
     Jinzo Heads of Lettuce

     * Artist Royalty: 7.5% of secondary sales
     * Jinzo and the hardworking team at MVHQ will receive a 15% cut.
     * The MVHQ community fund will also receive a 15% cut.
     * *** MVHQ and the team had no prior knowledge of the lettuce arrival. ***

     * cooler heads prevail,
     - anonlettuce.eth

     */

}

File 2 of 6 : IHistoricalContract.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

interface IHistoricalContract {
    function lettuceMint(address _addr) external;
}

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

File 4 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721A.sol";

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view virtual returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view virtual returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view virtual returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 5 of 6 : Context.sol
// 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;
    }
}

File 6 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev 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);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 500
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canSummonAlpha","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"checkSummoningAbilities","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_link","type":"string"}],"name":"createOfficialLink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOfficialLinks","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasBeenUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"headMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"historicalContract","outputs":[{"internalType":"contract IHistoricalContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id1","type":"uint256"},{"internalType":"uint256","name":"_id2","type":"uint256"}],"name":"initializeSummoningAbilities","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lettuceTalk","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newHeadMax","type":"uint256"}],"name":"setHeadsMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setHistoricalContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newWords","type":"string"}],"name":"setLettuceWords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_i","type":"uint256"},{"internalType":"string","name":"_newLink","type":"string"}],"name":"setOfficialLink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_intended","type":"bool"}],"name":"setPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_intended","type":"bool"}],"name":"setSpecialPeriodActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"specialPeriodActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61030960095560c06040526005608081905264173539b7b760d91b60a09081526200002e91600c9190620001ab565b5060408051808201909152600f8082526e31b432b1b5903130b1b59039b7b7b760891b60209092019182526200006791601291620001ab565b503480156200007557600080fd5b506040516200253238038062002532833981016040819052620000989162000251565b604080518082018252601681527f4a696e7a6f204865616473206f66204c6574747563650000000000000000000060208083019182528351808501909452600e84526d48454144534f464c45545455434560901b9084015281519192916200010391600291620001ab565b50805162000119906003906020840190620001ab565b505060008055506200012b3362000159565b80516200014090600b906020840190620001ab565b506200014f42611c2062000327565b600e55506200039f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b9906200034c565b90600052602060002090601f016020900481019282620001dd576000855562000228565b82601f10620001f857805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002285782518255916020019190600101906200020b565b50620002369291506200023a565b5090565b5b808211156200023657600081556001016200023b565b6000602080838503121562000264578182fd5b82516001600160401b03808211156200027b578384fd5b818501915085601f8301126200028f578384fd5b815181811115620002a457620002a462000389565b604051601f8201601f19908116603f01168101908382118183101715620002cf57620002cf62000389565b816040528281528886848701011115620002e7578687fd5b8693505b828410156200030a5784840186015181850187015292850192620002eb565b828411156200031b57868684830101525b98975050505050505050565b600082198211156200034757634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200036157607f821691505b602082108114156200038357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61218380620003af6000396000f3fe60806040526004361061028c5760003560e01c80636c0360eb11610164578063c62f3494116100c6578063df958cf61161008a578063ed88c68e11610064578063ed88c68e146107e5578063f2fde38b146107ed578063fa02af9b1461080d57600080fd5b8063df958cf61461075c578063e2e06fa31461077c578063e985e9c51461079c57600080fd5b8063c62f3494146106b7578063c6682862146106d7578063c87b56dd146106ec578063d982c8791461070c578063da3ef23f1461073c57600080fd5b8063a22cb46511610128578063bc8893b411610102578063bc8893b414610668578063c4698ea614610682578063c54bbd8c1461069757600080fd5b8063a22cb465146105f8578063b2a098d914610618578063b88d4fde1461064857600080fd5b80636c0360eb1461057b57806370a0823114610590578063715018a6146105b05780638da5cb5b146105c557806395d89b41146105e357600080fd5b806335f341191161020d5780634c0b17b3116101d157806355f804b3116101ab57806355f804b31461051b57806362b04c381461053b5780636352211e1461055b57600080fd5b80634c0b17b3146104ab5780634dcc0db2146104cb57806351cff8d9146104fb57600080fd5b806335f34119146103fc57806339598061146104355780633d8ef3741461045557806342842e0e1461046b578063489a0fdc1461048b57600080fd5b80631249c58b116102545780631249c58b146103625780631330ada71461037757806318160ddd1461039957806323b872dd146103bc5780633463006d146103dc57600080fd5b806301ffc9a71461029157806306fdde03146102c6578063081812fc146102e8578063095ea7b3146103205780630f24e3c814610342575b600080fd5b34801561029d57600080fd5b506102b16102ac366004611d99565b61082c565b60405190151581526020015b60405180910390f35b3480156102d257600080fd5b506102db61087e565b6040516102bd9190612083565b3480156102f457600080fd5b50610308610303366004611e71565b610910565b6040516001600160a01b0390911681526020016102bd565b34801561032c57600080fd5b5061034061033b366004611d56565b610954565b005b34801561034e57600080fd5b5061034061035d366004611c2d565b6109f4565b34801561036e57600080fd5b50610340610a1e565b34801561038357600080fd5b5061038c610bab565b6040516102bd9190612022565b3480156103a557600080fd5b50600154600054035b6040519081526020016102bd565b3480156103c857600080fd5b506103406103d7366004611c79565b610c84565b3480156103e857600080fd5b506103406103f7366004611e71565b610e16565b34801561040857600080fd5b506102b1610417366004611c2d565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561044157600080fd5b50610340610450366004611d7f565b610e74565b34801561046157600080fd5b506103ae60095481565b34801561047757600080fd5b50610340610486366004611c79565b610ef5565b34801561049757600080fd5b506103406104a6366004611d56565b610f15565b3480156104b757600080fd5b506103406104c6366004611e89565b610f68565b3480156104d757600080fd5b506102b16104e6366004611e71565b60106020526000908152604090205460ff1681565b34801561050757600080fd5b50610340610516366004611c2d565b610faf565b34801561052757600080fd5b50610340610536366004611dd1565b61105a565b34801561054757600080fd5b50610340610556366004611e3e565b61106e565b34801561056757600080fd5b50610308610576366004611e71565b6110b9565b34801561058757600080fd5b506102db6110c4565b34801561059c57600080fd5b506103ae6105ab366004611c2d565b611152565b3480156105bc57600080fd5b506103406111a1565b3480156105d157600080fd5b506008546001600160a01b0316610308565b3480156105ef57600080fd5b506102db6111b5565b34801561060457600080fd5b50610340610613366004611d2d565b6111c4565b34801561062457600080fd5b506102b1610633366004611c2d565b600a6020526000908152604090205460ff1681565b34801561065457600080fd5b50610340610663366004611cb4565b61125a565b34801561067457600080fd5b50600d546102b19060ff1681565b34801561068e57600080fd5b506102db6112a4565b3480156106a357600080fd5b506103406106b2366004611ece565b6112b1565b3480156106c357600080fd5b506103406106d2366004611e3e565b611452565b3480156106e357600080fd5b506102db61146d565b3480156106f857600080fd5b506102db610707366004611e71565b61147a565b34801561071857600080fd5b506102b1610727366004611c2d565b600f6020526000908152604090205460ff1681565b34801561074857600080fd5b50610340610757366004611dd1565b611506565b34801561076857600080fd5b50601154610308906001600160a01b031681565b34801561078857600080fd5b50610340610797366004611d7f565b61151a565b3480156107a857600080fd5b506102b16107b7366004611c47565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610340611592565b3480156107f957600080fd5b50610340610808366004611c2d565b611603565b34801561081957600080fd5b50600d546102b190610100900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061085d57506380ac58cd60e01b6001600160e01b03198316145b806108785750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461088d906120e6565b80601f01602080910402602001604051908101604052809291908181526020018280546108b9906120e6565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b600061091b82611679565b610938576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061095f826110b9565b9050336001600160a01b038216146109985761097b81336107b7565b610998576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109fc6116a0565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60095460005410610a605760405162461bcd60e51b81526020600482015260076024820152666e6f206d6f726560c81b60448201526064015b60405180910390fd5b600d5460ff16610ab25760405162461bcd60e51b815260206004820152601460248201527f7075626c69632073616c6520696e6163746976650000000000000000000000006044820152606401610a57565b600e5442908114610b215780600e54611c20610ace9190612096565b11610b1b5760405162461bcd60e51b815260206004820152601360248201527f796f752077616974656420746f6f206c6f6e67000000000000000000000000006044820152606401610a57565b600e8190555b336000908152600a602052604090205460ff1615610b815760405162461bcd60e51b815260206004820152601260248201527f796f7520616c7265616479206d696e74656400000000000000000000000000006044820152606401610a57565b336000818152600a60205260409020805460ff19166001908117909155610ba891906116fa565b50565b60606013805480602002602001604051908101604052809291908181526020016000905b82821015610c7b578382906000526020600020018054610bee906120e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a906120e6565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081526020019060010190610bcf565b50505050905090565b6000610c8f82611714565b9050836001600160a01b0316816001600160a01b031614610cc25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610d0f57610cf286336107b7565b610d0f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d3657604051633a954ecd60e21b815260040160405180910390fd5b8015610d4157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610dcc5760018401600081815260046020526040902054610dca576000548114610dca5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610e1e6116a0565b6009548110610e6f5760405162461bcd60e51b815260206004820152601e60248201527f737570706c79206361702063616e206f6e6c79206265206c6f776572656400006044820152606401610a57565b600955565b610e7c6116a0565b600d5460ff6101009091041615158115151415610edb5760405162461bcd60e51b815260206004820152601960248201527f5468697320697320616c7265616479207468652076616c7565000000000000006044820152606401610a57565b600d80549115156101000261ff0019909216919091179055565b610f108383836040518060200160405280600081525061125a565b505050565b610f1d6116a0565b60095460005410610f5a5760405162461bcd60e51b81526020600482015260076024820152666e6f206d6f726560c81b6044820152606401610a57565b610f6482826116fa565b5050565b610f706116a0565b8060138381548110610f9257634e487b7160e01b600052603260045260246000fd5b906000526020600020019080519060200190610f10929190611a5f565b610fb76116a0565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b5050905080610f105760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642065746865720000000000000000000000006044820152606401610a57565b6110626116a0565b610f10600b8383611ae3565b6110766116a0565b601380546001810182556000919091528151610f64917f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09001906020840190611a5f565b600061087882611714565b600b80546110d1906120e6565b80601f01602080910402602001604051908101604052809291908181526020018280546110fd906120e6565b801561114a5780601f1061111f5761010080835404028352916020019161114a565b820191906000526020600020905b81548152906001019060200180831161112d57829003601f168201915b505050505081565b60006001600160a01b03821661117b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6111a96116a0565b6111b3600061177c565b565b60606003805461088d906120e6565b6001600160a01b0382163314156111ee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611265848484610c84565b6001600160a01b0383163b1561129e57611281848484846117ce565b61129e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b601280546110d1906120e6565b600d54610100900460ff166112c557600080fd5b336112cf836110b9565b6001600160a01b03161480156112f55750336112ea826110b9565b6001600160a01b0316145b61132d5760405162461bcd60e51b81526020600482015260096024820152686e6f7420796f75727360b81b6044820152606401610a57565b60008281526010602052604090205460ff1615801561135b575060008181526010602052604090205460ff16155b6113b35760405162461bcd60e51b815260206004820152602360248201527f6f6e65206f7220626f7468206f662074686573652068617665206265656e20756044820152621cd95960ea1b6064820152608401610a57565b60008281526010602090815260408083208054600160ff199182168117909255858552828520805482168317905533808652600f909452828520805490911690911790556011548151630b03cbf960e11b8152600481019390935290516001600160a01b039091169263160797f2926024808201939182900301818387803b15801561143e57600080fd5b505af1158015610e0e573d6000803e3d6000fd5b61145a6116a0565b8051610f64906012906020840190611a5f565b600c80546110d1906120e6565b606061148582611679565b6114d15760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a57565b600b6114dc836118c6565b600c6040516020016114f093929190611fb3565b6040516020818303038152906040529050919050565b61150e6116a0565b610f10600c8383611ae3565b6115226116a0565b600d5460ff161515811515141561157b5760405162461bcd60e51b815260206004820152601960248201527f5468697320697320616c7265616479207468652076616c7565000000000000006044820152606401610a57565b600d805460ff191691151591909117905542600e55565b60006115a66008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146115f0576040519150601f19603f3d011682016040523d82523d6000602084013e6115f5565b606091505b5050905080610ba857600080fd5b61160b6116a0565b6001600160a01b0381166116705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a57565b610ba88161177c565b6000805482108015610878575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146111b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a57565b610f64828260405180602001604052806000815250611915565b60008160005481101561176357600081815260046020526040902054600160e01b8116611761575b8061175a57506000190160008181526004602052604090205461173c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611803903390899088908890600401611fe6565b602060405180830381600087803b15801561181d57600080fd5b505af192505050801561184d575060408051601f3d908101601f1916820190925261184a91810190611db5565b60015b6118a8573d80801561187b576040519150601f19603f3d011682016040523d82523d6000602084013e611880565b606091505b5080516118a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b801561190357600183039250600a81066030018353600a90046118e5565b50819003601f19909101908152919050565b61191f8383611982565b6001600160a01b0383163b15610f10576000548281035b61194960008683806001019450866117ce565b611966576040516368d2bf6b60e11b815260040160405180910390fd5b81811061193657816000541461197b57600080fd5b5050505050565b6000546001600160a01b0383166119ab57604051622e076360e81b815260040160405180910390fd5b816119c95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a135760005550505050565b828054611a6b906120e6565b90600052602060002090601f016020900481019282611a8d5760008555611ad3565b82601f10611aa657805160ff1916838001178555611ad3565b82800160010185558215611ad3579182015b82811115611ad3578251825591602001919060010190611ab8565b50611adf929150611b57565b5090565b828054611aef906120e6565b90600052602060002090601f016020900481019282611b115760008555611ad3565b82601f10611b2a5782800160ff19823516178555611ad3565b82800160010185558215611ad3579182015b82811115611ad3578235825591602001919060010190611b3c565b5b80821115611adf5760008155600101611b58565b600067ffffffffffffffff80841115611b8757611b87612121565b604051601f8501601f19908116603f01168101908282118183101715611baf57611baf612121565b81604052809350858152868686011115611bc857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bf957600080fd5b919050565b80358015158114611bf957600080fd5b600082601f830112611c1e578081fd5b61175a83833560208501611b6c565b600060208284031215611c3e578081fd5b61175a82611be2565b60008060408385031215611c59578081fd5b611c6283611be2565b9150611c7060208401611be2565b90509250929050565b600080600060608486031215611c8d578081fd5b611c9684611be2565b9250611ca460208501611be2565b9150604084013590509250925092565b60008060008060808587031215611cc9578081fd5b611cd285611be2565b9350611ce060208601611be2565b925060408501359150606085013567ffffffffffffffff811115611d02578182fd5b8501601f81018713611d12578182fd5b611d2187823560208401611b6c565b91505092959194509250565b60008060408385031215611d3f578182fd5b611d4883611be2565b9150611c7060208401611bfe565b60008060408385031215611d68578182fd5b611d7183611be2565b946020939093013593505050565b600060208284031215611d90578081fd5b61175a82611bfe565b600060208284031215611daa578081fd5b813561175a81612137565b600060208284031215611dc6578081fd5b815161175a81612137565b60008060208385031215611de3578182fd5b823567ffffffffffffffff80821115611dfa578384fd5b818501915085601f830112611e0d578384fd5b813581811115611e1b578485fd5b866020828501011115611e2c578485fd5b60209290920196919550909350505050565b600060208284031215611e4f578081fd5b813567ffffffffffffffff811115611e65578182fd5b6118be84828501611c0e565b600060208284031215611e82578081fd5b5035919050565b60008060408385031215611e9b578182fd5b82359150602083013567ffffffffffffffff811115611eb8578182fd5b611ec485828601611c0e565b9150509250929050565b60008060408385031215611ee0578182fd5b50508035926020909101359150565b60008151808452611f078160208601602086016120ba565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611f3557607f831692505b6020808410821415611f5557634e487b7160e01b86526022600452602486fd5b818015611f695760018114611f7a57611fa7565b60ff19861689528489019650611fa7565b60008881526020902060005b86811015611f9f5781548b820152908501908301611f86565b505084890196505b50505050505092915050565b6000611fbf8286611f1b565b8451611fcf8183602089016120ba565b611fdb81830186611f1b565b979650505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526120186080830184611eef565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b8701019250838701855b8281101561207657603f19888603018452612064858351611eef565b94509285019290850190600101612048565b5092979650505050505050565b60208152600061175a6020830184611eef565b600082198211156120b557634e487b7160e01b81526011600452602481fd5b500190565b60005b838110156120d55781810151838201526020016120bd565b8381111561129e5750506000910152565b600181811c908216806120fa57607f821691505b6020821081141561211b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ba857600080fdfea26469706673582212207da58fd2988f198105319bd8dbfc3adc735f88b04caa633797a1b863fe64a6f464736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d624434525a514c673847334b6f54776448396d466f6f38777234314a45314d55423676446373446a597276462f00000000000000000000

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80636c0360eb11610164578063c62f3494116100c6578063df958cf61161008a578063ed88c68e11610064578063ed88c68e146107e5578063f2fde38b146107ed578063fa02af9b1461080d57600080fd5b8063df958cf61461075c578063e2e06fa31461077c578063e985e9c51461079c57600080fd5b8063c62f3494146106b7578063c6682862146106d7578063c87b56dd146106ec578063d982c8791461070c578063da3ef23f1461073c57600080fd5b8063a22cb46511610128578063bc8893b411610102578063bc8893b414610668578063c4698ea614610682578063c54bbd8c1461069757600080fd5b8063a22cb465146105f8578063b2a098d914610618578063b88d4fde1461064857600080fd5b80636c0360eb1461057b57806370a0823114610590578063715018a6146105b05780638da5cb5b146105c557806395d89b41146105e357600080fd5b806335f341191161020d5780634c0b17b3116101d157806355f804b3116101ab57806355f804b31461051b57806362b04c381461053b5780636352211e1461055b57600080fd5b80634c0b17b3146104ab5780634dcc0db2146104cb57806351cff8d9146104fb57600080fd5b806335f34119146103fc57806339598061146104355780633d8ef3741461045557806342842e0e1461046b578063489a0fdc1461048b57600080fd5b80631249c58b116102545780631249c58b146103625780631330ada71461037757806318160ddd1461039957806323b872dd146103bc5780633463006d146103dc57600080fd5b806301ffc9a71461029157806306fdde03146102c6578063081812fc146102e8578063095ea7b3146103205780630f24e3c814610342575b600080fd5b34801561029d57600080fd5b506102b16102ac366004611d99565b61082c565b60405190151581526020015b60405180910390f35b3480156102d257600080fd5b506102db61087e565b6040516102bd9190612083565b3480156102f457600080fd5b50610308610303366004611e71565b610910565b6040516001600160a01b0390911681526020016102bd565b34801561032c57600080fd5b5061034061033b366004611d56565b610954565b005b34801561034e57600080fd5b5061034061035d366004611c2d565b6109f4565b34801561036e57600080fd5b50610340610a1e565b34801561038357600080fd5b5061038c610bab565b6040516102bd9190612022565b3480156103a557600080fd5b50600154600054035b6040519081526020016102bd565b3480156103c857600080fd5b506103406103d7366004611c79565b610c84565b3480156103e857600080fd5b506103406103f7366004611e71565b610e16565b34801561040857600080fd5b506102b1610417366004611c2d565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561044157600080fd5b50610340610450366004611d7f565b610e74565b34801561046157600080fd5b506103ae60095481565b34801561047757600080fd5b50610340610486366004611c79565b610ef5565b34801561049757600080fd5b506103406104a6366004611d56565b610f15565b3480156104b757600080fd5b506103406104c6366004611e89565b610f68565b3480156104d757600080fd5b506102b16104e6366004611e71565b60106020526000908152604090205460ff1681565b34801561050757600080fd5b50610340610516366004611c2d565b610faf565b34801561052757600080fd5b50610340610536366004611dd1565b61105a565b34801561054757600080fd5b50610340610556366004611e3e565b61106e565b34801561056757600080fd5b50610308610576366004611e71565b6110b9565b34801561058757600080fd5b506102db6110c4565b34801561059c57600080fd5b506103ae6105ab366004611c2d565b611152565b3480156105bc57600080fd5b506103406111a1565b3480156105d157600080fd5b506008546001600160a01b0316610308565b3480156105ef57600080fd5b506102db6111b5565b34801561060457600080fd5b50610340610613366004611d2d565b6111c4565b34801561062457600080fd5b506102b1610633366004611c2d565b600a6020526000908152604090205460ff1681565b34801561065457600080fd5b50610340610663366004611cb4565b61125a565b34801561067457600080fd5b50600d546102b19060ff1681565b34801561068e57600080fd5b506102db6112a4565b3480156106a357600080fd5b506103406106b2366004611ece565b6112b1565b3480156106c357600080fd5b506103406106d2366004611e3e565b611452565b3480156106e357600080fd5b506102db61146d565b3480156106f857600080fd5b506102db610707366004611e71565b61147a565b34801561071857600080fd5b506102b1610727366004611c2d565b600f6020526000908152604090205460ff1681565b34801561074857600080fd5b50610340610757366004611dd1565b611506565b34801561076857600080fd5b50601154610308906001600160a01b031681565b34801561078857600080fd5b50610340610797366004611d7f565b61151a565b3480156107a857600080fd5b506102b16107b7366004611c47565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610340611592565b3480156107f957600080fd5b50610340610808366004611c2d565b611603565b34801561081957600080fd5b50600d546102b190610100900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061085d57506380ac58cd60e01b6001600160e01b03198316145b806108785750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461088d906120e6565b80601f01602080910402602001604051908101604052809291908181526020018280546108b9906120e6565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b600061091b82611679565b610938576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061095f826110b9565b9050336001600160a01b038216146109985761097b81336107b7565b610998576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109fc6116a0565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60095460005410610a605760405162461bcd60e51b81526020600482015260076024820152666e6f206d6f726560c81b60448201526064015b60405180910390fd5b600d5460ff16610ab25760405162461bcd60e51b815260206004820152601460248201527f7075626c69632073616c6520696e6163746976650000000000000000000000006044820152606401610a57565b600e5442908114610b215780600e54611c20610ace9190612096565b11610b1b5760405162461bcd60e51b815260206004820152601360248201527f796f752077616974656420746f6f206c6f6e67000000000000000000000000006044820152606401610a57565b600e8190555b336000908152600a602052604090205460ff1615610b815760405162461bcd60e51b815260206004820152601260248201527f796f7520616c7265616479206d696e74656400000000000000000000000000006044820152606401610a57565b336000818152600a60205260409020805460ff19166001908117909155610ba891906116fa565b50565b60606013805480602002602001604051908101604052809291908181526020016000905b82821015610c7b578382906000526020600020018054610bee906120e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a906120e6565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081526020019060010190610bcf565b50505050905090565b6000610c8f82611714565b9050836001600160a01b0316816001600160a01b031614610cc25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610d0f57610cf286336107b7565b610d0f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d3657604051633a954ecd60e21b815260040160405180910390fd5b8015610d4157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610dcc5760018401600081815260046020526040902054610dca576000548114610dca5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610e1e6116a0565b6009548110610e6f5760405162461bcd60e51b815260206004820152601e60248201527f737570706c79206361702063616e206f6e6c79206265206c6f776572656400006044820152606401610a57565b600955565b610e7c6116a0565b600d5460ff6101009091041615158115151415610edb5760405162461bcd60e51b815260206004820152601960248201527f5468697320697320616c7265616479207468652076616c7565000000000000006044820152606401610a57565b600d80549115156101000261ff0019909216919091179055565b610f108383836040518060200160405280600081525061125a565b505050565b610f1d6116a0565b60095460005410610f5a5760405162461bcd60e51b81526020600482015260076024820152666e6f206d6f726560c81b6044820152606401610a57565b610f6482826116fa565b5050565b610f706116a0565b8060138381548110610f9257634e487b7160e01b600052603260045260246000fd5b906000526020600020019080519060200190610f10929190611a5f565b610fb76116a0565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b5050905080610f105760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642065746865720000000000000000000000006044820152606401610a57565b6110626116a0565b610f10600b8383611ae3565b6110766116a0565b601380546001810182556000919091528151610f64917f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09001906020840190611a5f565b600061087882611714565b600b80546110d1906120e6565b80601f01602080910402602001604051908101604052809291908181526020018280546110fd906120e6565b801561114a5780601f1061111f5761010080835404028352916020019161114a565b820191906000526020600020905b81548152906001019060200180831161112d57829003601f168201915b505050505081565b60006001600160a01b03821661117b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6111a96116a0565b6111b3600061177c565b565b60606003805461088d906120e6565b6001600160a01b0382163314156111ee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611265848484610c84565b6001600160a01b0383163b1561129e57611281848484846117ce565b61129e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b601280546110d1906120e6565b600d54610100900460ff166112c557600080fd5b336112cf836110b9565b6001600160a01b03161480156112f55750336112ea826110b9565b6001600160a01b0316145b61132d5760405162461bcd60e51b81526020600482015260096024820152686e6f7420796f75727360b81b6044820152606401610a57565b60008281526010602052604090205460ff1615801561135b575060008181526010602052604090205460ff16155b6113b35760405162461bcd60e51b815260206004820152602360248201527f6f6e65206f7220626f7468206f662074686573652068617665206265656e20756044820152621cd95960ea1b6064820152608401610a57565b60008281526010602090815260408083208054600160ff199182168117909255858552828520805482168317905533808652600f909452828520805490911690911790556011548151630b03cbf960e11b8152600481019390935290516001600160a01b039091169263160797f2926024808201939182900301818387803b15801561143e57600080fd5b505af1158015610e0e573d6000803e3d6000fd5b61145a6116a0565b8051610f64906012906020840190611a5f565b600c80546110d1906120e6565b606061148582611679565b6114d15760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a57565b600b6114dc836118c6565b600c6040516020016114f093929190611fb3565b6040516020818303038152906040529050919050565b61150e6116a0565b610f10600c8383611ae3565b6115226116a0565b600d5460ff161515811515141561157b5760405162461bcd60e51b815260206004820152601960248201527f5468697320697320616c7265616479207468652076616c7565000000000000006044820152606401610a57565b600d805460ff191691151591909117905542600e55565b60006115a66008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146115f0576040519150601f19603f3d011682016040523d82523d6000602084013e6115f5565b606091505b5050905080610ba857600080fd5b61160b6116a0565b6001600160a01b0381166116705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a57565b610ba88161177c565b6000805482108015610878575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146111b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a57565b610f64828260405180602001604052806000815250611915565b60008160005481101561176357600081815260046020526040902054600160e01b8116611761575b8061175a57506000190160008181526004602052604090205461173c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611803903390899088908890600401611fe6565b602060405180830381600087803b15801561181d57600080fd5b505af192505050801561184d575060408051601f3d908101601f1916820190925261184a91810190611db5565b60015b6118a8573d80801561187b576040519150601f19603f3d011682016040523d82523d6000602084013e611880565b606091505b5080516118a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b801561190357600183039250600a81066030018353600a90046118e5565b50819003601f19909101908152919050565b61191f8383611982565b6001600160a01b0383163b15610f10576000548281035b61194960008683806001019450866117ce565b611966576040516368d2bf6b60e11b815260040160405180910390fd5b81811061193657816000541461197b57600080fd5b5050505050565b6000546001600160a01b0383166119ab57604051622e076360e81b815260040160405180910390fd5b816119c95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a135760005550505050565b828054611a6b906120e6565b90600052602060002090601f016020900481019282611a8d5760008555611ad3565b82601f10611aa657805160ff1916838001178555611ad3565b82800160010185558215611ad3579182015b82811115611ad3578251825591602001919060010190611ab8565b50611adf929150611b57565b5090565b828054611aef906120e6565b90600052602060002090601f016020900481019282611b115760008555611ad3565b82601f10611b2a5782800160ff19823516178555611ad3565b82800160010185558215611ad3579182015b82811115611ad3578235825591602001919060010190611b3c565b5b80821115611adf5760008155600101611b58565b600067ffffffffffffffff80841115611b8757611b87612121565b604051601f8501601f19908116603f01168101908282118183101715611baf57611baf612121565b81604052809350858152868686011115611bc857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bf957600080fd5b919050565b80358015158114611bf957600080fd5b600082601f830112611c1e578081fd5b61175a83833560208501611b6c565b600060208284031215611c3e578081fd5b61175a82611be2565b60008060408385031215611c59578081fd5b611c6283611be2565b9150611c7060208401611be2565b90509250929050565b600080600060608486031215611c8d578081fd5b611c9684611be2565b9250611ca460208501611be2565b9150604084013590509250925092565b60008060008060808587031215611cc9578081fd5b611cd285611be2565b9350611ce060208601611be2565b925060408501359150606085013567ffffffffffffffff811115611d02578182fd5b8501601f81018713611d12578182fd5b611d2187823560208401611b6c565b91505092959194509250565b60008060408385031215611d3f578182fd5b611d4883611be2565b9150611c7060208401611bfe565b60008060408385031215611d68578182fd5b611d7183611be2565b946020939093013593505050565b600060208284031215611d90578081fd5b61175a82611bfe565b600060208284031215611daa578081fd5b813561175a81612137565b600060208284031215611dc6578081fd5b815161175a81612137565b60008060208385031215611de3578182fd5b823567ffffffffffffffff80821115611dfa578384fd5b818501915085601f830112611e0d578384fd5b813581811115611e1b578485fd5b866020828501011115611e2c578485fd5b60209290920196919550909350505050565b600060208284031215611e4f578081fd5b813567ffffffffffffffff811115611e65578182fd5b6118be84828501611c0e565b600060208284031215611e82578081fd5b5035919050565b60008060408385031215611e9b578182fd5b82359150602083013567ffffffffffffffff811115611eb8578182fd5b611ec485828601611c0e565b9150509250929050565b60008060408385031215611ee0578182fd5b50508035926020909101359150565b60008151808452611f078160208601602086016120ba565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611f3557607f831692505b6020808410821415611f5557634e487b7160e01b86526022600452602486fd5b818015611f695760018114611f7a57611fa7565b60ff19861689528489019650611fa7565b60008881526020902060005b86811015611f9f5781548b820152908501908301611f86565b505084890196505b50505050505092915050565b6000611fbf8286611f1b565b8451611fcf8183602089016120ba565b611fdb81830186611f1b565b979650505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526120186080830184611eef565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b8701019250838701855b8281101561207657603f19888603018452612064858351611eef565b94509285019290850190600101612048565b5092979650505050505050565b60208152600061175a6020830184611eef565b600082198211156120b557634e487b7160e01b81526011600452602481fd5b500190565b60005b838110156120d55781810151838201526020016120bd565b8381111561129e5750506000910152565b600181811c908216806120fa57607f821691505b6020821081141561211b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ba857600080fdfea26469706673582212207da58fd2988f198105319bd8dbfc3adc735f88b04caa633797a1b863fe64a6f464736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d624434525a514c673847334b6f54776448396d466f6f38777234314a45314d55423676446373446a597276462f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmbD4RZQLg8G3KoTwdH9mFoo8wr41JE1MUB6vDcsDjYrvF/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d624434525a514c673847334b6f54776448396d466f6f38
Arg [3] : 777234314a45314d55423676446373446a597276462f00000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.