ETH Price: $3,327.12 (+2.60%)

Token

Semi-Lucid Dreams by iNcog (SLDNFT)
 

Overview

Max Total Supply

333 SLDNFT

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SLDNFT
0x9a9bfbc57a7ef6adb82a14613eb80fae8ec4c845
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:
SemiLucidDreams

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-03
*/

// File: contracts/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: contracts/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// 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/SemiLucidDreams.sol


pragma solidity ^0.8.4;




contract SemiLucidDreams is ERC721A, Ownable, DefaultOperatorFilterer {

/*

   _,="( _  )"=,_
_,'    \_>\_/    ',_
.7,     {  }     ,\.
 '/:,  .m  m.  ,:\'
   ')",(/  \),"('
      '{'!!'}'

*/

    uint256 public maxPerTx = 10;
    uint256 public maxPerWallet = 10;
    uint256 public maxFreePerWallet = 0;
    uint256 public teamSupply = 33;
    uint256 public freeMints = 0;
    bool public saleStarted = false;
    uint256 public maxSupply = 333;
    uint256 public maxFreeSupply = 0;
    uint256 public price = 0.003 ether;
    string public uriSuffix = ".json";
    string public baseURI = "ipfs://bafybeicmhyhacq4txrvi546gaaop7pvqoj7ue54bk6lu4hc6amhswgwlpm/";

    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {}

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function updatePrice(uint256 __price) public onlyOwner {
        price = __price;
    }

    function publicSale(uint256 amount) external payable {
        require(saleStarted, "Sale is not active.");
        require(amount <= maxPerTx, "Amount should not exceed max mint number!");
        require(totalSupply() + amount <= maxSupply, "Amount should not exceed max supply.");
        require(numberMinted(msg.sender) + amount <= maxPerWallet, "Amount should not exceed max per wallet.");

        uint256 freeMintCount = 0;
        bool isFreeMint = false;
        if (freeMints < maxFreeSupply) {
            freeMintCount = maxFreePerWallet;
        }

        uint256 count = amount;
        if (numberMinted(msg.sender) < freeMintCount) {
            if (numberMinted(msg.sender) + amount <= freeMintCount) {
                count = 0;
            }                
            else {
                count = numberMinted(msg.sender) + amount - freeMintCount;
            }
            isFreeMint = true;
        }

        require(msg.value >= count * price, "Eth value is not enough");
        
        if(isFreeMint) freeMints += 1;

        _safeMint(msg.sender, amount);
    }

    function mintForTeam(uint256 amount) external onlyOwner {
        require(teamSupply > 0,"Amount should not exceed mint limit");
        require(amount <= teamSupply,"Amount should not exceed mint limit");
        require(totalSupply() + amount <= maxSupply, "Amount should not exceed max supply.");
        teamSupply -= amount;
        _safeMint(msg.sender, amount);
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix)) : '';
    }

    function toggleSale() external onlyOwner {
        saleStarted = !saleStarted;
    }

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

    function setMaxSupply(uint256 amount) external onlyOwner {
        maxSupply = amount;
    }

    function setTeamSupply(uint256 amount) external onlyOwner {
        teamSupply = amount;
    }

    function setMaxFreeSupply(uint256 amount) external onlyOwner {
        maxFreeSupply = amount;
    }

    function setMaxFreePerWallet(uint256 amount) external onlyOwner {
        maxFreePerWallet = amount;
    }

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

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    /*
        _________ _        _______  _______  _______ 
        \__   __/( (    /|(  ____ \(  ___  )(  ____ \
        ) (   |  \  ( || (    \/| (   ) || (    \/
        | |   |   \ | || |      | |   | || |      
        | |   | (\ \) || |      | |   | || | ____ 
        | |   | | \   || |      | |   | || | \_  )
        ___) (___| )  \  || (____/\| (___) || (___) |
        \_______/|/    )_)(_______/(_______)(_______)
                                             

    */
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setTeamSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a600981905580556000600b8190556021600c55600d819055600e805460ff1916905561014d600f55601055660aa87bee53800060115560c06040526005608090815264173539b7b760d91b60a0526012906200005e908262000347565b50604051806080016040528060438152602001620022626043913960139062000088908262000347565b503480156200009657600080fd5b50604051620022a5380380620022a5833981016040819052620000b991620004c2565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600183836002620000e0838262000347565b506003620000ef828262000347565b50506000805550620001013362000250565b6daaeb6d7670e522a718067333cd4e3b15620002465780156200019457604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017557600080fd5b505af11580156200018a573d6000803e3d6000fd5b5050505062000246565b6001600160a01b03821615620001e55760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200015a565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022c57600080fd5b505af115801562000241573d6000803e3d6000fd5b505050505b505050506200052c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002cd57607f821691505b602082108103620002ee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034257600081815260208120601f850160051c810160208610156200031d5750805b601f850160051c820191505b818110156200033e5782815560010162000329565b5050505b505050565b81516001600160401b03811115620003635762000363620002a2565b6200037b81620003748454620002b8565b84620002f4565b602080601f831160018114620003b357600084156200039a5750858301515b600019600386901b1c1916600185901b1785556200033e565b600085815260208120601f198616915b82811015620003e457888601518255948401946001909101908401620003c3565b5085821015620004035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200042557600080fd5b81516001600160401b0380821115620004425762000442620002a2565b604051601f8301601f19908116603f011681019082821181831017156200046d576200046d620002a2565b816040528381526020925086838588010111156200048a57600080fd5b600091505b83821015620004ae57858201830151818301840152908201906200048f565b600093810190920192909252949350505050565b60008060408385031215620004d657600080fd5b82516001600160401b0380821115620004ee57600080fd5b620004fc8683870162000413565b935060208501519150808211156200051357600080fd5b50620005228582860162000413565b9150509250929050565b611d26806200053c6000396000f3fe60806040526004361061023b5760003560e01c80636f8b44b01161012e578063a7027357116100ab578063dc33e6811161006f578063dc33e68114610605578063e985e9c514610625578063f2fde38b14610645578063f8f103dd14610665578063f968adbe1461068557600080fd5b8063a702735714610593578063b287c8ed146105a9578063b88d4fde146105bc578063c87b56dd146105cf578063d5abeb01146105ef57600080fd5b80638d6cc56d116100f25780638d6cc56d1461050a5780638da5cb5b1461052a57806395d89b4114610548578063a035b1fe1461055d578063a22cb4651461057357600080fd5b80636f8b44b01461048a57806370a08231146104aa578063715018a6146104ca5780637d8966e4146104df57806380b17335146104f457600080fd5b8063453c2310116101bc5780635b28fd91116101805780635b28fd91146103fb5780635c474f9e1461041b5780636352211e146104355780636c0360eb146104555780636d7c4a4b1461046a57600080fd5b8063453c23101461037a57806347513334146103905780635503a0e8146103a657806355f804b3146103bb5780635a4d448a146103db57600080fd5b806323b872dd1161020357806323b872dd146103075780632cfac6ec1461031a5780633ccfd60b1461033057806341f434341461034557806342842e0e1461036757600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b3660046116a7565b61069b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6106ed565b60405161026c9190611714565b3480156102a357600080fd5b506102b76102b2366004611727565b61077f565b6040516001600160a01b03909116815260200161026c565b6102e26102dd36600461175c565b6107c3565b005b3480156102f057600080fd5b50600154600054035b60405190815260200161026c565b6102e2610315366004611786565b6107dc565b34801561032657600080fd5b506102f9600c5481565b34801561033c57600080fd5b506102e2610807565b34801561035157600080fd5b506102b76daaeb6d7670e522a718067333cd4e81565b6102e2610375366004611786565b6108a6565b34801561038657600080fd5b506102f9600a5481565b34801561039c57600080fd5b506102f960105481565b3480156103b257600080fd5b5061028a6108cb565b3480156103c757600080fd5b506102e26103d63660046117c2565b610959565b3480156103e757600080fd5b506102e26103f6366004611727565b61096e565b34801561040757600080fd5b506102e2610416366004611727565b610a15565b34801561042757600080fd5b50600e546102609060ff1681565b34801561044157600080fd5b506102b7610450366004611727565b610a22565b34801561046157600080fd5b5061028a610a2d565b34801561047657600080fd5b506102e2610485366004611727565b610a3a565b34801561049657600080fd5b506102e26104a5366004611727565b610a47565b3480156104b657600080fd5b506102f96104c5366004611834565b610a54565b3480156104d657600080fd5b506102e2610aa3565b3480156104eb57600080fd5b506102e2610ab7565b34801561050057600080fd5b506102f9600d5481565b34801561051657600080fd5b506102e2610525366004611727565b610ad3565b34801561053657600080fd5b506008546001600160a01b03166102b7565b34801561055457600080fd5b5061028a610ae0565b34801561056957600080fd5b506102f960115481565b34801561057f57600080fd5b506102e261058e36600461185d565b610aef565b34801561059f57600080fd5b506102f9600b5481565b6102e26105b7366004611727565b610b03565b6102e26105ca3660046118aa565b610d52565b3480156105db57600080fd5b5061028a6105ea366004611727565b610d7f565b3480156105fb57600080fd5b506102f9600f5481565b34801561061157600080fd5b506102f9610620366004611834565b610e06565b34801561063157600080fd5b50610260610640366004611986565b610e31565b34801561065157600080fd5b506102e2610660366004611834565b610e5f565b34801561067157600080fd5b506102e2610680366004611727565b610ed5565b34801561069157600080fd5b506102f960095481565b60006301ffc9a760e01b6001600160e01b0319831614806106cc57506380ac58cd60e01b6001600160e01b03198316145b806106e75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106fc906119b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610728906119b9565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a82610ee2565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816107cd81610f09565b6107d78383610fc2565b505050565b826001600160a01b03811633146107f6576107f633610f09565b610801848484611062565b50505050565b61080f6111fb565b604051600090339047908381818185875af1925050503d8060008114610851576040519150601f19603f3d011682016040523d82523d6000602084013e610856565b606091505b50509050806108a35760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064015b60405180910390fd5b50565b826001600160a01b03811633146108c0576108c033610f09565b610801848484611255565b601280546108d8906119b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610904906119b9565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b505050505081565b6109616111fb565b60136107d7828483611a39565b6109766111fb565b6000600c54116109985760405162461bcd60e51b815260040161089a90611af9565b600c548111156109ba5760405162461bcd60e51b815260040161089a90611af9565b600f54816109cb6001546000540390565b6109d59190611b52565b11156109f35760405162461bcd60e51b815260040161089a90611b65565b80600c6000828254610a059190611ba9565b909155506108a390503382611270565b610a1d6111fb565b601055565b60006106e78261128e565b601380546108d8906119b9565b610a426111fb565b600b55565b610a4f6111fb565b600f55565b60006001600160a01b038216610a7d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610aab6111fb565b610ab560006112fc565b565b610abf6111fb565b600e805460ff19811660ff90911615179055565b610adb6111fb565b601155565b6060600380546106fc906119b9565b81610af981610f09565b6107d7838361134e565b600e5460ff16610b4b5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b604482015260640161089a565b600954811115610baf5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e742073686f756c64206e6f7420657863656564206d6178206d696e60448201526874206e756d6265722160b81b606482015260840161089a565b600f5481610bc06001546000540390565b610bca9190611b52565b1115610be85760405162461bcd60e51b815260040161089a90611b65565b600a5481610bf533610e06565b610bff9190611b52565b1115610c5e5760405162461bcd60e51b815260206004820152602860248201527f416d6f756e742073686f756c64206e6f7420657863656564206d617820706572604482015267103bb0b63632ba1760c11b606482015260840161089a565b600080601054600d541015610c7357600b5491505b8282610c7e33610e06565b1015610ccd578284610c8f33610e06565b610c999190611b52565b11610ca657506000610cc8565b8284610cb133610e06565b610cbb9190611b52565b610cc59190611ba9565b90505b600191505b601154610cda9082611bbc565b341015610d295760405162461bcd60e51b815260206004820152601760248201527f4574682076616c7565206973206e6f7420656e6f756768000000000000000000604482015260640161089a565b8115610d48576001600d6000828254610d429190611b52565b90915550505b6108013385611270565b836001600160a01b0381163314610d6c57610d6c33610f09565b610d78858585856113ba565b5050505050565b6060610d8a82610ee2565b610da757604051630a14c4b560e41b815260040160405180910390fd5b60138054610db4906119b9565b9050600003610dd257604051806020016040528060008152506106e7565b6013610ddd836113fe565b6012604051602001610df193929190611c46565b60405160208183030381529060405292915050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106e7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610e676111fb565b6001600160a01b038116610ecc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089a565b6108a3816112fc565b610edd6111fb565b600c55565b60008054821080156106e7575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b156108a357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9a9190611c79565b6108a357604051633b79c77360e21b81526001600160a01b038216600482015260240161089a565b6000610fcd82610a22565b9050336001600160a01b0382161461100657610fe98133610e31565b611006576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061106d8261128e565b9050836001600160a01b0316816001600160a01b0316146110a05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176110ed576110d08633610e31565b6110ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661111457604051633a954ecd60e21b815260040160405180910390fd5b801561111f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036111b1576001840160008181526004602052604081205490036111af5760005481146111af5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610ab55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089a565b6107d783838360405180602001604052806000815250610d52565b61128a828260405180602001604052806000815250611442565b5050565b6000816000548110156112e35760008181526004602052604081205490600160e01b821690036112e1575b806000036112da5750600019016000818152600460205260409020546112b9565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113c58484846107dc565b6001600160a01b0383163b15610801576113e1848484846114a8565b610801576040516368d2bf6b60e11b815260040160405180910390fd5b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806114185750819003601f19909101908152919050565b61144c8383611593565b6001600160a01b0383163b156107d7576000548281035b61147660008683806001019450866114a8565b611493576040516368d2bf6b60e11b815260040160405180910390fd5b818110611463578160005414610d7857600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114dd903390899088908890600401611c96565b6020604051808303816000875af1925050508015611518575060408051601f3d908101601f1916820190925261151591810190611cd3565b60015b611576573d808015611546576040519150601f19603f3d011682016040523d82523d6000602084013e61154b565b606091505b50805160000361156e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008054908290036115b85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461166757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161162f565b508160000361168857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108a357600080fd5b6000602082840312156116b957600080fd5b81356112da81611691565b60005b838110156116df5781810151838201526020016116c7565b50506000910152565b600081518084526117008160208601602086016116c4565b601f01601f19169290920160200192915050565b6020815260006112da60208301846116e8565b60006020828403121561173957600080fd5b5035919050565b80356001600160a01b038116811461175757600080fd5b919050565b6000806040838503121561176f57600080fd5b61177883611740565b946020939093013593505050565b60008060006060848603121561179b57600080fd5b6117a484611740565b92506117b260208501611740565b9150604084013590509250925092565b600080602083850312156117d557600080fd5b823567ffffffffffffffff808211156117ed57600080fd5b818501915085601f83011261180157600080fd5b81358181111561181057600080fd5b86602082850101111561182257600080fd5b60209290920196919550909350505050565b60006020828403121561184657600080fd5b6112da82611740565b80151581146108a357600080fd5b6000806040838503121561187057600080fd5b61187983611740565b915060208301356118898161184f565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156118c057600080fd5b6118c985611740565b93506118d760208601611740565b925060408501359150606085013567ffffffffffffffff808211156118fb57600080fd5b818701915087601f83011261190f57600080fd5b81358181111561192157611921611894565b604051601f8201601f19908116603f0116810190838211818310171561194957611949611894565b816040528281528a602084870101111561196257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561199957600080fd5b6119a283611740565b91506119b060208401611740565b90509250929050565b600181811c908216806119cd57607f821691505b6020821081036119ed57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107d757600081815260208120601f850160051c81016020861015611a1a5750805b601f850160051c820191505b818110156111f357828155600101611a26565b67ffffffffffffffff831115611a5157611a51611894565b611a6583611a5f83546119b9565b836119f3565b6000601f841160018114611a995760008515611a815750838201355b600019600387901b1c1916600186901b178355610d78565b600083815260209020601f19861690835b82811015611aca5786850135825560209485019460019092019101611aaa565b5086821015611ae75760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526023908201527f416d6f756e742073686f756c64206e6f7420657863656564206d696e74206c696040820152621b5a5d60ea1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156106e7576106e7611b3c565b60208082526024908201527f416d6f756e742073686f756c64206e6f7420657863656564206d61782073757060408201526338363c9760e11b606082015260800190565b818103818111156106e7576106e7611b3c565b80820281158282048414176106e7576106e7611b3c565b60008154611be0816119b9565b60018281168015611bf85760018114611c0d57611c3c565b60ff1984168752821515830287019450611c3c565b8560005260208060002060005b85811015611c335781548a820152908401908201611c1a565b50505082870194505b5050505092915050565b6000611c528286611bd3565b8451611c628183602089016116c4565b611c6e81830186611bd3565b979650505050505050565b600060208284031215611c8b57600080fd5b81516112da8161184f565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cc9908301846116e8565b9695505050505050565b600060208284031215611ce557600080fd5b81516112da8161169156fea2646970667358221220dfeefaafe73ff1ae25e82ed80e2baaf8bcdfe690aafe75023181fb4cec0e8f4964736f6c63430008110033697066733a2f2f62616679626569636d6879686163713474787276693534366761616f70377076716f6a3775653534626b366c7534686336616d68737767776c706d2f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001a53656d692d4c7563696420447265616d7320627920694e636f670000000000000000000000000000000000000000000000000000000000000000000000000006534c444e46540000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636f8b44b01161012e578063a7027357116100ab578063dc33e6811161006f578063dc33e68114610605578063e985e9c514610625578063f2fde38b14610645578063f8f103dd14610665578063f968adbe1461068557600080fd5b8063a702735714610593578063b287c8ed146105a9578063b88d4fde146105bc578063c87b56dd146105cf578063d5abeb01146105ef57600080fd5b80638d6cc56d116100f25780638d6cc56d1461050a5780638da5cb5b1461052a57806395d89b4114610548578063a035b1fe1461055d578063a22cb4651461057357600080fd5b80636f8b44b01461048a57806370a08231146104aa578063715018a6146104ca5780637d8966e4146104df57806380b17335146104f457600080fd5b8063453c2310116101bc5780635b28fd91116101805780635b28fd91146103fb5780635c474f9e1461041b5780636352211e146104355780636c0360eb146104555780636d7c4a4b1461046a57600080fd5b8063453c23101461037a57806347513334146103905780635503a0e8146103a657806355f804b3146103bb5780635a4d448a146103db57600080fd5b806323b872dd1161020357806323b872dd146103075780632cfac6ec1461031a5780633ccfd60b1461033057806341f434341461034557806342842e0e1461036757600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b3660046116a7565b61069b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6106ed565b60405161026c9190611714565b3480156102a357600080fd5b506102b76102b2366004611727565b61077f565b6040516001600160a01b03909116815260200161026c565b6102e26102dd36600461175c565b6107c3565b005b3480156102f057600080fd5b50600154600054035b60405190815260200161026c565b6102e2610315366004611786565b6107dc565b34801561032657600080fd5b506102f9600c5481565b34801561033c57600080fd5b506102e2610807565b34801561035157600080fd5b506102b76daaeb6d7670e522a718067333cd4e81565b6102e2610375366004611786565b6108a6565b34801561038657600080fd5b506102f9600a5481565b34801561039c57600080fd5b506102f960105481565b3480156103b257600080fd5b5061028a6108cb565b3480156103c757600080fd5b506102e26103d63660046117c2565b610959565b3480156103e757600080fd5b506102e26103f6366004611727565b61096e565b34801561040757600080fd5b506102e2610416366004611727565b610a15565b34801561042757600080fd5b50600e546102609060ff1681565b34801561044157600080fd5b506102b7610450366004611727565b610a22565b34801561046157600080fd5b5061028a610a2d565b34801561047657600080fd5b506102e2610485366004611727565b610a3a565b34801561049657600080fd5b506102e26104a5366004611727565b610a47565b3480156104b657600080fd5b506102f96104c5366004611834565b610a54565b3480156104d657600080fd5b506102e2610aa3565b3480156104eb57600080fd5b506102e2610ab7565b34801561050057600080fd5b506102f9600d5481565b34801561051657600080fd5b506102e2610525366004611727565b610ad3565b34801561053657600080fd5b506008546001600160a01b03166102b7565b34801561055457600080fd5b5061028a610ae0565b34801561056957600080fd5b506102f960115481565b34801561057f57600080fd5b506102e261058e36600461185d565b610aef565b34801561059f57600080fd5b506102f9600b5481565b6102e26105b7366004611727565b610b03565b6102e26105ca3660046118aa565b610d52565b3480156105db57600080fd5b5061028a6105ea366004611727565b610d7f565b3480156105fb57600080fd5b506102f9600f5481565b34801561061157600080fd5b506102f9610620366004611834565b610e06565b34801561063157600080fd5b50610260610640366004611986565b610e31565b34801561065157600080fd5b506102e2610660366004611834565b610e5f565b34801561067157600080fd5b506102e2610680366004611727565b610ed5565b34801561069157600080fd5b506102f960095481565b60006301ffc9a760e01b6001600160e01b0319831614806106cc57506380ac58cd60e01b6001600160e01b03198316145b806106e75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106fc906119b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610728906119b9565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a82610ee2565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816107cd81610f09565b6107d78383610fc2565b505050565b826001600160a01b03811633146107f6576107f633610f09565b610801848484611062565b50505050565b61080f6111fb565b604051600090339047908381818185875af1925050503d8060008114610851576040519150601f19603f3d011682016040523d82523d6000602084013e610856565b606091505b50509050806108a35760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064015b60405180910390fd5b50565b826001600160a01b03811633146108c0576108c033610f09565b610801848484611255565b601280546108d8906119b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610904906119b9565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b505050505081565b6109616111fb565b60136107d7828483611a39565b6109766111fb565b6000600c54116109985760405162461bcd60e51b815260040161089a90611af9565b600c548111156109ba5760405162461bcd60e51b815260040161089a90611af9565b600f54816109cb6001546000540390565b6109d59190611b52565b11156109f35760405162461bcd60e51b815260040161089a90611b65565b80600c6000828254610a059190611ba9565b909155506108a390503382611270565b610a1d6111fb565b601055565b60006106e78261128e565b601380546108d8906119b9565b610a426111fb565b600b55565b610a4f6111fb565b600f55565b60006001600160a01b038216610a7d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610aab6111fb565b610ab560006112fc565b565b610abf6111fb565b600e805460ff19811660ff90911615179055565b610adb6111fb565b601155565b6060600380546106fc906119b9565b81610af981610f09565b6107d7838361134e565b600e5460ff16610b4b5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b604482015260640161089a565b600954811115610baf5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e742073686f756c64206e6f7420657863656564206d6178206d696e60448201526874206e756d6265722160b81b606482015260840161089a565b600f5481610bc06001546000540390565b610bca9190611b52565b1115610be85760405162461bcd60e51b815260040161089a90611b65565b600a5481610bf533610e06565b610bff9190611b52565b1115610c5e5760405162461bcd60e51b815260206004820152602860248201527f416d6f756e742073686f756c64206e6f7420657863656564206d617820706572604482015267103bb0b63632ba1760c11b606482015260840161089a565b600080601054600d541015610c7357600b5491505b8282610c7e33610e06565b1015610ccd578284610c8f33610e06565b610c999190611b52565b11610ca657506000610cc8565b8284610cb133610e06565b610cbb9190611b52565b610cc59190611ba9565b90505b600191505b601154610cda9082611bbc565b341015610d295760405162461bcd60e51b815260206004820152601760248201527f4574682076616c7565206973206e6f7420656e6f756768000000000000000000604482015260640161089a565b8115610d48576001600d6000828254610d429190611b52565b90915550505b6108013385611270565b836001600160a01b0381163314610d6c57610d6c33610f09565b610d78858585856113ba565b5050505050565b6060610d8a82610ee2565b610da757604051630a14c4b560e41b815260040160405180910390fd5b60138054610db4906119b9565b9050600003610dd257604051806020016040528060008152506106e7565b6013610ddd836113fe565b6012604051602001610df193929190611c46565b60405160208183030381529060405292915050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106e7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610e676111fb565b6001600160a01b038116610ecc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089a565b6108a3816112fc565b610edd6111fb565b600c55565b60008054821080156106e7575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b156108a357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9a9190611c79565b6108a357604051633b79c77360e21b81526001600160a01b038216600482015260240161089a565b6000610fcd82610a22565b9050336001600160a01b0382161461100657610fe98133610e31565b611006576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061106d8261128e565b9050836001600160a01b0316816001600160a01b0316146110a05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176110ed576110d08633610e31565b6110ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661111457604051633a954ecd60e21b815260040160405180910390fd5b801561111f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036111b1576001840160008181526004602052604081205490036111af5760005481146111af5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610ab55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089a565b6107d783838360405180602001604052806000815250610d52565b61128a828260405180602001604052806000815250611442565b5050565b6000816000548110156112e35760008181526004602052604081205490600160e01b821690036112e1575b806000036112da5750600019016000818152600460205260409020546112b9565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113c58484846107dc565b6001600160a01b0383163b15610801576113e1848484846114a8565b610801576040516368d2bf6b60e11b815260040160405180910390fd5b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806114185750819003601f19909101908152919050565b61144c8383611593565b6001600160a01b0383163b156107d7576000548281035b61147660008683806001019450866114a8565b611493576040516368d2bf6b60e11b815260040160405180910390fd5b818110611463578160005414610d7857600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114dd903390899088908890600401611c96565b6020604051808303816000875af1925050508015611518575060408051601f3d908101601f1916820190925261151591810190611cd3565b60015b611576573d808015611546576040519150601f19603f3d011682016040523d82523d6000602084013e61154b565b606091505b50805160000361156e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008054908290036115b85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461166757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161162f565b508160000361168857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108a357600080fd5b6000602082840312156116b957600080fd5b81356112da81611691565b60005b838110156116df5781810151838201526020016116c7565b50506000910152565b600081518084526117008160208601602086016116c4565b601f01601f19169290920160200192915050565b6020815260006112da60208301846116e8565b60006020828403121561173957600080fd5b5035919050565b80356001600160a01b038116811461175757600080fd5b919050565b6000806040838503121561176f57600080fd5b61177883611740565b946020939093013593505050565b60008060006060848603121561179b57600080fd5b6117a484611740565b92506117b260208501611740565b9150604084013590509250925092565b600080602083850312156117d557600080fd5b823567ffffffffffffffff808211156117ed57600080fd5b818501915085601f83011261180157600080fd5b81358181111561181057600080fd5b86602082850101111561182257600080fd5b60209290920196919550909350505050565b60006020828403121561184657600080fd5b6112da82611740565b80151581146108a357600080fd5b6000806040838503121561187057600080fd5b61187983611740565b915060208301356118898161184f565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156118c057600080fd5b6118c985611740565b93506118d760208601611740565b925060408501359150606085013567ffffffffffffffff808211156118fb57600080fd5b818701915087601f83011261190f57600080fd5b81358181111561192157611921611894565b604051601f8201601f19908116603f0116810190838211818310171561194957611949611894565b816040528281528a602084870101111561196257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561199957600080fd5b6119a283611740565b91506119b060208401611740565b90509250929050565b600181811c908216806119cd57607f821691505b6020821081036119ed57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107d757600081815260208120601f850160051c81016020861015611a1a5750805b601f850160051c820191505b818110156111f357828155600101611a26565b67ffffffffffffffff831115611a5157611a51611894565b611a6583611a5f83546119b9565b836119f3565b6000601f841160018114611a995760008515611a815750838201355b600019600387901b1c1916600186901b178355610d78565b600083815260209020601f19861690835b82811015611aca5786850135825560209485019460019092019101611aaa565b5086821015611ae75760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526023908201527f416d6f756e742073686f756c64206e6f7420657863656564206d696e74206c696040820152621b5a5d60ea1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156106e7576106e7611b3c565b60208082526024908201527f416d6f756e742073686f756c64206e6f7420657863656564206d61782073757060408201526338363c9760e11b606082015260800190565b818103818111156106e7576106e7611b3c565b80820281158282048414176106e7576106e7611b3c565b60008154611be0816119b9565b60018281168015611bf85760018114611c0d57611c3c565b60ff1984168752821515830287019450611c3c565b8560005260208060002060005b85811015611c335781548a820152908401908201611c1a565b50505082870194505b5050505092915050565b6000611c528286611bd3565b8451611c628183602089016116c4565b611c6e81830186611bd3565b979650505050505050565b600060208284031215611c8b57600080fd5b81516112da8161184f565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cc9908301846116e8565b9695505050505050565b600060208284031215611ce557600080fd5b81516112da8161169156fea2646970667358221220dfeefaafe73ff1ae25e82ed80e2baaf8bcdfe690aafe75023181fb4cec0e8f4964736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001a53656d692d4c7563696420447265616d7320627920694e636f670000000000000000000000000000000000000000000000000000000000000000000000000006534c444e46540000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Semi-Lucid Dreams by iNcog
Arg [1] : _symbol (string): SLDNFT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [3] : 53656d692d4c7563696420447265616d7320627920694e636f67000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 534c444e46540000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60485:5326:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27377:639;;;;;;;;;;-1:-1:-1;27377:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27377:639:0;;;;;;;;28279:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34770:218::-;;;;;;;;;;-1:-1:-1;34770:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34770:218:0;1533:203:1;64529:165:0;;;;;;:::i;:::-;;:::i;:::-;;24030:323;;;;;;;;;;-1:-1:-1;24304:12:0;;24091:7;24288:13;:28;24030:323;;;2324:25:1;;;2312:2;2297:18;24030:323:0;2178:177:1;64702:171:0;;;;;;:::i;:::-;;:::i;60813:30::-;;;;;;;;;;;;;;;;64055:177;;;;;;;;;;;;;:::i;2897:143::-;;;;;;;;;;;;2997:42;2897:143;;64881:179;;;;;;:::i;:::-;;:::i;60732:32::-;;;;;;;;;;;;;;;;60960;;;;;;;;;;;;;;;;61040:33;;;;;;;;;;;;;:::i;63509:106::-;;;;;;;;;;-1:-1:-1;63509:106:0;;;;;:::i;:::-;;:::i;62619:380::-;;;;;;;;;;-1:-1:-1;62619:380:0;;;;;:::i;:::-;;:::i;63829:102::-;;;;;;;;;;-1:-1:-1;63829:102:0;;;;;:::i;:::-;;:::i;60885:31::-;;;;;;;;;;-1:-1:-1;60885:31:0;;;;;;;;29672:152;;;;;;;;;;-1:-1:-1;29672:152:0;;;;;:::i;:::-;;:::i;61080:93::-;;;;;;;;;;;;;:::i;63939:108::-;;;;;;;;;;-1:-1:-1;63939:108:0;;;;;:::i;:::-;;:::i;63623:94::-;;;;;;;;;;-1:-1:-1;63623:94:0;;;;;:::i;:::-;;:::i;25214:233::-;;;;;;;;;;-1:-1:-1;25214:233:0;;;;;:::i;:::-;;:::i;8156:103::-;;;;;;;;;;;;;:::i;63415:86::-;;;;;;;;;;;;;:::i;60850:28::-;;;;;;;;;;;;;;;;61393:89;;;;;;;;;;-1:-1:-1;61393:89:0;;;;;:::i;:::-;;:::i;7508:87::-;;;;;;;;;;-1:-1:-1;7581:6:0;;-1:-1:-1;;;;;7581:6:0;7508:87;;28455:104;;;;;;;;;;;;;:::i;60999:34::-;;;;;;;;;;;;;;;;64345:176;;;;;;;;;;-1:-1:-1;64345:176:0;;;;;:::i;:::-;;:::i;60771:35::-;;;;;;;;;;;;;;;;61490:1121;;;;;;:::i;:::-;;:::i;65068:245::-;;;;;;:::i;:::-;;:::i;63115:292::-;;;;;;;;;;-1:-1:-1;63115:292:0;;;;;:::i;:::-;;:::i;60923:30::-;;;;;;;;;;;;;;;;61272:113;;;;;;;;;;-1:-1:-1;61272:113:0;;;;;:::i;:::-;;:::i;35719:164::-;;;;;;;;;;-1:-1:-1;35719:164:0;;;;;:::i;:::-;;:::i;8414:201::-;;;;;;;;;;-1:-1:-1;8414:201:0;;;;;:::i;:::-;;:::i;63725:96::-;;;;;;;;;;-1:-1:-1;63725:96:0;;;;;:::i;:::-;;:::i;60697:28::-;;;;;;;;;;;;;;;;27377:639;27462:4;-1:-1:-1;;;;;;;;;27786:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;27863:25:0;;;27786:102;:179;;;-1:-1:-1;;;;;;;;;;27940:25:0;;;27786:179;27766:199;27377:639;-1:-1:-1;;27377:639:0:o;28279:100::-;28333:13;28366:5;28359:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28279:100;:::o;34770:218::-;34846:7;34871:16;34879:7;34871;:16::i;:::-;34866:64;;34896:34;;-1:-1:-1;;;34896:34:0;;;;;;;;;;;34866:64;-1:-1:-1;34950:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;34950:30:0;;34770:218::o;64529:165::-;64633:8;4418:30;4439:8;4418:20;:30::i;:::-;64654:32:::1;64668:8;64678:7;64654:13;:32::i;:::-;64529:165:::0;;;:::o;64702:171::-;64811:4;-1:-1:-1;;;;;4238:18:0;;4246:10;4238:18;4234:83;;4273:32;4294:10;4273:20;:32::i;:::-;64828:37:::1;64847:4;64853:2;64857:7;64828:18;:37::i;:::-;64702:171:::0;;;;:::o;64055:177::-;7394:13;:11;:13::i;:::-;64124:49:::1;::::0;64106:12:::1;::::0;64124:10:::1;::::0;64147:21:::1;::::0;64106:12;64124:49;64106:12;64124:49;64147:21;64124:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64105:68;;;64192:7;64184:40;;;::::0;-1:-1:-1;;;64184:40:0;;6500:2:1;64184:40:0::1;::::0;::::1;6482:21:1::0;6539:2;6519:18;;;6512:30;-1:-1:-1;;;6558:18:1;;;6551:50;6618:18;;64184:40:0::1;;;;;;;;;64094:138;64055:177::o:0;64881:179::-;64994:4;-1:-1:-1;;;;;4238:18:0;;4246:10;4238:18;4234:83;;4273:32;4294:10;4273:20;:32::i;:::-;65011:41:::1;65034:4;65040:2;65044:7;65011:22;:41::i;61040:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63509:106::-;7394:13;:11;:13::i;:::-;63587:7:::1;:20;63597:10:::0;;63587:7;:20:::1;:::i;62619:380::-:0;7394:13;:11;:13::i;:::-;62707:1:::1;62694:10;;:14;62686:61;;;;-1:-1:-1::0;;;62686:61:0::1;;;;;;;:::i;:::-;62776:10;;62766:6;:20;;62758:67;;;;-1:-1:-1::0;;;62758:67:0::1;;;;;;;:::i;:::-;62870:9;;62860:6;62844:13;24304:12:::0;;24091:7;24288:13;:28;;24030:323;62844:13:::1;:22;;;;:::i;:::-;:35;;62836:84;;;;-1:-1:-1::0;;;62836:84:0::1;;;;;;;:::i;:::-;62945:6;62931:10;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;62962:29:0::1;::::0;-1:-1:-1;62972:10:0::1;62984:6:::0;62962:9:::1;:29::i;63829:102::-:0;7394:13;:11;:13::i;:::-;63901::::1;:22:::0;63829:102::o;29672:152::-;29744:7;29787:27;29806:7;29787:18;:27::i;61080:93::-;;;;;;;:::i;63939:108::-;7394:13;:11;:13::i;:::-;64014:16:::1;:25:::0;63939:108::o;63623:94::-;7394:13;:11;:13::i;:::-;63691:9:::1;:18:::0;63623:94::o;25214:233::-;25286:7;-1:-1:-1;;;;;25310:19:0;;25306:60;;25338:28;;-1:-1:-1;;;25338:28:0;;;;;;;;;;;25306:60;-1:-1:-1;;;;;;25384:25:0;;;;;:18;:25;;;;;;19373:13;25384:55;;25214:233::o;8156:103::-;7394:13;:11;:13::i;:::-;8221:30:::1;8248:1;8221:18;:30::i;:::-;8156:103::o:0;63415:86::-;7394:13;:11;:13::i;:::-;63482:11:::1;::::0;;-1:-1:-1;;63467:26:0;::::1;63482:11;::::0;;::::1;63481:12;63467:26;::::0;;63415:86::o;61393:89::-;7394:13;:11;:13::i;:::-;61459:5:::1;:15:::0;61393:89::o;28455:104::-;28511:13;28544:7;28537:14;;;;;:::i;64345:176::-;64449:8;4418:30;4439:8;4418:20;:30::i;:::-;64470:43:::1;64494:8;64504;64470:23;:43::i;61490:1121::-:0;61562:11;;;;61554:43;;;;-1:-1:-1;;;61554:43:0;;10111:2:1;61554:43:0;;;10093:21:1;10150:2;10130:18;;;10123:30;-1:-1:-1;;;10169:18:1;;;10162:49;10228:18;;61554:43:0;9909:343:1;61554:43:0;61626:8;;61616:6;:18;;61608:72;;;;-1:-1:-1;;;61608:72:0;;10459:2:1;61608:72:0;;;10441:21:1;10498:2;10478:18;;;10471:30;10537:34;10517:18;;;10510:62;-1:-1:-1;;;10588:18:1;;;10581:39;10637:19;;61608:72:0;10257:405:1;61608:72:0;61725:9;;61715:6;61699:13;24304:12;;24091:7;24288:13;:28;;24030:323;61699:13;:22;;;;:::i;:::-;:35;;61691:84;;;;-1:-1:-1;;;61691:84:0;;;;;;;:::i;:::-;61831:12;;61821:6;61794:24;61807:10;61794:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;61786:102;;;;-1:-1:-1;;;61786:102:0;;10869:2:1;61786:102:0;;;10851:21:1;10908:2;10888:18;;;10881:30;10947:34;10927:18;;;10920:62;-1:-1:-1;;;10998:18:1;;;10991:38;11046:19;;61786:102:0;10667:404:1;61786:102:0;61901:21;61937:15;61987:13;;61975:9;;:25;61971:90;;;62033:16;;62017:32;;61971:90;62089:6;62137:13;62110:24;62123:10;62110:12;:24::i;:::-;:40;62106:331;;;62208:13;62198:6;62171:24;62184:10;62171:12;:24::i;:::-;:33;;;;:::i;:::-;:50;62167:227;;-1:-1:-1;62250:1:0;62167:227;;;62365:13;62356:6;62329:24;62342:10;62329:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;;;:::i;:::-;62321:57;;62167:227;62421:4;62408:17;;62106:331;62478:5;;62470:13;;:5;:13;:::i;:::-;62457:9;:26;;62449:62;;;;-1:-1:-1;;;62449:62:0;;11451:2:1;62449:62:0;;;11433:21:1;11490:2;11470:18;;;11463:30;11529:25;11509:18;;;11502:53;11572:18;;62449:62:0;11249:347:1;62449:62:0;62535:10;62532:29;;;62560:1;62547:9;;:14;;;;;;;:::i;:::-;;;;-1:-1:-1;;62532:29:0;62574;62584:10;62596:6;62574:9;:29::i;65068:245::-;65236:4;-1:-1:-1;;;;;4238:18:0;;4246:10;4238:18;4234:83;;4273:32;4294:10;4273:20;:32::i;:::-;65258:47:::1;65281:4;65287:2;65291:7;65300:4;65258:22;:47::i;:::-;65068:245:::0;;;;;:::o;63115:292::-;63188:13;63219:16;63227:7;63219;:16::i;:::-;63214:59;;63244:29;;-1:-1:-1;;;63244:29:0;;;;;;;;;;;63214:59;63307:7;63301:21;;;;;:::i;:::-;;;63326:1;63301:26;:98;;;;;;;;;;;;;;;;;63354:7;63363:18;63373:7;63363:9;:18::i;:::-;63383:9;63337:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63294:105;63115:292;-1:-1:-1;;63115:292:0:o;61272:113::-;-1:-1:-1;;;;;25618:25:0;;61330:7;25618:25;;;:18;:25;;19511:2;25618:25;;;;19373:13;25618:50;;25617:82;61357:20;25529:178;35719:164;-1:-1:-1;;;;;35840:25:0;;;35816:4;35840:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35719:164::o;8414:201::-;7394:13;:11;:13::i;:::-;-1:-1:-1;;;;;8503:22:0;::::1;8495:73;;;::::0;-1:-1:-1;;;8495:73:0;;13004:2:1;8495:73:0::1;::::0;::::1;12986:21:1::0;13043:2;13023:18;;;13016:30;13082:34;13062:18;;;13055:62;-1:-1:-1;;;13133:18:1;;;13126:36;13179:19;;8495:73:0::1;12802:402:1::0;8495:73:0::1;8579:28;8598:8;8579:18;:28::i;63725:96::-:0;7394:13;:11;:13::i;:::-;63794:10:::1;:19:::0;63725:96::o;36141:282::-;36206:4;36296:13;;36286:7;:23;36243:153;;;;-1:-1:-1;;36347:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;36347:44:0;:49;;36141:282::o;4476:419::-;2997:42;4667:45;:49;4663:225;;4738:67;;-1:-1:-1;;;4738:67:0;;4789:4;4738:67;;;13421:34:1;-1:-1:-1;;;;;13491:15:1;;13471:18;;;13464:43;2997:42:0;;4738;;13356:18:1;;4738:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4733:144;;4833:28;;-1:-1:-1;;;4833:28:0;;-1:-1:-1;;;;;1697:32:1;;4833:28:0;;;1679:51:1;1652:18;;4833:28:0;1533:203:1;34203:408:0;34292:13;34308:16;34316:7;34308;:16::i;:::-;34292:32;-1:-1:-1;58536:10:0;-1:-1:-1;;;;;34341:28:0;;;34337:175;;34389:44;34406:5;58536:10;35719:164;:::i;34389:44::-;34384:128;;34461:35;;-1:-1:-1;;;34461:35:0;;;;;;;;;;;34384:128;34524:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;34524:35:0;-1:-1:-1;;;;;34524:35:0;;;;;;;;;34575:28;;34524:24;;34575:28;;;;;;;34281:330;34203:408;;:::o;38409:2825::-;38551:27;38581;38600:7;38581:18;:27::i;:::-;38551:57;;38666:4;-1:-1:-1;;;;;38625:45:0;38641:19;-1:-1:-1;;;;;38625:45:0;;38621:86;;38679:28;;-1:-1:-1;;;38679:28:0;;;;;;;;;;;38621:86;38721:27;37517:24;;;:15;:24;;;;;37745:26;;58536:10;37142:30;;;-1:-1:-1;;;;;36835:28:0;;37120:20;;;37117:56;38907:180;;39000:43;39017:4;58536:10;35719:164;:::i;39000:43::-;38995:92;;39052:35;;-1:-1:-1;;;39052:35:0;;;;;;;;;;;38995:92;-1:-1:-1;;;;;39104:16:0;;39100:52;;39129:23;;-1:-1:-1;;;39129:23:0;;;;;;;;;;;39100:52;39301:15;39298:160;;;39441:1;39420:19;39413:30;39298:160;-1:-1:-1;;;;;39838:24:0;;;;;;;:18;:24;;;;;;39836:26;;-1:-1:-1;;39836:26:0;;;39907:22;;;;;;;;;39905:24;;-1:-1:-1;39905:24:0;;;33061:11;33036:23;33032:41;33019:63;-1:-1:-1;;;33019:63:0;40200:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;40495:47:0;;:52;;40491:627;;40600:1;40590:11;;40568:19;40723:30;;;:17;:30;;;;;;:35;;40719:384;;40861:13;;40846:11;:28;40842:242;;41008:30;;;;:17;:30;;;;;:52;;;40842:242;40549:569;40491:627;41165:7;41161:2;-1:-1:-1;;;;;41146:27:0;41155:4;-1:-1:-1;;;;;41146:27:0;;;;;;;;;;;41184:42;38540:2694;;;38409:2825;;;:::o;7673:132::-;7581:6;;-1:-1:-1;;;;;7581:6:0;58536:10;7737:23;7729:68;;;;-1:-1:-1;;;7729:68:0;;13970:2:1;7729:68:0;;;13952:21:1;;;13989:18;;;13982:30;14048:34;14028:18;;;14021:62;14100:18;;7729:68:0;13768:356:1;41330:193:0;41476:39;41493:4;41499:2;41503:7;41476:39;;;;;;;;;;;;:16;:39::i;52281:112::-;52358:27;52368:2;52372:8;52358:27;;;;;;;;;;;;:9;:27::i;:::-;52281:112;;:::o;30827:1275::-;30894:7;30929;31031:13;;31024:4;:20;31020:1015;;;31069:14;31086:23;;;:17;:23;;;;;;;-1:-1:-1;;;31175:24:0;;:29;;31171:845;;31840:113;31847:6;31857:1;31847:11;31840:113;;-1:-1:-1;;;31918:6:0;31900:25;;;;:17;:25;;;;;;31840:113;;;31986:6;30827:1275;-1:-1:-1;;;30827:1275:0:o;31171:845::-;31046:989;31020:1015;32063:31;;-1:-1:-1;;;32063:31:0;;;;;;;;;;;8775:191;8868:6;;;-1:-1:-1;;;;;8885:17:0;;;-1:-1:-1;;;;;;8885:17:0;;;;;;;8918:40;;8868:6;;;8885:17;8868:6;;8918:40;;8849:16;;8918:40;8838:128;8775:191;:::o;35328:234::-;58536:10;35423:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;35423:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;35423:60:0;;;;;;;;;;35499:55;;540:41:1;;;35423:49:0;;58536:10;35499:55;;513:18:1;35499:55:0;;;;;;;35328:234;;:::o;42121:407::-;42296:31;42309:4;42315:2;42319:7;42296:12;:31::i;:::-;-1:-1:-1;;;;;42342:14:0;;;:19;42338:183;;42381:56;42412:4;42418:2;42422:7;42431:5;42381:30;:56::i;:::-;42376:145;;42465:40;;-1:-1:-1;;;42465:40:0;;;;;;;;;;;58656:1745;58721:17;59155:4;59148;59142:11;59138:22;59247:1;59241:4;59234:15;59322:4;59319:1;59315:12;59308:19;;;59404:1;59399:3;59392:14;59508:3;59747:5;59729:428;59795:1;59790:3;59786:11;59779:18;;59966:2;59960:4;59956:13;59952:2;59948:22;59943:3;59935:36;60060:2;60050:13;;60117:25;59729:428;60117:25;-1:-1:-1;60187:13:0;;;-1:-1:-1;;60302:14:0;;;60364:19;;;60302:14;58656:1745;-1:-1:-1;58656:1745:0:o;51508:689::-;51639:19;51645:2;51649:8;51639:5;:19::i;:::-;-1:-1:-1;;;;;51700:14:0;;;:19;51696:483;;51740:11;51754:13;51802:14;;;51835:233;51866:62;51905:1;51909:2;51913:7;;;;;;51922:5;51866:30;:62::i;:::-;51861:167;;51964:40;;-1:-1:-1;;;51964:40:0;;;;;;;;;;;51861:167;52063:3;52055:5;:11;51835:233;;52150:3;52133:13;;:20;52129:34;;52155:8;;;44612:716;44796:88;;-1:-1:-1;;;44796:88:0;;44775:4;;-1:-1:-1;;;;;44796:45:0;;;;;:88;;58536:10;;44863:4;;44869:7;;44878:5;;44796:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44796:88:0;;;;;;;;-1:-1:-1;;44796:88:0;;;;;;;;;;;;:::i;:::-;;;44792:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45079:6;:13;45096:1;45079:18;45075:235;;45125:40;;-1:-1:-1;;;45125:40:0;;;;;;;;;;;45075:235;45268:6;45262:13;45253:6;45249:2;45245:15;45238:38;44792:529;-1:-1:-1;;;;;;44955:64:0;-1:-1:-1;;;44955:64:0;;-1:-1:-1;44612:716:0;;;;;;:::o;45790:2966::-;45863:20;45886:13;;;45914;;;45910:44;;45936:18;;-1:-1:-1;;;45936:18:0;;;;;;;;;;;45910:44;-1:-1:-1;;;;;46442:22:0;;;;;;:18;:22;;;;19511:2;46442:22;;;:71;;46480:32;46468:45;;46442:71;;;46756:31;;;:17;:31;;;;;-1:-1:-1;33492:15:0;;33466:24;33462:46;33061:11;33036:23;33032:41;33029:52;33019:63;;46756:173;;46991:23;;;;46756:31;;46442:22;;47756:25;46442:22;;47609:335;48270:1;48256:12;48252:20;48210:346;48311:3;48302:7;48299:16;48210:346;;48529:7;48519:8;48516:1;48489:25;48486:1;48483;48478:59;48364:1;48351:15;48210:346;;;48214:77;48589:8;48601:1;48589:13;48585:45;;48611:19;;-1:-1:-1;;;48611:19:0;;;;;;;;;;;48585:45;48647:13;:19;-1:-1:-1;64529:165:0;;;:::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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2932:592::-;3003:6;3011;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3149:18;3190:2;3182:6;3179:14;3176:34;;;3206:1;3203;3196:12;3176:34;3244:6;3233:9;3229:22;3219:32;;3289:7;3282:4;3278:2;3274:13;3270:27;3260:55;;3311:1;3308;3301:12;3260:55;3351:2;3338:16;3377:2;3369:6;3366:14;3363:34;;;3393:1;3390;3383:12;3363:34;3438:7;3433:2;3424:6;3420:2;3416:15;3412:24;3409:37;3406:57;;;3459:1;3456;3449:12;3406:57;3490:2;3482:11;;;;;3512:6;;-1:-1:-1;2932:592:1;;-1:-1:-1;;;;2932:592:1:o;3529:186::-;3588:6;3641:2;3629:9;3620:7;3616:23;3612:32;3609:52;;;3657:1;3654;3647:12;3609:52;3680:29;3699:9;3680:29;:::i;3720:118::-;3806:5;3799:13;3792:21;3785:5;3782:32;3772:60;;3828:1;3825;3818:12;3843:315;3908:6;3916;3969:2;3957:9;3948:7;3944:23;3940:32;3937:52;;;3985:1;3982;3975:12;3937:52;4008:29;4027:9;4008:29;:::i;:::-;3998:39;;4087:2;4076:9;4072:18;4059:32;4100:28;4122:5;4100:28;:::i;:::-;4147:5;4137:15;;;3843:315;;;;;:::o;4163:127::-;4224:10;4219:3;4215:20;4212:1;4205:31;4255:4;4252:1;4245:15;4279:4;4276:1;4269:15;4295:1138;4390:6;4398;4406;4414;4467:3;4455:9;4446:7;4442:23;4438:33;4435:53;;;4484:1;4481;4474:12;4435:53;4507:29;4526:9;4507:29;:::i;:::-;4497:39;;4555:38;4589:2;4578:9;4574:18;4555:38;:::i;:::-;4545:48;;4640:2;4629:9;4625:18;4612:32;4602:42;;4695:2;4684:9;4680:18;4667:32;4718:18;4759:2;4751:6;4748:14;4745:34;;;4775:1;4772;4765:12;4745:34;4813:6;4802:9;4798:22;4788:32;;4858:7;4851:4;4847:2;4843:13;4839:27;4829:55;;4880:1;4877;4870:12;4829:55;4916:2;4903:16;4938:2;4934;4931:10;4928:36;;;4944:18;;:::i;:::-;5019:2;5013:9;4987:2;5073:13;;-1:-1:-1;;5069:22:1;;;5093:2;5065:31;5061:40;5049:53;;;5117:18;;;5137:22;;;5114:46;5111:72;;;5163:18;;:::i;:::-;5203:10;5199:2;5192:22;5238:2;5230:6;5223:18;5278:7;5273:2;5268;5264;5260:11;5256:20;5253:33;5250:53;;;5299:1;5296;5289:12;5250:53;5355:2;5350;5346;5342:11;5337:2;5329:6;5325:15;5312:46;5400:1;5395:2;5390;5382:6;5378:15;5374:24;5367:35;5421:6;5411:16;;;;;;;4295:1138;;;;;;;:::o;5438:260::-;5506:6;5514;5567:2;5555:9;5546:7;5542:23;5538:32;5535:52;;;5583:1;5580;5573:12;5535:52;5606:29;5625:9;5606:29;:::i;:::-;5596:39;;5654:38;5688:2;5677:9;5673:18;5654:38;:::i;:::-;5644:48;;5438:260;;;;;:::o;5703:380::-;5782:1;5778:12;;;;5825;;;5846:61;;5900:4;5892:6;5888:17;5878:27;;5846:61;5953:2;5945:6;5942:14;5922:18;5919:38;5916:161;;5999:10;5994:3;5990:20;5987:1;5980:31;6034:4;6031:1;6024:15;6062:4;6059:1;6052:15;5916:161;;5703:380;;;:::o;6773:545::-;6875:2;6870:3;6867:11;6864:448;;;6911:1;6936:5;6932:2;6925:17;6981:4;6977:2;6967:19;7051:2;7039:10;7035:19;7032:1;7028:27;7022:4;7018:38;7087:4;7075:10;7072:20;7069:47;;;-1:-1:-1;7110:4:1;7069:47;7165:2;7160:3;7156:12;7153:1;7149:20;7143:4;7139:31;7129:41;;7220:82;7238:2;7231:5;7228:13;7220:82;;;7283:17;;;7264:1;7253:13;7220:82;;7494:1206;7618:18;7613:3;7610:27;7607:53;;;7640:18;;:::i;:::-;7669:94;7759:3;7719:38;7751:4;7745:11;7719:38;:::i;:::-;7713:4;7669:94;:::i;:::-;7789:1;7814:2;7809:3;7806:11;7831:1;7826:616;;;;8486:1;8503:3;8500:93;;;-1:-1:-1;8559:19:1;;;8546:33;8500:93;-1:-1:-1;;7451:1:1;7447:11;;;7443:24;7439:29;7429:40;7475:1;7471:11;;;7426:57;8606:78;;7799:895;;7826:616;6720:1;6713:14;;;6757:4;6744:18;;-1:-1:-1;;7862:17:1;;;7963:9;7985:229;7999:7;7996:1;7993:14;7985:229;;;8088:19;;;8075:33;8060:49;;8195:4;8180:20;;;;8148:1;8136:14;;;;8015:12;7985:229;;;7989:3;8242;8233:7;8230:16;8227:159;;;8366:1;8362:6;8356:3;8350;8347:1;8343:11;8339:21;8335:34;8331:39;8318:9;8313:3;8309:19;8296:33;8292:79;8284:6;8277:95;8227:159;;;8429:1;8423:3;8420:1;8416:11;8412:19;8406:4;8399:33;7799:895;;7494:1206;;;:::o;8705:399::-;8907:2;8889:21;;;8946:2;8926:18;;;8919:30;8985:34;8980:2;8965:18;;8958:62;-1:-1:-1;;;9051:2:1;9036:18;;9029:33;9094:3;9079:19;;8705:399::o;9109:127::-;9170:10;9165:3;9161:20;9158:1;9151:31;9201:4;9198:1;9191:15;9225:4;9222:1;9215:15;9241:125;9306:9;;;9327:10;;;9324:36;;;9340:18;;:::i;9371:400::-;9573:2;9555:21;;;9612:2;9592:18;;;9585:30;9651:34;9646:2;9631:18;;9624:62;-1:-1:-1;;;9717:2:1;9702:18;;9695:34;9761:3;9746:19;;9371:400::o;9776:128::-;9843:9;;;9864:11;;;9861:37;;;9878:18;;:::i;11076:168::-;11149:9;;;11180;;11197:15;;;11191:22;;11177:37;11167:71;;11218:18;;:::i;11601:722::-;11651:3;11692:5;11686:12;11721:36;11747:9;11721:36;:::i;:::-;11776:1;11793:18;;;11820:133;;;;11967:1;11962:355;;;;11786:531;;11820:133;-1:-1:-1;;11853:24:1;;11841:37;;11926:14;;11919:22;11907:35;;11898:45;;;-1:-1:-1;11820:133:1;;11962:355;11993:5;11990:1;11983:16;12022:4;12067:2;12064:1;12054:16;12092:1;12106:165;12120:6;12117:1;12114:13;12106:165;;;12198:14;;12185:11;;;12178:35;12241:16;;;;12135:10;;12106:165;;;12110:3;;;12300:6;12295:3;12291:16;12284:23;;11786:531;;;;;11601:722;;;;:::o;12328:469::-;12549:3;12577:38;12611:3;12603:6;12577:38;:::i;:::-;12644:6;12638:13;12660:65;12718:6;12714:2;12707:4;12699:6;12695:17;12660:65;:::i;:::-;12741:50;12783:6;12779:2;12775:15;12767:6;12741:50;:::i;:::-;12734:57;12328:469;-1:-1:-1;;;;;;;12328:469:1:o;13518:245::-;13585:6;13638:2;13626:9;13617:7;13613:23;13609:32;13606:52;;;13654:1;13651;13644:12;13606:52;13686:9;13680:16;13705:28;13727:5;13705:28;:::i;14129:489::-;-1:-1:-1;;;;;14398:15:1;;;14380:34;;14450:15;;14445:2;14430:18;;14423:43;14497:2;14482:18;;14475:34;;;14545:3;14540:2;14525:18;;14518:31;;;14323:4;;14566:46;;14592:19;;14584:6;14566:46;:::i;:::-;14558:54;14129:489;-1:-1:-1;;;;;;14129:489:1:o;14623:249::-;14692:6;14745:2;14733:9;14724:7;14720:23;14716:32;14713:52;;;14761:1;14758;14751:12;14713:52;14793:9;14787:16;14812:30;14836:5;14812:30;:::i

Swarm Source

ipfs://dfeefaafe73ff1ae25e82ed80e2baaf8bcdfe690aafe75023181fb4cec0e8f49
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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