ETH Price: $2,417.01 (-0.26%)

Gates Of Oxya - Colony (GoOC)
 

Overview

TokenID

50

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
GatesOfOxyaColony

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-20
*/

// 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/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/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

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

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

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

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

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    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 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 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 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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @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. See {_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 Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 (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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/1_Storage.sol



pragma solidity ^0.8.14;





 library StructLib {
    struct Parent {
        uint tokenId1;
        uint tokenId2;
    }
}

interface IOperator {
    function parents(uint key) view external returns (StructLib.Parent memory);
}


contract GatesOfOxyaColony is ERC721A, Ownable  {

    using Strings for uint;

    // Max supply of the collection
    uint public constant MAX_SUPPLY = 6966 ;

    // Address of the sales contract
    address public  operatorContract; 

    string public baseURI;
    bool public revealActive = false;

   
    constructor(string memory _baseURI) ERC721A("Gates Of Oxya - Colony", "GoOC") {
        baseURI = _baseURI;
    }

    modifier isOperator {
        require(msg.sender == operatorContract, "Not operator contract");
        _;
    }

    function setOperatorContract(address operatorContractAddress) external onlyOwner {
        operatorContract = operatorContractAddress;
    }   

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

    function setRevealCollection() external onlyOwner {
        revealActive = true;
    }

    function mintByOperator(address _addressBuyer, uint _quantity) external isOperator {
        require(totalSupply()+_quantity <= MAX_SUPPLY, "Cannot mint over MAX_SUPPLY");
        _safeMint(_addressBuyer, _quantity);
    }
  

    /**
     * @dev tokenURI
     * @param _tokenId tokenURI is the link to the metadatas
     */
    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");
        return string(abi.encodePacked(baseURI, _tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":[],"name":"MAX_SUPPLY","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addressBuyer","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintByOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"address","name":"operatorContractAddress","type":"address"}],"name":"setOperatorContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805460ff191690553480156200001b57600080fd5b506040516200199b3803806200199b8339810160408190526200003e91620001f2565b604080518082018252601681527f4761746573204f66204f787961202d20436f6c6f6e7900000000000000000000602080830191825283518085019094526004845263476f4f4360e01b9084015281519192916200009f9160029162000136565b508051620000b590600390602084019062000136565b50506000805550620000c733620000e4565b8051620000dc90600a90602084019062000136565b50506200030a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014490620002ce565b90600052602060002090601f016020900481019282620001685760008555620001b3565b82601f106200018357805160ff1916838001178555620001b3565b82800160010185558215620001b3579182015b82811115620001b357825182559160200191906001019062000196565b50620001c1929150620001c5565b5090565b5b80821115620001c15760008155600101620001c6565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200020657600080fd5b82516001600160401b03808211156200021e57600080fd5b818501915085601f8301126200023357600080fd5b815181811115620002485762000248620001dc565b604051601f8201601f19908116603f01168101908382118183101715620002735762000273620001dc565b8160405282815288868487010111156200028c57600080fd5b600093505b82841015620002b0578484018601518185018701529285019262000291565b82841115620002c25760008684830101525b98975050505050505050565b600181811c90821680620002e357607f821691505b6020821081036200030457634e487b7160e01b600052602260045260246000fd5b50919050565b611681806200031a6000396000f3fe6080604052600436106101665760003560e01c80636c0360eb116100d1578063a0bcfc7f1161008a578063c87b56dd11610064578063c87b56dd146103cd578063e8e0bb54146103ed578063e985e9c51461040d578063f2fde38b1461045657600080fd5b8063a0bcfc7f1461037a578063a22cb4651461039a578063b88d4fde146103ba57600080fd5b80636c0360eb146102dd57806370a08231146102f2578063715018a6146103125780638da5cb5b146103275780639380f3841461034557806395d89b411461036557600080fd5b80632a239a57116101235780632a239a57146102455780632f45d54b1461025a57806332cb6b0c1461027a57806339c5c1a71461029057806342842e0e146102aa5780636352211e146102bd57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461020f57806323b872dd14610232575b600080fd5b34801561017757600080fd5b5061018b610186366004611145565b610476565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104c8565b60405161019791906111ba565b3480156101ce57600080fd5b506101e26101dd3660046111cd565b61055a565b6040516001600160a01b039091168152602001610197565b61020d610208366004611202565b61059e565b005b34801561021b57600080fd5b50600154600054035b604051908152602001610197565b61020d61024036600461122c565b61063e565b34801561025157600080fd5b5061020d6107d6565b34801561026657600080fd5b5061020d610275366004611268565b6107ed565b34801561028657600080fd5b50610224611b3681565b34801561029c57600080fd5b50600b5461018b9060ff1681565b61020d6102b836600461122c565b610817565b3480156102c957600080fd5b506101e26102d83660046111cd565b610837565b3480156102e957600080fd5b506101b5610842565b3480156102fe57600080fd5b5061022461030d366004611268565b6108d0565b34801561031e57600080fd5b5061020d61091f565b34801561033357600080fd5b506008546001600160a01b03166101e2565b34801561035157600080fd5b5061020d610360366004611202565b610933565b34801561037157600080fd5b506101b5610a01565b34801561038657600080fd5b5061020d61039536600461130f565b610a10565b3480156103a657600080fd5b5061020d6103b5366004611358565b610a2b565b61020d6103c8366004611394565b610a97565b3480156103d957600080fd5b506101b56103e83660046111cd565b610ae1565b3480156103f957600080fd5b506009546101e2906001600160a01b031681565b34801561041957600080fd5b5061018b610428366004611410565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561046257600080fd5b5061020d610471366004611268565b610b6a565b60006301ffc9a760e01b6001600160e01b0319831614806104a757506380ac58cd60e01b6001600160e01b03198316145b806104c25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104d790611443565b80601f016020809104026020016040519081016040528092919081815260200182805461050390611443565b80156105505780601f1061052557610100808354040283529160200191610550565b820191906000526020600020905b81548152906001019060200180831161053357829003601f168201915b5050505050905090565b600061056582610be3565b610582576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105a982610837565b9050336001600160a01b038216146105e2576105c58133610428565b6105e2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061064982610c0a565b9050836001600160a01b0316816001600160a01b03161461067c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106c9576106ac8633610428565b6106c957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106f057604051633a954ecd60e21b815260040160405180910390fd5b80156106fb57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361078d5760018401600081815260046020526040812054900361078b57600054811461078b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6107de610c78565b600b805460ff19166001179055565b6107f5610c78565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b61083283838360405180602001604052806000815250610a97565b505050565b60006104c282610c0a565b600a805461084f90611443565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90611443565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b505050505081565b60006001600160a01b0382166108f9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610927610c78565b6109316000610cd2565b565b6009546001600160a01b0316331461098a5760405162461bcd60e51b8152602060048201526015602482015274139bdd081bdc195c985d1bdc8818dbdb9d1c9858dd605a1b60448201526064015b60405180910390fd5b611b368161099b6001546000540390565b6109a59190611493565b11156109f35760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e74206f766572204d41585f535550504c5900000000006044820152606401610981565b6109fd8282610d24565b5050565b6060600380546104d790611443565b610a18610c78565b80516109fd90600a906020840190611096565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610aa284848461063e565b6001600160a01b0383163b15610adb57610abe84848484610d3e565b610adb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610aec82610be3565b610b385760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610981565b600a610b4383610e2a565b604051602001610b549291906114c7565b6040516020818303038152906040529050919050565b610b72610c78565b6001600160a01b038116610bd75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b610be081610cd2565b50565b60008054821080156104c2575050600090815260046020526040902054600160e01b161590565b600081600054811015610c5f5760008181526004602052604081205490600160e01b82169003610c5d575b80600003610c56575060001901600081815260046020526040902054610c35565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610981565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109fd828260405180602001604052806000815250610f2b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d7390339089908890889060040161156d565b6020604051808303816000875af1925050508015610dae575060408051601f3d908101601f19168201909252610dab918101906115aa565b60015b610e0c573d808015610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b508051600003610e04576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003610e515750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610e7b5780610e65816115c7565b9150610e749050600a836115f6565b9150610e55565b60008167ffffffffffffffff811115610e9657610e96611283565b6040519080825280601f01601f191660200182016040528015610ec0576020820181803683370190505b5090505b8415610e2257610ed560018361160a565b9150610ee2600a86611621565b610eed906030611493565b60f81b818381518110610f0257610f02611635565b60200101906001600160f81b031916908160001a905350610f24600a866115f6565b9450610ec4565b610f358383610f98565b6001600160a01b0383163b15610832576000548281035b610f5f6000868380600101945086610d3e565b610f7c576040516368d2bf6b60e11b815260040160405180910390fd5b818110610f4c578160005414610f9157600080fd5b5050505050565b6000805490829003610fbd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461106c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611034565b508160000361108d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546110a290611443565b90600052602060002090601f0160209004810192826110c4576000855561110a565b82601f106110dd57805160ff191683800117855561110a565b8280016001018555821561110a579182015b8281111561110a5782518255916020019190600101906110ef565b5061111692915061111a565b5090565b5b80821115611116576000815560010161111b565b6001600160e01b031981168114610be057600080fd5b60006020828403121561115757600080fd5b8135610c568161112f565b60005b8381101561117d578181015183820152602001611165565b83811115610adb5750506000910152565b600081518084526111a6816020860160208601611162565b601f01601f19169290920160200192915050565b602081526000610c56602083018461118e565b6000602082840312156111df57600080fd5b5035919050565b80356001600160a01b03811681146111fd57600080fd5b919050565b6000806040838503121561121557600080fd5b61121e836111e6565b946020939093013593505050565b60008060006060848603121561124157600080fd5b61124a846111e6565b9250611258602085016111e6565b9150604084013590509250925092565b60006020828403121561127a57600080fd5b610c56826111e6565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156112b4576112b4611283565b604051601f8501601f19908116603f011681019082821181831017156112dc576112dc611283565b816040528093508581528686860111156112f557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561132157600080fd5b813567ffffffffffffffff81111561133857600080fd5b8201601f8101841361134957600080fd5b610e2284823560208401611299565b6000806040838503121561136b57600080fd5b611374836111e6565b91506020830135801515811461138957600080fd5b809150509250929050565b600080600080608085870312156113aa57600080fd5b6113b3856111e6565b93506113c1602086016111e6565b925060408501359150606085013567ffffffffffffffff8111156113e457600080fd5b8501601f810187136113f557600080fd5b61140487823560208401611299565b91505092959194509250565b6000806040838503121561142357600080fd5b61142c836111e6565b915061143a602084016111e6565b90509250929050565b600181811c9082168061145757607f821691505b60208210810361147757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156114a6576114a661147d565b500190565b600081516114bd818560208601611162565b9290920192915050565b600080845481600182811c9150808316806114e357607f831692505b6020808410820361150257634e487b7160e01b86526022600452602486fd5b818015611516576001811461152757611554565b60ff19861689528489019650611554565b60008b81526020902060005b8681101561154c5781548b820152908501908301611533565b505084890196505b50505050505061156481856114ab565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906115a09083018461118e565b9695505050505050565b6000602082840312156115bc57600080fd5b8151610c568161112f565b6000600182016115d9576115d961147d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611605576116056115e0565b500490565b60008282101561161c5761161c61147d565b500390565b600082611630576116306115e0565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a2418bad4c743befda5014eaf53972c6396eb486976f63b153eb834ed25a5dca64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d51313374624c64616d336d54576b3753735437664a3262586a736e574374474c476f425475686e374c5037590000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636c0360eb116100d1578063a0bcfc7f1161008a578063c87b56dd11610064578063c87b56dd146103cd578063e8e0bb54146103ed578063e985e9c51461040d578063f2fde38b1461045657600080fd5b8063a0bcfc7f1461037a578063a22cb4651461039a578063b88d4fde146103ba57600080fd5b80636c0360eb146102dd57806370a08231146102f2578063715018a6146103125780638da5cb5b146103275780639380f3841461034557806395d89b411461036557600080fd5b80632a239a57116101235780632a239a57146102455780632f45d54b1461025a57806332cb6b0c1461027a57806339c5c1a71461029057806342842e0e146102aa5780636352211e146102bd57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461020f57806323b872dd14610232575b600080fd5b34801561017757600080fd5b5061018b610186366004611145565b610476565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104c8565b60405161019791906111ba565b3480156101ce57600080fd5b506101e26101dd3660046111cd565b61055a565b6040516001600160a01b039091168152602001610197565b61020d610208366004611202565b61059e565b005b34801561021b57600080fd5b50600154600054035b604051908152602001610197565b61020d61024036600461122c565b61063e565b34801561025157600080fd5b5061020d6107d6565b34801561026657600080fd5b5061020d610275366004611268565b6107ed565b34801561028657600080fd5b50610224611b3681565b34801561029c57600080fd5b50600b5461018b9060ff1681565b61020d6102b836600461122c565b610817565b3480156102c957600080fd5b506101e26102d83660046111cd565b610837565b3480156102e957600080fd5b506101b5610842565b3480156102fe57600080fd5b5061022461030d366004611268565b6108d0565b34801561031e57600080fd5b5061020d61091f565b34801561033357600080fd5b506008546001600160a01b03166101e2565b34801561035157600080fd5b5061020d610360366004611202565b610933565b34801561037157600080fd5b506101b5610a01565b34801561038657600080fd5b5061020d61039536600461130f565b610a10565b3480156103a657600080fd5b5061020d6103b5366004611358565b610a2b565b61020d6103c8366004611394565b610a97565b3480156103d957600080fd5b506101b56103e83660046111cd565b610ae1565b3480156103f957600080fd5b506009546101e2906001600160a01b031681565b34801561041957600080fd5b5061018b610428366004611410565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561046257600080fd5b5061020d610471366004611268565b610b6a565b60006301ffc9a760e01b6001600160e01b0319831614806104a757506380ac58cd60e01b6001600160e01b03198316145b806104c25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104d790611443565b80601f016020809104026020016040519081016040528092919081815260200182805461050390611443565b80156105505780601f1061052557610100808354040283529160200191610550565b820191906000526020600020905b81548152906001019060200180831161053357829003601f168201915b5050505050905090565b600061056582610be3565b610582576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105a982610837565b9050336001600160a01b038216146105e2576105c58133610428565b6105e2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061064982610c0a565b9050836001600160a01b0316816001600160a01b03161461067c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106c9576106ac8633610428565b6106c957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106f057604051633a954ecd60e21b815260040160405180910390fd5b80156106fb57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361078d5760018401600081815260046020526040812054900361078b57600054811461078b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6107de610c78565b600b805460ff19166001179055565b6107f5610c78565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b61083283838360405180602001604052806000815250610a97565b505050565b60006104c282610c0a565b600a805461084f90611443565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90611443565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b505050505081565b60006001600160a01b0382166108f9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610927610c78565b6109316000610cd2565b565b6009546001600160a01b0316331461098a5760405162461bcd60e51b8152602060048201526015602482015274139bdd081bdc195c985d1bdc8818dbdb9d1c9858dd605a1b60448201526064015b60405180910390fd5b611b368161099b6001546000540390565b6109a59190611493565b11156109f35760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e74206f766572204d41585f535550504c5900000000006044820152606401610981565b6109fd8282610d24565b5050565b6060600380546104d790611443565b610a18610c78565b80516109fd90600a906020840190611096565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610aa284848461063e565b6001600160a01b0383163b15610adb57610abe84848484610d3e565b610adb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610aec82610be3565b610b385760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610981565b600a610b4383610e2a565b604051602001610b549291906114c7565b6040516020818303038152906040529050919050565b610b72610c78565b6001600160a01b038116610bd75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b610be081610cd2565b50565b60008054821080156104c2575050600090815260046020526040902054600160e01b161590565b600081600054811015610c5f5760008181526004602052604081205490600160e01b82169003610c5d575b80600003610c56575060001901600081815260046020526040902054610c35565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610981565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109fd828260405180602001604052806000815250610f2b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d7390339089908890889060040161156d565b6020604051808303816000875af1925050508015610dae575060408051601f3d908101601f19168201909252610dab918101906115aa565b60015b610e0c573d808015610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b508051600003610e04576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003610e515750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610e7b5780610e65816115c7565b9150610e749050600a836115f6565b9150610e55565b60008167ffffffffffffffff811115610e9657610e96611283565b6040519080825280601f01601f191660200182016040528015610ec0576020820181803683370190505b5090505b8415610e2257610ed560018361160a565b9150610ee2600a86611621565b610eed906030611493565b60f81b818381518110610f0257610f02611635565b60200101906001600160f81b031916908160001a905350610f24600a866115f6565b9450610ec4565b610f358383610f98565b6001600160a01b0383163b15610832576000548281035b610f5f6000868380600101945086610d3e565b610f7c576040516368d2bf6b60e11b815260040160405180910390fd5b818110610f4c578160005414610f9157600080fd5b5050505050565b6000805490829003610fbd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461106c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611034565b508160000361108d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546110a290611443565b90600052602060002090601f0160209004810192826110c4576000855561110a565b82601f106110dd57805160ff191683800117855561110a565b8280016001018555821561110a579182015b8281111561110a5782518255916020019190600101906110ef565b5061111692915061111a565b5090565b5b80821115611116576000815560010161111b565b6001600160e01b031981168114610be057600080fd5b60006020828403121561115757600080fd5b8135610c568161112f565b60005b8381101561117d578181015183820152602001611165565b83811115610adb5750506000910152565b600081518084526111a6816020860160208601611162565b601f01601f19169290920160200192915050565b602081526000610c56602083018461118e565b6000602082840312156111df57600080fd5b5035919050565b80356001600160a01b03811681146111fd57600080fd5b919050565b6000806040838503121561121557600080fd5b61121e836111e6565b946020939093013593505050565b60008060006060848603121561124157600080fd5b61124a846111e6565b9250611258602085016111e6565b9150604084013590509250925092565b60006020828403121561127a57600080fd5b610c56826111e6565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156112b4576112b4611283565b604051601f8501601f19908116603f011681019082821181831017156112dc576112dc611283565b816040528093508581528686860111156112f557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561132157600080fd5b813567ffffffffffffffff81111561133857600080fd5b8201601f8101841361134957600080fd5b610e2284823560208401611299565b6000806040838503121561136b57600080fd5b611374836111e6565b91506020830135801515811461138957600080fd5b809150509250929050565b600080600080608085870312156113aa57600080fd5b6113b3856111e6565b93506113c1602086016111e6565b925060408501359150606085013567ffffffffffffffff8111156113e457600080fd5b8501601f810187136113f557600080fd5b61140487823560208401611299565b91505092959194509250565b6000806040838503121561142357600080fd5b61142c836111e6565b915061143a602084016111e6565b90509250929050565b600181811c9082168061145757607f821691505b60208210810361147757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156114a6576114a661147d565b500190565b600081516114bd818560208601611162565b9290920192915050565b600080845481600182811c9150808316806114e357607f831692505b6020808410820361150257634e487b7160e01b86526022600452602486fd5b818015611516576001811461152757611554565b60ff19861689528489019650611554565b60008b81526020902060005b8681101561154c5781548b820152908501908301611533565b505084890196505b50505050505061156481856114ab565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906115a09083018461118e565b9695505050505050565b6000602082840312156115bc57600080fd5b8151610c568161112f565b6000600182016115d9576115d961147d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611605576116056115e0565b500490565b60008282101561161c5761161c61147d565b500390565b600082611630576116306115e0565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a2418bad4c743befda5014eaf53972c6396eb486976f63b153eb834ed25a5dca64736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d51313374624c64616d336d54576b3753735437664a3262586a736e574374474c476f425475686e374c5037590000000000000000000000

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

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d51313374624c64616d336d54576b3753735437664a3262
Arg [3] : 586a736e574374474c476f425475686e374c5037590000000000000000000000


Deployed Bytecode Sourcemap

66540:1510:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33219:639;;;;;;;;;;-1:-1:-1;33219:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33219:639:0;;;;;;;;34121:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40612:218::-;;;;;;;;;;-1:-1:-1;40612:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;40612:218:0;1550:203:1;40045:408:0;;;;;;:::i;:::-;;:::i;:::-;;29872:323;;;;;;;;;;-1:-1:-1;30146:12:0;;29933:7;30130:13;:28;29872:323;;;2341:25:1;;;2329:2;2314:18;29872:323:0;2195:177:1;44251:2825:0;;;;;;:::i;:::-;;:::i;67374:88::-;;;;;;;;;;;;;:::i;67113:142::-;;;;;;;;;;-1:-1:-1;67113:142:0;;;;;:::i;:::-;;:::i;66665:38::-;;;;;;;;;;;;66699:4;66665:38;;66821:32;;;;;;;;;;-1:-1:-1;66821:32:0;;;;;;;;47172:193;;;;;;:::i;:::-;;:::i;35514:152::-;;;;;;;;;;-1:-1:-1;35514:152:0;;;;;:::i;:::-;;:::i;66793:21::-;;;;;;;;;;;;;:::i;31056:233::-;;;;;;;;;;-1:-1:-1;31056:233:0;;;;;:::i;:::-;;:::i;13998:103::-;;;;;;;;;;;;;:::i;13350:87::-;;;;;;;;;;-1:-1:-1;13423:6:0;;-1:-1:-1;;;;;13423:6:0;13350:87;;67470:225;;;;;;;;;;-1:-1:-1;67470:225:0;;;;;:::i;:::-;;:::i;34297:104::-;;;;;;;;;;;;;:::i;67266:100::-;;;;;;;;;;-1:-1:-1;67266:100:0;;;;;:::i;:::-;;:::i;41170:234::-;;;;;;;;;;-1:-1:-1;41170:234:0;;;;;:::i;:::-;;:::i;47963:407::-;;;;;;:::i;:::-;;:::i;67809:238::-;;;;;;;;;;-1:-1:-1;67809:238:0;;;;;:::i;:::-;;:::i;66751:32::-;;;;;;;;;;-1:-1:-1;66751:32:0;;;;-1:-1:-1;;;;;66751:32:0;;;41561:164;;;;;;;;;;-1:-1:-1;41561:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41682:25:0;;;41658:4;41682:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41561:164;14256:201;;;;;;;;;;-1:-1:-1;14256:201:0;;;;;:::i;:::-;;:::i;33219:639::-;33304:4;-1:-1:-1;;;;;;;;;33628:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33705:25:0;;;33628:102;:179;;;-1:-1:-1;;;;;;;;;;33782:25:0;;;33628:179;33608:199;33219:639;-1:-1:-1;;33219:639:0:o;34121:100::-;34175:13;34208:5;34201:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34121:100;:::o;40612:218::-;40688:7;40713:16;40721:7;40713;:16::i;:::-;40708:64;;40738:34;;-1:-1:-1;;;40738:34:0;;;;;;;;;;;40708:64;-1:-1:-1;40792:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;40792:30:0;;40612:218::o;40045:408::-;40134:13;40150:16;40158:7;40150;:16::i;:::-;40134:32;-1:-1:-1;64378:10:0;-1:-1:-1;;;;;40183:28:0;;;40179:175;;40231:44;40248:5;64378:10;41561:164;:::i;40231:44::-;40226:128;;40303:35;;-1:-1:-1;;;40303:35:0;;;;;;;;;;;40226:128;40366:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;40366:35:0;-1:-1:-1;;;;;40366:35:0;;;;;;;;;40417:28;;40366:24;;40417:28;;;;;;;40123:330;40045:408;;:::o;44251:2825::-;44393:27;44423;44442:7;44423:18;:27::i;:::-;44393:57;;44508:4;-1:-1:-1;;;;;44467:45:0;44483:19;-1:-1:-1;;;;;44467:45:0;;44463:86;;44521:28;;-1:-1:-1;;;44521:28:0;;;;;;;;;;;44463:86;44563:27;43359:24;;;:15;:24;;;;;43587:26;;64378:10;42984:30;;;-1:-1:-1;;;;;42677:28:0;;42962:20;;;42959:56;44749:180;;44842:43;44859:4;64378:10;41561:164;:::i;44842:43::-;44837:92;;44894:35;;-1:-1:-1;;;44894:35:0;;;;;;;;;;;44837:92;-1:-1:-1;;;;;44946:16:0;;44942:52;;44971:23;;-1:-1:-1;;;44971:23:0;;;;;;;;;;;44942:52;45143:15;45140:160;;;45283:1;45262:19;45255:30;45140:160;-1:-1:-1;;;;;45680:24:0;;;;;;;:18;:24;;;;;;45678:26;;-1:-1:-1;;45678:26:0;;;45749:22;;;;;;;;;45747:24;;-1:-1:-1;45747:24:0;;;38903:11;38878:23;38874:41;38861:63;-1:-1:-1;;;38861:63:0;46042:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;46337:47:0;;:52;;46333:627;;46442:1;46432:11;;46410:19;46565:30;;;:17;:30;;;;;;:35;;46561:384;;46703:13;;46688:11;:28;46684:242;;46850:30;;;;:17;:30;;;;;:52;;;46684:242;46391:569;46333:627;47007:7;47003:2;-1:-1:-1;;;;;46988:27:0;46997:4;-1:-1:-1;;;;;46988:27:0;;;;;;;;;;;44382:2694;;;44251:2825;;;:::o;67374:88::-;13236:13;:11;:13::i;:::-;67435:12:::1;:19:::0;;-1:-1:-1;;67435:19:0::1;67450:4;67435:19;::::0;;67374:88::o;67113:142::-;13236:13;:11;:13::i;:::-;67205:16:::1;:42:::0;;-1:-1:-1;;;;;;67205:42:0::1;-1:-1:-1::0;;;;;67205:42:0;;;::::1;::::0;;;::::1;::::0;;67113:142::o;47172:193::-;47318:39;47335:4;47341:2;47345:7;47318:39;;;;;;;;;;;;:16;:39::i;:::-;47172:193;;;:::o;35514:152::-;35586:7;35629:27;35648:7;35629:18;:27::i;66793:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31056:233::-;31128:7;-1:-1:-1;;;;;31152:19:0;;31148:60;;31180:28;;-1:-1:-1;;;31180:28:0;;;;;;;;;;;31148:60;-1:-1:-1;;;;;;31226:25:0;;;;;:18;:25;;;;;;25215:13;31226:55;;31056:233::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;67470:225::-;67043:16;;-1:-1:-1;;;;;67043:16:0;67029:10;:30;67021:64;;;;-1:-1:-1;;;67021:64:0;;6002:2:1;67021:64:0;;;5984:21:1;6041:2;6021:18;;;6014:30;-1:-1:-1;;;6060:18:1;;;6053:51;6121:18;;67021:64:0;;;;;;;;;66699:4:::1;67586:9;67572:13;30146:12:::0;;29933:7;30130:13;:28;;29872:323;67572:13:::1;:23;;;;:::i;:::-;:37;;67564:77;;;::::0;-1:-1:-1;;;67564:77:0;;6617:2:1;67564:77:0::1;::::0;::::1;6599:21:1::0;6656:2;6636:18;;;6629:30;6695:29;6675:18;;;6668:57;6742:18;;67564:77:0::1;6415:351:1::0;67564:77:0::1;67652:35;67662:13;67677:9;67652;:35::i;:::-;67470:225:::0;;:::o;34297:104::-;34353:13;34386:7;34379:14;;;;;:::i;67266:100::-;13236:13;:11;:13::i;:::-;67340:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;41170:234::-:0;64378:10;41265:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41265:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41265:60:0;;;;;;;;;;41341:55;;540:41:1;;;41265:49:0;;64378:10;41341:55;;513:18:1;41341:55:0;;;;;;;41170:234;;:::o;47963:407::-;48138:31;48151:4;48157:2;48161:7;48138:12;:31::i;:::-;-1:-1:-1;;;;;48184:14:0;;;:19;48180:183;;48223:56;48254:4;48260:2;48264:7;48273:5;48223:30;:56::i;:::-;48218:145;;48307:40;;-1:-1:-1;;;48307:40:0;;;;;;;;;;;48218:145;47963:407;;;;:::o;67809:238::-;67880:13;67914:17;67922:8;67914:7;:17::i;:::-;67906:61;;;;-1:-1:-1;;;67906:61:0;;6973:2:1;67906:61:0;;;6955:21:1;7012:2;6992:18;;;6985:30;7051:33;7031:18;;;7024:61;7102:18;;67906:61:0;6771:355:1;67906:61:0;68009:7;68018:19;:8;:17;:19::i;:::-;67992:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67978:61;;67809:238;;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;-1:-1:-1;;;;;14345:22:0;::::1;14337:73;;;::::0;-1:-1:-1;;;14337:73:0;;8828:2:1;14337:73:0::1;::::0;::::1;8810:21:1::0;8867:2;8847:18;;;8840:30;8906:34;8886:18;;;8879:62;-1:-1:-1;;;8957:18:1;;;8950:36;9003:19;;14337:73:0::1;8626:402:1::0;14337:73:0::1;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;41983:282::-;42048:4;42138:13;;42128:7;:23;42085:153;;;;-1:-1:-1;;42189:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;42189:44:0;:49;;41983:282::o;36669:1275::-;36736:7;36771;36873:13;;36866:4;:20;36862:1015;;;36911:14;36928:23;;;:17;:23;;;;;;;-1:-1:-1;;;37017:24:0;;:29;;37013:845;;37682:113;37689:6;37699:1;37689:11;37682:113;;-1:-1:-1;;;37760:6:0;37742:25;;;;:17;:25;;;;;;37682:113;;;37828:6;36669:1275;-1:-1:-1;;;36669:1275:0:o;37013:845::-;36888:989;36862:1015;37905:31;;-1:-1:-1;;;37905:31:0;;;;;;;;;;;13515:132;13423:6;;-1:-1:-1;;;;;13423:6:0;64378:10;13579:23;13571:68;;;;-1:-1:-1;;;13571:68:0;;9235:2:1;13571:68:0;;;9217:21:1;;;9254:18;;;9247:30;9313:34;9293:18;;;9286:62;9365:18;;13571:68:0;9033:356:1;14617:191:0;14710:6;;;-1:-1:-1;;;;;14727:17:0;;;-1:-1:-1;;;;;;14727:17:0;;;;;;;14760:40;;14710:6;;;14727:17;14710:6;;14760:40;;14691:16;;14760:40;14680:128;14617:191;:::o;58123:112::-;58200:27;58210:2;58214:8;58200:27;;;;;;;;;;;;:9;:27::i;50454:716::-;50638:88;;-1:-1:-1;;;50638:88:0;;50617:4;;-1:-1:-1;;;;;50638:45:0;;;;;:88;;64378:10;;50705:4;;50711:7;;50720:5;;50638:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50638:88:0;;;;;;;;-1:-1:-1;;50638:88:0;;;;;;;;;;;;:::i;:::-;;;50634:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50921:6;:13;50938:1;50921:18;50917:235;;50967:40;;-1:-1:-1;;;50967:40:0;;;;;;;;;;;50917:235;51110:6;51104:13;51095:6;51091:2;51087:15;51080:38;50634:529;-1:-1:-1;;;;;;50797:64:0;-1:-1:-1;;;50797:64:0;;-1:-1:-1;50634:529:0;50454:716;;;;;;:::o;9155:723::-;9211:13;9432:5;9441:1;9432:10;9428:53;;-1:-1:-1;;9459:10:0;;;;;;;;;;;;-1:-1:-1;;;9459:10:0;;;;;9155:723::o;9428:53::-;9506:5;9491:12;9547:78;9554:9;;9547:78;;9580:8;;;;:::i;:::-;;-1:-1:-1;9603:10:0;;-1:-1:-1;9611:2:0;9603:10;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9657:17:0;;9635:39;;9685:154;9692:10;;9685:154;;9719:11;9729:1;9719:11;;:::i;:::-;;-1:-1:-1;9788:10:0;9796:2;9788:5;:10;:::i;:::-;9775:24;;:2;:24;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9745:56:0;;;;;;;;-1:-1:-1;9816:11:0;9825:2;9816:11;;:::i;:::-;;;9685:154;;57350:689;57481:19;57487:2;57491:8;57481:5;:19::i;:::-;-1:-1:-1;;;;;57542:14:0;;;:19;57538:483;;57582:11;57596:13;57644:14;;;57677:233;57708:62;57747:1;57751:2;57755:7;;;;;;57764:5;57708:30;:62::i;:::-;57703:167;;57806:40;;-1:-1:-1;;;57806:40:0;;;;;;;;;;;57703:167;57905:3;57897:5;:11;57677:233;;57992:3;57975:13;;:20;57971:34;;57997:8;;;57971:34;57563:458;;57350:689;;;:::o;51632:2966::-;51705:20;51728:13;;;51756;;;51752:44;;51778:18;;-1:-1:-1;;;51778:18:0;;;;;;;;;;;51752:44;-1:-1:-1;;;;;52284:22:0;;;;;;:18;:22;;;;25353:2;52284:22;;;:71;;52322:32;52310:45;;52284:71;;;52598:31;;;:17;:31;;;;;-1:-1:-1;39334:15:0;;39308:24;39304:46;38903:11;38878:23;38874:41;38871:52;38861:63;;52598:173;;52833:23;;;;52598:31;;52284:22;;53598:25;52284:22;;53451:335;54112:1;54098:12;54094:20;54052:346;54153:3;54144:7;54141:16;54052:346;;54371:7;54361:8;54358:1;54331:25;54328:1;54325;54320:59;54206:1;54193:15;54052:346;;;54056:77;54431:8;54443:1;54431:13;54427:45;;54453:19;;-1:-1:-1;;;54453:19:0;;;;;;;;;;;54427:45;54489:13;:19;-1:-1:-1;47172:193: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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:186::-;2769:6;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;2861:29;2880:9;2861:29;:::i;2901:127::-;2962:10;2957:3;2953:20;2950:1;2943:31;2993:4;2990:1;2983:15;3017:4;3014:1;3007:15;3033:632;3098:5;3128:18;3169:2;3161:6;3158:14;3155:40;;;3175:18;;:::i;:::-;3250:2;3244:9;3218:2;3304:15;;-1:-1:-1;;3300:24:1;;;3326:2;3296:33;3292:42;3280:55;;;3350:18;;;3370:22;;;3347:46;3344:72;;;3396:18;;:::i;:::-;3436:10;3432:2;3425:22;3465:6;3456:15;;3495:6;3487;3480:22;3535:3;3526:6;3521:3;3517:16;3514:25;3511:45;;;3552:1;3549;3542:12;3511:45;3602:6;3597:3;3590:4;3582:6;3578:17;3565:44;3657:1;3650:4;3641:6;3633;3629:19;3625:30;3618:41;;;;3033:632;;;;;:::o;3670:451::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3881:18;3873:6;3870:30;3867:50;;;3913:1;3910;3903:12;3867:50;3936:22;;3989:4;3981:13;;3977:27;-1:-1:-1;3967:55:1;;4018:1;4015;4008:12;3967:55;4041:74;4107:7;4102:2;4089:16;4084:2;4080;4076:11;4041:74;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;6150:127::-;6211:10;6206:3;6202:20;6199:1;6192:31;6242:4;6239:1;6232:15;6266:4;6263:1;6256:15;6282:128;6322:3;6353:1;6349:6;6346:1;6343:13;6340:39;;;6359:18;;:::i;:::-;-1:-1:-1;6395:9:1;;6282:128::o;7257:185::-;7299:3;7337:5;7331:12;7352:52;7397:6;7392:3;7385:4;7378:5;7374:16;7352:52;:::i;:::-;7420:16;;;;;7257:185;-1:-1:-1;;7257:185:1:o;7447:1174::-;7623:3;7652:1;7685:6;7679:13;7715:3;7737:1;7765:9;7761:2;7757:18;7747:28;;7825:2;7814:9;7810:18;7847;7837:61;;7891:4;7883:6;7879:17;7869:27;;7837:61;7917:2;7965;7957:6;7954:14;7934:18;7931:38;7928:165;;-1:-1:-1;;;7992:33:1;;8048:4;8045:1;8038:15;8078:4;7999:3;8066:17;7928:165;8109:18;8136:104;;;;8254:1;8249:320;;;;8102:467;;8136:104;-1:-1:-1;;8169:24:1;;8157:37;;8214:16;;;;-1:-1:-1;8136:104:1;;8249:320;7204:1;7197:14;;;7241:4;7228:18;;8344:1;8358:165;8372:6;8369:1;8366:13;8358:165;;;8450:14;;8437:11;;;8430:35;8493:16;;;;8387:10;;8358:165;;;8362:3;;8552:6;8547:3;8543:16;8536:23;;8102:467;;;;;;;8585:30;8611:3;8603:6;8585:30;:::i;:::-;8578:37;7447:1174;-1:-1:-1;;;;;7447:1174:1:o;9394:500::-;-1:-1:-1;;;;;9663:15:1;;;9645:34;;9715:15;;9710:2;9695:18;;9688:43;9762:2;9747:18;;9740:34;;;9810:3;9805:2;9790:18;;9783:31;;;9588:4;;9831:57;;9868:19;;9860:6;9831:57;:::i;:::-;9823:65;9394:500;-1:-1:-1;;;;;;9394:500:1:o;9899:249::-;9968:6;10021:2;10009:9;10000:7;9996:23;9992:32;9989:52;;;10037:1;10034;10027:12;9989:52;10069:9;10063:16;10088:30;10112:5;10088:30;:::i;10153:135::-;10192:3;10213:17;;;10210:43;;10233:18;;:::i;:::-;-1:-1:-1;10280:1:1;10269:13;;10153:135::o;10293:127::-;10354:10;10349:3;10345:20;10342:1;10335:31;10385:4;10382:1;10375:15;10409:4;10406:1;10399:15;10425:120;10465:1;10491;10481:35;;10496:18;;:::i;:::-;-1:-1:-1;10530:9:1;;10425:120::o;10550:125::-;10590:4;10618:1;10615;10612:8;10609:34;;;10623:18;;:::i;:::-;-1:-1:-1;10660:9:1;;10550:125::o;10680:112::-;10712:1;10738;10728:35;;10743:18;;:::i;:::-;-1:-1:-1;10777:9:1;;10680:112::o;10797:127::-;10858:10;10853:3;10849:20;10846:1;10839:31;10889:4;10886:1;10879:15;10913:4;10910:1;10903:15

Swarm Source

ipfs://a2418bad4c743befda5014eaf53972c6396eb486976f63b153eb834ed25a5dca
Loading...
Loading
Loading...
Loading
[ 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.