ETH Price: $3,088.73 (+0.88%)
Gas: 5 Gwei

Token

TheTimekeepers (TK)
 

Overview

Max Total Supply

264 TK

Holders

76

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TK
0x4337878a01844311c874259CF527757678E19A8D
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:
TheTimekeepers

Compiler Version
v0.8.10+commit.fc410830

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

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


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/TheTimekeepers.sol


pragma solidity ^0.8.9;





contract TheTimekeepers is ERC721A, ERC721AQueryable, Ownable {

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = .666 ether;
  uint256 public maxSupply = 666;
  uint256 public maxMintAmount = 10;
  bool public paused = true;
  bool public revealed = false;
  string public notRevealedUri;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

  // public
  function mint(uint256 _mintAmount) public payable {
    
    uint256 supply = totalSupply();

    require(_mintAmount > 0, "need to mint at least 1 NFT");

    if (msg.sender != owner() && msg.sender != 0x1a21315b8ae950DB16d6f087A4D32cBCf5D78B45) {
      require(!paused, "the contract is paused");
      require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
      require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    _safeMint(msg.sender, _mintAmount);
  }
  

  // public
  function mintTo(address _address, uint256 _mintAmount) public payable onlyOwner {
    
    uint256 supply = totalSupply();

    require(_mintAmount > 0, "need to mint at least 1 NFT");

    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    _safeMint(_address, _mintAmount);
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
      if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

      if(revealed == false) {
          return notRevealedUri;
      }

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

  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function reveal(bool _state) public onlyOwner {
    revealed = _state;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setmaxSupply(uint256 _newmaxSupply) public onlyOwner {
    maxSupply = _newmaxSupply;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(0x6DE3e8b1399846D1567bB11121c0B3720d4c0CdA).call{value: address(this).balance}("");
    require(os);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620001d4565b5067093e1b78ac690000600b5561029a600c55600a600d55600e805461ffff191660011790553480156200005b57600080fd5b50604051620025cc380380620025cc8339810160408190526200007e9162000347565b83518490849062000097906002906020850190620001d4565b508051620000ad906003906020840190620001d4565b50506000805550620000bf33620000df565b620000ca8262000131565b620000d58162000154565b505050506200043d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013b62000173565b805162000150906009906020840190620001d4565b5050565b6200015e62000173565b80516200015090600f906020840190620001d4565b6008546001600160a01b03163314620001d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001e29062000400565b90600052602060002090601f01602090048101928262000206576000855562000251565b82601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b506200025f92915062000263565b5090565b5b808211156200025f576000815560010162000264565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002a257600080fd5b81516001600160401b0380821115620002bf57620002bf6200027a565b604051601f8301601f19908116603f01168101908282118183101715620002ea57620002ea6200027a565b816040528381526020925086838588010111156200030757600080fd5b600091505b838210156200032b57858201830151818301840152908201906200030c565b838211156200033d5760008385830101525b9695505050505050565b600080600080608085870312156200035e57600080fd5b84516001600160401b03808211156200037657600080fd5b620003848883890162000290565b955060208701519150808211156200039b57600080fd5b620003a98883890162000290565b94506040870151915080821115620003c057600080fd5b620003ce8883890162000290565b93506060870151915080821115620003e557600080fd5b50620003f48782880162000290565b91505092959194509250565b600181811c908216806200041557607f821691505b602082108114156200043757634e487b7160e01b600052602260045260246000fd5b50919050565b61217f806200044d6000396000f3fe60806040526004361061023b5760003560e01c80636c0360eb1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610645578063da3ef23f1461065b578063e985e9c51461067b578063f2c4ce1e146106c4578063f2fde38b146106e457600080fd5b8063a22cb465146105b0578063b88d4fde146105d0578063c23dc68f146105e3578063c668286214610610578063c87b56dd1461062557600080fd5b80638da5cb5b116100f25780638da5cb5b1461052a578063940cd05b1461054857806395d89b411461056857806399a2557a1461057d578063a0712d681461059d57600080fd5b80636c0360eb1461049357806370a08231146104a8578063715018a6146104c85780637f00c7a6146104dd5780638462151c146104fd57600080fd5b806323b872dd116101bc578063518302271161018057806351830227146103ed57806355f804b31461040c5780635bbb21771461042c5780635c975abb146104595780636352211e1461047357600080fd5b806323b872dd1461038c5780633ccfd60b1461039f57806342842e0e146103a7578063449a52f8146103ba57806344a0d68a146103cd57600080fd5b8063095ea7b311610203578063095ea7b31461030657806313faede61461031957806318160ddd1461033d578063228025e814610356578063239c70ae1461037657600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611b00565b610704565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004611b32565b610756565b005b3480156102a357600080fd5b506102ac610771565b60405161026c9190611ba5565b3480156102c557600080fd5b506102d96102d4366004611bb8565b610803565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b506102ac610847565b610295610314366004611be8565b6108d5565b34801561032557600080fd5b5061032f600b5481565b60405190815260200161026c565b34801561034957600080fd5b506001546000540361032f565b34801561036257600080fd5b50610295610371366004611bb8565b610975565b34801561038257600080fd5b5061032f600d5481565b61029561039a366004611c12565b610982565b610295610b13565b6102956103b5366004611c12565b610b87565b6102956103c8366004611be8565b610ba7565b3480156103d957600080fd5b506102956103e8366004611bb8565b610c73565b3480156103f957600080fd5b50600e5461026090610100900460ff1681565b34801561041857600080fd5b50610295610427366004611cda565b610c80565b34801561043857600080fd5b5061044c610447366004611d23565b610c9f565b60405161026c9190611dd5565b34801561046557600080fd5b50600e546102609060ff1681565b34801561047f57600080fd5b506102d961048e366004611bb8565b610d6b565b34801561049f57600080fd5b506102ac610d76565b3480156104b457600080fd5b5061032f6104c3366004611e17565b610d83565b3480156104d457600080fd5b50610295610dd2565b3480156104e957600080fd5b506102956104f8366004611bb8565b610de6565b34801561050957600080fd5b5061051d610518366004611e17565b610df3565b60405161026c9190611e32565b34801561053657600080fd5b506008546001600160a01b03166102d9565b34801561055457600080fd5b50610295610563366004611b32565b610f03565b34801561057457600080fd5b506102ac610f25565b34801561058957600080fd5b5061051d610598366004611e6a565b610f34565b6102956105ab366004611bb8565b6110b2565b3480156105bc57600080fd5b506102956105cb366004611e9d565b6112a1565b6102956105de366004611ed0565b61130d565b3480156105ef57600080fd5b506106036105fe366004611bb8565b611357565b60405161026c9190611f4c565b34801561061c57600080fd5b506102ac6113cf565b34801561063157600080fd5b506102ac610640366004611bb8565b6113dc565b34801561065157600080fd5b5061032f600c5481565b34801561066757600080fd5b50610295610676366004611cda565b611503565b34801561068757600080fd5b50610260610696366004611f5a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d057600080fd5b506102956106df366004611cda565b61151e565b3480156106f057600080fd5b506102956106ff366004611e17565b611539565b60006301ffc9a760e01b6001600160e01b03198316148061073557506380ac58cd60e01b6001600160e01b03198316145b806107505750635b5e139f60e01b6001600160e01b03198316145b92915050565b61075e6115af565b600e805460ff1916911515919091179055565b60606002805461078090611f84565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611f84565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b600061080e82611609565b61082b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600f805461085490611f84565b80601f016020809104026020016040519081016040528092919081815260200182805461088090611f84565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b505050505081565b60006108e082610d6b565b9050336001600160a01b03821614610919576108fc8133610696565b610919576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61097d6115af565b600c55565b600061098d82611630565b9050836001600160a01b0316816001600160a01b0316146109c05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a0d576109f08633610696565b610a0d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a3457604051633a954ecd60e21b815260040160405180910390fd5b8015610a3f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610aca5760018401600081815260046020526040902054610ac8576000548114610ac85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b1b6115af565b604051600090736de3e8b1399846d1567bb11121c0b3720d4c0cda9047908381818185875af1925050503d8060008114610b71576040519150601f19603f3d011682016040523d82523d6000602084013e610b76565b606091505b5050905080610b8457600080fd5b50565b610ba28383836040518060200160405280600081525061130d565b505050565b610baf6115af565b6000610bbe6001546000540390565b905060008211610c155760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064015b60405180910390fd5b600c54610c228383611fd5565b1115610c695760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610c0c565b610ba28383611691565b610c7b6115af565b600b55565b610c886115af565b8051610c9b906009906020840190611a51565b5050565b60608160008167ffffffffffffffff811115610cbd57610cbd611c4e565b604051908082528060200260200182016040528015610d0f57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610cdb5790505b50905060005b828114610d6257610d3d868683818110610d3157610d31611fed565b90506020020135611357565b828281518110610d4f57610d4f611fed565b6020908102919091010152600101610d15565b50949350505050565b600061075082611630565b6009805461085490611f84565b60006001600160a01b038216610dac576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610dda6115af565b610de460006116ab565b565b610dee6115af565b600d55565b60606000806000610e0385610d83565b905060008167ffffffffffffffff811115610e2057610e20611c4e565b604051908082528060200260200182016040528015610e49578160200160208202803683370190505b509050610e7660408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610ef757610e89816116fd565b9150816040015115610e9a57610eef565b81516001600160a01b031615610eaf57815194505b876001600160a01b0316856001600160a01b03161415610eef5780838780600101985081518110610ee257610ee2611fed565b6020026020010181815250505b600101610e79565b50909695505050505050565b610f0b6115af565b600e80549115156101000261ff0019909216919091179055565b60606003805461078090611f84565b6060818310610f5657604051631960ccad60e11b815260040160405180910390fd5b600080610f6260005490565b905080841115610f70578093505b6000610f7b87610d83565b905084861015610f9a5785850381811015610f94578091505b50610f9e565b5060005b60008167ffffffffffffffff811115610fb957610fb9611c4e565b604051908082528060200260200182016040528015610fe2578160200160208202803683370190505b50905081610ff55793506110ab92505050565b600061100088611357565b905060008160400151611011575080515b885b8881141580156110235750848714155b1561109f57611031816116fd565b925082604001511561104257611097565b82516001600160a01b03161561105757825191505b8a6001600160a01b0316826001600160a01b03161415611097578084888060010199508151811061108a5761108a611fed565b6020026020010181815250505b600101611013565b50505092835250909150505b9392505050565b60006110c16001546000540390565b9050600082116111135760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610c0c565b6008546001600160a01b031633148015906111425750731a21315b8ae950db16d6f087a4d32cbcf5d78b453314155b1561124357600e5460ff16156111935760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610c0c565b600d548211156111f15760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610c0c565b81600b546111ff9190612003565b3410156112435760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610c0c565b600c546112508383611fd5565b11156112975760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610c0c565b610c9b3383611691565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611318848484610982565b6001600160a01b0383163b156113515761133484848484611739565b611351576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060005483106113ab5792915050565b6113b4836116fd565b90508060400151156113c65792915050565b6110ab83611822565b600a805461085490611f84565b60606113e782611609565b61140457604051630a14c4b560e41b815260040160405180910390fd5b600e54610100900460ff166114a557600f805461142090611f84565b80601f016020809104026020016040519081016040528092919081815260200182805461144c90611f84565b80156114995780601f1061146e57610100808354040283529160200191611499565b820191906000526020600020905b81548152906001019060200180831161147c57829003601f168201915b50505050509050919050565b600980546114b290611f84565b151590506114cf5760405180602001604052806000815250610750565b60096114da83611857565b600a6040516020016114ee939291906120bc565b60405160208183030381529060405292915050565b61150b6115af565b8051610c9b90600a906020840190611a51565b6115266115af565b8051610c9b90600f906020840190611a51565b6115416115af565b6001600160a01b0381166115a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0c565b610b84816116ab565b6008546001600160a01b03163314610de45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0c565b6000805482108015610750575050600090815260046020526040902054600160e01b161590565b60008160005481101561167857600081815260046020526040902054600160e01b8116611676575b806110ab575060001901600081815260046020526040902054611658565b505b604051636f96cda160e11b815260040160405180910390fd5b610c9b8282604051806020016040528060008152506118a5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461075090611912565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061176e9033908990889088906004016120ef565b6020604051808303816000875af19250505080156117a9575060408051601f3d908101601f191682019092526117a69181019061212c565b60015b611804573d8080156117d7576040519150601f19603f3d011682016040523d82523d6000602084013e6117dc565b606091505b5080516117fc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261075061185283611630565b611912565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061188e57611893565b611871565b50819003601f19909101908152919050565b6118af838361195a565b6001600160a01b0383163b15610ba2576000548281035b6118d96000868380600101945086611739565b6118f6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106118c657816000541461190b57600080fd5b5050505050565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6000548161197b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611a2a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016119f2565b5081611a4857604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611a5d90611f84565b90600052602060002090601f016020900481019282611a7f5760008555611ac5565b82601f10611a9857805160ff1916838001178555611ac5565b82800160010185558215611ac5579182015b82811115611ac5578251825591602001919060010190611aaa565b50611ad1929150611ad5565b5090565b5b80821115611ad15760008155600101611ad6565b6001600160e01b031981168114610b8457600080fd5b600060208284031215611b1257600080fd5b81356110ab81611aea565b80358015158114611b2d57600080fd5b919050565b600060208284031215611b4457600080fd5b6110ab82611b1d565b60005b83811015611b68578181015183820152602001611b50565b838111156113515750506000910152565b60008151808452611b91816020860160208601611b4d565b601f01601f19169290920160200192915050565b6020815260006110ab6020830184611b79565b600060208284031215611bca57600080fd5b5035919050565b80356001600160a01b0381168114611b2d57600080fd5b60008060408385031215611bfb57600080fd5b611c0483611bd1565b946020939093013593505050565b600080600060608486031215611c2757600080fd5b611c3084611bd1565b9250611c3e60208501611bd1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7f57611c7f611c4e565b604051601f8501601f19908116603f01168101908282118183101715611ca757611ca7611c4e565b81604052809350858152868686011115611cc057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cec57600080fd5b813567ffffffffffffffff811115611d0357600080fd5b8201601f81018413611d1457600080fd5b61181a84823560208401611c64565b60008060208385031215611d3657600080fd5b823567ffffffffffffffff80821115611d4e57600080fd5b818501915085601f830112611d6257600080fd5b813581811115611d7157600080fd5b8660208260051b8501011115611d8657600080fd5b60209290920196919550909350505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610ef757611e04838551611d98565b9284019260809290920191600101611df1565b600060208284031215611e2957600080fd5b6110ab82611bd1565b6020808252825182820181905260009190848201906040850190845b81811015610ef757835183529284019291840191600101611e4e565b600080600060608486031215611e7f57600080fd5b611e8884611bd1565b95602085013595506040909401359392505050565b60008060408385031215611eb057600080fd5b611eb983611bd1565b9150611ec760208401611b1d565b90509250929050565b60008060008060808587031215611ee657600080fd5b611eef85611bd1565b9350611efd60208601611bd1565b925060408501359150606085013567ffffffffffffffff811115611f2057600080fd5b8501601f81018713611f3157600080fd5b611f4087823560208401611c64565b91505092959194509250565b608081016107508284611d98565b60008060408385031215611f6d57600080fd5b611f7683611bd1565b9150611ec760208401611bd1565b600181811c90821680611f9857607f821691505b60208210811415611fb957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fe857611fe8611fbf565b500190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561201d5761201d611fbf565b500290565b8054600090600181811c908083168061203c57607f831692505b602080841082141561205e57634e487b7160e01b600052602260045260246000fd5b8180156120725760018114612083576120b0565b60ff198616895284890196506120b0565b60008881526020902060005b868110156120a85781548b82015290850190830161208f565b505084890196505b50505050505092915050565b60006120c88286612022565b84516120d8818360208901611b4d565b6120e481830186612022565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212290830184611b79565b9695505050505050565b60006020828403121561213e57600080fd5b81516110ab81611aea56fea2646970667358221220a29c8dc52780b61b7422822fb9cbbcaee48edd6f8133cd6a52b381f91c311bfa64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000e54686554696d656b6565706572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002544b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f697066733a2f2f74656d7075726c2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f626166796265696262667168326b3671786167356c6b356d6473687a647a7269687a62726a756c6a64796f6d33366a666b70717a37676a6f696c342f68696464656e2e6a736f6e000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636c0360eb1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610645578063da3ef23f1461065b578063e985e9c51461067b578063f2c4ce1e146106c4578063f2fde38b146106e457600080fd5b8063a22cb465146105b0578063b88d4fde146105d0578063c23dc68f146105e3578063c668286214610610578063c87b56dd1461062557600080fd5b80638da5cb5b116100f25780638da5cb5b1461052a578063940cd05b1461054857806395d89b411461056857806399a2557a1461057d578063a0712d681461059d57600080fd5b80636c0360eb1461049357806370a08231146104a8578063715018a6146104c85780637f00c7a6146104dd5780638462151c146104fd57600080fd5b806323b872dd116101bc578063518302271161018057806351830227146103ed57806355f804b31461040c5780635bbb21771461042c5780635c975abb146104595780636352211e1461047357600080fd5b806323b872dd1461038c5780633ccfd60b1461039f57806342842e0e146103a7578063449a52f8146103ba57806344a0d68a146103cd57600080fd5b8063095ea7b311610203578063095ea7b31461030657806313faede61461031957806318160ddd1461033d578063228025e814610356578063239c70ae1461037657600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611b00565b610704565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004611b32565b610756565b005b3480156102a357600080fd5b506102ac610771565b60405161026c9190611ba5565b3480156102c557600080fd5b506102d96102d4366004611bb8565b610803565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b506102ac610847565b610295610314366004611be8565b6108d5565b34801561032557600080fd5b5061032f600b5481565b60405190815260200161026c565b34801561034957600080fd5b506001546000540361032f565b34801561036257600080fd5b50610295610371366004611bb8565b610975565b34801561038257600080fd5b5061032f600d5481565b61029561039a366004611c12565b610982565b610295610b13565b6102956103b5366004611c12565b610b87565b6102956103c8366004611be8565b610ba7565b3480156103d957600080fd5b506102956103e8366004611bb8565b610c73565b3480156103f957600080fd5b50600e5461026090610100900460ff1681565b34801561041857600080fd5b50610295610427366004611cda565b610c80565b34801561043857600080fd5b5061044c610447366004611d23565b610c9f565b60405161026c9190611dd5565b34801561046557600080fd5b50600e546102609060ff1681565b34801561047f57600080fd5b506102d961048e366004611bb8565b610d6b565b34801561049f57600080fd5b506102ac610d76565b3480156104b457600080fd5b5061032f6104c3366004611e17565b610d83565b3480156104d457600080fd5b50610295610dd2565b3480156104e957600080fd5b506102956104f8366004611bb8565b610de6565b34801561050957600080fd5b5061051d610518366004611e17565b610df3565b60405161026c9190611e32565b34801561053657600080fd5b506008546001600160a01b03166102d9565b34801561055457600080fd5b50610295610563366004611b32565b610f03565b34801561057457600080fd5b506102ac610f25565b34801561058957600080fd5b5061051d610598366004611e6a565b610f34565b6102956105ab366004611bb8565b6110b2565b3480156105bc57600080fd5b506102956105cb366004611e9d565b6112a1565b6102956105de366004611ed0565b61130d565b3480156105ef57600080fd5b506106036105fe366004611bb8565b611357565b60405161026c9190611f4c565b34801561061c57600080fd5b506102ac6113cf565b34801561063157600080fd5b506102ac610640366004611bb8565b6113dc565b34801561065157600080fd5b5061032f600c5481565b34801561066757600080fd5b50610295610676366004611cda565b611503565b34801561068757600080fd5b50610260610696366004611f5a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d057600080fd5b506102956106df366004611cda565b61151e565b3480156106f057600080fd5b506102956106ff366004611e17565b611539565b60006301ffc9a760e01b6001600160e01b03198316148061073557506380ac58cd60e01b6001600160e01b03198316145b806107505750635b5e139f60e01b6001600160e01b03198316145b92915050565b61075e6115af565b600e805460ff1916911515919091179055565b60606002805461078090611f84565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611f84565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b600061080e82611609565b61082b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600f805461085490611f84565b80601f016020809104026020016040519081016040528092919081815260200182805461088090611f84565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b505050505081565b60006108e082610d6b565b9050336001600160a01b03821614610919576108fc8133610696565b610919576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61097d6115af565b600c55565b600061098d82611630565b9050836001600160a01b0316816001600160a01b0316146109c05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a0d576109f08633610696565b610a0d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a3457604051633a954ecd60e21b815260040160405180910390fd5b8015610a3f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610aca5760018401600081815260046020526040902054610ac8576000548114610ac85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b1b6115af565b604051600090736de3e8b1399846d1567bb11121c0b3720d4c0cda9047908381818185875af1925050503d8060008114610b71576040519150601f19603f3d011682016040523d82523d6000602084013e610b76565b606091505b5050905080610b8457600080fd5b50565b610ba28383836040518060200160405280600081525061130d565b505050565b610baf6115af565b6000610bbe6001546000540390565b905060008211610c155760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064015b60405180910390fd5b600c54610c228383611fd5565b1115610c695760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610c0c565b610ba28383611691565b610c7b6115af565b600b55565b610c886115af565b8051610c9b906009906020840190611a51565b5050565b60608160008167ffffffffffffffff811115610cbd57610cbd611c4e565b604051908082528060200260200182016040528015610d0f57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610cdb5790505b50905060005b828114610d6257610d3d868683818110610d3157610d31611fed565b90506020020135611357565b828281518110610d4f57610d4f611fed565b6020908102919091010152600101610d15565b50949350505050565b600061075082611630565b6009805461085490611f84565b60006001600160a01b038216610dac576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610dda6115af565b610de460006116ab565b565b610dee6115af565b600d55565b60606000806000610e0385610d83565b905060008167ffffffffffffffff811115610e2057610e20611c4e565b604051908082528060200260200182016040528015610e49578160200160208202803683370190505b509050610e7660408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610ef757610e89816116fd565b9150816040015115610e9a57610eef565b81516001600160a01b031615610eaf57815194505b876001600160a01b0316856001600160a01b03161415610eef5780838780600101985081518110610ee257610ee2611fed565b6020026020010181815250505b600101610e79565b50909695505050505050565b610f0b6115af565b600e80549115156101000261ff0019909216919091179055565b60606003805461078090611f84565b6060818310610f5657604051631960ccad60e11b815260040160405180910390fd5b600080610f6260005490565b905080841115610f70578093505b6000610f7b87610d83565b905084861015610f9a5785850381811015610f94578091505b50610f9e565b5060005b60008167ffffffffffffffff811115610fb957610fb9611c4e565b604051908082528060200260200182016040528015610fe2578160200160208202803683370190505b50905081610ff55793506110ab92505050565b600061100088611357565b905060008160400151611011575080515b885b8881141580156110235750848714155b1561109f57611031816116fd565b925082604001511561104257611097565b82516001600160a01b03161561105757825191505b8a6001600160a01b0316826001600160a01b03161415611097578084888060010199508151811061108a5761108a611fed565b6020026020010181815250505b600101611013565b50505092835250909150505b9392505050565b60006110c16001546000540390565b9050600082116111135760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610c0c565b6008546001600160a01b031633148015906111425750731a21315b8ae950db16d6f087a4d32cbcf5d78b453314155b1561124357600e5460ff16156111935760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610c0c565b600d548211156111f15760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610c0c565b81600b546111ff9190612003565b3410156112435760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610c0c565b600c546112508383611fd5565b11156112975760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610c0c565b610c9b3383611691565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611318848484610982565b6001600160a01b0383163b156113515761133484848484611739565b611351576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060005483106113ab5792915050565b6113b4836116fd565b90508060400151156113c65792915050565b6110ab83611822565b600a805461085490611f84565b60606113e782611609565b61140457604051630a14c4b560e41b815260040160405180910390fd5b600e54610100900460ff166114a557600f805461142090611f84565b80601f016020809104026020016040519081016040528092919081815260200182805461144c90611f84565b80156114995780601f1061146e57610100808354040283529160200191611499565b820191906000526020600020905b81548152906001019060200180831161147c57829003601f168201915b50505050509050919050565b600980546114b290611f84565b151590506114cf5760405180602001604052806000815250610750565b60096114da83611857565b600a6040516020016114ee939291906120bc565b60405160208183030381529060405292915050565b61150b6115af565b8051610c9b90600a906020840190611a51565b6115266115af565b8051610c9b90600f906020840190611a51565b6115416115af565b6001600160a01b0381166115a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0c565b610b84816116ab565b6008546001600160a01b03163314610de45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0c565b6000805482108015610750575050600090815260046020526040902054600160e01b161590565b60008160005481101561167857600081815260046020526040902054600160e01b8116611676575b806110ab575060001901600081815260046020526040902054611658565b505b604051636f96cda160e11b815260040160405180910390fd5b610c9b8282604051806020016040528060008152506118a5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461075090611912565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061176e9033908990889088906004016120ef565b6020604051808303816000875af19250505080156117a9575060408051601f3d908101601f191682019092526117a69181019061212c565b60015b611804573d8080156117d7576040519150601f19603f3d011682016040523d82523d6000602084013e6117dc565b606091505b5080516117fc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261075061185283611630565b611912565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061188e57611893565b611871565b50819003601f19909101908152919050565b6118af838361195a565b6001600160a01b0383163b15610ba2576000548281035b6118d96000868380600101945086611739565b6118f6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106118c657816000541461190b57600080fd5b5050505050565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6000548161197b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611a2a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016119f2565b5081611a4857604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611a5d90611f84565b90600052602060002090601f016020900481019282611a7f5760008555611ac5565b82601f10611a9857805160ff1916838001178555611ac5565b82800160010185558215611ac5579182015b82811115611ac5578251825591602001919060010190611aaa565b50611ad1929150611ad5565b5090565b5b80821115611ad15760008155600101611ad6565b6001600160e01b031981168114610b8457600080fd5b600060208284031215611b1257600080fd5b81356110ab81611aea565b80358015158114611b2d57600080fd5b919050565b600060208284031215611b4457600080fd5b6110ab82611b1d565b60005b83811015611b68578181015183820152602001611b50565b838111156113515750506000910152565b60008151808452611b91816020860160208601611b4d565b601f01601f19169290920160200192915050565b6020815260006110ab6020830184611b79565b600060208284031215611bca57600080fd5b5035919050565b80356001600160a01b0381168114611b2d57600080fd5b60008060408385031215611bfb57600080fd5b611c0483611bd1565b946020939093013593505050565b600080600060608486031215611c2757600080fd5b611c3084611bd1565b9250611c3e60208501611bd1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7f57611c7f611c4e565b604051601f8501601f19908116603f01168101908282118183101715611ca757611ca7611c4e565b81604052809350858152868686011115611cc057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cec57600080fd5b813567ffffffffffffffff811115611d0357600080fd5b8201601f81018413611d1457600080fd5b61181a84823560208401611c64565b60008060208385031215611d3657600080fd5b823567ffffffffffffffff80821115611d4e57600080fd5b818501915085601f830112611d6257600080fd5b813581811115611d7157600080fd5b8660208260051b8501011115611d8657600080fd5b60209290920196919550909350505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610ef757611e04838551611d98565b9284019260809290920191600101611df1565b600060208284031215611e2957600080fd5b6110ab82611bd1565b6020808252825182820181905260009190848201906040850190845b81811015610ef757835183529284019291840191600101611e4e565b600080600060608486031215611e7f57600080fd5b611e8884611bd1565b95602085013595506040909401359392505050565b60008060408385031215611eb057600080fd5b611eb983611bd1565b9150611ec760208401611b1d565b90509250929050565b60008060008060808587031215611ee657600080fd5b611eef85611bd1565b9350611efd60208601611bd1565b925060408501359150606085013567ffffffffffffffff811115611f2057600080fd5b8501601f81018713611f3157600080fd5b611f4087823560208401611c64565b91505092959194509250565b608081016107508284611d98565b60008060408385031215611f6d57600080fd5b611f7683611bd1565b9150611ec760208401611bd1565b600181811c90821680611f9857607f821691505b60208210811415611fb957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fe857611fe8611fbf565b500190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561201d5761201d611fbf565b500290565b8054600090600181811c908083168061203c57607f831692505b602080841082141561205e57634e487b7160e01b600052602260045260246000fd5b8180156120725760018114612083576120b0565b60ff198616895284890196506120b0565b60008881526020902060005b868110156120a85781548b82015290850190830161208f565b505084890196505b50505050505092915050565b60006120c88286612022565b84516120d8818360208901611b4d565b6120e481830186612022565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212290830184611b79565b9695505050505050565b60006020828403121561213e57600080fd5b81516110ab81611aea56fea2646970667358221220a29c8dc52780b61b7422822fb9cbbcaee48edd6f8133cd6a52b381f91c311bfa64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000e54686554696d656b6565706572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002544b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f697066733a2f2f74656d7075726c2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f626166796265696262667168326b3671786167356c6b356d6473687a647a7269687a62726a756c6a64796f6d33366a666b70717a37676a6f696c342f68696464656e2e6a736f6e000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TheTimekeepers
Arg [1] : _symbol (string): TK
Arg [2] : _initBaseURI (string): ipfs://tempurl/
Arg [3] : _initNotRevealedUri (string): ipfs://bafybeibbfqh2k6qxag5lk5mdshzdzrihzbrjuljdyom36jfkpqz7gjoil4/hidden.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 54686554696d656b656570657273000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 544b000000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [9] : 697066733a2f2f74656d7075726c2f0000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [11] : 697066733a2f2f626166796265696262667168326b3671786167356c6b356d64
Arg [12] : 73687a647a7269687a62726a756c6a64796f6d33366a666b70717a37676a6f69
Arg [13] : 6c342f68696464656e2e6a736f6e000000000000000000000000000000000000


Deployed Bytecode Sourcemap

72634:2939:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33074:639;;;;;;;;;;-1:-1:-1;33074:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33074:639:0;;;;;;;;75200:73;;;;;;;;;;-1:-1:-1;75200:73:0;;;;;:::i;:::-;;:::i;:::-;;33976:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40467:218::-;;;;;;;;;;-1:-1:-1;40467:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;40467:218:0;1878:203:1;72944:28:0;;;;;;;;;;;;;:::i;39900:408::-;;;;;;:::i;:::-;;:::i;72771:32::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;72771:32:0;2523:177:1;29727:323:0;;;;;;;;;;-1:-1:-1;30001:12:0;;29788:7;29985:13;:28;29727:323;;75281:100;;;;;;;;;;-1:-1:-1;75281:100:0;;;;;:::i;:::-;;:::i;72843:33::-;;;;;;;;;;;;;;;;44106:2825;;;;;;:::i;:::-;;:::i;75388:180::-;;;:::i;47027:193::-;;;;;;:::i;:::-;;:::i;73867:311::-;;;;;;:::i;:::-;;:::i;74552:80::-;;;;;;;;;;-1:-1:-1;74552:80:0;;;;;:::i;:::-;;:::i;72911:28::-;;;;;;;;;;-1:-1:-1;72911:28:0;;;;;;;;;;;74888:98;;;;;;;;;;-1:-1:-1;74888:98:0;;;;;:::i;:::-;;:::i;67773:528::-;;;;;;;;;;-1:-1:-1;67773:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72881:25::-;;;;;;;;;;-1:-1:-1;72881:25:0;;;;;;;;35369:152;;;;;;;;;;-1:-1:-1;35369:152:0;;;;;:::i;:::-;;:::i;72703:21::-;;;;;;;;;;;;;:::i;30911:233::-;;;;;;;;;;-1:-1:-1;30911:233:0;;;;;:::i;:::-;;:::i;11329:103::-;;;;;;;;;;;;;:::i;74638:116::-;;;;;;;;;;-1:-1:-1;74638:116:0;;;;;:::i;:::-;;:::i;71649:900::-;;;;;;;;;;-1:-1:-1;71649:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10681:87::-;;;;;;;;;;-1:-1:-1;10754:6:0;;-1:-1:-1;;;;;10754:6:0;10681:87;;75118:76;;;;;;;;;;-1:-1:-1;75118:76:0;;;;;:::i;:::-;;:::i;34152:104::-;;;;;;;;;;;;;:::i;68689:2513::-;;;;;;;;;;-1:-1:-1;68689:2513:0;;;;;:::i;:::-;;:::i;73250:594::-;;;;;;:::i;:::-;;:::i;41025:234::-;;;;;;;;;;-1:-1:-1;41025:234:0;;;;;:::i;:::-;;:::i;47818:407::-;;;;;;:::i;:::-;;:::i;67186:428::-;;;;;;;;;;-1:-1:-1;67186:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72729:37::-;;;;;;;;;;;;;:::i;74184:358::-;;;;;;;;;;-1:-1:-1;74184:358:0;;;;;:::i;:::-;;:::i;72808:30::-;;;;;;;;;;;;;;;;74760:122;;;;;;;;;;-1:-1:-1;74760:122:0;;;;;:::i;:::-;;:::i;41416:164::-;;;;;;;;;;-1:-1:-1;41416:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41537:25:0;;;41513:4;41537:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41416:164;74992:120;;;;;;;;;;-1:-1:-1;74992:120:0;;;;;:::i;:::-;;:::i;11587:201::-;;;;;;;;;;-1:-1:-1;11587:201:0;;;;;:::i;:::-;;:::i;33074:639::-;33159:4;-1:-1:-1;;;;;;;;;33483:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33560:25:0;;;33483:102;:179;;;-1:-1:-1;;;;;;;;;;33637:25:0;;;33483:179;33463:199;33074:639;-1:-1:-1;;33074:639:0:o;75200:73::-;10567:13;:11;:13::i;:::-;75252:6:::1;:15:::0;;-1:-1:-1;;75252:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;75200:73::o;33976:100::-;34030:13;34063:5;34056:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33976:100;:::o;40467:218::-;40543:7;40568:16;40576:7;40568;:16::i;:::-;40563:64;;40593:34;;-1:-1:-1;;;40593:34:0;;;;;;;;;;;40563:64;-1:-1:-1;40647:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;40647:30:0;;40467:218::o;72944:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39900:408::-;39989:13;40005:16;40013:7;40005;:16::i;:::-;39989:32;-1:-1:-1;64233:10:0;-1:-1:-1;;;;;40038:28:0;;;40034:175;;40086:44;40103:5;64233:10;41416:164;:::i;40086:44::-;40081:128;;40158:35;;-1:-1:-1;;;40158:35:0;;;;;;;;;;;40081:128;40221:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;40221:35:0;-1:-1:-1;;;;;40221:35:0;;;;;;;;;40272:28;;40221:24;;40272:28;;;;;;;39978:330;39900:408;;:::o;75281:100::-;10567:13;:11;:13::i;:::-;75350:9:::1;:25:::0;75281:100::o;44106:2825::-;44248:27;44278;44297:7;44278:18;:27::i;:::-;44248:57;;44363:4;-1:-1:-1;;;;;44322:45:0;44338:19;-1:-1:-1;;;;;44322:45:0;;44318:86;;44376:28;;-1:-1:-1;;;44376:28:0;;;;;;;;;;;44318:86;44418:27;43214:24;;;:15;:24;;;;;43442:26;;64233:10;42839:30;;;-1:-1:-1;;;;;42532:28:0;;42817:20;;;42814:56;44604:180;;44697:43;44714:4;64233:10;41416:164;:::i;44697:43::-;44692:92;;44749:35;;-1:-1:-1;;;44749:35:0;;;;;;;;;;;44692:92;-1:-1:-1;;;;;44801:16:0;;44797:52;;44826:23;;-1:-1:-1;;;44826:23:0;;;;;;;;;;;44797:52;44998:15;44995:160;;;45138:1;45117:19;45110:30;44995:160;-1:-1:-1;;;;;45535:24:0;;;;;;;:18;:24;;;;;;45533:26;;-1:-1:-1;;45533:26:0;;;45604:22;;;;;;;;;45602:24;;-1:-1:-1;45602:24:0;;;38758:11;38733:23;38729:41;38716:63;-1:-1:-1;;;38716:63:0;45897:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;46192:47:0;;46188:627;;46297:1;46287:11;;46265:19;46420:30;;;:17;:30;;;;;;46416:384;;46558:13;;46543:11;:28;46539:242;;46705:30;;;;:17;:30;;;;;:52;;;46539:242;46246:569;46188:627;46862:7;46858:2;-1:-1:-1;;;;;46843:27:0;46852:4;-1:-1:-1;;;;;46843:27:0;;;;;;;;;;;44237:2694;;;44106:2825;;;:::o;75388:180::-;10567:13;:11;:13::i;:::-;75454:90:::1;::::0;75441:7:::1;::::0;75462:42:::1;::::0;75518:21:::1;::::0;75441:7;75454:90;75441:7;75454:90;75518:21;75462:42;75454:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75440:104;;;75559:2;75551:11;;;::::0;::::1;;75433:135;75388:180::o:0;47027:193::-;47173:39;47190:4;47196:2;47200:7;47173:39;;;;;;;;;;;;:16;:39::i;:::-;47027:193;;;:::o;73867:311::-;10567:13;:11;:13::i;:::-;73960:14:::1;73977:13;30001:12:::0;;29788:7;29985:13;:28;;29727:323;73977:13:::1;73960:30;;74021:1;74007:11;:15;73999:55;;;::::0;-1:-1:-1;;;73999:55:0;;9383:2:1;73999:55:0::1;::::0;::::1;9365:21:1::0;9422:2;9402:18;;;9395:30;9461:29;9441:18;;;9434:57;9508:18;;73999:55:0::1;;;;;;;;;74095:9;::::0;74071:20:::1;74080:11:::0;74071:6;:20:::1;:::i;:::-;:33;;74063:68;;;::::0;-1:-1:-1;;;74063:68:0;;10004:2:1;74063:68:0::1;::::0;::::1;9986:21:1::0;10043:2;10023:18;;;10016:30;-1:-1:-1;;;10062:18:1;;;10055:52;10124:18;;74063:68:0::1;9802:346:1::0;74063:68:0::1;74140:32;74150:8;74160:11;74140:9;:32::i;74552:80::-:0;10567:13;:11;:13::i;:::-;74611:4:::1;:15:::0;74552:80::o;74888:98::-;10567:13;:11;:13::i;:::-;74959:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;74888:98:::0;:::o;67773:528::-;67917:23;68008:8;67983:22;68008:8;68075:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68075:36:0;;-1:-1:-1;;68075:36:0;;;;;;;;;;;;68038:73;;68131:9;68126:125;68147:14;68142:1;:19;68126:125;;68203:32;68223:8;;68232:1;68223:11;;;;;;;:::i;:::-;;;;;;;68203:19;:32::i;:::-;68187:10;68198:1;68187:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;68163:3;;68126:125;;;-1:-1:-1;68272:10:0;67773:528;-1:-1:-1;;;;67773:528:0:o;35369:152::-;35441:7;35484:27;35503:7;35484:18;:27::i;72703:21::-;;;;;;;:::i;30911:233::-;30983:7;-1:-1:-1;;;;;31007:19:0;;31003:60;;31035:28;;-1:-1:-1;;;31035:28:0;;;;;;;;;;;31003:60;-1:-1:-1;;;;;;31081:25:0;;;;;:18;:25;;;;;;25070:13;31081:55;;30911:233::o;11329:103::-;10567:13;:11;:13::i;:::-;11394:30:::1;11421:1;11394:18;:30::i;:::-;11329:103::o:0;74638:116::-;10567:13;:11;:13::i;:::-;74715::::1;:33:::0;74638:116::o;71649:900::-;71727:16;71781:19;71815:25;71855:22;71880:16;71890:5;71880:9;:16::i;:::-;71855:41;;71911:25;71953:14;71939:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71939:29:0;;71911:57;;71983:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71983:31:0;72034:9;72029:472;72078:14;72063:11;:29;72029:472;;72130:15;72143:1;72130:12;:15::i;:::-;72118:27;;72168:9;:16;;;72164:73;;;72209:8;;72164:73;72259:14;;-1:-1:-1;;;;;72259:28:0;;72255:111;;72332:14;;;-1:-1:-1;72255:111:0;72409:5;-1:-1:-1;;;;;72388:26:0;:17;-1:-1:-1;;;;;72388:26:0;;72384:102;;;72465:1;72439:8;72448:13;;;;;;72439:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;72384:102;72094:3;;72029:472;;;-1:-1:-1;72522:8:0;;71649:900;-1:-1:-1;;;;;;71649:900:0:o;75118:76::-;10567:13;:11;:13::i;:::-;75171:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;75171:17:0;;::::1;::::0;;;::::1;::::0;;75118:76::o;34152:104::-;34208:13;34241:7;34234:14;;;;;:::i;68689:2513::-;68832:16;68899:4;68890:5;:13;68886:45;;68912:19;;-1:-1:-1;;;68912:19:0;;;;;;;;;;;68886:45;68946:19;68980:17;69000:14;29469:7;29496:13;;29414:103;69000:14;68980:34;-1:-1:-1;69251:9:0;69244:4;:16;69240:73;;;69288:9;69281:16;;69240:73;69327:25;69355:16;69365:5;69355:9;:16::i;:::-;69327:44;;69549:4;69541:5;:12;69537:278;;;69596:12;;;69631:31;;;69627:111;;;69707:11;69687:31;;69627:111;69555:198;69537:278;;;-1:-1:-1;69798:1:0;69537:278;69829:25;69871:17;69857:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69857:32:0;-1:-1:-1;69829:60:0;-1:-1:-1;69908:22:0;69904:78;;69958:8;-1:-1:-1;69951:15:0;;-1:-1:-1;;;69951:15:0;69904:78;70126:31;70160:26;70180:5;70160:19;:26::i;:::-;70126:60;;70201:25;70446:9;:16;;;70441:92;;-1:-1:-1;70503:14:0;;70441:92;70564:5;70547:478;70576:4;70571:1;:9;;:45;;;;;70599:17;70584:11;:32;;70571:45;70547:478;;;70654:15;70667:1;70654:12;:15::i;:::-;70642:27;;70692:9;:16;;;70688:73;;;70733:8;;70688:73;70783:14;;-1:-1:-1;;;;;70783:28:0;;70779:111;;70856:14;;;-1:-1:-1;70779:111:0;70933:5;-1:-1:-1;;;;;70912:26:0;:17;-1:-1:-1;;;;;70912:26:0;;70908:102;;;70989:1;70963:8;70972:13;;;;;;70963:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;70908:102;70618:3;;70547:478;;;-1:-1:-1;;;71110:29:0;;;-1:-1:-1;71117:8:0;;-1:-1:-1;;68689:2513:0;;;;;;:::o;73250:594::-;73313:14;73330:13;30001:12;;29788:7;29985:13;:28;;29727:323;73330:13;73313:30;;73374:1;73360:11;:15;73352:55;;;;-1:-1:-1;;;73352:55:0;;9383:2:1;73352:55:0;;;9365:21:1;9422:2;9402:18;;;9395:30;9461:29;9441:18;;;9434:57;9508:18;;73352:55:0;9181:351:1;73352:55:0;10754:6;;-1:-1:-1;;;;;10754:6:0;73420:10;:21;;;;:81;;-1:-1:-1;73459:42:0;73445:10;:56;;73420:81;73416:303;;;73521:6;;;;73520:7;73512:42;;;;-1:-1:-1;;;73512:42:0;;10487:2:1;73512:42:0;;;10469:21:1;10526:2;10506:18;;;10499:30;-1:-1:-1;;;10545:18:1;;;10538:52;10607:18;;73512:42:0;10285:346:1;73512:42:0;73586:13;;73571:11;:28;;73563:77;;;;-1:-1:-1;;;73563:77:0;;10838:2:1;73563:77:0;;;10820:21:1;10877:2;10857:18;;;10850:30;10916:34;10896:18;;;10889:62;-1:-1:-1;;;10967:18:1;;;10960:34;11011:19;;73563:77:0;10636:400:1;73563:77:0;73677:11;73670:4;;:18;;;;:::i;:::-;73657:9;:31;;73649:62;;;;-1:-1:-1;;;73649:62:0;;11416:2:1;73649:62:0;;;11398:21:1;11455:2;11435:18;;;11428:30;-1:-1:-1;;;11474:18:1;;;11467:48;11532:18;;73649:62:0;11214:342:1;73649:62:0;73759:9;;73735:20;73744:11;73735:6;:20;:::i;:::-;:33;;73727:68;;;;-1:-1:-1;;;73727:68:0;;10004:2:1;73727:68:0;;;9986:21:1;10043:2;10023:18;;;10016:30;-1:-1:-1;;;10062:18:1;;;10055:52;10124:18;;73727:68:0;9802:346:1;73727:68:0;73804:34;73814:10;73826:11;73804:9;:34::i;41025:234::-;64233:10;41120:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41120:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41120:60:0;;;;;;;;;;41196:55;;540:41:1;;;41120:49:0;;64233:10;41196:55;;513:18:1;41196:55:0;;;;;;;41025:234;;:::o;47818:407::-;47993:31;48006:4;48012:2;48016:7;47993:12;:31::i;:::-;-1:-1:-1;;;;;48039:14:0;;;:19;48035:183;;48078:56;48109:4;48115:2;48119:7;48128:5;48078:30;:56::i;:::-;48073:145;;48162:40;;-1:-1:-1;;;48162:40:0;;;;;;;;;;;48073:145;47818:407;;;;:::o;67186:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29469:7:0;29496:13;67379:7;:25;67346:103;;67428:9;67186:428;-1:-1:-1;;67186:428:0:o;67346:103::-;67471:21;67484:7;67471:12;:21::i;:::-;67459:33;;67507:9;:16;;;67503:65;;;67547:9;67186:428;-1:-1:-1;;67186:428:0:o;67503:65::-;67585:21;67598:7;67585:12;:21::i;72729:37::-;;;;;;;:::i;74184:358::-;74257:13;74286:16;74294:7;74286;:16::i;:::-;74281:59;;74311:29;;-1:-1:-1;;;74311:29:0;;;;;;;;;;;74281:59;74354:8;;;;;;;74351:66;;74393:14;74386:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74184:358;;;:::o;74351:66::-;74440:7;74434:21;;;;;:::i;:::-;:26;;;-1:-1:-1;74434:102:0;;;;;;;;;;;;;;;;;74487:7;74496:18;74506:7;74496:9;:18::i;:::-;74516:13;74470:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74427:109;74184:358;-1:-1:-1;;74184:358:0:o;74760:122::-;10567:13;:11;:13::i;:::-;74843:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;74992:120::-:0;10567:13;:11;:13::i;:::-;75074:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11587:201::-:0;10567:13;:11;:13::i;:::-;-1:-1:-1;;;;;11676:22:0;::::1;11668:73;;;::::0;-1:-1:-1;;;11668:73:0;;13328:2:1;11668:73:0::1;::::0;::::1;13310:21:1::0;13367:2;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;-1:-1:-1;;;13457:18:1;;;13450:36;13503:19;;11668:73:0::1;13126:402:1::0;11668:73:0::1;11752:28;11771:8;11752:18;:28::i;10846:132::-:0;10754:6;;-1:-1:-1;;;;;10754:6:0;64233:10;10910:23;10902:68;;;;-1:-1:-1;;;10902:68:0;;13735:2:1;10902:68:0;;;13717:21:1;;;13754:18;;;13747:30;13813:34;13793:18;;;13786:62;13865:18;;10902:68:0;13533:356:1;41838:282:0;41903:4;41993:13;;41983:7;:23;41940:153;;;;-1:-1:-1;;42044:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;42044:44:0;:49;;41838:282::o;36524:1275::-;36591:7;36626;36728:13;;36721:4;:20;36717:1015;;;36766:14;36783:23;;;:17;:23;;;;;;-1:-1:-1;;;36872:24:0;;36868:845;;37537:113;37544:11;37537:113;;-1:-1:-1;;;37615:6:0;37597:25;;;;:17;:25;;;;;;37537:113;;36868:845;36743:989;36717:1015;37760:31;;-1:-1:-1;;;37760:31:0;;;;;;;;;;;57978:112;58055:27;58065:2;58069:8;58055:27;;;;;;;;;;;;:9;:27::i;11948:191::-;12041:6;;;-1:-1:-1;;;;;12058:17:0;;;-1:-1:-1;;;;;;12058:17:0;;;;;;;12091:40;;12041:6;;;12058:17;12041:6;;12091:40;;12022:16;;12091:40;12011:128;11948:191;:::o;35972:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36100:24:0;;;;:17;:24;;;;;;36081:44;;:18;:44::i;50309:716::-;50493:88;;-1:-1:-1;;;50493:88:0;;50472:4;;-1:-1:-1;;;;;50493:45:0;;;;;:88;;64233:10;;50560:4;;50566:7;;50575:5;;50493:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50493:88:0;;;;;;;;-1:-1:-1;;50493:88:0;;;;;;;;;;;;:::i;:::-;;;50489:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50776:13:0;;50772:235;;50822:40;;-1:-1:-1;;;50822:40:0;;;;;;;;;;;50772:235;50965:6;50959:13;50950:6;50946:2;50942:15;50935:38;50489:529;-1:-1:-1;;;;;;50652:64:0;-1:-1:-1;;;50652:64:0;;-1:-1:-1;50489:529:0;50309:716;;;;;;:::o;35710:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35821:47:0;35840:27;35859:7;35840:18;:27::i;:::-;35821:18;:47::i;64353:1745::-;64418:17;64852:4;64845;64839:11;64835:22;64944:1;64938:4;64931:15;65019:4;65016:1;65012:12;65005:19;;;65101:1;65096:3;65089:14;65205:3;65444:5;65426:428;65492:1;65487:3;65483:11;65476:18;;65663:2;65657:4;65653:13;65649:2;65645:22;65640:3;65632:36;65757:2;65747:13;;;65814:25;;65832:5;;65814:25;65426:428;;;-1:-1:-1;65884:13:0;;;-1:-1:-1;;65999:14:0;;;66061:19;;;65999:14;64353:1745;-1:-1:-1;64353:1745:0:o;57205:689::-;57336:19;57342:2;57346:8;57336:5;:19::i;:::-;-1:-1:-1;;;;;57397:14:0;;;:19;57393:483;;57437:11;57451:13;57499:14;;;57532:233;57563:62;57602:1;57606:2;57610:7;;;;;;57619:5;57563:30;:62::i;:::-;57558:167;;57661:40;;-1:-1:-1;;;57661:40:0;;;;;;;;;;;57558:167;57760:3;57752:5;:11;57532:233;;57847:3;57830:13;;:20;57826:34;;57852:8;;;57826:34;57418:458;;57205:689;;;:::o;37898:366::-;-1:-1:-1;;;;;;;;;;;;;38008:41:0;;;;25729:3;38094:33;;;38060:68;;-1:-1:-1;;;38060:68:0;-1:-1:-1;;;38158:24:0;;:29;;-1:-1:-1;;;38139:48:0;;;;26250:3;38227:28;;;;-1:-1:-1;;;38198:58:0;-1:-1:-1;37898:366:0:o;51487:2966::-;51560:20;51583:13;51611;51607:44;;51633:18;;-1:-1:-1;;;51633:18:0;;;;;;;;;;;51607:44;-1:-1:-1;;;;;52139:22:0;;;;;;:18;:22;;;;25208:2;52139:22;;;:71;;52177:32;52165:45;;52139:71;;;52453:31;;;:17;:31;;;;;-1:-1:-1;39189:15:0;;39163:24;39159:46;38758:11;38733:23;38729:41;38726:52;38716:63;;52453:173;;52688:23;;;;52453:31;;52139:22;;53453:25;52139:22;;53306:335;53967:1;53953:12;53949:20;53907:346;54008:3;53999:7;53996:16;53907:346;;54226:7;54216:8;54213:1;54186:25;54183:1;54180;54175:59;54061:1;54048:15;53907:346;;;-1:-1:-1;54286:13:0;54282:45;;54308:19;;-1:-1:-1;;;54308:19:0;;;;;;;;;;;54282:45;54344:13;:19;-1:-1:-1;47027:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:1;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:451::-;3876:6;3929:2;3917:9;3908:7;3904:23;3900:32;3897:52;;;3945:1;3942;3935:12;3897:52;3985:9;3972:23;4018:18;4010:6;4007:30;4004:50;;;4050:1;4047;4040:12;4004:50;4073:22;;4126:4;4118:13;;4114:27;-1:-1:-1;4104:55:1;;4155:1;4152;4145:12;4104:55;4178:74;4244:7;4239:2;4226:16;4221:2;4217;4213:11;4178:74;:::i;4263:615::-;4349:6;4357;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4466:9;4453:23;4495:18;4536:2;4528:6;4525:14;4522:34;;;4552:1;4549;4542:12;4522:34;4590:6;4579:9;4575:22;4565:32;;4635:7;4628:4;4624:2;4620:13;4616:27;4606:55;;4657:1;4654;4647:12;4606:55;4697:2;4684:16;4723:2;4715:6;4712:14;4709:34;;;4739:1;4736;4729:12;4709:34;4792:7;4787:2;4777:6;4774:1;4770:14;4766:2;4762:23;4758:32;4755:45;4752:65;;;4813:1;4810;4803:12;4752:65;4844:2;4836:11;;;;;4866:6;;-1:-1:-1;4263:615:1;;-1:-1:-1;;;;4263:615:1:o;4883:349::-;4967:12;;-1:-1:-1;;;;;4963:38:1;4951:51;;5055:4;5044:16;;;5038:23;5063:18;5034:48;5018:14;;;5011:72;5146:4;5135:16;;;5129:23;5122:31;5115:39;5099:14;;;5092:63;5208:4;5197:16;;;5191:23;5216:8;5187:38;5171:14;;5164:62;4883:349::o;5237:722::-;5470:2;5522:21;;;5592:13;;5495:18;;;5614:22;;;5441:4;;5470:2;5693:15;;;;5667:2;5652:18;;;5441:4;5736:197;5750:6;5747:1;5744:13;5736:197;;;5799:52;5847:3;5838:6;5832:13;5799:52;:::i;:::-;5908:15;;;;5880:4;5871:14;;;;;5772:1;5765:9;5736:197;;5964:186;6023:6;6076:2;6064:9;6055:7;6051:23;6047:32;6044:52;;;6092:1;6089;6082:12;6044:52;6115:29;6134:9;6115:29;:::i;6155:632::-;6326:2;6378:21;;;6448:13;;6351:18;;;6470:22;;;6297:4;;6326:2;6549:15;;;;6523:2;6508:18;;;6297:4;6592:169;6606:6;6603:1;6600:13;6592:169;;;6667:13;;6655:26;;6736:15;;;;6701:12;;;;6628:1;6621:9;6592:169;;6792:322;6869:6;6877;6885;6938:2;6926:9;6917:7;6913:23;6909:32;6906:52;;;6954:1;6951;6944:12;6906:52;6977:29;6996:9;6977:29;:::i;:::-;6967:39;7053:2;7038:18;;7025:32;;-1:-1:-1;7104:2:1;7089:18;;;7076:32;;6792:322;-1:-1:-1;;;6792:322:1:o;7119:254::-;7184:6;7192;7245:2;7233:9;7224:7;7220:23;7216:32;7213:52;;;7261:1;7258;7251:12;7213:52;7284:29;7303:9;7284:29;:::i;:::-;7274:39;;7332:35;7363:2;7352:9;7348:18;7332:35;:::i;:::-;7322:45;;7119:254;;;;;:::o;7378:667::-;7473:6;7481;7489;7497;7550:3;7538:9;7529:7;7525:23;7521:33;7518:53;;;7567:1;7564;7557:12;7518:53;7590:29;7609:9;7590:29;:::i;:::-;7580:39;;7638:38;7672:2;7661:9;7657:18;7638:38;:::i;:::-;7628:48;;7723:2;7712:9;7708:18;7695:32;7685:42;;7778:2;7767:9;7763:18;7750:32;7805:18;7797:6;7794:30;7791:50;;;7837:1;7834;7827:12;7791:50;7860:22;;7913:4;7905:13;;7901:27;-1:-1:-1;7891:55:1;;7942:1;7939;7932:12;7891:55;7965:74;8031:7;8026:2;8013:16;8008:2;8004;8000:11;7965:74;:::i;:::-;7955:84;;;7378:667;;;;;;;:::o;8050:266::-;8246:3;8231:19;;8259:51;8235:9;8292:6;8259:51;:::i;8321:260::-;8389:6;8397;8450:2;8438:9;8429:7;8425:23;8421:32;8418:52;;;8466:1;8463;8456:12;8418:52;8489:29;8508:9;8489:29;:::i;:::-;8479:39;;8537:38;8571:2;8560:9;8556:18;8537:38;:::i;8586:380::-;8665:1;8661:12;;;;8708;;;8729:61;;8783:4;8775:6;8771:17;8761:27;;8729:61;8836:2;8828:6;8825:14;8805:18;8802:38;8799:161;;;8882:10;8877:3;8873:20;8870:1;8863:31;8917:4;8914:1;8907:15;8945:4;8942:1;8935:15;8799:161;;8586:380;;;:::o;9537:127::-;9598:10;9593:3;9589:20;9586:1;9579:31;9629:4;9626:1;9619:15;9653:4;9650:1;9643:15;9669:128;9709:3;9740:1;9736:6;9733:1;9730:13;9727:39;;;9746:18;;:::i;:::-;-1:-1:-1;9782:9:1;;9669:128::o;10153:127::-;10214:10;10209:3;10205:20;10202:1;10195:31;10245:4;10242:1;10235:15;10269:4;10266:1;10259:15;11041:168;11081:7;11147:1;11143;11139:6;11135:14;11132:1;11129:21;11124:1;11117:9;11110:17;11106:45;11103:71;;;11154:18;;:::i;:::-;-1:-1:-1;11194:9:1;;11041:168::o;11687:973::-;11772:12;;11737:3;;11827:1;11847:18;;;;11900;;;;11927:61;;11981:4;11973:6;11969:17;11959:27;;11927:61;12007:2;12055;12047:6;12044:14;12024:18;12021:38;12018:161;;;12101:10;12096:3;12092:20;12089:1;12082:31;12136:4;12133:1;12126:15;12164:4;12161:1;12154:15;12018:161;12195:18;12222:104;;;;12340:1;12335:319;;;;12188:466;;12222:104;-1:-1:-1;;12255:24:1;;12243:37;;12300:16;;;;-1:-1:-1;12222:104:1;;12335:319;11634:1;11627:14;;;11671:4;11658:18;;12429:1;12443:165;12457:6;12454:1;12451:13;12443:165;;;12535:14;;12522:11;;;12515:35;12578:16;;;;12472:10;;12443:165;;;12447:3;;12637:6;12632:3;12628:16;12621:23;;12188:466;;;;;;;11687:973;;;;:::o;12665:456::-;12886:3;12914:38;12948:3;12940:6;12914:38;:::i;:::-;12981:6;12975:13;12997:52;13042:6;13038:2;13031:4;13023:6;13019:17;12997:52;:::i;:::-;13065:50;13107:6;13103:2;13099:15;13091:6;13065:50;:::i;:::-;13058:57;12665:456;-1:-1:-1;;;;;;;12665:456:1:o;13894:489::-;-1:-1:-1;;;;;14163:15:1;;;14145:34;;14215:15;;14210:2;14195:18;;14188:43;14262:2;14247:18;;14240:34;;;14310:3;14305:2;14290:18;;14283:31;;;14088:4;;14331:46;;14357:19;;14349:6;14331:46;:::i;:::-;14323:54;13894:489;-1:-1:-1;;;;;;13894:489:1:o;14388:249::-;14457:6;14510:2;14498:9;14489:7;14485:23;14481:32;14478:52;;;14526:1;14523;14516:12;14478:52;14558:9;14552:16;14577:30;14601:5;14577:30;:::i

Swarm Source

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