ETH Price: $2,416.63 (+1.85%)

Token

PassMatchHospitality (FWC2022)
 

Overview

Max Total Supply

630 FWC2022

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FWC2022
0xabd426D1E14bc003521FEd7646D4826A81a8d24f
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:
PassMatchHospitality

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-24
*/

// File: FIFA/IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0

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);
}
// File: FIFA/ERC721A.sol


// ERC721A Contracts v4.1.0

pragma solidity ^0.8.4;


/**
 * @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 {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

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

    /**
     * @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].value = 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].value;
    }

    /**
     * @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)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            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: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: FIFA/Contract111.sol


pragma solidity ^0.8.12;


contract PassMatchHospitality is Ownable, ERC721A {
    using Strings for uint256;

    enum PassState {
        NONE,
        PUBLICMINT,
        REVEAL,
        WHITELISTSALE,
        PREMINTSALE,
        SOLDOUT

    }

    PassState public currentState;

    string public baseURI;
    string public notRevealURI;

    uint256 private constant MAX_SUPPLY = 2022;
    uint256 private constant MAX_WHITELIST = 0;
    uint256 private constant MAX_PREMINT = 0;
    uint256 private constant SALES_PRICE = 0 ether;
    uint256 private constant MAX_PER_WALLET = 1;

    address public teamAddress;
    bytes32 public whitelistMerkleRoot;
    bytes32 public premintMerkleRoot;
 
    mapping(address => uint256) public amountperWallet;
 

    constructor(
        address _team,
        bytes32 _whitelistMerkleRoot,
        bytes32 _premintMerkleRoot,
        string memory _baseURI,
        string memory _notRevealURI
    ) ERC721A("PassMatchHospitality", "FWC2022") {
        teamAddress = _team;
        whitelistMerkleRoot = _whitelistMerkleRoot;
        premintMerkleRoot = _premintMerkleRoot;
        baseURI = _baseURI;
        notRevealURI = _notRevealURI;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier atState(PassState state) {
        require(currentState == state, "Declined");
        _;
    }

    modifier validateMemberAddress(
        bytes32[] calldata _merkleProof,
        bytes32 _merkleRoot
    ) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, _merkleRoot, leaf),
            "Declined"
        );
        _;
    }

    modifier validateSupply(uint256 _maxSupply) {
        require(
            totalSupply() + MAX_PER_WALLET <= _maxSupply,
            "Max supply exceeded"
        );
        _;
    }

  

    modifier validateMintPerWallet() {
        require(
            amountperWallet[msg.sender] < MAX_PER_WALLET,
            "You can only mint 1 NFT per wallet"
        );
        _;
    }

    function WhiteListMint(bytes32[] calldata _proof)
        external
        payable
        callerIsUser
        atState(PassState.WHITELISTSALE)
        validateMintPerWallet
        validateSupply(MAX_WHITELIST)
        validateMemberAddress(_proof, whitelistMerkleRoot)
     
    {
        amountperWallet[msg.sender] += MAX_PER_WALLET;
        _safeMint(msg.sender, MAX_PER_WALLET);
    }

    function PreMint(bytes32[] calldata _proof)
        external
        payable
        callerIsUser
        atState(PassState.PREMINTSALE)
        validateMintPerWallet
        validateSupply(MAX_PREMINT + MAX_WHITELIST)
        validateMemberAddress(_proof, premintMerkleRoot)
        
    {
        amountperWallet[msg.sender] += MAX_PER_WALLET;
        _safeMint(msg.sender, MAX_PER_WALLET);
    }

    function PublicMint()
        external
        payable
        callerIsUser
        atState(PassState.PUBLICMINT)
        validateSupply(MAX_SUPPLY)
        validateMintPerWallet
  
    {
        amountperWallet[msg.sender] += MAX_PER_WALLET;
        _safeMint(msg.sender, MAX_PER_WALLET);
    }

    function TeamMint(uint256 _maxTeamMint) external payable onlyOwner {
        _safeMint(teamAddress, _maxTeamMint);
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {

         require(_exists(_tokenId), "URI query for nonexistent token");

        if (currentState != PassState.REVEAL) {
            return string(notRevealURI);
        }
        require(_exists(_tokenId), "URI query for nonexistent token");
        return string(abi.encodePacked(baseURI, (_tokenId).toString(), ".json"));
    }

    function withdrawAll(address _wallet) external onlyOwner {
        uint256 balance = address(this).balance;
        payable(_wallet).transfer(balance);
    }

    function setTeamAddress(address _team) external onlyOwner {
        teamAddress = _team;
    }



    function setBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setPassState(uint256 _step) external onlyOwner {
        currentState = PassState(_step);
    }

    function setNotRevealURI(string memory _uri) external onlyOwner {
        notRevealURI = _uri;
    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        whitelistMerkleRoot = _merkleRoot;
    }

    function setPremintMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        premintMerkleRoot = _merkleRoot;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_team","type":"address"},{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_premintMerkleRoot","type":"bytes32"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_notRevealURI","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":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"PreMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTeamMint","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"WhiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"enum PassMatchHospitality.PassState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealURI","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":"premintMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setPassState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPremintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_team","type":"address"}],"name":"setTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002312380380620023128339810160408190526200003491620002f9565b6040518060400160405280601481526020017f506173734d61746368486f73706974616c69747900000000000000000000000081525060405180604001604052806007815260200166232ba19918191960c91b815250620000a46200009e6200013260201b60201c565b62000136565b8151620000b990600390602085019062000186565b508051620000cf90600490602084019062000186565b50600180555050600c80546001600160a01b0319166001600160a01b038716179055600d849055600e83905581516200011090600a90602085019062000186565b5080516200012690600b90602084019062000186565b505050505050620003d5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001949062000398565b90600052602060002090601f016020900481019282620001b8576000855562000203565b82601f10620001d357805160ff191683800117855562000203565b8280016001018555821562000203579182015b8281111562000203578251825591602001919060010190620001e6565b506200021192915062000215565b5090565b5b8082111562000211576000815560010162000216565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025457600080fd5b81516001600160401b03808211156200027157620002716200022c565b604051601f8301601f19908116603f011681019082821181831017156200029c576200029c6200022c565b81604052838152602092508683858801011115620002b957600080fd5b600091505b83821015620002dd5785820183015181830184015290820190620002be565b83821115620002ef5760008385830101525b9695505050505050565b600080600080600060a086880312156200031257600080fd5b85516001600160a01b03811681146200032a57600080fd5b60208701516040880151606089015192975090955093506001600160401b03808211156200035757600080fd5b6200036589838a0162000242565b935060808801519150808211156200037c57600080fd5b506200038b8882890162000242565b9150509295509295909350565b600181811c90821680620003ad57607f821691505b60208210811415620003cf57634e487b7160e01b600052602260045260246000fd5b50919050565b611f2d80620003e56000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063b88d4fde116100a0578063d021aa501161006f578063d021aa50146105bc578063e985e9c5146105d1578063f2fde38b1461061a578063fa09e6301461063a578063fe1881c41461065a57600080fd5b8063b88d4fde1461053c578063bd32fb661461055c578063c87b56dd1461057c578063cbc70b6a1461059c57600080fd5b80638da5cb5b116100e75780638da5cb5b146104b357806395d89b41146104d1578063a0bcfc7f146104e6578063a22cb46514610506578063aa98e0c61461052657600080fd5b80636c0360eb1461045657806370a082311461046b578063715018a61461048b5780637e0c7fc5146104a057600080fd5b80631a982c991161019b5780634b5501341161016a5780634b550134146103c35780635accac99146103e35780635cc69bb9146104035780636352211e146104165780636690864e1461043657600080fd5b80631a982c99146103365780631c75f0851461036357806323b872dd1461038357806342842e0e146103a357600080fd5b8063095ea7b3116101d7578063095ea7b3146102ad5780630a37e6bc146102cd5780630c3f6acf146102f157806318160ddd1461031857600080fd5b806301ffc9a71461020957806304d695711461023e57806306fdde0314610253578063081812fc14610275575b600080fd5b34801561021557600080fd5b5061022961022436600461185e565b610662565b60405190151581526020015b60405180910390f35b61025161024c36600461187b565b6106b4565b005b34801561025f57600080fd5b50610268610858565b6040516102359190611948565b34801561028157600080fd5b5061029561029036600461195b565b6108ea565b6040516001600160a01b039091168152602001610235565b3480156102b957600080fd5b506102516102c8366004611990565b61092e565b3480156102d957600080fd5b506102e3600e5481565b604051908152602001610235565b3480156102fd57600080fd5b5060095461030b9060ff1681565b60405161023591906119d0565b34801561032457600080fd5b506102e3600254600154036000190190565b34801561034257600080fd5b506102e36103513660046119f8565b600f6020526000908152604090205481565b34801561036f57600080fd5b50600c54610295906001600160a01b031681565b34801561038f57600080fd5b5061025161039e366004611a13565b6109ce565b3480156103af57600080fd5b506102516103be366004611a13565b610b5f565b3480156103cf57600080fd5b506102516103de36600461195b565b610b7f565b3480156103ef57600080fd5b506102516103fe366004611adb565b610bbd565b61025161041136600461187b565b610bdc565b34801561042257600080fd5b5061029561043136600461195b565b610cd5565b34801561044257600080fd5b506102516104513660046119f8565b610ce0565b34801561046257600080fd5b50610268610d0a565b34801561047757600080fd5b506102e36104863660046119f8565b610d98565b34801561049757600080fd5b50610251610de7565b6102516104ae36600461195b565b610dfb565b3480156104bf57600080fd5b506000546001600160a01b0316610295565b3480156104dd57600080fd5b50610268610e1c565b3480156104f257600080fd5b50610251610501366004611adb565b610e2b565b34801561051257600080fd5b50610251610521366004611b24565b610e46565b34801561053257600080fd5b506102e3600d5481565b34801561054857600080fd5b50610251610557366004611b60565b610edc565b34801561056857600080fd5b5061025161057736600461195b565b610f26565b34801561058857600080fd5b5061026861059736600461195b565b610f33565b3480156105a857600080fd5b506102516105b736600461195b565b6110c1565b3480156105c857600080fd5b506102686110ce565b3480156105dd57600080fd5b506102296105ec366004611bdc565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062657600080fd5b506102516106353660046119f8565b6110db565b34801561064657600080fd5b506102516106553660046119f8565b611151565b610251611191565b60006301ffc9a760e01b6001600160e01b03198316148061069357506380ac58cd60e01b6001600160e01b03198316145b806106ae5750635b5e139f60e01b6001600160e01b03198316145b92915050565b3233146106dc5760405162461bcd60e51b81526004016106d390611c0f565b60405180910390fd5b60038060095460ff1660058111156106f6576106f66119ba565b146107135760405162461bcd60e51b81526004016106d390611c46565b336000908152600f60205260409020546001116107425760405162461bcd60e51b81526004016106d390611c68565b6000806001610758600254600154036000190190565b6107629190611cc0565b11156107805760405162461bcd60e51b81526004016106d390611cd8565b600d546040516bffffffffffffffffffffffff193360601b166020820152859185916000906034015b6040516020818303038152906040528051906020012090506108018484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506112869050565b61081d5760405162461bcd60e51b81526004016106d390611c46565b336000908152600f6020526040812080546001929061083d908490611cc0565b9091555061084e905033600161129c565b5050505050505050565b60606003805461086790611d05565b80601f016020809104026020016040519081016040528092919081815260200182805461089390611d05565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006108f5826112b6565b610912576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061093982610cd5565b9050336001600160a01b038216146109725761095581336105ec565b610972576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109d9826112eb565b9050836001600160a01b0316816001600160a01b031614610a0c5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610a5957610a3c86336105ec565b610a5957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a8057604051633a954ecd60e21b815260040160405180910390fd5b8015610a8b57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610b165760018401600081815260056020526040902054610b14576001548114610b145760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b7a83838360405180602001604052806000815250610edc565b505050565b610b8761135b565b806005811115610b9957610b996119ba565b6009805460ff19166001836005811115610bb557610bb56119ba565b021790555050565b610bc561135b565b8051610bd890600b9060208401906117af565b5050565b323314610bfb5760405162461bcd60e51b81526004016106d390611c0f565b60048060095460ff166005811115610c1557610c156119ba565b14610c325760405162461bcd60e51b81526004016106d390611c46565b336000908152600f6020526040902054600111610c615760405162461bcd60e51b81526004016106d390611c68565b610c6c600080611cc0565b806001610c80600254600154036000190190565b610c8a9190611cc0565b1115610ca85760405162461bcd60e51b81526004016106d390611cd8565b600e546040516bffffffffffffffffffffffff193360601b166020820152859185916000906034016107a9565b60006106ae826112eb565b610ce861135b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a8054610d1790611d05565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4390611d05565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b505050505081565b60006001600160a01b038216610dc1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610def61135b565b610df960006113b5565b565b610e0361135b565b600c54610e19906001600160a01b03168261129c565b50565b60606004805461086790611d05565b610e3361135b565b8051610bd890600a9060208401906117af565b6001600160a01b038216331415610e705760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ee78484846109ce565b6001600160a01b0383163b15610f2057610f0384848484611405565b610f20576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f2e61135b565b600d55565b6060610f3e826112b6565b610f8a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016106d3565b600260095460ff166005811115610fa357610fa36119ba565b1461103a57600b8054610fb590611d05565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe190611d05565b801561102e5780601f106110035761010080835404028352916020019161102e565b820191906000526020600020905b81548152906001019060200180831161101157829003601f168201915b50505050509050919050565b611043826112b6565b61108f5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016106d3565b600a61109a836114ee565b6040516020016110ab929190611d5c565b6040516020818303038152906040529050919050565b6110c961135b565b600e55565b600b8054610d1790611d05565b6110e361135b565b6001600160a01b0381166111485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d3565b610e19816113b5565b61115961135b565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610b7a573d6000803e3d6000fd5b3233146111b05760405162461bcd60e51b81526004016106d390611c0f565b60018060095460ff1660058111156111ca576111ca6119ba565b146111e75760405162461bcd60e51b81526004016106d390611c46565b6107e68060016111fe600254600154036000190190565b6112089190611cc0565b11156112265760405162461bcd60e51b81526004016106d390611cd8565b336000908152600f60205260409020546001116112555760405162461bcd60e51b81526004016106d390611c68565b336000908152600f60205260408120805460019290611275908490611cc0565b90915550610bd8905033600161129c565b60008261129385846115ec565b14949350505050565b610bd8828260405180602001604052806000815250611639565b6000816001111580156112ca575060015482105b80156106ae575050600090815260056020526040902054600160e01b161590565b600081806001116113425760015481101561134257600081815260056020526040902054600160e01b8116611340575b8061133957506000190160008181526005602052604090205461131b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03163314610df95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061143a903390899088908890600401611e17565b6020604051808303816000875af1925050508015611475575060408051601f3d908101601f1916820190925261147291810190611e54565b60015b6114d0573d8080156114a3576040519150601f19603f3d011682016040523d82523d6000602084013e6114a8565b606091505b5080516114c8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561153c578061152681611e71565b91506115359050600a83611ea2565b9150611516565b60008167ffffffffffffffff81111561155757611557611a4f565b6040519080825280601f01601f191660200182016040528015611581576020820181803683370190505b5090505b84156114e657611596600183611eb6565b91506115a3600a86611ecd565b6115ae906030611cc0565b60f81b8183815181106115c3576115c3611ee1565b60200101906001600160f81b031916908160001a9053506115e5600a86611ea2565b9450611585565b600081815b84518110156116315761161d8286838151811061161057611610611ee1565b60200260200101516116a6565b91508061162981611e71565b9150506115f1565b509392505050565b61164383836116d2565b6001600160a01b0383163b15610b7a576001548281035b61166d6000868380600101945086611405565b61168a576040516368d2bf6b60e11b815260040160405180910390fd5b81811061165a57816001541461169f57600080fd5b5050505050565b60008183106116c2576000828152602084905260409020611339565b5060009182526020526040902090565b6001546001600160a01b0383166116fb57604051622e076360e81b815260040160405180910390fd5b816117195760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117635760015550505050565b8280546117bb90611d05565b90600052602060002090601f0160209004810192826117dd5760008555611823565b82601f106117f657805160ff1916838001178555611823565b82800160010185558215611823579182015b82811115611823578251825591602001919060010190611808565b5061182f929150611833565b5090565b5b8082111561182f5760008155600101611834565b6001600160e01b031981168114610e1957600080fd5b60006020828403121561187057600080fd5b813561133981611848565b6000806020838503121561188e57600080fd5b823567ffffffffffffffff808211156118a657600080fd5b818501915085601f8301126118ba57600080fd5b8135818111156118c957600080fd5b8660208260051b85010111156118de57600080fd5b60209290920196919550909350505050565b60005b8381101561190b5781810151838201526020016118f3565b83811115610f205750506000910152565b600081518084526119348160208601602086016118f0565b601f01601f19169290920160200192915050565b602081526000611339602083018461191c565b60006020828403121561196d57600080fd5b5035919050565b80356001600160a01b038116811461198b57600080fd5b919050565b600080604083850312156119a357600080fd5b6119ac83611974565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60208101600683106119f257634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215611a0a57600080fd5b61133982611974565b600080600060608486031215611a2857600080fd5b611a3184611974565b9250611a3f60208501611974565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a8057611a80611a4f565b604051601f8501601f19908116603f01168101908282118183101715611aa857611aa8611a4f565b81604052809350858152868686011115611ac157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611aed57600080fd5b813567ffffffffffffffff811115611b0457600080fd5b8201601f81018413611b1557600080fd5b6114e684823560208401611a65565b60008060408385031215611b3757600080fd5b611b4083611974565b915060208301358015158114611b5557600080fd5b809150509250929050565b60008060008060808587031215611b7657600080fd5b611b7f85611974565b9350611b8d60208601611974565b925060408501359150606085013567ffffffffffffffff811115611bb057600080fd5b8501601f81018713611bc157600080fd5b611bd087823560208401611a65565b91505092959194509250565b60008060408385031215611bef57600080fd5b611bf883611974565b9150611c0660208401611974565b90509250929050565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b602080825260089082015267111958db1a5b995960c21b604082015260600190565b60208082526022908201527f596f752063616e206f6e6c79206d696e742031204e4654207065722077616c6c604082015261195d60f21b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cd357611cd3611caa565b500190565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b600181811c90821680611d1957607f821691505b60208210811415611d3a57634e487b7160e01b600052602260045260246000fd5b50919050565b60008151611d528185602086016118f0565b9290920192915050565b600080845481600182811c915080831680611d7857607f831692505b6020808410821415611d9857634e487b7160e01b86526022600452602486fd5b818015611dac5760018114611dbd57611dea565b60ff19861689528489019650611dea565b60008b81526020902060005b86811015611de25781548b820152908501908301611dc9565b505084890196505b505050505050611e0e611dfd8286611d40565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4a9083018461191c565b9695505050505050565b600060208284031215611e6657600080fd5b815161133981611848565b6000600019821415611e8557611e85611caa565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611eb157611eb1611e8c565b500490565b600082821015611ec857611ec8611caa565b500390565b600082611edc57611edc611e8c565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d9f4b9cfa7160160611d160efbe176b14c4079c62c7856b1010b620b462dd34f64736f6c634300080c003300000000000000000000000051b6e0dc27c1d33f53ee49478bd47998e209c7550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e4d373857763238366e597843666b6b635546727a6333536555384d7439444b79664b5a31543879425234422f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d66555a6734596d355643656e6d6a5968694a4b3167337a637445634a4b74456e7948664678524832445a50310000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636c0360eb11610118578063b88d4fde116100a0578063d021aa501161006f578063d021aa50146105bc578063e985e9c5146105d1578063f2fde38b1461061a578063fa09e6301461063a578063fe1881c41461065a57600080fd5b8063b88d4fde1461053c578063bd32fb661461055c578063c87b56dd1461057c578063cbc70b6a1461059c57600080fd5b80638da5cb5b116100e75780638da5cb5b146104b357806395d89b41146104d1578063a0bcfc7f146104e6578063a22cb46514610506578063aa98e0c61461052657600080fd5b80636c0360eb1461045657806370a082311461046b578063715018a61461048b5780637e0c7fc5146104a057600080fd5b80631a982c991161019b5780634b5501341161016a5780634b550134146103c35780635accac99146103e35780635cc69bb9146104035780636352211e146104165780636690864e1461043657600080fd5b80631a982c99146103365780631c75f0851461036357806323b872dd1461038357806342842e0e146103a357600080fd5b8063095ea7b3116101d7578063095ea7b3146102ad5780630a37e6bc146102cd5780630c3f6acf146102f157806318160ddd1461031857600080fd5b806301ffc9a71461020957806304d695711461023e57806306fdde0314610253578063081812fc14610275575b600080fd5b34801561021557600080fd5b5061022961022436600461185e565b610662565b60405190151581526020015b60405180910390f35b61025161024c36600461187b565b6106b4565b005b34801561025f57600080fd5b50610268610858565b6040516102359190611948565b34801561028157600080fd5b5061029561029036600461195b565b6108ea565b6040516001600160a01b039091168152602001610235565b3480156102b957600080fd5b506102516102c8366004611990565b61092e565b3480156102d957600080fd5b506102e3600e5481565b604051908152602001610235565b3480156102fd57600080fd5b5060095461030b9060ff1681565b60405161023591906119d0565b34801561032457600080fd5b506102e3600254600154036000190190565b34801561034257600080fd5b506102e36103513660046119f8565b600f6020526000908152604090205481565b34801561036f57600080fd5b50600c54610295906001600160a01b031681565b34801561038f57600080fd5b5061025161039e366004611a13565b6109ce565b3480156103af57600080fd5b506102516103be366004611a13565b610b5f565b3480156103cf57600080fd5b506102516103de36600461195b565b610b7f565b3480156103ef57600080fd5b506102516103fe366004611adb565b610bbd565b61025161041136600461187b565b610bdc565b34801561042257600080fd5b5061029561043136600461195b565b610cd5565b34801561044257600080fd5b506102516104513660046119f8565b610ce0565b34801561046257600080fd5b50610268610d0a565b34801561047757600080fd5b506102e36104863660046119f8565b610d98565b34801561049757600080fd5b50610251610de7565b6102516104ae36600461195b565b610dfb565b3480156104bf57600080fd5b506000546001600160a01b0316610295565b3480156104dd57600080fd5b50610268610e1c565b3480156104f257600080fd5b50610251610501366004611adb565b610e2b565b34801561051257600080fd5b50610251610521366004611b24565b610e46565b34801561053257600080fd5b506102e3600d5481565b34801561054857600080fd5b50610251610557366004611b60565b610edc565b34801561056857600080fd5b5061025161057736600461195b565b610f26565b34801561058857600080fd5b5061026861059736600461195b565b610f33565b3480156105a857600080fd5b506102516105b736600461195b565b6110c1565b3480156105c857600080fd5b506102686110ce565b3480156105dd57600080fd5b506102296105ec366004611bdc565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062657600080fd5b506102516106353660046119f8565b6110db565b34801561064657600080fd5b506102516106553660046119f8565b611151565b610251611191565b60006301ffc9a760e01b6001600160e01b03198316148061069357506380ac58cd60e01b6001600160e01b03198316145b806106ae5750635b5e139f60e01b6001600160e01b03198316145b92915050565b3233146106dc5760405162461bcd60e51b81526004016106d390611c0f565b60405180910390fd5b60038060095460ff1660058111156106f6576106f66119ba565b146107135760405162461bcd60e51b81526004016106d390611c46565b336000908152600f60205260409020546001116107425760405162461bcd60e51b81526004016106d390611c68565b6000806001610758600254600154036000190190565b6107629190611cc0565b11156107805760405162461bcd60e51b81526004016106d390611cd8565b600d546040516bffffffffffffffffffffffff193360601b166020820152859185916000906034015b6040516020818303038152906040528051906020012090506108018484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506112869050565b61081d5760405162461bcd60e51b81526004016106d390611c46565b336000908152600f6020526040812080546001929061083d908490611cc0565b9091555061084e905033600161129c565b5050505050505050565b60606003805461086790611d05565b80601f016020809104026020016040519081016040528092919081815260200182805461089390611d05565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006108f5826112b6565b610912576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061093982610cd5565b9050336001600160a01b038216146109725761095581336105ec565b610972576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109d9826112eb565b9050836001600160a01b0316816001600160a01b031614610a0c5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610a5957610a3c86336105ec565b610a5957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a8057604051633a954ecd60e21b815260040160405180910390fd5b8015610a8b57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610b165760018401600081815260056020526040902054610b14576001548114610b145760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b7a83838360405180602001604052806000815250610edc565b505050565b610b8761135b565b806005811115610b9957610b996119ba565b6009805460ff19166001836005811115610bb557610bb56119ba565b021790555050565b610bc561135b565b8051610bd890600b9060208401906117af565b5050565b323314610bfb5760405162461bcd60e51b81526004016106d390611c0f565b60048060095460ff166005811115610c1557610c156119ba565b14610c325760405162461bcd60e51b81526004016106d390611c46565b336000908152600f6020526040902054600111610c615760405162461bcd60e51b81526004016106d390611c68565b610c6c600080611cc0565b806001610c80600254600154036000190190565b610c8a9190611cc0565b1115610ca85760405162461bcd60e51b81526004016106d390611cd8565b600e546040516bffffffffffffffffffffffff193360601b166020820152859185916000906034016107a9565b60006106ae826112eb565b610ce861135b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a8054610d1790611d05565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4390611d05565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b505050505081565b60006001600160a01b038216610dc1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610def61135b565b610df960006113b5565b565b610e0361135b565b600c54610e19906001600160a01b03168261129c565b50565b60606004805461086790611d05565b610e3361135b565b8051610bd890600a9060208401906117af565b6001600160a01b038216331415610e705760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ee78484846109ce565b6001600160a01b0383163b15610f2057610f0384848484611405565b610f20576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f2e61135b565b600d55565b6060610f3e826112b6565b610f8a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016106d3565b600260095460ff166005811115610fa357610fa36119ba565b1461103a57600b8054610fb590611d05565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe190611d05565b801561102e5780601f106110035761010080835404028352916020019161102e565b820191906000526020600020905b81548152906001019060200180831161101157829003601f168201915b50505050509050919050565b611043826112b6565b61108f5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016106d3565b600a61109a836114ee565b6040516020016110ab929190611d5c565b6040516020818303038152906040529050919050565b6110c961135b565b600e55565b600b8054610d1790611d05565b6110e361135b565b6001600160a01b0381166111485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d3565b610e19816113b5565b61115961135b565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610b7a573d6000803e3d6000fd5b3233146111b05760405162461bcd60e51b81526004016106d390611c0f565b60018060095460ff1660058111156111ca576111ca6119ba565b146111e75760405162461bcd60e51b81526004016106d390611c46565b6107e68060016111fe600254600154036000190190565b6112089190611cc0565b11156112265760405162461bcd60e51b81526004016106d390611cd8565b336000908152600f60205260409020546001116112555760405162461bcd60e51b81526004016106d390611c68565b336000908152600f60205260408120805460019290611275908490611cc0565b90915550610bd8905033600161129c565b60008261129385846115ec565b14949350505050565b610bd8828260405180602001604052806000815250611639565b6000816001111580156112ca575060015482105b80156106ae575050600090815260056020526040902054600160e01b161590565b600081806001116113425760015481101561134257600081815260056020526040902054600160e01b8116611340575b8061133957506000190160008181526005602052604090205461131b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03163314610df95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061143a903390899088908890600401611e17565b6020604051808303816000875af1925050508015611475575060408051601f3d908101601f1916820190925261147291810190611e54565b60015b6114d0573d8080156114a3576040519150601f19603f3d011682016040523d82523d6000602084013e6114a8565b606091505b5080516114c8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561153c578061152681611e71565b91506115359050600a83611ea2565b9150611516565b60008167ffffffffffffffff81111561155757611557611a4f565b6040519080825280601f01601f191660200182016040528015611581576020820181803683370190505b5090505b84156114e657611596600183611eb6565b91506115a3600a86611ecd565b6115ae906030611cc0565b60f81b8183815181106115c3576115c3611ee1565b60200101906001600160f81b031916908160001a9053506115e5600a86611ea2565b9450611585565b600081815b84518110156116315761161d8286838151811061161057611610611ee1565b60200260200101516116a6565b91508061162981611e71565b9150506115f1565b509392505050565b61164383836116d2565b6001600160a01b0383163b15610b7a576001548281035b61166d6000868380600101945086611405565b61168a576040516368d2bf6b60e11b815260040160405180910390fd5b81811061165a57816001541461169f57600080fd5b5050505050565b60008183106116c2576000828152602084905260409020611339565b5060009182526020526040902090565b6001546001600160a01b0383166116fb57604051622e076360e81b815260040160405180910390fd5b816117195760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117635760015550505050565b8280546117bb90611d05565b90600052602060002090601f0160209004810192826117dd5760008555611823565b82601f106117f657805160ff1916838001178555611823565b82800160010185558215611823579182015b82811115611823578251825591602001919060010190611808565b5061182f929150611833565b5090565b5b8082111561182f5760008155600101611834565b6001600160e01b031981168114610e1957600080fd5b60006020828403121561187057600080fd5b813561133981611848565b6000806020838503121561188e57600080fd5b823567ffffffffffffffff808211156118a657600080fd5b818501915085601f8301126118ba57600080fd5b8135818111156118c957600080fd5b8660208260051b85010111156118de57600080fd5b60209290920196919550909350505050565b60005b8381101561190b5781810151838201526020016118f3565b83811115610f205750506000910152565b600081518084526119348160208601602086016118f0565b601f01601f19169290920160200192915050565b602081526000611339602083018461191c565b60006020828403121561196d57600080fd5b5035919050565b80356001600160a01b038116811461198b57600080fd5b919050565b600080604083850312156119a357600080fd5b6119ac83611974565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60208101600683106119f257634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215611a0a57600080fd5b61133982611974565b600080600060608486031215611a2857600080fd5b611a3184611974565b9250611a3f60208501611974565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a8057611a80611a4f565b604051601f8501601f19908116603f01168101908282118183101715611aa857611aa8611a4f565b81604052809350858152868686011115611ac157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611aed57600080fd5b813567ffffffffffffffff811115611b0457600080fd5b8201601f81018413611b1557600080fd5b6114e684823560208401611a65565b60008060408385031215611b3757600080fd5b611b4083611974565b915060208301358015158114611b5557600080fd5b809150509250929050565b60008060008060808587031215611b7657600080fd5b611b7f85611974565b9350611b8d60208601611974565b925060408501359150606085013567ffffffffffffffff811115611bb057600080fd5b8501601f81018713611bc157600080fd5b611bd087823560208401611a65565b91505092959194509250565b60008060408385031215611bef57600080fd5b611bf883611974565b9150611c0660208401611974565b90509250929050565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b602080825260089082015267111958db1a5b995960c21b604082015260600190565b60208082526022908201527f596f752063616e206f6e6c79206d696e742031204e4654207065722077616c6c604082015261195d60f21b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cd357611cd3611caa565b500190565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b600181811c90821680611d1957607f821691505b60208210811415611d3a57634e487b7160e01b600052602260045260246000fd5b50919050565b60008151611d528185602086016118f0565b9290920192915050565b600080845481600182811c915080831680611d7857607f831692505b6020808410821415611d9857634e487b7160e01b86526022600452602486fd5b818015611dac5760018114611dbd57611dea565b60ff19861689528489019650611dea565b60008b81526020902060005b86811015611de25781548b820152908501908301611dc9565b505084890196505b505050505050611e0e611dfd8286611d40565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4a9083018461191c565b9695505050505050565b600060208284031215611e6657600080fd5b815161133981611848565b6000600019821415611e8557611e85611caa565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611eb157611eb1611e8c565b500490565b600082821015611ec857611ec8611caa565b500390565b600082611edc57611edc611e8c565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d9f4b9cfa7160160611d160efbe176b14c4079c62c7856b1010b620b462dd34f64736f6c634300080c0033

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

00000000000000000000000051b6e0dc27c1d33f53ee49478bd47998e209c7550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e4d373857763238366e597843666b6b635546727a6333536555384d7439444b79664b5a31543879425234422f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d66555a6734596d355643656e6d6a5968694a4b3167337a637445634a4b74456e7948664678524832445a50310000000000000000000000

-----Decoded View---------------
Arg [0] : _team (address): 0x51b6E0Dc27c1d33F53Ee49478bD47998e209c755
Arg [1] : _whitelistMerkleRoot (bytes32): 0x0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : _premintMerkleRoot (bytes32): 0x0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : _baseURI (string): ipfs://QmNM78Wv286nYxCfkkcUFrzc3SeU8Mt9DKyfKZ1T8yBR4B/
Arg [4] : _notRevealURI (string): ipfs://QmfUZg4Ym5VCenmjYhiJK1g3zctEcJKtEnyHfFxRH2DZP1

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000051b6e0dc27c1d33f53ee49478bd47998e209c755
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d4e4d373857763238366e597843666b6b635546727a6333
Arg [7] : 536555384d7439444b79664b5a31543879425234422f00000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [9] : 697066733a2f2f516d66555a6734596d355643656e6d6a5968694a4b3167337a
Arg [10] : 637445634a4b74456e7948664678524832445a50310000000000000000000000


Deployed Bytecode Sourcemap

59679:4812:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14693:615;;;;;;;;;;-1:-1:-1;14693:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;14693:615:0;;;;;;;;61866:403;;;;;;:::i;:::-;;:::i;:::-;;20412:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22372:218::-;;;;;;;;;;-1:-1:-1;22372:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2334:32:1;;;2316:51;;2304:2;2289:18;22372:218:0;2170:203:1;21906:400:0;;;;;;;;;;-1:-1:-1;21906:400:0;;;;;:::i;:::-;;:::i;60344:32::-;;;;;;;;;;;;;;;;;;;2961:25:1;;;2949:2;2934:18;60344:32:0;2815:177:1;59919:29:0;;;;;;;;;;-1:-1:-1;59919:29:0;;;;;;;;;;;;;;;:::i;13723:323::-;;;;;;;;;;;;13997:12;;13322:1;13981:13;:28;-1:-1:-1;;13981:46:0;;13723:323;60386:50;;;;;;;;;;-1:-1:-1;60386:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;60270:26;;;;;;;;;;-1:-1:-1;60270:26:0;;;;-1:-1:-1;;;;;60270:26:0;;;31511:2800;;;;;;;;;;-1:-1:-1;31511:2800:0;;;;;:::i;:::-;;:::i;23276:185::-;;;;;;;;;;-1:-1:-1;23276:185:0;;;;;:::i;:::-;;:::i;64012:106::-;;;;;;;;;;-1:-1:-1;64012:106:0;;;;;:::i;:::-;;:::i;64126:102::-;;;;;;;;;;-1:-1:-1;64126:102:0;;;;;:::i;:::-;;:::i;62277:410::-;;;;;;:::i;:::-;;:::i;20193:152::-;;;;;;;;;;-1:-1:-1;20193:152:0;;;;;:::i;:::-;;:::i;63796:96::-;;;;;;;;;;-1:-1:-1;63796:96:0;;;;;:::i;:::-;;:::i;59957:21::-;;;;;;;;;;;;;:::i;15372:232::-;;;;;;;;;;-1:-1:-1;15372:232:0;;;;;:::i;:::-;;:::i;58797:103::-;;;;;;;;;;;;;:::i;63009:122::-;;;;;;:::i;:::-;;:::i;58149:87::-;;;;;;;;;;-1:-1:-1;58195:7:0;58222:6;-1:-1:-1;;;;;58222:6:0;58149:87;;20581:104;;;;;;;;;;;;;:::i;63904:100::-;;;;;;;;;;-1:-1:-1;63904:100:0;;;;;:::i;:::-;;:::i;22662:308::-;;;;;;;;;;-1:-1:-1;22662:308:0;;;;;:::i;:::-;;:::i;60303:34::-;;;;;;;;;;;;;;;;23532:399;;;;;;;;;;-1:-1:-1;23532:399:0;;;;;:::i;:::-;;:::i;64236:124::-;;;;;;;;;;-1:-1:-1;64236:124:0;;;;;:::i;:::-;;:::i;63139:481::-;;;;;;;;;;-1:-1:-1;63139:481:0;;;;;:::i;:::-;;:::i;64368:120::-;;;;;;;;;;-1:-1:-1;64368:120:0;;;;;:::i;:::-;;:::i;59985:26::-;;;;;;;;;;;;;:::i;23041:164::-;;;;;;;;;;-1:-1:-1;23041:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23162:25:0;;;23138:4;23162:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23041:164;59055:201;;;;;;;;;;-1:-1:-1;59055:201:0;;;;;:::i;:::-;;:::i;63628:160::-;;;;;;;;;;-1:-1:-1;63628:160:0;;;;;:::i;:::-;;:::i;62695:306::-;;;:::i;14693:615::-;14778:4;-1:-1:-1;;;;;;;;;15078:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15155:25:0;;;15078:102;:179;;;-1:-1:-1;;;;;;;;;;15232:25:0;;;15078:179;15058:199;14693:615;-1:-1:-1;;14693:615:0:o;61866:403::-;60940:9;60953:10;60940:23;60932:66;;;;-1:-1:-1;;;60932:66:0;;;;;;;:::i;:::-;;;;;;;;;61990:23:::1;::::0;61079:12:::1;::::0;::::1;;:21;::::0;::::1;;;;;;:::i;:::-;;61071:42;;;;-1:-1:-1::0;;;61071:42:0::1;;;;;;;:::i;:::-;61748:10:::2;61732:27;::::0;;;:15:::2;:27;::::0;;;;;60260:1:::2;-1:-1:-1::0;61710:128:0::2;;;;-1:-1:-1::0;;;61710:128:0::2;;;;;;;:::i;:::-;60110:1:::3;61575:10;60260:1;61541:13;13997:12:::0;;13322:1;13981:13;:28;-1:-1:-1;;13981:46:0;;13723:323;61541:13:::3;:30;;;;:::i;:::-;:44;;61519:113;;;;-1:-1:-1::0;;;61519:113:0::3;;;;;;;:::i;:::-;62124:19:::4;::::0;61287:28:::4;::::0;-1:-1:-1;;61304:10:0::4;8741:2:1::0;8737:15;8733:53;61287:28:0::4;::::0;::::4;8721:66:1::0;62116:6:0;;;;61262:12:::4;::::0;8803::1;;61287:28:0::4;;;;;;;;;;;;;61277:39;;;;;;61262:54;;61349:51;61368:12;;61349:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::4;::::0;;;;-1:-1:-1;61382:11:0;;-1:-1:-1;61395:4:0;;-1:-1:-1;61349:18:0::4;::::0;-1:-1:-1;61349:51:0:i:4;:::-;61327:109;;;;-1:-1:-1::0;;;61327:109:0::4;;;;;;;:::i;:::-;62184:10:::5;62168:27;::::0;;;:15:::5;:27;::::0;;;;:45;;60260:1:::5;::::0;62168:27;:45:::5;::::0;60260:1;;62168:45:::5;:::i;:::-;::::0;;;-1:-1:-1;62224:37:0::5;::::0;-1:-1:-1;62234:10:0::5;60260:1;62224:9;:37::i;:::-;61251:205:::4;61643:1;;;61849::::3;61009::::1;61866:403:::0;;:::o;20412:100::-;20466:13;20499:5;20492:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20412:100;:::o;22372:218::-;22448:7;22473:16;22481:7;22473;:16::i;:::-;22468:64;;22498:34;;-1:-1:-1;;;22498:34:0;;;;;;;;;;;22468:64;-1:-1:-1;22552:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;22552:30:0;;22372:218::o;21906:400::-;21987:13;22003:16;22011:7;22003;:16::i;:::-;21987:32;-1:-1:-1;42702:10:0;-1:-1:-1;;;;;22036:28:0;;;22032:175;;22084:44;22101:5;42702:10;23041:164;:::i;22084:44::-;22079:128;;22156:35;;-1:-1:-1;;;22156:35:0;;;;;;;;;;;22079:128;22219:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;22219:35:0;-1:-1:-1;;;;;22219:35:0;;;;;;;;;22270:28;;22219:24;;22270:28;;;;;;;21976:330;21906:400;;:::o;31511:2800::-;31645:27;31675;31694:7;31675:18;:27::i;:::-;31645:57;;31760:4;-1:-1:-1;;;;;31719:45:0;31735:19;-1:-1:-1;;;;;31719:45:0;;31715:86;;31773:28;;-1:-1:-1;;;31773:28:0;;;;;;;;;;;31715:86;31815:27;30233:24;;;:15;:24;;;;;30455:26;;42702:10;31208:30;;;-1:-1:-1;;;;;30906:26:0;;31187:19;;;31184:55;31994:174;;32081:43;32098:4;42702:10;23041:164;:::i;32081:43::-;32076:92;;32133:35;;-1:-1:-1;;;32133:35:0;;;;;;;;;;;32076:92;-1:-1:-1;;;;;32185:16:0;;32181:52;;32210:23;;-1:-1:-1;;;32210:23:0;;;;;;;;;;;32181:52;32382:15;32379:160;;;32522:1;32501:19;32494:30;32379:160;-1:-1:-1;;;;;32917:24:0;;;;;;;:18;:24;;;;;;32915:26;;-1:-1:-1;;32915:26:0;;;32986:22;;;;;;;;;32984:24;;-1:-1:-1;32984:24:0;;;20092:11;20068:22;20064:40;20051:62;-1:-1:-1;;;20051:62:0;33279:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;33573:46:0;;33569:626;;33677:1;33667:11;;33645:19;33800:30;;;:17;:30;;;;;;33796:384;;33938:13;;33923:11;:28;33919:242;;34085:30;;;;:17;:30;;;;;:52;;;33919:242;33626:569;33569:626;34242:7;34238:2;-1:-1:-1;;;;;34223:27:0;34232:4;-1:-1:-1;;;;;34223:27:0;;;;;;;;;;;31634:2677;;;31511:2800;;;:::o;23276:185::-;23414:39;23431:4;23437:2;23441:7;23414:39;;;;;;;;;;;;:16;:39::i;:::-;23276:185;;;:::o;64012:106::-;58035:13;:11;:13::i;:::-;64104:5:::1;64094:16;;;;;;;;:::i;:::-;64079:12;:31:::0;;-1:-1:-1;;64079:31:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;64012:106:::0;:::o;64126:102::-;58035:13;:11;:13::i;:::-;64201:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;64126:102:::0;:::o;62277:410::-;60940:9;60953:10;60940:23;60932:66;;;;-1:-1:-1;;;60932:66:0;;;;;;;:::i;:::-;62395:21:::1;::::0;61079:12:::1;::::0;::::1;;:21;::::0;::::1;;;;;;:::i;:::-;;61071:42;;;;-1:-1:-1::0;;;61071:42:0::1;;;;;;;:::i;:::-;61748:10:::2;61732:27;::::0;;;:15:::2;:27;::::0;;;;;60260:1:::2;-1:-1:-1::0;61710:128:0::2;;;;-1:-1:-1::0;;;61710:128:0::2;;;;;;;:::i;:::-;62473:27:::3;60110:1;::::0;62473:27:::3;:::i;:::-;61575:10;60260:1;61541:13;13997:12:::0;;13322:1;13981:13;:28;-1:-1:-1;;13981:46:0;;13723:323;61541:13:::3;:30;;;;:::i;:::-;:44;;61519:113;;;;-1:-1:-1::0;;;61519:113:0::3;;;;;;;:::i;:::-;62541:17:::4;::::0;61287:28:::4;::::0;-1:-1:-1;;61304:10:0::4;8741:2:1::0;8737:15;8733:53;61287:28:0::4;::::0;::::4;8721:66:1::0;62533:6:0;;;;61262:12:::4;::::0;8803::1;;61287:28:0::4;8592:229:1::0;20193:152:0;20265:7;20308:27;20327:7;20308:18;:27::i;63796:96::-;58035:13;:11;:13::i;:::-;63865:11:::1;:19:::0;;-1:-1:-1;;;;;;63865:19:0::1;-1:-1:-1::0;;;;;63865:19:0;;;::::1;::::0;;;::::1;::::0;;63796:96::o;59957:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15372:232::-;15444:7;-1:-1:-1;;;;;15468:19:0;;15464:60;;15496:28;;-1:-1:-1;;;15496:28:0;;;;;;;;;;;15464:60;-1:-1:-1;;;;;;15542:25:0;;;;;:18;:25;;;;;;9886:13;15542:54;;15372:232::o;58797:103::-;58035:13;:11;:13::i;:::-;58862:30:::1;58889:1;58862:18;:30::i;:::-;58797:103::o:0;63009:122::-;58035:13;:11;:13::i;:::-;63097:11:::1;::::0;63087:36:::1;::::0;-1:-1:-1;;;;;63097:11:0::1;63110:12:::0;63087:9:::1;:36::i;:::-;63009:122:::0;:::o;20581:104::-;20637:13;20670:7;20663:14;;;;;:::i;63904:100::-;58035:13;:11;:13::i;:::-;63978:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;22662:308::-:0;-1:-1:-1;;;;;22761:31:0;;42702:10;22761:31;22757:61;;;22801:17;;-1:-1:-1;;;22801:17:0;;;;;;;;;;;22757:61;42702:10;22831:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22831:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22831:60:0;;;;;;;;;;22907:55;;540:41:1;;;22831:49:0;;42702:10;22907:55;;513:18:1;22907:55:0;;;;;;;22662:308;;:::o;23532:399::-;23699:31;23712:4;23718:2;23722:7;23699:12;:31::i;:::-;-1:-1:-1;;;;;23745:14:0;;;:19;23741:183;;23784:56;23815:4;23821:2;23825:7;23834:5;23784:30;:56::i;:::-;23779:145;;23868:40;;-1:-1:-1;;;23868:40:0;;;;;;;;;;;23779:145;23532:399;;;;:::o;64236:124::-;58035:13;:11;:13::i;:::-;64319:19:::1;:33:::0;64236:124::o;63139:481::-;63258:13;63300:17;63308:8;63300:7;:17::i;:::-;63292:61;;;;-1:-1:-1;;;63292:61:0;;9413:2:1;63292:61:0;;;9395:21:1;9452:2;9432:18;;;9425:30;9491:33;9471:18;;;9464:61;9542:18;;63292:61:0;9211:355:1;63292:61:0;63386:16;63370:12;;;;:32;;;;;;;;:::i;:::-;;63366:92;;63433:12;63419:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63139:481;;;:::o;63366:92::-;63476:17;63484:8;63476:7;:17::i;:::-;63468:61;;;;-1:-1:-1;;;63468:61:0;;9413:2:1;63468:61:0;;;9395:21:1;9452:2;9432:18;;;9425:30;9491:33;9471:18;;;9464:61;9542:18;;63468:61:0;9211:355:1;63468:61:0;63571:7;63580:21;63581:8;63580:19;:21::i;:::-;63554:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63540:72;;63139:481;;;:::o;64368:120::-;58035:13;:11;:13::i;:::-;64449:17:::1;:31:::0;64368:120::o;59985:26::-;;;;;;;:::i;59055:201::-;58035:13;:11;:13::i;:::-;-1:-1:-1;;;;;59144:22:0;::::1;59136:73;;;::::0;-1:-1:-1;;;59136:73:0;;11513:2:1;59136:73:0::1;::::0;::::1;11495:21:1::0;11552:2;11532:18;;;11525:30;11591:34;11571:18;;;11564:62;-1:-1:-1;;;11642:18:1;;;11635:36;11688:19;;59136:73:0::1;11311:402:1::0;59136:73:0::1;59220:28;59239:8;59220:18;:28::i;63628:160::-:0;58035:13;:11;:13::i;:::-;63746:34:::1;::::0;63714:21:::1;::::0;-1:-1:-1;;;;;63746:25:0;::::1;::::0;:34;::::1;;;::::0;63714:21;;63696:15:::1;63746:34:::0;63696:15;63746:34;63714:21;63746:25;:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;62695:306:::0;60940:9;60953:10;60940:23;60932:66;;;;-1:-1:-1;;;60932:66:0;;;;;;;:::i;:::-;62791:20:::1;::::0;61079:12:::1;::::0;::::1;;:21;::::0;::::1;;;;;;:::i;:::-;;61071:42;;;;-1:-1:-1::0;;;61071:42:0::1;;;;;;;:::i;:::-;60058:4:::2;61575:10;60260:1;61541:13;13997:12:::0;;13322:1;13981:13;:28;-1:-1:-1;;13981:46:0;;13723:323;61541:13:::2;:30;;;;:::i;:::-;:44;;61519:113;;;;-1:-1:-1::0;;;61519:113:0::2;;;;;;;:::i;:::-;61748:10:::3;61732:27;::::0;;;:15:::3;:27;::::0;;;;;60260:1:::3;-1:-1:-1::0;61710:128:0::3;;;;-1:-1:-1::0;;;61710:128:0::3;;;;;;;:::i;:::-;62916:10:::4;62900:27;::::0;;;:15:::4;:27;::::0;;;;:45;;60260:1:::4;::::0;62900:27;:45:::4;::::0;60260:1;;62900:45:::4;:::i;:::-;::::0;;;-1:-1:-1;62956:37:0::4;::::0;-1:-1:-1;62966:10:0::4;60260:1;62956:9;:37::i;48515:190::-:0;48640:4;48693;48664:25;48677:5;48684:4;48664:12;:25::i;:::-;:33;;48515:190;-1:-1:-1;;;;48515:190:0:o;24551:112::-;24628:27;24638:2;24642:8;24628:27;;;;;;;;;;;;:9;:27::i;24186:281::-;24251:4;24307:7;13322:1;24288:26;;:66;;;;;24341:13;;24331:7;:23;24288:66;:152;;;;-1:-1:-1;;24392:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24392:43:0;:48;;24186:281::o;17086:1129::-;17153:7;17188;;13322:1;17237:23;17233:915;;17290:13;;17283:4;:20;17279:869;;;17328:14;17345:23;;;:17;:23;;;;;;-1:-1:-1;;;17434:23:0;;17430:699;;17953:113;17960:11;17953:113;;-1:-1:-1;;;18031:6:0;18013:25;;;;:17;:25;;;;;;17953:113;;;18099:6;17086:1129;-1:-1:-1;;;17086:1129:0:o;17430:699::-;17305:843;17279:869;18176:31;;-1:-1:-1;;;18176:31:0;;;;;;;;;;;58314:132;58195:7;58222:6;-1:-1:-1;;;;;58222:6:0;42702:10;58378:23;58370:68;;;;-1:-1:-1;;;58370:68:0;;11920:2:1;58370:68:0;;;11902:21:1;;;11939:18;;;11932:30;11998:34;11978:18;;;11971:62;12050:18;;58370:68:0;11718:356:1;59416:191:0;59490:16;59509:6;;-1:-1:-1;;;;;59526:17:0;;;-1:-1:-1;;;;;;59526:17:0;;;;;;59559:40;;59509:6;;;;;;;59559:40;;59490:16;59559:40;59479:128;59416:191;:::o;38262:716::-;38446:88;;-1:-1:-1;;;38446:88:0;;38425:4;;-1:-1:-1;;;;;38446:45:0;;;;;:88;;42702:10;;38513:4;;38519:7;;38528:5;;38446:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38446:88:0;;;;;;;;-1:-1:-1;;38446:88:0;;;;;;;;;;;;:::i;:::-;;;38442:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38729:13:0;;38725:235;;38775:40;;-1:-1:-1;;;38775:40:0;;;;;;;;;;;38725:235;38918:6;38912:13;38903:6;38899:2;38895:15;38888:38;38442:529;-1:-1:-1;;;;;;38605:64:0;-1:-1:-1;;;38605:64:0;;-1:-1:-1;38442:529:0;38262:716;;;;;;:::o;45229:723::-;45285:13;45506:10;45502:53;;-1:-1:-1;;45533:10:0;;;;;;;;;;;;-1:-1:-1;;;45533:10:0;;;;;45229:723::o;45502:53::-;45580:5;45565:12;45621:78;45628:9;;45621:78;;45654:8;;;;:::i;:::-;;-1:-1:-1;45677:10:0;;-1:-1:-1;45685:2:0;45677:10;;:::i;:::-;;;45621:78;;;45709:19;45741:6;45731:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45731:17:0;;45709:39;;45759:154;45766:10;;45759:154;;45793:11;45803:1;45793:11;;:::i;:::-;;-1:-1:-1;45862:10:0;45870:2;45862:5;:10;:::i;:::-;45849:24;;:2;:24;:::i;:::-;45836:39;;45819:6;45826;45819:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;45819:56:0;;;;;;;;-1:-1:-1;45890:11:0;45899:2;45890:11;;:::i;:::-;;;45759:154;;49382:296;49465:7;49508:4;49465:7;49523:118;49547:5;:12;49543:1;:16;49523:118;;;49596:33;49606:12;49620:5;49626:1;49620:8;;;;;;;;:::i;:::-;;;;;;;49596:9;:33::i;:::-;49581:48;-1:-1:-1;49561:3:0;;;;:::i;:::-;;;;49523:118;;;-1:-1:-1;49658:12:0;49382:296;-1:-1:-1;;;49382:296:0:o;25079:689::-;25210:19;25216:2;25220:8;25210:5;:19::i;:::-;-1:-1:-1;;;;;25271:14:0;;;:19;25267:483;;25325:13;;25373:14;;;25406:233;25437:62;25476:1;25480:2;25484:7;;;;;;25493:5;25437:30;:62::i;:::-;25432:167;;25535:40;;-1:-1:-1;;;25535:40:0;;;;;;;;;;;25432:167;25634:3;25626:5;:11;25406:233;;25721:3;25704:13;;:20;25700:34;;25726:8;;;25700:34;25292:458;;25079:689;;;:::o;55589:149::-;55652:7;55683:1;55679;:5;:51;;55814:13;55908:15;;;55944:4;55937:15;;;55991:4;55975:21;;55679:51;;;-1:-1:-1;55814:13:0;55908:15;;;55944:4;55937:15;55991:4;55975:21;;;55589:149::o;26041:1537::-;26137:13;;-1:-1:-1;;;;;26165:16:0;;26161:48;;26190:19;;-1:-1:-1;;;26190:19:0;;;;;;;;;;;26161:48;26224:13;26220:44;;26246:18;;-1:-1:-1;;;26246:18:0;;;;;;;;;;;26220:44;-1:-1:-1;;;;;26752:22:0;;;;;;:18;:22;;10023:2;26752:22;;:70;;26790:31;26778:44;;26752:70;;;20092:11;20068:22;20064:40;-1:-1:-1;21810:15:0;;21785:23;21781:45;20061:51;20051:62;27065:31;;;;:17;:31;;;;;:173;27083:12;27314:23;;;27352:101;27379:35;;27404:9;;;;;-1:-1:-1;;;;;27379:35:0;;;27396:1;;27379:35;;27396:1;;27379:35;27448:3;27438:7;:13;27352:101;;27469:13;:19;-1:-1:-1;23276:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:615::-;678:6;686;739:2;727:9;718:7;714:23;710:32;707:52;;;755:1;752;745:12;707:52;795:9;782:23;824:18;865:2;857:6;854:14;851:34;;;881:1;878;871:12;851:34;919:6;908:9;904:22;894:32;;964:7;957:4;953:2;949:13;945:27;935:55;;986:1;983;976:12;935:55;1026:2;1013:16;1052:2;1044:6;1041:14;1038:34;;;1068:1;1065;1058:12;1038:34;1121:7;1116:2;1106:6;1103:1;1099:14;1095:2;1091:23;1087:32;1084:45;1081:65;;;1142:1;1139;1132:12;1081:65;1173:2;1165:11;;;;;1195:6;;-1:-1:-1;592:615:1;;-1:-1:-1;;;;592:615:1:o;1212:258::-;1284:1;1294:113;1308:6;1305:1;1302:13;1294:113;;;1384:11;;;1378:18;1365:11;;;1358:39;1330:2;1323:10;1294:113;;;1425:6;1422:1;1419:13;1416:48;;;-1:-1:-1;;1460:1:1;1442:16;;1435:27;1212:258::o;1475:269::-;1528:3;1566:5;1560:12;1593:6;1588:3;1581:19;1609:63;1665:6;1658:4;1653:3;1649:14;1642:4;1635:5;1631:16;1609:63;:::i;:::-;1726:2;1705:15;-1:-1:-1;;1701:29:1;1692:39;;;;1733:4;1688:50;;1475:269;-1:-1:-1;;1475:269:1:o;1749:231::-;1898:2;1887:9;1880:21;1861:4;1918:56;1970:2;1959:9;1955:18;1947:6;1918:56;:::i;1985:180::-;2044:6;2097:2;2085:9;2076:7;2072:23;2068:32;2065:52;;;2113:1;2110;2103:12;2065:52;-1:-1:-1;2136:23:1;;1985:180;-1:-1:-1;1985:180:1:o;2378:173::-;2446:20;;-1:-1:-1;;;;;2495:31:1;;2485:42;;2475:70;;2541:1;2538;2531:12;2475:70;2378:173;;;:::o;2556:254::-;2624:6;2632;2685:2;2673:9;2664:7;2660:23;2656:32;2653:52;;;2701:1;2698;2691:12;2653:52;2724:29;2743:9;2724:29;:::i;:::-;2714:39;2800:2;2785:18;;;;2772:32;;-1:-1:-1;;;2556:254:1:o;2997:127::-;3058:10;3053:3;3049:20;3046:1;3039:31;3089:4;3086:1;3079:15;3113:4;3110:1;3103:15;3129:342;3275:2;3260:18;;3308:1;3297:13;;3287:144;;3353:10;3348:3;3344:20;3341:1;3334:31;3388:4;3385:1;3378:15;3416:4;3413:1;3406:15;3287:144;3440:25;;;3129:342;:::o;3658:186::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3809:29;3828:9;3809:29;:::i;3849:328::-;3926:6;3934;3942;3995:2;3983:9;3974:7;3970:23;3966:32;3963:52;;;4011:1;4008;4001:12;3963:52;4034:29;4053:9;4034:29;:::i;:::-;4024:39;;4082:38;4116:2;4105:9;4101:18;4082:38;:::i;:::-;4072:48;;4167:2;4156:9;4152:18;4139:32;4129:42;;3849:328;;;;;:::o;4182:127::-;4243:10;4238:3;4234:20;4231:1;4224:31;4274:4;4271:1;4264:15;4298:4;4295:1;4288:15;4314:632;4379:5;4409:18;4450:2;4442:6;4439:14;4436:40;;;4456:18;;:::i;:::-;4531:2;4525:9;4499:2;4585:15;;-1:-1:-1;;4581:24:1;;;4607:2;4577:33;4573:42;4561:55;;;4631:18;;;4651:22;;;4628:46;4625:72;;;4677:18;;:::i;:::-;4717:10;4713:2;4706:22;4746:6;4737:15;;4776:6;4768;4761:22;4816:3;4807:6;4802:3;4798:16;4795:25;4792:45;;;4833:1;4830;4823:12;4792:45;4883:6;4878:3;4871:4;4863:6;4859:17;4846:44;4938:1;4931:4;4922:6;4914;4910:19;4906:30;4899:41;;;;4314:632;;;;;:::o;4951:451::-;5020:6;5073:2;5061:9;5052:7;5048:23;5044:32;5041:52;;;5089:1;5086;5079:12;5041:52;5129:9;5116:23;5162:18;5154:6;5151:30;5148:50;;;5194:1;5191;5184:12;5148:50;5217:22;;5270:4;5262:13;;5258:27;-1:-1:-1;5248:55:1;;5299:1;5296;5289:12;5248:55;5322:74;5388:7;5383:2;5370:16;5365:2;5361;5357:11;5322:74;:::i;5407:347::-;5472:6;5480;5533:2;5521:9;5512:7;5508:23;5504:32;5501:52;;;5549:1;5546;5539:12;5501:52;5572:29;5591:9;5572:29;:::i;:::-;5562:39;;5651:2;5640:9;5636:18;5623:32;5698:5;5691:13;5684:21;5677:5;5674:32;5664:60;;5720:1;5717;5710:12;5664:60;5743:5;5733:15;;;5407:347;;;;;:::o;5759:667::-;5854:6;5862;5870;5878;5931:3;5919:9;5910:7;5906:23;5902:33;5899:53;;;5948:1;5945;5938:12;5899:53;5971:29;5990:9;5971:29;:::i;:::-;5961:39;;6019:38;6053:2;6042:9;6038:18;6019:38;:::i;:::-;6009:48;;6104:2;6093:9;6089:18;6076:32;6066:42;;6159:2;6148:9;6144:18;6131:32;6186:18;6178:6;6175:30;6172:50;;;6218:1;6215;6208:12;6172:50;6241:22;;6294:4;6286:13;;6282:27;-1:-1:-1;6272:55:1;;6323:1;6320;6313:12;6272:55;6346:74;6412:7;6407:2;6394:16;6389:2;6385;6381:11;6346:74;:::i;:::-;6336:84;;;5759:667;;;;;;;:::o;6616:260::-;6684:6;6692;6745:2;6733:9;6724:7;6720:23;6716:32;6713:52;;;6761:1;6758;6751:12;6713:52;6784:29;6803:9;6784:29;:::i;:::-;6774:39;;6832:38;6866:2;6855:9;6851:18;6832:38;:::i;:::-;6822:48;;6616:260;;;;;:::o;6881:354::-;7083:2;7065:21;;;7122:2;7102:18;;;7095:30;7161:32;7156:2;7141:18;;7134:60;7226:2;7211:18;;6881:354::o;7240:331::-;7442:2;7424:21;;;7481:1;7461:18;;;7454:29;-1:-1:-1;;;7514:2:1;7499:18;;7492:38;7562:2;7547:18;;7240:331::o;7576:398::-;7778:2;7760:21;;;7817:2;7797:18;;;7790:30;7856:34;7851:2;7836:18;;7829:62;-1:-1:-1;;;7922:2:1;7907:18;;7900:32;7964:3;7949:19;;7576:398::o;7979:127::-;8040:10;8035:3;8031:20;8028:1;8021:31;8071:4;8068:1;8061:15;8095:4;8092:1;8085:15;8111:128;8151:3;8182:1;8178:6;8175:1;8172:13;8169:39;;;8188:18;;:::i;:::-;-1:-1:-1;8224:9:1;;8111:128::o;8244:343::-;8446:2;8428:21;;;8485:2;8465:18;;;8458:30;-1:-1:-1;;;8519:2:1;8504:18;;8497:49;8578:2;8563:18;;8244:343::o;8826:380::-;8905:1;8901:12;;;;8948;;;8969:61;;9023:4;9015:6;9011:17;9001:27;;8969:61;9076:2;9068:6;9065:14;9045:18;9042:38;9039:161;;;9122:10;9117:3;9113:20;9110:1;9103:31;9157:4;9154:1;9147:15;9185:4;9182:1;9175:15;9039:161;;8826:380;;;:::o;9697:185::-;9739:3;9777:5;9771:12;9792:52;9837:6;9832:3;9825:4;9818:5;9814:16;9792:52;:::i;:::-;9860:16;;;;;9697:185;-1:-1:-1;;9697:185:1:o;10005:1301::-;10282:3;10311:1;10344:6;10338:13;10374:3;10396:1;10424:9;10420:2;10416:18;10406:28;;10484:2;10473:9;10469:18;10506;10496:61;;10550:4;10542:6;10538:17;10528:27;;10496:61;10576:2;10624;10616:6;10613:14;10593:18;10590:38;10587:165;;;-1:-1:-1;;;10651:33:1;;10707:4;10704:1;10697:15;10737:4;10658:3;10725:17;10587:165;10768:18;10795:104;;;;10913:1;10908:320;;;;10761:467;;10795:104;-1:-1:-1;;10828:24:1;;10816:37;;10873:16;;;;-1:-1:-1;10795:104:1;;10908:320;9644:1;9637:14;;;9681:4;9668:18;;11003:1;11017:165;11031:6;11028:1;11025:13;11017:165;;;11109:14;;11096:11;;;11089:35;11152:16;;;;11046:10;;11017:165;;;11021:3;;11211:6;11206:3;11202:16;11195:23;;10761:467;;;;;;;11244:56;11269:30;11295:3;11287:6;11269:30;:::i;:::-;-1:-1:-1;;;9947:20:1;;9992:1;9983:11;;9887:113;11244:56;11237:63;10005:1301;-1:-1:-1;;;;;10005:1301:1:o;12079:500::-;-1:-1:-1;;;;;12348:15:1;;;12330:34;;12400:15;;12395:2;12380:18;;12373:43;12447:2;12432:18;;12425:34;;;12495:3;12490:2;12475:18;;12468:31;;;12273:4;;12516:57;;12553:19;;12545:6;12516:57;:::i;:::-;12508:65;12079:500;-1:-1:-1;;;;;;12079:500:1:o;12584:249::-;12653:6;12706:2;12694:9;12685:7;12681:23;12677:32;12674:52;;;12722:1;12719;12712:12;12674:52;12754:9;12748:16;12773:30;12797:5;12773:30;:::i;12838:135::-;12877:3;-1:-1:-1;;12898:17:1;;12895:43;;;12918:18;;:::i;:::-;-1:-1:-1;12965:1:1;12954:13;;12838:135::o;12978:127::-;13039:10;13034:3;13030:20;13027:1;13020:31;13070:4;13067:1;13060:15;13094:4;13091:1;13084:15;13110:120;13150:1;13176;13166:35;;13181:18;;:::i;:::-;-1:-1:-1;13215:9:1;;13110:120::o;13235:125::-;13275:4;13303:1;13300;13297:8;13294:34;;;13308:18;;:::i;:::-;-1:-1:-1;13345:9:1;;13235:125::o;13365:112::-;13397:1;13423;13413:35;;13428:18;;:::i;:::-;-1:-1:-1;13462:9:1;;13365:112::o;13482:127::-;13543:10;13538:3;13534:20;13531:1;13524:31;13574:4;13571:1;13564:15;13598:4;13595:1;13588:15

Swarm Source

ipfs://d9f4b9cfa7160160611d160efbe176b14c4079c62c7856b1010b620b462dd34f
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.