ETH Price: $3,094.63 (-1.26%)

Token

spookSPOOK (💀)
 

Overview

Max Total Supply

1,800 💀

Holders

182

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 💀
0x883701b711b245bf227c637a6d9967921aecad0d
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:
spook

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-10-27
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: 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: @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: Spook/test.sol



//                               &&&&&&&#                                                          
//                           ,&&&&&&&&&&&&&&&&/                                                    
//                          %%%%%%&&%&&&&&&&&&&&&&                                                 
//                         %%%%%%%%%%%%%%%&&&&&%%&&%                                               
//                        %%%%%#%%%%%%%%%%%%%%%%%####                                              
//                        ###%%%%%%%%%%%%%%%%%%%#%###                                              
//                         ##########%%%%%%%%,,,,#(##                                              
//                          ((((((#####%###...,,,((,                                               
//                            ./%%/(########/..###                                                 
//                           ,###%%(*(#########,.,                                                 
//                          ##*###%%#,*(######..                                                   
//                          #%*(###%%%(%###%%%%#                                                   
//                         ##****.##%%%%%%####((                                                   
//                        /##///*/##(#%%%%%##(                                                     
//              ,#%(((///***/*****       ((((,                                                     
//                  ((/,   //***/ %%%##(/(((((                                                     
//           ,       ###*  //****%%%%%%#( #((                                                      
//          #%%##/*(*..,%%%#%%%%%%%%%%%###(((                                                      
//           %%(/  (##(   ,/*,*,*(%%%%%##(/#(                                                      
//          %%#/*//..#%%%./((((###%%%%%###(((                                                      
//          %%(/ /#(     %%%%%%%%%%%%%####/#                                                       
//         %%#/   ##%%(   //****(##%#%####((                                                       
//         %%(*((*,,  %%%%%%%%%%%%#####(((((         /(/// % (                                     
//        #%%/*(( ,(*,   ./*****//####((((((  . %/&( /((@.(  ##/                                   
//        %%(/ /##%##   *(((((########((((/(  *#&(&*/ @@#  @ (                                     
//       %%%(  (/     *, //****.(####(((////,/ **%%&@&@@@@%,                                       
//       %%(/  (((#((/ /((#########(((((//*/*    *(/*                                              
//      %%%(.   ((#############(,        .       (                                                 
//      %%(/         *(  (//(                   ,                                                  
//     %%#(*            /(///(((((((#(/    #,  /   /*                                              
//    (%%(/      ((#####(/*///((%%%###%%%%%,##(#%%##/                                              
//    *%#%%%%%%%%%%%%%#######(((#######%#% ##, (  (                                                
//            #####%###########((######/      ,%                                                   
//            /#####%########(((#######(%              

pragma solidity ^0.8.0;






contract spook is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    uint256 public sacrifice = 0.0048 ether;
    uint256 public _totalSpooks = 1800;
    uint256 public maxMintAmountPerTx = 10;
    uint256 coffinSpace = 10;

    string baseURL;
    string extension = ".json";
    string facade;

    
    bool public closed = true;
    bool public revealed = false;
    bool contractsAllowed = true;

    string public ticker = unicode"💀" ;

    address public keys;

    uint16 private keysID;

    IERC1155 Keys = IERC1155(keys);

    Cemetary cemetary;

    constructor(string memory _facade) ERC721A("spookSPOOK", ticker) {
        facade = _facade;
    }

    // ==================== Modifiers =========================

    modifier contracts {
        if(!contractsAllowed){
            require(_msgSender()== tx.origin, "Hmm...");
        }
        _;
    }

    modifier thief {
        require(cemetary.isThief(_msgSender()), "You're not a grave thief.");
        _;
    }

    modifier isMidnight() {
        _;
    }

    modifier hasKey() {
        require(Keys.balanceOf(_msgSender(), keysID) > 0, "No keys.");
        _;
    }
    
    modifier spooky() {
        require(balanceOf(_msgSender()) > 0, "No spooks.");
        _;
    }

    modifier cemetaryStatus() {
        require(!closed, "The cemetary is closed!");
        _;
    }

    // ================== Mint Function =======================

    modifier rules(uint256 _mintAmount){
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Ritual failed!");
        require(totalSupply() + _mintAmount <= _totalSpooks, "Cemetary is full!");
        require(balanceOf(msg.sender) < coffinSpace, "Too many skeletons in your coffin.");
        _;
    }

    function revive(uint256 _mintAmount) public payable cemetaryStatus contracts rules(_mintAmount){
                // require(_msgSender() == tx.origin, "What are you doing?");    
                require(msg.value >= _mintAmount * sacrifice, "Insufficient sacrifice.");
                _safeMint(msg.sender, _mintAmount);    
    }

    // =================== Orange Functions (Owner Only) ===============

    function close(bool state) public onlyOwner {
        closed = state;
    }

    // function safeMint(address to, uint256 quantity) public onlyOwner {
    //     _safeMint(to, quantity);
    // }
    
    function setFacade(string memory uri) public onlyOwner {
        facade = uri;
    }
    
    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }
    
    function setbaseURL(string memory uri) public onlyOwner{
        baseURL = uri;
    }

    function setExtensionURL(string memory uri) public onlyOwner{
        extension = uri;
    }

    function setSacrifice(uint256 _cost) public onlyOwner{
        sacrifice = _cost;
    }

    // ================================ Withdraw Function ====================

    function pillage() public onlyOwner nonReentrant{
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    // =================== Blue Functions (View Only) ====================

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory){

        require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
        
        if (revealed == false) {
        return facade;
        }
        
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), extension))
            : '';
    }

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256){
        return 1;
    }

    function setCemetary(address graveyard) public onlyOwner {
        cemetary = Cemetary(graveyard);
    }

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

    function totalSpooks() public view returns (uint256){
        return _totalSpooks;
    }

    // ================================ Keys Function ==============================

    function setKeys(address addy) external onlyOwner {
        keys = addy;
    }
    
    function setKeysId(uint16 id) external onlyOwner {
        keysID = id;
    }

    
    // ==================== Cemetary =========================

    function bury(uint256 tokenId, uint tombstone) external spooky contracts cemetaryStatus {
        cemetary.bury(tokenId, tombstone);
    }
    
    function unbury(uint256 tokenId, uint tombstone) external spooky contracts cemetaryStatus {
        cemetary.unbury(tokenId, tombstone);
    }

    function hint(string memory password) external view returns(string memory clue){
        clue = cemetary.hint(password);
    }

    function lock(uint tombstone) external spooky contracts hasKey cemetaryStatus {
        cemetary.lock(tombstone);
    }

    function unlock(uint tombstone) external spooky contracts hasKey cemetaryStatus {
        cemetary.unlock(tombstone);
    }

    function digUp(address owner, uint tombstone) external thief cemetaryStatus returns(bool empty){
        empty = cemetary.digUp(owner, tombstone);
    }
}

interface Cemetary {
    function bury(uint256 tokenId, uint tombstone) external;
    function hint(string memory password) external view returns(string memory clue);
    function unbury(uint256 tokenId, uint tombstone) external;
    function lock(uint tombstone) external;
    function unlock(uint tombstone) external;
    function digUp(address owner, uint tombstone) external returns(bool empty);
    function isBurried(uint256 tokenId) external view returns(bool);
    function isThief(address thief) external view returns(bool);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_facade","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSpooks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"tombstone","type":"uint256"}],"name":"bury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"close","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"closed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"tombstone","type":"uint256"}],"name":"digUp","outputs":[{"internalType":"bool","name":"empty","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"password","type":"string"}],"name":"hint","outputs":[{"internalType":"string","name":"clue","type":"string"}],"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":"keys","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tombstone","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pillage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"revive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sacrifice","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"graveyard","type":"address"}],"name":"setCemetary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setFacade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"setKeys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"id","type":"uint16"}],"name":"setKeysId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setSacrifice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","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":"ticker","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSpooks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenId","type":"uint256"},{"internalType":"uint256","name":"tombstone","type":"uint256"}],"name":"unbury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tombstone","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66110d9316ec0000600a908155610708600b55600c819055600d5560c06040526005608090815264173539b7b760d91b60a052600f90620000419082620002cb565b506011805462ffffff19166201000117905560408051808201909152600481526301e13f2560e71b60208201526012906200007d9082620002cb565b50601354601480546001600160a01b0319166001600160a01b03909216919091179055348015620000ad57600080fd5b50604051620029f4380380620029f4833981016040819052620000d09162000397565b6040518060400160405280600a81526020016973706f6f6b53504f4f4b60b01b8152506012805462000102906200023c565b80601f016020809104026020016040519081016040528092919081815260200182805462000130906200023c565b8015620001815780601f10620001555761010080835404028352916020019162000181565b820191906000526020600020905b8154815290600101906020018083116200016357829003601f168201915b50505050508160029081620001979190620002cb565b506003620001a68282620002cb565b5050600160005550620001b933620001d4565b60016009556010620001cc8282620002cb565b50506200046c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025157607f821691505b6020821081036200027257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002c657600081815260208120601f850160051c81016020861015620002a15750805b601f850160051c820191505b81811015620002c257828155600101620002ad565b5050505b505050565b81516001600160401b03811115620002e757620002e762000226565b620002ff81620002f884546200023c565b8462000278565b602080601f8311600181146200033757600084156200031e5750858301515b600019600386901b1c1916600185901b178555620002c2565b600085815260208120601f198616915b82811015620003685788860151825594840194600190910190840162000347565b5085821015620003875787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020808385031215620003ab57600080fd5b82516001600160401b0380821115620003c357600080fd5b818501915085601f830112620003d857600080fd5b815181811115620003ed57620003ed62000226565b604051601f8201601f19908116603f0116810190838211818310171562000418576200041862000226565b8160405282815288868487010111156200043157600080fd5b600093505b8284101562000455578484018601518185018701529285019262000436565b600086848301015280965050505050505092915050565b612578806200047c6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063a22cb465116100b6578063cd748f531161007a578063cd748f531461066f578063dd4670641461068f578063e0a80853146106af578063e985e9c5146106cf578063f04ecc95146106ef578063f2fde38b1461070f57600080fd5b8063a22cb465146105e7578063a5067fac14610607578063b88d4fde14610627578063be2427e71461063a578063c87b56dd1461064f57600080fd5b80638baecc21116100fd5780638baecc21146105765780638da5cb5b1461058957806394354fd0146105a757806395d89b41146105bd578063a1274984146105d257600080fd5b806370a0823114610500578063715018a6146105205780637705f2b0146105355780638a040df41461054b5780638ba47bdd1461056157600080fd5b8063307540f6116101d2578063518302271161019657806351830227146104475780635918704a14610466578063597e1fb5146104865780636198e339146104a0578063626ab3b8146104c05780636352211e146104e057600080fd5b8063307540f6146103b4578063323da480146103d457806342842e0e146103f4578063469a8efa146104075780634d534a7d1461042757600080fd5b8063205b251111610219578063205b251114610321578063212c5fea14610341578063221d12fd1461036157806323b872dd14610381578063275b07ad1461039457600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806318160ddd146102fa575b600080fd5b34801561026257600080fd5b50610276610271366004611d9d565b61072f565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610781565b6040516102829190611e0a565b3480156102b957600080fd5b506102cd6102c8366004611e1d565b610813565b6040516001600160a01b039091168152602001610282565b6102f86102f3366004611e52565b610857565b005b34801561030657600080fd5b5060015460005403600019015b604051908152602001610282565b34801561032d57600080fd5b506102f861033c366004611e7c565b6108f7565b34801561034d57600080fd5b506102f861035c366004611eac565b6109e4565b34801561036d57600080fd5b506102f861037c366004611ec9565b6109ff565b6102f861038f366004611eed565b610a29565b3480156103a057600080fd5b506102f86103af366004611f29565b610bbe565b3480156103c057600080fd5b506013546102cd906001600160a01b031681565b3480156103e057600080fd5b506102f86103ef366004611e7c565b610be8565b6102f8610402366004611eed565b610c99565b34801561041357600080fd5b506102f8610422366004611f29565b610cb9565b34801561043357600080fd5b506102f8610442366004611ff1565b610ce3565b34801561045357600080fd5b5060115461027690610100900460ff1681565b34801561047257600080fd5b506102f8610481366004611e1d565b610cfb565b34801561049257600080fd5b506011546102769060ff1681565b3480156104ac57600080fd5b506102f86104bb366004611e1d565b610d08565b3480156104cc57600080fd5b506102f86104db366004611ff1565b610eab565b3480156104ec57600080fd5b506102cd6104fb366004611e1d565b610ebf565b34801561050c57600080fd5b5061031361051b366004611f29565b610eca565b34801561052c57600080fd5b506102f8610f19565b34801561054157600080fd5b50610313600b5481565b34801561055757600080fd5b50610313600a5481565b34801561056d57600080fd5b506102a0610f2d565b6102f8610584366004611e1d565b610fbb565b34801561059557600080fd5b506008546001600160a01b03166102cd565b3480156105b357600080fd5b50610313600c5481565b3480156105c957600080fd5b506102a0611184565b3480156105de57600080fd5b50600b54610313565b3480156105f357600080fd5b506102f861060236600461203a565b611193565b34801561061357600080fd5b506102f8610622366004611ff1565b6111ff565b6102f8610635366004612071565b611213565b34801561064657600080fd5b506102f861125d565b34801561065b57600080fd5b506102a061066a366004611e1d565b611335565b34801561067b57600080fd5b506102a061068a366004611ff1565b6114a9565b34801561069b57600080fd5b506102f86106aa366004611e1d565b61151f565b3480156106bb57600080fd5b506102f86106ca366004611eac565b611691565b3480156106db57600080fd5b506102766106ea3660046120ed565b6116b3565b3480156106fb57600080fd5b5061027661070a366004611e52565b6116e1565b34801561071b57600080fd5b506102f861072a366004611f29565b611844565b60006301ffc9a760e01b6001600160e01b03198316148061076057506380ac58cd60e01b6001600160e01b03198316145b8061077b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461079090612120565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc90612120565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b5050505050905090565b600061081e826118bd565b61083b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086282610ebf565b9050336001600160a01b0382161461089b5761087e81336116b3565b61089b576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061090233610eca565b116109285760405162461bcd60e51b815260040161091f9061215a565b60405180910390fd5b60115462010000900460ff16610957573332146109575760405162461bcd60e51b815260040161091f9061217e565b60115460ff161561097a5760405162461bcd60e51b815260040161091f9061219e565b60155460405163205b251160e01b815260048101849052602481018390526001600160a01b039091169063205b2511906044015b600060405180830381600087803b1580156109c857600080fd5b505af11580156109dc573d6000803e3d6000fd5b505050505050565b6109ec6118f2565b6011805460ff1916911515919091179055565b610a076118f2565b6013805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b6000610a348261194c565b9050836001600160a01b0316816001600160a01b031614610a675760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ab457610a9786336116b3565b610ab457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610adb57604051633a954ecd60e21b815260040160405180910390fd5b8015610ae657600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610b7857600184016000818152600460205260408120549003610b76576000548114610b765760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46109dc565b610bc66118f2565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610bf333610eca565b11610c105760405162461bcd60e51b815260040161091f9061215a565b60115462010000900460ff16610c3f57333214610c3f5760405162461bcd60e51b815260040161091f9061217e565b60115460ff1615610c625760405162461bcd60e51b815260040161091f9061219e565b60155460405162647b4960e71b815260048101849052602481018390526001600160a01b039091169063323da480906044016109ae565b610cb483838360405180602001604052806000815250611213565b505050565b610cc16118f2565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b610ceb6118f2565b600f610cf7828261221b565b5050565b610d036118f2565b600a55565b6000610d1333610eca565b11610d305760405162461bcd60e51b815260040161091f9061215a565b60115462010000900460ff16610d5f57333214610d5f5760405162461bcd60e51b815260040161091f9061217e565b6014546000906001600160a01b031662fdd58e3360135460405160e084901b6001600160e01b03191681526001600160a01b039092166004830152600160a01b900461ffff166024820152604401602060405180830381865afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee91906122db565b11610e265760405162461bcd60e51b815260206004820152600860248201526727379035b2bcb99760c11b604482015260640161091f565b60115460ff1615610e495760405162461bcd60e51b815260040161091f9061219e565b601554604051636198e33960e01b8152600481018390526001600160a01b0390911690636198e339906024015b600060405180830381600087803b158015610e9057600080fd5b505af1158015610ea4573d6000803e3d6000fd5b5050505050565b610eb36118f2565b600e610cf7828261221b565b600061077b8261194c565b60006001600160a01b038216610ef3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610f216118f2565b610f2b60006119bb565b565b60128054610f3a90612120565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6690612120565b8015610fb35780601f10610f8857610100808354040283529160200191610fb3565b820191906000526020600020905b815481529060010190602001808311610f9657829003601f168201915b505050505081565b60115460ff1615610fde5760405162461bcd60e51b815260040161091f9061219e565b60115462010000900460ff1661100d5733321461100d5760405162461bcd60e51b815260040161091f9061217e565b806000811180156110205750600c548111155b61105d5760405162461bcd60e51b815260206004820152600e60248201526d52697475616c206661696c65642160901b604482015260640161091f565b600b546001546000548391900360001901611078919061230a565b11156110ba5760405162461bcd60e51b815260206004820152601160248201527043656d65746172792069732066756c6c2160781b604482015260640161091f565b600d546110c633610eca565b1061111e5760405162461bcd60e51b815260206004820152602260248201527f546f6f206d616e7920736b656c65746f6e7320696e20796f757220636f666669604482015261371760f11b606482015260840161091f565b600a5461112b908361231d565b34101561117a5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e74207361637269666963652e000000000000000000604482015260640161091f565b610cf73383611a0d565b60606003805461079090612120565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112076118f2565b6010610cf7828261221b565b61121e848484610a29565b6001600160a01b0383163b156112575761123a84848484611a27565b611257576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6112656118f2565b6002600954036112b75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161091f565b600260095560006112d06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461131a576040519150601f19603f3d011682016040523d82523d6000602084013e61131f565b606091505b505090508061132d57600080fd5b506001600955565b6060611340826118bd565b6113a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161091f565b601154610100900460ff16151560000361144a57601080546113c590612120565b80601f01602080910402602001604051908101604052809291908181526020018280546113f190612120565b801561143e5780601f106114135761010080835404028352916020019161143e565b820191906000526020600020905b81548152906001019060200180831161142157829003601f168201915b50505050509050919050565b6000611454611b13565b9050600081511161147457604051806020016040528060008152506114a2565b8061147e84611b22565b600f60405160200161149293929190612334565b6040516020818303038152906040525b9392505050565b60155460405163cd748f5360e01b81526060916001600160a01b03169063cd748f53906114da908590600401611e0a565b600060405180830381865afa1580156114f7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261077b91908101906123d4565b600061152a33610eca565b116115475760405162461bcd60e51b815260040161091f9061215a565b60115462010000900460ff16611576573332146115765760405162461bcd60e51b815260040161091f9061217e565b6014546000906001600160a01b031662fdd58e3360135460405160e084901b6001600160e01b03191681526001600160a01b039092166004830152600160a01b900461ffff166024820152604401602060405180830381865afa1580156115e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160591906122db565b1161163d5760405162461bcd60e51b815260206004820152600860248201526727379035b2bcb99760c11b604482015260640161091f565b60115460ff16156116605760405162461bcd60e51b815260040161091f9061219e565b6015546040516337519c1960e21b8152600481018390526001600160a01b039091169063dd46706490602401610e76565b6116996118f2565b601180549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6015546000906001600160a01b031663ff464b17336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561173a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175e919061244b565b6117aa5760405162461bcd60e51b815260206004820152601960248201527f596f75277265206e6f7420612067726176652074686965662e00000000000000604482015260640161091f565b60115460ff16156117cd5760405162461bcd60e51b815260040161091f9061219e565b60155460405163f04ecc9560e01b81526001600160a01b038581166004830152602482018590529091169063f04ecc95906044016020604051808303816000875af1158015611820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a2919061244b565b61184c6118f2565b6001600160a01b0381166118b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091f565b6118ba816119bb565b50565b6000816001111580156118d1575060005482105b801561077b575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610f2b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091f565b600081806001116119a2576000548110156119a25760008181526004602052604081205490600160e01b821690036119a0575b806000036114a257506000190160008181526004602052604090205461197f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cf7828260405180602001604052806000815250611c23565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a5c903390899088908890600401612468565b6020604051808303816000875af1925050508015611a97575060408051601f3d908101601f19168201909252611a94918101906124a5565b60015b611af5573d808015611ac5576040519150601f19603f3d011682016040523d82523d6000602084013e611aca565b606091505b508051600003611aed576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e805461079090612120565b606081600003611b495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b735780611b5d816124c2565b9150611b6c9050600a836124f1565b9150611b4d565b60008167ffffffffffffffff811115611b8e57611b8e611f44565b6040519080825280601f01601f191660200182016040528015611bb8576020820181803683370190505b5090505b8415611b0b57611bcd600183612505565b9150611bda600a86612518565b611be590603061230a565b60f81b818381518110611bfa57611bfa61252c565b60200101906001600160f81b031916908160001a905350611c1c600a866124f1565b9450611bbc565b611c2d8383611c89565b6001600160a01b0383163b15610cb4576000548281035b611c576000868380600101945086611a27565b611c74576040516368d2bf6b60e11b815260040160405180910390fd5b818110611c44578160005414610ea457600080fd5b6000805490829003611cae5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611d5d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611d25565b5081600003611d7e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146118ba57600080fd5b600060208284031215611daf57600080fd5b81356114a281611d87565b60005b83811015611dd5578181015183820152602001611dbd565b50506000910152565b60008151808452611df6816020860160208601611dba565b601f01601f19169290920160200192915050565b6020815260006114a26020830184611dde565b600060208284031215611e2f57600080fd5b5035919050565b80356001600160a01b0381168114611e4d57600080fd5b919050565b60008060408385031215611e6557600080fd5b611e6e83611e36565b946020939093013593505050565b60008060408385031215611e8f57600080fd5b50508035926020909101359150565b80151581146118ba57600080fd5b600060208284031215611ebe57600080fd5b81356114a281611e9e565b600060208284031215611edb57600080fd5b813561ffff811681146114a257600080fd5b600080600060608486031215611f0257600080fd5b611f0b84611e36565b9250611f1960208501611e36565b9150604084013590509250925092565b600060208284031215611f3b57600080fd5b6114a282611e36565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f8357611f83611f44565b604052919050565b600067ffffffffffffffff821115611fa557611fa5611f44565b50601f01601f191660200190565b6000611fc6611fc184611f8b565b611f5a565b9050828152838383011115611fda57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561200357600080fd5b813567ffffffffffffffff81111561201a57600080fd5b8201601f8101841361202b57600080fd5b611b0b84823560208401611fb3565b6000806040838503121561204d57600080fd5b61205683611e36565b9150602083013561206681611e9e565b809150509250929050565b6000806000806080858703121561208757600080fd5b61209085611e36565b935061209e60208601611e36565b925060408501359150606085013567ffffffffffffffff8111156120c157600080fd5b8501601f810187136120d257600080fd5b6120e187823560208401611fb3565b91505092959194509250565b6000806040838503121561210057600080fd5b61210983611e36565b915061211760208401611e36565b90509250929050565b600181811c9082168061213457607f821691505b60208210810361215457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600a908201526927379039b837b7b5b99760b11b604082015260600190565b6020808252600690820152652436b697171760d11b604082015260600190565b60208082526017908201527f5468652063656d657461727920697320636c6f73656421000000000000000000604082015260600190565b601f821115610cb457600081815260208120601f850160051c810160208610156121fc5750805b601f850160051c820191505b818110156109dc57828155600101612208565b815167ffffffffffffffff81111561223557612235611f44565b612249816122438454612120565b846121d5565b602080601f83116001811461227e57600084156122665750858301515b600019600386901b1c1916600185901b1785556109dc565b600085815260208120601f198616915b828110156122ad5788860151825594840194600190910190840161228e565b50858210156122cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156122ed57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077b5761077b6122f4565b808202811582820484141761077b5761077b6122f4565b6000845160206123478285838a01611dba565b85519184019161235a8184848a01611dba565b855492019160009061236b81612120565b600182811680156123835760018114612398576123c4565b60ff19841687528215158302870194506123c4565b896000528560002060005b848110156123bc578154898201529083019087016123a3565b505082870194505b50929a9950505050505050505050565b6000602082840312156123e657600080fd5b815167ffffffffffffffff8111156123fd57600080fd5b8201601f8101841361240e57600080fd5b805161241c611fc182611f8b565b81815285602083850101111561243157600080fd5b612442826020830160208601611dba565b95945050505050565b60006020828403121561245d57600080fd5b81516114a281611e9e565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249b90830184611dde565b9695505050505050565b6000602082840312156124b757600080fd5b81516114a281611d87565b6000600182016124d4576124d46122f4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612500576125006124db565b500490565b8181038181111561077b5761077b6122f4565b600082612527576125276124db565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202eb2167d7cb027a21a8b9fc519aa8d3100ec9df2e2d57e2174d5ac023416da5c64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063a22cb465116100b6578063cd748f531161007a578063cd748f531461066f578063dd4670641461068f578063e0a80853146106af578063e985e9c5146106cf578063f04ecc95146106ef578063f2fde38b1461070f57600080fd5b8063a22cb465146105e7578063a5067fac14610607578063b88d4fde14610627578063be2427e71461063a578063c87b56dd1461064f57600080fd5b80638baecc21116100fd5780638baecc21146105765780638da5cb5b1461058957806394354fd0146105a757806395d89b41146105bd578063a1274984146105d257600080fd5b806370a0823114610500578063715018a6146105205780637705f2b0146105355780638a040df41461054b5780638ba47bdd1461056157600080fd5b8063307540f6116101d2578063518302271161019657806351830227146104475780635918704a14610466578063597e1fb5146104865780636198e339146104a0578063626ab3b8146104c05780636352211e146104e057600080fd5b8063307540f6146103b4578063323da480146103d457806342842e0e146103f4578063469a8efa146104075780634d534a7d1461042757600080fd5b8063205b251111610219578063205b251114610321578063212c5fea14610341578063221d12fd1461036157806323b872dd14610381578063275b07ad1461039457600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806318160ddd146102fa575b600080fd5b34801561026257600080fd5b50610276610271366004611d9d565b61072f565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610781565b6040516102829190611e0a565b3480156102b957600080fd5b506102cd6102c8366004611e1d565b610813565b6040516001600160a01b039091168152602001610282565b6102f86102f3366004611e52565b610857565b005b34801561030657600080fd5b5060015460005403600019015b604051908152602001610282565b34801561032d57600080fd5b506102f861033c366004611e7c565b6108f7565b34801561034d57600080fd5b506102f861035c366004611eac565b6109e4565b34801561036d57600080fd5b506102f861037c366004611ec9565b6109ff565b6102f861038f366004611eed565b610a29565b3480156103a057600080fd5b506102f86103af366004611f29565b610bbe565b3480156103c057600080fd5b506013546102cd906001600160a01b031681565b3480156103e057600080fd5b506102f86103ef366004611e7c565b610be8565b6102f8610402366004611eed565b610c99565b34801561041357600080fd5b506102f8610422366004611f29565b610cb9565b34801561043357600080fd5b506102f8610442366004611ff1565b610ce3565b34801561045357600080fd5b5060115461027690610100900460ff1681565b34801561047257600080fd5b506102f8610481366004611e1d565b610cfb565b34801561049257600080fd5b506011546102769060ff1681565b3480156104ac57600080fd5b506102f86104bb366004611e1d565b610d08565b3480156104cc57600080fd5b506102f86104db366004611ff1565b610eab565b3480156104ec57600080fd5b506102cd6104fb366004611e1d565b610ebf565b34801561050c57600080fd5b5061031361051b366004611f29565b610eca565b34801561052c57600080fd5b506102f8610f19565b34801561054157600080fd5b50610313600b5481565b34801561055757600080fd5b50610313600a5481565b34801561056d57600080fd5b506102a0610f2d565b6102f8610584366004611e1d565b610fbb565b34801561059557600080fd5b506008546001600160a01b03166102cd565b3480156105b357600080fd5b50610313600c5481565b3480156105c957600080fd5b506102a0611184565b3480156105de57600080fd5b50600b54610313565b3480156105f357600080fd5b506102f861060236600461203a565b611193565b34801561061357600080fd5b506102f8610622366004611ff1565b6111ff565b6102f8610635366004612071565b611213565b34801561064657600080fd5b506102f861125d565b34801561065b57600080fd5b506102a061066a366004611e1d565b611335565b34801561067b57600080fd5b506102a061068a366004611ff1565b6114a9565b34801561069b57600080fd5b506102f86106aa366004611e1d565b61151f565b3480156106bb57600080fd5b506102f86106ca366004611eac565b611691565b3480156106db57600080fd5b506102766106ea3660046120ed565b6116b3565b3480156106fb57600080fd5b5061027661070a366004611e52565b6116e1565b34801561071b57600080fd5b506102f861072a366004611f29565b611844565b60006301ffc9a760e01b6001600160e01b03198316148061076057506380ac58cd60e01b6001600160e01b03198316145b8061077b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461079090612120565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc90612120565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b5050505050905090565b600061081e826118bd565b61083b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086282610ebf565b9050336001600160a01b0382161461089b5761087e81336116b3565b61089b576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061090233610eca565b116109285760405162461bcd60e51b815260040161091f9061215a565b60405180910390fd5b60115462010000900460ff16610957573332146109575760405162461bcd60e51b815260040161091f9061217e565b60115460ff161561097a5760405162461bcd60e51b815260040161091f9061219e565b60155460405163205b251160e01b815260048101849052602481018390526001600160a01b039091169063205b2511906044015b600060405180830381600087803b1580156109c857600080fd5b505af11580156109dc573d6000803e3d6000fd5b505050505050565b6109ec6118f2565b6011805460ff1916911515919091179055565b610a076118f2565b6013805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b6000610a348261194c565b9050836001600160a01b0316816001600160a01b031614610a675760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ab457610a9786336116b3565b610ab457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610adb57604051633a954ecd60e21b815260040160405180910390fd5b8015610ae657600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610b7857600184016000818152600460205260408120549003610b76576000548114610b765760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46109dc565b610bc66118f2565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610bf333610eca565b11610c105760405162461bcd60e51b815260040161091f9061215a565b60115462010000900460ff16610c3f57333214610c3f5760405162461bcd60e51b815260040161091f9061217e565b60115460ff1615610c625760405162461bcd60e51b815260040161091f9061219e565b60155460405162647b4960e71b815260048101849052602481018390526001600160a01b039091169063323da480906044016109ae565b610cb483838360405180602001604052806000815250611213565b505050565b610cc16118f2565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b610ceb6118f2565b600f610cf7828261221b565b5050565b610d036118f2565b600a55565b6000610d1333610eca565b11610d305760405162461bcd60e51b815260040161091f9061215a565b60115462010000900460ff16610d5f57333214610d5f5760405162461bcd60e51b815260040161091f9061217e565b6014546000906001600160a01b031662fdd58e3360135460405160e084901b6001600160e01b03191681526001600160a01b039092166004830152600160a01b900461ffff166024820152604401602060405180830381865afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee91906122db565b11610e265760405162461bcd60e51b815260206004820152600860248201526727379035b2bcb99760c11b604482015260640161091f565b60115460ff1615610e495760405162461bcd60e51b815260040161091f9061219e565b601554604051636198e33960e01b8152600481018390526001600160a01b0390911690636198e339906024015b600060405180830381600087803b158015610e9057600080fd5b505af1158015610ea4573d6000803e3d6000fd5b5050505050565b610eb36118f2565b600e610cf7828261221b565b600061077b8261194c565b60006001600160a01b038216610ef3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610f216118f2565b610f2b60006119bb565b565b60128054610f3a90612120565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6690612120565b8015610fb35780601f10610f8857610100808354040283529160200191610fb3565b820191906000526020600020905b815481529060010190602001808311610f9657829003601f168201915b505050505081565b60115460ff1615610fde5760405162461bcd60e51b815260040161091f9061219e565b60115462010000900460ff1661100d5733321461100d5760405162461bcd60e51b815260040161091f9061217e565b806000811180156110205750600c548111155b61105d5760405162461bcd60e51b815260206004820152600e60248201526d52697475616c206661696c65642160901b604482015260640161091f565b600b546001546000548391900360001901611078919061230a565b11156110ba5760405162461bcd60e51b815260206004820152601160248201527043656d65746172792069732066756c6c2160781b604482015260640161091f565b600d546110c633610eca565b1061111e5760405162461bcd60e51b815260206004820152602260248201527f546f6f206d616e7920736b656c65746f6e7320696e20796f757220636f666669604482015261371760f11b606482015260840161091f565b600a5461112b908361231d565b34101561117a5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e74207361637269666963652e000000000000000000604482015260640161091f565b610cf73383611a0d565b60606003805461079090612120565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112076118f2565b6010610cf7828261221b565b61121e848484610a29565b6001600160a01b0383163b156112575761123a84848484611a27565b611257576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6112656118f2565b6002600954036112b75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161091f565b600260095560006112d06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461131a576040519150601f19603f3d011682016040523d82523d6000602084013e61131f565b606091505b505090508061132d57600080fd5b506001600955565b6060611340826118bd565b6113a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161091f565b601154610100900460ff16151560000361144a57601080546113c590612120565b80601f01602080910402602001604051908101604052809291908181526020018280546113f190612120565b801561143e5780601f106114135761010080835404028352916020019161143e565b820191906000526020600020905b81548152906001019060200180831161142157829003601f168201915b50505050509050919050565b6000611454611b13565b9050600081511161147457604051806020016040528060008152506114a2565b8061147e84611b22565b600f60405160200161149293929190612334565b6040516020818303038152906040525b9392505050565b60155460405163cd748f5360e01b81526060916001600160a01b03169063cd748f53906114da908590600401611e0a565b600060405180830381865afa1580156114f7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261077b91908101906123d4565b600061152a33610eca565b116115475760405162461bcd60e51b815260040161091f9061215a565b60115462010000900460ff16611576573332146115765760405162461bcd60e51b815260040161091f9061217e565b6014546000906001600160a01b031662fdd58e3360135460405160e084901b6001600160e01b03191681526001600160a01b039092166004830152600160a01b900461ffff166024820152604401602060405180830381865afa1580156115e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160591906122db565b1161163d5760405162461bcd60e51b815260206004820152600860248201526727379035b2bcb99760c11b604482015260640161091f565b60115460ff16156116605760405162461bcd60e51b815260040161091f9061219e565b6015546040516337519c1960e21b8152600481018390526001600160a01b039091169063dd46706490602401610e76565b6116996118f2565b601180549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6015546000906001600160a01b031663ff464b17336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561173a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175e919061244b565b6117aa5760405162461bcd60e51b815260206004820152601960248201527f596f75277265206e6f7420612067726176652074686965662e00000000000000604482015260640161091f565b60115460ff16156117cd5760405162461bcd60e51b815260040161091f9061219e565b60155460405163f04ecc9560e01b81526001600160a01b038581166004830152602482018590529091169063f04ecc95906044016020604051808303816000875af1158015611820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a2919061244b565b61184c6118f2565b6001600160a01b0381166118b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091f565b6118ba816119bb565b50565b6000816001111580156118d1575060005482105b801561077b575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610f2b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091f565b600081806001116119a2576000548110156119a25760008181526004602052604081205490600160e01b821690036119a0575b806000036114a257506000190160008181526004602052604090205461197f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cf7828260405180602001604052806000815250611c23565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a5c903390899088908890600401612468565b6020604051808303816000875af1925050508015611a97575060408051601f3d908101601f19168201909252611a94918101906124a5565b60015b611af5573d808015611ac5576040519150601f19603f3d011682016040523d82523d6000602084013e611aca565b606091505b508051600003611aed576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e805461079090612120565b606081600003611b495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b735780611b5d816124c2565b9150611b6c9050600a836124f1565b9150611b4d565b60008167ffffffffffffffff811115611b8e57611b8e611f44565b6040519080825280601f01601f191660200182016040528015611bb8576020820181803683370190505b5090505b8415611b0b57611bcd600183612505565b9150611bda600a86612518565b611be590603061230a565b60f81b818381518110611bfa57611bfa61252c565b60200101906001600160f81b031916908160001a905350611c1c600a866124f1565b9450611bbc565b611c2d8383611c89565b6001600160a01b0383163b15610cb4576000548281035b611c576000868380600101945086611a27565b611c74576040516368d2bf6b60e11b815260040160405180910390fd5b818110611c44578160005414610ea457600080fd5b6000805490829003611cae5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611d5d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611d25565b5081600003611d7e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146118ba57600080fd5b600060208284031215611daf57600080fd5b81356114a281611d87565b60005b83811015611dd5578181015183820152602001611dbd565b50506000910152565b60008151808452611df6816020860160208601611dba565b601f01601f19169290920160200192915050565b6020815260006114a26020830184611dde565b600060208284031215611e2f57600080fd5b5035919050565b80356001600160a01b0381168114611e4d57600080fd5b919050565b60008060408385031215611e6557600080fd5b611e6e83611e36565b946020939093013593505050565b60008060408385031215611e8f57600080fd5b50508035926020909101359150565b80151581146118ba57600080fd5b600060208284031215611ebe57600080fd5b81356114a281611e9e565b600060208284031215611edb57600080fd5b813561ffff811681146114a257600080fd5b600080600060608486031215611f0257600080fd5b611f0b84611e36565b9250611f1960208501611e36565b9150604084013590509250925092565b600060208284031215611f3b57600080fd5b6114a282611e36565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f8357611f83611f44565b604052919050565b600067ffffffffffffffff821115611fa557611fa5611f44565b50601f01601f191660200190565b6000611fc6611fc184611f8b565b611f5a565b9050828152838383011115611fda57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561200357600080fd5b813567ffffffffffffffff81111561201a57600080fd5b8201601f8101841361202b57600080fd5b611b0b84823560208401611fb3565b6000806040838503121561204d57600080fd5b61205683611e36565b9150602083013561206681611e9e565b809150509250929050565b6000806000806080858703121561208757600080fd5b61209085611e36565b935061209e60208601611e36565b925060408501359150606085013567ffffffffffffffff8111156120c157600080fd5b8501601f810187136120d257600080fd5b6120e187823560208401611fb3565b91505092959194509250565b6000806040838503121561210057600080fd5b61210983611e36565b915061211760208401611e36565b90509250929050565b600181811c9082168061213457607f821691505b60208210810361215457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600a908201526927379039b837b7b5b99760b11b604082015260600190565b6020808252600690820152652436b697171760d11b604082015260600190565b60208082526017908201527f5468652063656d657461727920697320636c6f73656421000000000000000000604082015260600190565b601f821115610cb457600081815260208120601f850160051c810160208610156121fc5750805b601f850160051c820191505b818110156109dc57828155600101612208565b815167ffffffffffffffff81111561223557612235611f44565b612249816122438454612120565b846121d5565b602080601f83116001811461227e57600084156122665750858301515b600019600386901b1c1916600185901b1785556109dc565b600085815260208120601f198616915b828110156122ad5788860151825594840194600190910190840161228e565b50858210156122cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156122ed57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077b5761077b6122f4565b808202811582820484141761077b5761077b6122f4565b6000845160206123478285838a01611dba565b85519184019161235a8184848a01611dba565b855492019160009061236b81612120565b600182811680156123835760018114612398576123c4565b60ff19841687528215158302870194506123c4565b896000528560002060005b848110156123bc578154898201529083019087016123a3565b505082870194505b50929a9950505050505050505050565b6000602082840312156123e657600080fd5b815167ffffffffffffffff8111156123fd57600080fd5b8201601f8101841361240e57600080fd5b805161241c611fc182611f8b565b81815285602083850101111561243157600080fd5b612442826020830160208601611dba565b95945050505050565b60006020828403121561245d57600080fd5b81516114a281611e9e565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249b90830184611dde565b9695505050505050565b6000602082840312156124b757600080fd5b81516114a281611d87565b6000600182016124d4576124d46122f4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612500576125006124db565b500490565b8181038181111561077b5761077b6122f4565b600082612527576125276124db565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202eb2167d7cb027a21a8b9fc519aa8d3100ec9df2e2d57e2174d5ac023416da5c64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _facade (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68845:5423:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28761:639;;;;;;;;;;-1:-1:-1;28761:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28761:639:0;;;;;;;;29663:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36154:218::-;;;;;;;;;;-1:-1:-1;36154:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;36154:218:0;1533:203:1;35587:408:0;;;;;;:::i;:::-;;:::i;:::-;;25414:323;;;;;;;;;;-1:-1:-1;72725:1:0;25688:12;25475:7;25672:13;:28;-1:-1:-1;;25672:46:0;25414:323;;;2324:25:1;;;2312:2;2297:18;25414:323:0;2178:177:1;73409:140:0;;;;;;;;;;-1:-1:-1;73409:140:0;;;;;:::i;:::-;;:::i;71107:77::-;;;;;;;;;;-1:-1:-1;71107:77:0;;;;;:::i;:::-;;:::i;73250:79::-;;;;;;;;;;-1:-1:-1;73250:79:0;;;;;:::i;:::-;;:::i;39793:2825::-;;;;;;:::i;:::-;;:::i;72742:106::-;;;;;;;;;;-1:-1:-1;72742:106:0;;;;;:::i;:::-;;:::i;69337:19::-;;;;;;;;;;-1:-1:-1;69337:19:0;;;;-1:-1:-1;;;;;69337:19:0;;;73561:144;;;;;;;;;;-1:-1:-1;73561:144:0;;;;;:::i;:::-;;:::i;42714:193::-;;;;;;:::i;:::-;;:::i;73158:80::-;;;;;;;;;;-1:-1:-1;73158:80:0;;;;;:::i;:::-;;:::i;71612:94::-;;;;;;;;;;-1:-1:-1;71612:94:0;;;;;:::i;:::-;;:::i;69219:28::-;;;;;;;;;;-1:-1:-1;69219:28:0;;;;;;;;;;;71714:89;;;;;;;;;;-1:-1:-1;71714:89:0;;;;;:::i;:::-;;:::i;69187:25::-;;;;;;;;;;-1:-1:-1;69187:25:0;;;;;;;;73978:125;;;;;;;;;;-1:-1:-1;73978:125:0;;;;;:::i;:::-;;:::i;71517:87::-;;;;;;;;;;-1:-1:-1;71517:87:0;;;;;:::i;:::-;;:::i;31056:152::-;;;;;;;;;;-1:-1:-1;31056:152:0;;;;;:::i;:::-;;:::i;26598:233::-;;;;;;;;;;-1:-1:-1;26598:233:0;;;;;:::i;:::-;;:::i;64568:103::-;;;;;;;;;;;;;:::i;68986:34::-;;;;;;;;;;;;;;;;68940:39;;;;;;;;;;;;;;;;69291:36;;;;;;;;;;;;;:::i;70689:334::-;;;;;;:::i;:::-;;:::i;63920:87::-;;;;;;;;;;-1:-1:-1;63993:6:0;;-1:-1:-1;;;;;63993:6:0;63920:87;;69027:38;;;;;;;;;;;;;;;;29839:104;;;;;;;;;;;;;:::i;72972:90::-;;;;;;;;;;-1:-1:-1;73042:12:0;;72972:90;;36712:234;;;;;;;;;;-1:-1:-1;36712:234:0;;;;;:::i;:::-;;:::i;71320:86::-;;;;;;;;;;-1:-1:-1;71320:86:0;;;;;:::i;:::-;;:::i;43505:407::-;;;;;;:::i;:::-;;:::i;71893:158::-;;;;;;;;;;;;;:::i;72137:480::-;;;;;;;;;;-1:-1:-1;72137:480:0;;;;;:::i;:::-;;:::i;73713:128::-;;;;;;;;;;-1:-1:-1;73713:128:0;;;;;:::i;:::-;;:::i;73849:121::-;;;;;;;;;;-1:-1:-1;73849:121:0;;;;;:::i;:::-;;:::i;71418:87::-;;;;;;;;;;-1:-1:-1;71418:87:0;;;;;:::i;:::-;;:::i;37103:164::-;;;;;;;;;;-1:-1:-1;37103:164:0;;;;;:::i;:::-;;:::i;74111:154::-;;;;;;;;;;-1:-1:-1;74111:154:0;;;;;:::i;:::-;;:::i;64826:201::-;;;;;;;;;;-1:-1:-1;64826:201:0;;;;;:::i;:::-;;:::i;28761:639::-;28846:4;-1:-1:-1;;;;;;;;;29170:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;29247:25:0;;;29170:102;:179;;;-1:-1:-1;;;;;;;;;;29324:25:0;;;29170:179;29150:199;28761:639;-1:-1:-1;;28761:639:0:o;29663:100::-;29717:13;29750:5;29743:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29663:100;:::o;36154:218::-;36230:7;36255:16;36263:7;36255;:16::i;:::-;36250:64;;36280:34;;-1:-1:-1;;;36280:34:0;;;;;;;;;;;36250:64;-1:-1:-1;36334:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;36334:30:0;;36154:218::o;35587:408::-;35676:13;35692:16;35700:7;35692;:16::i;:::-;35676:32;-1:-1:-1;59920:10:0;-1:-1:-1;;;;;35725:28:0;;;35721:175;;35773:44;35790:5;59920:10;37103:164;:::i;35773:44::-;35768:128;;35845:35;;-1:-1:-1;;;35845:35:0;;;;;;;;;;;35768:128;35908:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;35908:35:0;-1:-1:-1;;;;;35908:35:0;;;;;;;;;35959:28;;35908:24;;35959:28;;;;;;;35665:330;35587:408;;:::o;73409:140::-;70140:1;70114:23;59920:10;26598:233;:::i;70114:23::-;:27;70106:50;;;;-1:-1:-1;;;70106:50:0;;;;;;;:::i;:::-;;;;;;;;;69669:16:::1;::::0;;;::::1;;;69665:91;;59920:10:::0;69724:9:::1;69709:24;69701:43;;;;-1:-1:-1::0;;;69701:43:0::1;;;;;;;:::i;:::-;70230:6:::2;::::0;::::2;;70229:7;70221:43;;;;-1:-1:-1::0;;;70221:43:0::2;;;;;;;:::i;:::-;73508:8:::3;::::0;:33:::3;::::0;-1:-1:-1;;;73508:33:0;;::::3;::::0;::::3;8027:25:1::0;;;8068:18;;;8061:34;;;-1:-1:-1;;;;;73508:8:0;;::::3;::::0;:13:::3;::::0;8000:18:1;;73508:33:0::3;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;73409:140:::0;;:::o;71107:77::-;63806:13;:11;:13::i;:::-;71162:6:::1;:14:::0;;-1:-1:-1;;71162:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;71107:77::o;73250:79::-;63806:13;:11;:13::i;:::-;73310:6:::1;:11:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;73310:11:0::1;-1:-1:-1::0;;;;73310:11:0;;::::1;::::0;;;::::1;::::0;;73250:79::o;39793:2825::-;39935:27;39965;39984:7;39965:18;:27::i;:::-;39935:57;;40050:4;-1:-1:-1;;;;;40009:45:0;40025:19;-1:-1:-1;;;;;40009:45:0;;40005:86;;40063:28;;-1:-1:-1;;;40063:28:0;;;;;;;;;;;40005:86;40105:27;38901:24;;;:15;:24;;;;;39129:26;;59920:10;38526:30;;;-1:-1:-1;;;;;38219:28:0;;38504:20;;;38501:56;40291:180;;40384:43;40401:4;59920:10;37103:164;:::i;40384:43::-;40379:92;;40436:35;;-1:-1:-1;;;40436:35:0;;;;;;;;;;;40379:92;-1:-1:-1;;;;;40488:16:0;;40484:52;;40513:23;;-1:-1:-1;;;40513:23:0;;;;;;;;;;;40484:52;40685:15;40682:160;;;40825:1;40804:19;40797:30;40682:160;-1:-1:-1;;;;;41222:24:0;;;;;;;:18;:24;;;;;;41220:26;;-1:-1:-1;;41220:26:0;;;41291:22;;;;;;;;;41289:24;;-1:-1:-1;41289:24:0;;;34445:11;34420:23;34416:41;34403:63;-1:-1:-1;;;34403:63:0;41584:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;41879:47:0;;:52;;41875:627;;41984:1;41974:11;;41952:19;42107:30;;;:17;:30;;;;;;:35;;42103:384;;42245:13;;42230:11;:28;42226:242;;42392:30;;;;:17;:30;;;;;:52;;;42226:242;41933:569;41875:627;42549:7;42545:2;-1:-1:-1;;;;;42530:27:0;42539:4;-1:-1:-1;;;;;42530:27:0;;;;;;;;;;;42568:42;43505:407;72742:106;63806:13;:11;:13::i;:::-;72810:8:::1;:30:::0;;-1:-1:-1;;;;;;72810:30:0::1;-1:-1:-1::0;;;;;72810:30:0;;;::::1;::::0;;;::::1;::::0;;72742:106::o;73561:144::-;70140:1;70114:23;59920:10;26598:233;:::i;70114:23::-;:27;70106:50;;;;-1:-1:-1;;;70106:50:0;;;;;;;:::i;:::-;69669:16:::1;::::0;;;::::1;;;69665:91;;59920:10:::0;69724:9:::1;69709:24;69701:43;;;;-1:-1:-1::0;;;69701:43:0::1;;;;;;;:::i;:::-;70230:6:::2;::::0;::::2;;70229:7;70221:43;;;;-1:-1:-1::0;;;70221:43:0::2;;;;;;;:::i;:::-;73662:8:::3;::::0;:35:::3;::::0;-1:-1:-1;;;73662:35:0;;::::3;::::0;::::3;8027:25:1::0;;;8068:18;;;8061:34;;;-1:-1:-1;;;;;73662:8:0;;::::3;::::0;:15:::3;::::0;8000:18:1;;73662:35:0::3;7853:248:1::0;42714:193:0;42860:39;42877:4;42883:2;42887:7;42860:39;;;;;;;;;;;;:16;:39::i;:::-;42714:193;;;:::o;73158:80::-;63806:13;:11;:13::i;:::-;73219:4:::1;:11:::0;;-1:-1:-1;;;;;;73219:11:0::1;-1:-1:-1::0;;;;;73219:11:0;;;::::1;::::0;;;::::1;::::0;;73158:80::o;71612:94::-;63806:13;:11;:13::i;:::-;71683:9:::1;:15;71695:3:::0;71683:9;:15:::1;:::i;:::-;;71612:94:::0;:::o;71714:89::-;63806:13;:11;:13::i;:::-;71778:9:::1;:17:::0;71714:89::o;73978:125::-;70140:1;70114:23;59920:10;26598:233;:::i;70114:23::-;:27;70106:50;;;;-1:-1:-1;;;70106:50:0;;;;;;;:::i;:::-;69669:16:::1;::::0;;;::::1;;;69665:91;;59920:10:::0;69724:9:::1;69709:24;69701:43;;;;-1:-1:-1::0;;;69701:43:0::1;;;;;;;:::i;:::-;69992:4:::2;::::0;70031:1:::2;::::0;-1:-1:-1;;;;;69992:4:0::2;:14;59920:10:::0;70021:6:::2;::::0;69992:36:::2;::::0;::::2;::::0;;;-1:-1:-1;;;;;;69992:36:0;;;-1:-1:-1;;;;;10501:32:1;;;69992:36:0::2;::::0;::::2;10483:51:1::0;-1:-1:-1;;;70021:6:0;::::2;;;10550:18:1::0;;;10543:47;10456:18;;69992:36:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;69984:61;;;::::0;-1:-1:-1;;;69984:61:0;;10992:2:1;69984:61:0::2;::::0;::::2;10974:21:1::0;11031:1;11011:18;;;11004:29;-1:-1:-1;;;11049:18:1;;;11042:38;11097:18;;69984:61:0::2;10790:331:1::0;69984:61:0::2;70230:6:::3;::::0;::::3;;70229:7;70221:43;;;;-1:-1:-1::0;;;70221:43:0::3;;;;;;;:::i;:::-;74069:8:::4;::::0;:26:::4;::::0;-1:-1:-1;;;74069:26:0;;::::4;::::0;::::4;2324:25:1::0;;;-1:-1:-1;;;;;74069:8:0;;::::4;::::0;:15:::4;::::0;2297:18:1;;74069:26:0::4;;;;;;;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;73978:125:::0;:::o;71517:87::-;63806:13;:11;:13::i;:::-;71583:7:::1;:13;71593:3:::0;71583:7;:13:::1;:::i;31056:152::-:0;31128:7;31171:27;31190:7;31171:18;:27::i;26598:233::-;26670:7;-1:-1:-1;;;;;26694:19:0;;26690:60;;26722:28;;-1:-1:-1;;;26722:28:0;;;;;;;;;;;26690:60;-1:-1:-1;;;;;;26768:25:0;;;;;:18;:25;;;;;;20757:13;26768:55;;26598:233::o;64568:103::-;63806:13;:11;:13::i;:::-;64633:30:::1;64660:1;64633:18;:30::i;:::-;64568:103::o:0;69291:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70689:334::-;70230:6;;;;70229:7;70221:43;;;;-1:-1:-1;;;70221:43:0;;;;;;;:::i;:::-;69669:16:::1;::::0;;;::::1;;;69665:91;;59920:10:::0;69724:9:::1;69709:24;69701:43;;;;-1:-1:-1::0;;;69701:43:0::1;;;;;;;:::i;:::-;70772:11:::2;70427:1;70413:11;:15;:52;;;;;70447:18;;70432:11;:33;;70413:52;70405:79;;;::::0;-1:-1:-1;;;70405:79:0;;11328:2:1;70405:79:0::2;::::0;::::2;11310:21:1::0;11367:2;11347:18;;;11340:30;-1:-1:-1;;;11386:18:1;;;11379:44;11440:18;;70405:79:0::2;11126:338:1::0;70405:79:0::2;70534:12;::::0;72725:1;25688:12;25475:7;25672:13;70519:11;;25672:28;;-1:-1:-1;;25672:46:0;70503:27:::2;;;;:::i;:::-;:43;;70495:73;;;::::0;-1:-1:-1;;;70495:73:0;;11933:2:1;70495:73:0::2;::::0;::::2;11915:21:1::0;11972:2;11952:18;;;11945:30;-1:-1:-1;;;11991:18:1;;;11984:47;12048:18;;70495:73:0::2;11731:341:1::0;70495:73:0::2;70611:11;;70587:21;70597:10;70587:9;:21::i;:::-;:35;70579:82;;;::::0;-1:-1:-1;;;70579:82:0;;12279:2:1;70579:82:0::2;::::0;::::2;12261:21:1::0;12318:2;12298:18;;;12291:30;12357:34;12337:18;;;12330:62;-1:-1:-1;;;12408:18:1;;;12401:32;12450:19;;70579:82:0::2;12077:398:1::0;70579:82:0::2;70921:9:::3;::::0;70907:23:::3;::::0;:11;:23:::3;:::i;:::-;70894:9;:36;;70886:72;;;::::0;-1:-1:-1;;;70886:72:0;;12855:2:1;70886:72:0::3;::::0;::::3;12837:21:1::0;12894:2;12874:18;;;12867:30;12933:25;12913:18;;;12906:53;12976:18;;70886:72:0::3;12653:347:1::0;70886:72:0::3;70977:34;70987:10;70999:11;70977:9;:34::i;29839:104::-:0;29895:13;29928:7;29921:14;;;;;:::i;36712:234::-;59920:10;36807:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;36807:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;36807:60:0;;;;;;;;;;36883:55;;540:41:1;;;36807:49:0;;59920:10;36883:55;;513:18:1;36883:55:0;;;;;;;36712:234;;:::o;71320:86::-;63806:13;:11;:13::i;:::-;71386:6:::1;:12;71395:3:::0;71386:6;:12:::1;:::i;43505:407::-:0;43680:31;43693:4;43699:2;43703:7;43680:12;:31::i;:::-;-1:-1:-1;;;;;43726:14:0;;;:19;43722:183;;43765:56;43796:4;43802:2;43806:7;43815:5;43765:30;:56::i;:::-;43760:145;;43849:40;;-1:-1:-1;;;43849:40:0;;;;;;;;;;;43760:145;43505:407;;;;:::o;71893:158::-;63806:13;:11;:13::i;:::-;6913:1:::1;7511:7;;:19:::0;7503:63:::1;;;::::0;-1:-1:-1;;;7503:63:0;;13207:2:1;7503:63:0::1;::::0;::::1;13189:21:1::0;13246:2;13226:18;;;13219:30;13285:33;13265:18;;;13258:61;13336:18;;7503:63:0::1;13005:355:1::0;7503:63:0::1;6913:1;7644:7;:18:::0;71953:7:::2;71974;63993:6:::0;;-1:-1:-1;;;;;63993:6:0;;63920:87;71974:7:::2;-1:-1:-1::0;;;;;71966:21:0::2;71995;71966:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71952:69;;;72040:2;72032:11;;;::::0;::::2;;-1:-1:-1::0;6869:1:0::1;7823:7;:22:::0;71893:158::o;72137:480::-;72211:13;72246:16;72254:7;72246;:16::i;:::-;72238:75;;;;-1:-1:-1;;;72238:75:0;;13777:2:1;72238:75:0;;;13759:21:1;13816:2;13796:18;;;13789:30;13855:34;13835:18;;;13828:62;-1:-1:-1;;;13906:18:1;;;13899:45;13961:19;;72238:75:0;13575:411:1;72238:75:0;72338:8;;;;;;;:17;;72350:5;72338:17;72334:59;;72375:6;72368:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72137:480;;;:::o;72334:59::-;72413:28;72444:10;:8;:10::i;:::-;72413:41;;72503:1;72478:14;72472:28;:32;:137;;;;;;;;;;;;;;;;;72544:14;72560:18;:7;:16;:18::i;:::-;72580:9;72527:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72472:137;72465:144;72137:480;-1:-1:-1;;;72137:480:0:o;73713:128::-;73810:8;;:23;;-1:-1:-1;;;73810:23:0;;73773:18;;-1:-1:-1;;;;;73810:8:0;;:13;;:23;;73824:8;;73810:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;73810:23:0;;;;;;;;;;;;:::i;73849:121::-;70140:1;70114:23;59920:10;26598:233;:::i;70114:23::-;:27;70106:50;;;;-1:-1:-1;;;70106:50:0;;;;;;;:::i;:::-;69669:16:::1;::::0;;;::::1;;;69665:91;;59920:10:::0;69724:9:::1;69709:24;69701:43;;;;-1:-1:-1::0;;;69701:43:0::1;;;;;;;:::i;:::-;69992:4:::2;::::0;70031:1:::2;::::0;-1:-1:-1;;;;;69992:4:0::2;:14;59920:10:::0;70021:6:::2;::::0;69992:36:::2;::::0;::::2;::::0;;;-1:-1:-1;;;;;;69992:36:0;;;-1:-1:-1;;;;;10501:32:1;;;69992:36:0::2;::::0;::::2;10483:51:1::0;-1:-1:-1;;;70021:6:0;::::2;;;10550:18:1::0;;;10543:47;10456:18;;69992:36:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;69984:61;;;::::0;-1:-1:-1;;;69984:61:0;;10992:2:1;69984:61:0::2;::::0;::::2;10974:21:1::0;11031:1;11011:18;;;11004:29;-1:-1:-1;;;11049:18:1;;;11042:38;11097:18;;69984:61:0::2;10790:331:1::0;69984:61:0::2;70230:6:::3;::::0;::::3;;70229:7;70221:43;;;;-1:-1:-1::0;;;70221:43:0::3;;;;;;;:::i;:::-;73938:8:::4;::::0;:24:::4;::::0;-1:-1:-1;;;73938:24:0;;::::4;::::0;::::4;2324:25:1::0;;;-1:-1:-1;;;;;73938:8:0;;::::4;::::0;:13:::4;::::0;2297:18:1;;73938:24:0::4;2178:177:1::0;71418:87:0;63806:13;:11;:13::i;:::-;71480:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;71480:17:0;;::::1;::::0;;;::::1;::::0;;71418:87::o;37103:164::-;-1:-1:-1;;;;;37224:25:0;;;37200:4;37224:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37103:164::o;74111:154::-;69817:8;;74195:10;;-1:-1:-1;;;;;69817:8:0;:16;59920:10;69817:30;;-1:-1:-1;;;;;;69817:30:0;;;;;;;-1:-1:-1;;;;;1697:32:1;;;69817:30:0;;;1679:51:1;1652:18;;69817:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69809:68;;;;-1:-1:-1;;;69809:68:0;;16358:2:1;69809:68:0;;;16340:21:1;16397:2;16377:18;;;16370:30;16436:27;16416:18;;;16409:55;16481:18;;69809:68:0;16156:349:1;69809:68:0;70230:6:::1;::::0;::::1;;70229:7;70221:43;;;;-1:-1:-1::0;;;70221:43:0::1;;;;;;;:::i;:::-;74225:8:::2;::::0;:32:::2;::::0;-1:-1:-1;;;74225:32:0;;-1:-1:-1;;;;;16702:32:1;;;74225::0::2;::::0;::::2;16684:51:1::0;16751:18;;;16744:34;;;74225:8:0;;::::2;::::0;:14:::2;::::0;16657:18:1;;74225:32:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;64826:201::-:0;63806:13;:11;:13::i;:::-;-1:-1:-1;;;;;64915:22:0;::::1;64907:73;;;::::0;-1:-1:-1;;;64907:73:0;;16991:2:1;64907:73:0::1;::::0;::::1;16973:21:1::0;17030:2;17010:18;;;17003:30;17069:34;17049:18;;;17042:62;-1:-1:-1;;;17120:18:1;;;17113:36;17166:19;;64907:73:0::1;16789:402:1::0;64907:73:0::1;64991:28;65010:8;64991:18;:28::i;:::-;64826:201:::0;:::o;37525:282::-;37590:4;37646:7;72725:1;37627:26;;:66;;;;;37680:13;;37670:7;:23;37627:66;:153;;;;-1:-1:-1;;37731:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;37731:44:0;:49;;37525:282::o;64085:132::-;63993:6;;-1:-1:-1;;;;;63993:6:0;59920:10;64149:23;64141:68;;;;-1:-1:-1;;;64141:68:0;;17398:2:1;64141:68:0;;;17380:21:1;;;17417:18;;;17410:30;17476:34;17456:18;;;17449:62;17528:18;;64141:68:0;17196:356:1;32211:1275:0;32278:7;32313;;72725:1;32362:23;32358:1061;;32415:13;;32408:4;:20;32404:1015;;;32453:14;32470:23;;;:17;:23;;;;;;;-1:-1:-1;;;32559:24:0;;:29;;32555:845;;33224:113;33231:6;33241:1;33231:11;33224:113;;-1:-1:-1;;;33302:6:0;33284:25;;;;:17;:25;;;;;;33224:113;;32555:845;32430:989;32404:1015;33447:31;;-1:-1:-1;;;33447:31:0;;;;;;;;;;;65187:191;65280:6;;;-1:-1:-1;;;;;65297:17:0;;;-1:-1:-1;;;;;;65297:17:0;;;;;;;65330:40;;65280:6;;;65297:17;65280:6;;65330:40;;65261:16;;65330:40;65250:128;65187:191;:::o;53665:112::-;53742:27;53752:2;53756:8;53742:27;;;;;;;;;;;;:9;:27::i;45996:716::-;46180:88;;-1:-1:-1;;;46180:88:0;;46159:4;;-1:-1:-1;;;;;46180:45:0;;;;;:88;;59920:10;;46247:4;;46253:7;;46262:5;;46180:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46180:88:0;;;;;;;;-1:-1:-1;;46180:88:0;;;;;;;;;;;;:::i;:::-;;;46176:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46463:6;:13;46480:1;46463:18;46459:235;;46509:40;;-1:-1:-1;;;46509:40:0;;;;;;;;;;;46459:235;46652:6;46646:13;46637:6;46633:2;46629:15;46622:38;46176:529;-1:-1:-1;;;;;;46339:64:0;-1:-1:-1;;;46339:64:0;;-1:-1:-1;46176:529:0;45996:716;;;;;;:::o;72856:108::-;72916:13;72949:7;72942:14;;;;;:::i;8290:723::-;8346:13;8567:5;8576:1;8567:10;8563:53;;-1:-1:-1;;8594:10:0;;;;;;;;;;;;-1:-1:-1;;;8594:10:0;;;;;8290:723::o;8563:53::-;8641:5;8626:12;8682:78;8689:9;;8682:78;;8715:8;;;;:::i;:::-;;-1:-1:-1;8738:10:0;;-1:-1:-1;8746:2:0;8738:10;;:::i;:::-;;;8682:78;;;8770:19;8802:6;8792:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8792:17:0;;8770:39;;8820:154;8827:10;;8820:154;;8854:11;8864:1;8854:11;;:::i;:::-;;-1:-1:-1;8923:10:0;8931:2;8923:5;:10;:::i;:::-;8910:24;;:2;:24;:::i;:::-;8897:39;;8880:6;8887;8880:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8880:56:0;;;;;;;;-1:-1:-1;8951:11:0;8960:2;8951:11;;:::i;:::-;;;8820:154;;52892:689;53023:19;53029:2;53033:8;53023:5;:19::i;:::-;-1:-1:-1;;;;;53084:14:0;;;:19;53080:483;;53124:11;53138:13;53186:14;;;53219:233;53250:62;53289:1;53293:2;53297:7;;;;;;53306:5;53250:30;:62::i;:::-;53245:167;;53348:40;;-1:-1:-1;;;53348:40:0;;;;;;;;;;;53245:167;53447:3;53439:5;:11;53219:233;;53534:3;53517:13;;:20;53513:34;;53539:8;;;47174:2966;47247:20;47270:13;;;47298;;;47294:44;;47320:18;;-1:-1:-1;;;47320:18:0;;;;;;;;;;;47294:44;-1:-1:-1;;;;;47826:22:0;;;;;;:18;:22;;;;20895:2;47826:22;;;:71;;47864:32;47852:45;;47826:71;;;48140:31;;;:17;:31;;;;;-1:-1:-1;34876:15:0;;34850:24;34846:46;34445:11;34420:23;34416:41;34413:52;34403:63;;48140:173;;48375:23;;;;48140:31;;47826:22;;49140:25;47826:22;;48993:335;49654:1;49640:12;49636:20;49594:346;49695:3;49686:7;49683:16;49594:346;;49913:7;49903:8;49900:1;49873:25;49870:1;49867;49862:59;49748:1;49735:15;49594:346;;;49598:77;49973:8;49985:1;49973:13;49969:45;;49995:19;;-1:-1:-1;;;49995:19:0;;;;;;;;;;;49969:45;50031:13;:19;-1:-1:-1;42714:193: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:248::-;2428:6;2436;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;-1:-1:-1;;2528:23:1;;;2598:2;2583:18;;;2570:32;;-1:-1:-1;2360:248:1:o;2613:118::-;2699:5;2692:13;2685:21;2678:5;2675:32;2665:60;;2721:1;2718;2711:12;2736:241;2792:6;2845:2;2833:9;2824:7;2820:23;2816:32;2813:52;;;2861:1;2858;2851:12;2813:52;2900:9;2887:23;2919:28;2941:5;2919:28;:::i;2982:272::-;3040:6;3093:2;3081:9;3072:7;3068:23;3064:32;3061:52;;;3109:1;3106;3099:12;3061:52;3148:9;3135:23;3198:6;3191:5;3187:18;3180:5;3177:29;3167:57;;3220:1;3217;3210:12;3259:328;3336:6;3344;3352;3405:2;3393:9;3384:7;3380:23;3376:32;3373:52;;;3421:1;3418;3411:12;3373:52;3444:29;3463:9;3444:29;:::i;:::-;3434:39;;3492:38;3526:2;3515:9;3511:18;3492:38;:::i;:::-;3482:48;;3577:2;3566:9;3562:18;3549:32;3539:42;;3259:328;;;;;:::o;3592:186::-;3651:6;3704:2;3692:9;3683:7;3679:23;3675:32;3672:52;;;3720:1;3717;3710:12;3672:52;3743:29;3762:9;3743:29;:::i;3783:127::-;3844:10;3839:3;3835:20;3832:1;3825:31;3875:4;3872:1;3865:15;3899:4;3896:1;3889:15;3915:275;3986:2;3980:9;4051:2;4032:13;;-1:-1:-1;;4028:27:1;4016:40;;4086:18;4071:34;;4107:22;;;4068:62;4065:88;;;4133:18;;:::i;:::-;4169:2;4162:22;3915:275;;-1:-1:-1;3915:275:1:o;4195:187::-;4244:4;4277:18;4269:6;4266:30;4263:56;;;4299:18;;:::i;:::-;-1:-1:-1;4365:2:1;4344:15;-1:-1:-1;;4340:29:1;4371:4;4336:40;;4195:187::o;4387:338::-;4452:5;4481:53;4497:36;4526:6;4497:36;:::i;:::-;4481:53;:::i;:::-;4472:62;;4557:6;4550:5;4543:21;4597:3;4588:6;4583:3;4579:16;4576:25;4573:45;;;4614:1;4611;4604:12;4573:45;4663:6;4658:3;4651:4;4644:5;4640:16;4627:43;4717:1;4710:4;4701:6;4694:5;4690:18;4686:29;4679:40;4387:338;;;;;:::o;4730:451::-;4799:6;4852:2;4840:9;4831:7;4827:23;4823:32;4820:52;;;4868:1;4865;4858:12;4820:52;4908:9;4895:23;4941:18;4933:6;4930:30;4927:50;;;4973:1;4970;4963:12;4927:50;4996:22;;5049:4;5041:13;;5037:27;-1:-1:-1;5027:55:1;;5078:1;5075;5068:12;5027:55;5101:74;5167:7;5162:2;5149:16;5144:2;5140;5136:11;5101:74;:::i;5186:315::-;5251:6;5259;5312:2;5300:9;5291:7;5287:23;5283:32;5280:52;;;5328:1;5325;5318:12;5280:52;5351:29;5370:9;5351:29;:::i;:::-;5341:39;;5430:2;5419:9;5415:18;5402:32;5443:28;5465:5;5443:28;:::i;:::-;5490:5;5480:15;;;5186:315;;;;;:::o;5506:667::-;5601:6;5609;5617;5625;5678:3;5666:9;5657:7;5653:23;5649:33;5646:53;;;5695:1;5692;5685:12;5646:53;5718:29;5737:9;5718:29;:::i;:::-;5708:39;;5766:38;5800:2;5789:9;5785:18;5766:38;:::i;:::-;5756:48;;5851:2;5840:9;5836:18;5823:32;5813:42;;5906:2;5895:9;5891:18;5878:32;5933:18;5925:6;5922:30;5919:50;;;5965:1;5962;5955:12;5919:50;5988:22;;6041:4;6033:13;;6029:27;-1:-1:-1;6019:55:1;;6070:1;6067;6060:12;6019:55;6093:74;6159:7;6154:2;6141:16;6136:2;6132;6128:11;6093:74;:::i;:::-;6083:84;;;5506:667;;;;;;;:::o;6178:260::-;6246:6;6254;6307:2;6295:9;6286:7;6282:23;6278:32;6275:52;;;6323:1;6320;6313:12;6275:52;6346:29;6365:9;6346:29;:::i;:::-;6336:39;;6394:38;6428:2;6417:9;6413:18;6394:38;:::i;:::-;6384:48;;6178:260;;;;;:::o;6443:380::-;6522:1;6518:12;;;;6565;;;6586:61;;6640:4;6632:6;6628:17;6618:27;;6586:61;6693:2;6685:6;6682:14;6662:18;6659:38;6656:161;;6739:10;6734:3;6730:20;6727:1;6720:31;6774:4;6771:1;6764:15;6802:4;6799:1;6792:15;6656:161;;6443:380;;;:::o;6828:334::-;7030:2;7012:21;;;7069:2;7049:18;;;7042:30;-1:-1:-1;;;7103:2:1;7088:18;;7081:40;7153:2;7138:18;;6828:334::o;7167:329::-;7369:2;7351:21;;;7408:1;7388:18;;;7381:29;-1:-1:-1;;;7441:2:1;7426:18;;7419:36;7487:2;7472:18;;7167:329::o;7501:347::-;7703:2;7685:21;;;7742:2;7722:18;;;7715:30;7781:25;7776:2;7761:18;;7754:53;7839:2;7824:18;;7501:347::o;8232:545::-;8334:2;8329:3;8326:11;8323:448;;;8370:1;8395:5;8391:2;8384:17;8440:4;8436:2;8426:19;8510:2;8498:10;8494:19;8491:1;8487:27;8481:4;8477:38;8546:4;8534:10;8531:20;8528:47;;;-1:-1:-1;8569:4:1;8528:47;8624:2;8619:3;8615:12;8612:1;8608:20;8602:4;8598:31;8588:41;;8679:82;8697:2;8690:5;8687:13;8679:82;;;8742:17;;;8723:1;8712:13;8679:82;;8953:1352;9079:3;9073:10;9106:18;9098:6;9095:30;9092:56;;;9128:18;;:::i;:::-;9157:97;9247:6;9207:38;9239:4;9233:11;9207:38;:::i;:::-;9201:4;9157:97;:::i;:::-;9309:4;;9373:2;9362:14;;9390:1;9385:663;;;;10092:1;10109:6;10106:89;;;-1:-1:-1;10161:19:1;;;10155:26;10106:89;-1:-1:-1;;8910:1:1;8906:11;;;8902:24;8898:29;8888:40;8934:1;8930:11;;;8885:57;10208:81;;9355:944;;9385:663;8179:1;8172:14;;;8216:4;8203:18;;-1:-1:-1;;9421:20:1;;;9539:236;9553:7;9550:1;9547:14;9539:236;;;9642:19;;;9636:26;9621:42;;9734:27;;;;9702:1;9690:14;;;;9569:19;;9539:236;;;9543:3;9803:6;9794:7;9791:19;9788:201;;;9864:19;;;9858:26;-1:-1:-1;;9947:1:1;9943:14;;;9959:3;9939:24;9935:37;9931:42;9916:58;9901:74;;9788:201;-1:-1:-1;;;;;10035:1:1;10019:14;;;10015:22;10002:36;;-1:-1:-1;8953:1352:1:o;10601:184::-;10671:6;10724:2;10712:9;10703:7;10699:23;10695:32;10692:52;;;10740:1;10737;10730:12;10692:52;-1:-1:-1;10763:16:1;;10601:184;-1:-1:-1;10601:184:1:o;11469:127::-;11530:10;11525:3;11521:20;11518:1;11511:31;11561:4;11558:1;11551:15;11585:4;11582:1;11575:15;11601:125;11666:9;;;11687:10;;;11684:36;;;11700:18;;:::i;12480:168::-;12553:9;;;12584;;12601:15;;;12595:22;;12581:37;12571:71;;12622:18;;:::i;13991:1256::-;14215:3;14253:6;14247:13;14279:4;14292:64;14349:6;14344:3;14339:2;14331:6;14327:15;14292:64;:::i;:::-;14419:13;;14378:16;;;;14441:68;14419:13;14378:16;14476:15;;;14441:68;:::i;:::-;14598:13;;14531:20;;;14571:1;;14636:36;14598:13;14636:36;:::i;:::-;14691:1;14708:18;;;14735:141;;;;14890:1;14885:337;;;;14701:521;;14735:141;-1:-1:-1;;14770:24:1;;14756:39;;14847:16;;14840:24;14826:39;;14815:51;;;-1:-1:-1;14735:141:1;;14885:337;14916:6;14913:1;14906:17;14964:2;14961:1;14951:16;14989:1;15003:169;15017:8;15014:1;15011:15;15003:169;;;15099:14;;15084:13;;;15077:37;15142:16;;;;15034:10;;15003:169;;;15007:3;;15203:8;15196:5;15192:20;15185:27;;14701:521;-1:-1:-1;15238:3:1;;13991:1256;-1:-1:-1;;;;;;;;;;13991:1256:1:o;15252:649::-;15332:6;15385:2;15373:9;15364:7;15360:23;15356:32;15353:52;;;15401:1;15398;15391:12;15353:52;15434:9;15428:16;15467:18;15459:6;15456:30;15453:50;;;15499:1;15496;15489:12;15453:50;15522:22;;15575:4;15567:13;;15563:27;-1:-1:-1;15553:55:1;;15604:1;15601;15594:12;15553:55;15633:2;15627:9;15658:49;15674:32;15703:2;15674:32;:::i;15658:49::-;15730:2;15723:5;15716:17;15770:7;15765:2;15760;15756;15752:11;15748:20;15745:33;15742:53;;;15791:1;15788;15781:12;15742:53;15804:67;15868:2;15863;15856:5;15852:14;15847:2;15843;15839:11;15804:67;:::i;:::-;15890:5;15252:649;-1:-1:-1;;;;;15252:649:1:o;15906:245::-;15973:6;16026:2;16014:9;16005:7;16001:23;15997:32;15994:52;;;16042:1;16039;16032:12;15994:52;16074:9;16068:16;16093:28;16115:5;16093:28;:::i;17557:489::-;-1:-1:-1;;;;;17826:15:1;;;17808:34;;17878:15;;17873:2;17858:18;;17851:43;17925:2;17910:18;;17903:34;;;17973:3;17968:2;17953:18;;17946:31;;;17751:4;;17994:46;;18020:19;;18012:6;17994:46;:::i;:::-;17986:54;17557:489;-1:-1:-1;;;;;;17557:489:1:o;18051:249::-;18120:6;18173:2;18161:9;18152:7;18148:23;18144:32;18141:52;;;18189:1;18186;18179:12;18141:52;18221:9;18215:16;18240:30;18264:5;18240:30;:::i;18305:135::-;18344:3;18365:17;;;18362:43;;18385:18;;:::i;:::-;-1:-1:-1;18432:1:1;18421:13;;18305:135::o;18445:127::-;18506:10;18501:3;18497:20;18494:1;18487:31;18537:4;18534:1;18527:15;18561:4;18558:1;18551:15;18577:120;18617:1;18643;18633:35;;18648:18;;:::i;:::-;-1:-1:-1;18682:9:1;;18577:120::o;18702:128::-;18769:9;;;18790:11;;;18787:37;;;18804:18;;:::i;18835:112::-;18867:1;18893;18883:35;;18898:18;;:::i;:::-;-1:-1:-1;18932:9:1;;18835:112::o;18952:127::-;19013:10;19008:3;19004:20;19001:1;18994:31;19044:4;19041:1;19034:15;19068:4;19065:1;19058:15

Swarm Source

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