ETH Price: $3,281.20 (+0.81%)
Gas: 9 Gwei

Token

A Night With Taylor (TAYLOR)
 

Overview

Max Total Supply

178 TAYLOR

Holders

35

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TAYLOR
0xa48e12df736229089849317f4daf843dcdf5c924
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:
ANightWithTaylor

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-14
*/

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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.3.0
// 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();

    /**
     * `_sequentialUpTo()` must be greater than `_startTokenId()`.
     */
    error SequentialUpToTooSmall();

    /**
     * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`.
     */
    error SequentialMintExceedsLimit();

    /**
     * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`.
     */
    error SpotMintTokenIdTooSmall();

    /**
     * Cannot mint over a token that already exists.
     */
    error TokenAlreadyExists();

    /**
     * The feature is not compatible with spot mints.
     */
    error NotCompatibleWithSpotMints();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.3.0
// 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()`.
 *
 * The `_sequentialUpTo()` function can be overriden to enable spot mints
 * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`.
 *
 * 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;

    // The amount of tokens minted above `_sequentialUpTo()`.
    // We call these spot mints (i.e. non-sequential mints).
    uint256 private _spotMinted;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

        if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector);
    }

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

    /**
     * @dev Returns the starting token ID for sequential mints.
     *
     * Override this function to change the starting token ID for sequential mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the maximum token ID (inclusive) for sequential mints.
     *
     * Override this function to return a value less than 2**256 - 1,
     * but greater than `_startTokenId()`, to enable spot (non-sequential) mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _sequentialUpTo() internal view virtual returns (uint256) {
        return type(uint256).max;
    }

    /**
     * @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 result) {
        // Counter underflow is impossible as `_burnCounter` cannot be incremented
        // more than `_currentIndex + _spotMinted - _startTokenId()` times.
        unchecked {
            // With spot minting, the intermediate `result` can be temporarily negative,
            // and the computation must be unchecked.
            result = _currentIndex - _burnCounter - _startTokenId();
            if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
        }
    }

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

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

    /**
     * @dev Returns the total number of tokens that are spot-minted.
     */
    function _totalSpotMinted() internal view virtual returns (uint256) {
        return _spotMinted;
    }

    // =============================================================
    //                    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.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * @dev Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];

            if (tokenId > _sequentialUpTo()) {
                if (_packedOwnershipExists(packed)) return packed;
                _revert(OwnerQueryForNonexistentToken.selector);
            }

            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // 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, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @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.selector);

        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 result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]);

            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

    /**
     * @dev Returns whether `packed` represents a token that exists.
     */
    function _packedOwnershipExists(uint256 packed) private pure returns (bool result) {
        assembly {
            // The following is equivalent to `owner != address(0) && burned == false`.
            // Symbolically tested.
            result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_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);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

        _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;
                    }
                }
            }
        }

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _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.selector);
            }
    }

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

        _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:
            // - `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)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) _revert(MintToZeroAddress.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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)
            );

            if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            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.selector);
                    }
                } while (index < end);
                // This prevents reentrancy to `_safeMint`.
                // It does not prevent reentrancy to `_safeMintSpot`.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints a single token at `tokenId`.
     *
     * Note: A spot-minted `tokenId` that has been burned can be re-minted again.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` must be greater than `_sequentialUpTo()`.
     * - `tokenId` must not exist.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mintSpot(address to, uint256 tokenId) internal virtual {
        if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector);
        uint256 prevOwnershipPacked = _packedOwnerships[tokenId];
        if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector);

        _beforeTokenTransfers(address(0), to, tokenId, 1);

        // Overflows are incredibly unrealistic.
        // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1.
        // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `true` (as `quantity == 1`).
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked)
            );

            // Updates:
            // - `balance += 1`.
            // - `numberMinted += 1`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1;

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            assembly {
                // 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`.
                    tokenId // `tokenId`.
                )
            }

            ++_spotMinted;
        }

        _afterTokenTransfers(address(0), to, tokenId, 1);
    }

    /**
     * @dev Safely mints a single token at `tokenId`.
     *
     * Note: A spot-minted `tokenId` that has been burned can be re-minted again.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}.
     * - `tokenId` must be greater than `_sequentialUpTo()`.
     * - `tokenId` must not exist.
     *
     * See {_mintSpot}.
     *
     * Emits a {Transfer} event.
     */
    function _safeMintSpot(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mintSpot(to, tokenId);

        unchecked {
            if (to.code.length != 0) {
                uint256 currentSpotMinted = _spotMinted;
                if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) {
                    _revert(TransferToNonERC721ReceiverImplementer.selector);
                }
                // This prevents reentrancy to `_safeMintSpot`.
                // It does not prevent reentrancy to `_safeMint`.
                if (_spotMinted != currentSpotMinted) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMintSpot(to, tokenId, '')`.
     */
    function _safeMintSpot(address to, uint256 tokenId) internal virtual {
        _safeMintSpot(to, tokenId, '');
    }

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

    /**
     * @dev Equivalent to `_approve(to, tokenId, false)`.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _approve(to, tokenId, false);
    }

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    // =============================================================
    //                        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.selector);
        }

        _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 + _spotMinted` 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.selector);
        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)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

// File: A_Night_With_Taylor.sol


                                                                                                                                                                                                                     
pragma solidity ^0.8.25;



interface IContract {
	function balanceOf(address owner) external view returns (uint256 balance);
}

contract ANightWithTaylor is ERC721A, Ownable {
	uint256 constant public MaxSupply = 500;
	uint256 public MintPrice; // in WEI
	address public PayoutAddress;
	string public MetadataUri;
	
	/**
	* Compliance MintableSupply
	*/
	modifier mintCompliance(uint256 _mintAmount) {
		require(_mintAmount > 0, "Invalid mint amount!");
		require(totalSupply() + _mintAmount <= MaxSupply, "Max mintaable supply exceeded!");
		_;
	}

constructor(
	address _InitialOwner,
	uint256 _MintPrice, // in Wei
	string memory _MetadataUri
)

ERC721A("A Night With Taylor", "TAYLOR") Ownable(_InitialOwner) {
        PayoutAddress = _InitialOwner;
        MintPrice = _MintPrice;
		MetadataUri = _MetadataUri;
}

	/**
	* Change mint price
	*/
	function setMintPrice(uint256 _MintPrice) external onlyOwner {
		MintPrice = _MintPrice;
	}

	/**
	* Mint NFT
	*/
	function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
		require(msg.value >= MintPrice * _mintAmount, "Insufficient funds!");
		_safeMint(_msgSender(), _mintAmount);
	}

	function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
		_safeMint(_receiver, _mintAmount);
	}

	/**
	* Uri settings
	*/
	function setMetadataUri(string memory _MetadataUri) external onlyOwner {
		MetadataUri = _MetadataUri;
	}

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

	function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
		require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
		return (MetadataUri);
	}

	/**
	* Withdraw settings
	*/
	function setPayoutAddress(address _PayoutAddress) public onlyOwner {
		PayoutAddress = _PayoutAddress;
	}

	function withdraw() public onlyOwner {
		payable(PayoutAddress).transfer(address(this).balance); // withdraw ETH except ETH for LP
	} 
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_InitialOwner","type":"address"},{"internalType":"uint256","name":"_MintPrice","type":"uint256"},{"internalType":"string","name":"_MetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_MetadataUri","type":"string"}],"name":"setMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_PayoutAddress","type":"address"}],"name":"setPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","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":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50604051613080380380613080833981810160405281019061003191906104bf565b826040518060400160405280601381526020017f41204e696768742057697468205461796c6f72000000000000000000000000008152506040518060400160405280600681526020017f5441594c4f52000000000000000000000000000000000000000000000000000081525081600290816100ad919061072f565b5080600390816100bd919061072f565b506100cc6101eb60201b60201c565b5f819055506100df6101eb60201b60201c565b6100ed6101f360201b60201c565b101561010a5761010963fed8210f60e01b61021a60201b60201c565b5b50505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361017c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610173919061080d565b60405180910390fd5b61018b8161022260201b60201c565b5082600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600a8190555080600c90816101e2919061072f565b50505050610826565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b805f5260045ffd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61031f826102f6565b9050919050565b61032f81610315565b8114610339575f80fd5b50565b5f8151905061034a81610326565b92915050565b5f819050919050565b61036281610350565b811461036c575f80fd5b50565b5f8151905061037d81610359565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6103d18261038b565b810181811067ffffffffffffffff821117156103f0576103ef61039b565b5b80604052505050565b5f6104026102e5565b905061040e82826103c8565b919050565b5f67ffffffffffffffff82111561042d5761042c61039b565b5b6104368261038b565b9050602081019050919050565b8281835e5f83830152505050565b5f61046361045e84610413565b6103f9565b90508281526020810184848401111561047f5761047e610387565b5b61048a848285610443565b509392505050565b5f82601f8301126104a6576104a5610383565b5b81516104b6848260208601610451565b91505092915050565b5f805f606084860312156104d6576104d56102ee565b5b5f6104e38682870161033c565b93505060206104f48682870161036f565b925050604084015167ffffffffffffffff811115610515576105146102f2565b5b61052186828701610492565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061057957607f821691505b60208210810361058c5761058b610535565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105b3565b6105f886836105b3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61063361062e61062984610350565b610610565b610350565b9050919050565b5f819050919050565b61064c83610619565b6106606106588261063a565b8484546105bf565b825550505050565b5f90565b610674610668565b61067f818484610643565b505050565b5b818110156106a2576106975f8261066c565b600181019050610685565b5050565b601f8211156106e7576106b881610592565b6106c1846105a4565b810160208510156106d0578190505b6106e46106dc856105a4565b830182610684565b50505b505050565b5f82821c905092915050565b5f6107075f19846008026106ec565b1980831691505092915050565b5f61071f83836106f8565b9150826002028217905092915050565b6107388261052b565b67ffffffffffffffff8111156107515761075061039b565b5b61075b8254610562565b6107668282856106a6565b5f60209050601f831160018114610797575f8415610785578287015190505b61078f8582610714565b8655506107f6565b601f1984166107a586610592565b5f5b828110156107cc578489015182556001820191506020850194506020810190506107a7565b868310156107e957848901516107e5601f8916826106f8565b8355505b6001600288020188555050505b505050505050565b61080781610315565b82525050565b5f6020820190506108205f8301846107fe565b92915050565b61284d806108335f395ff3fe60806040526004361061019b575f3560e01c80638da5cb5b116100eb578063b88d4fde11610089578063efbd73f411610063578063efbd73f41461055d578063f2fde38b14610585578063f4a0a528146105ad578063fdbf9ef2146105d55761019b565b8063b88d4fde146104c9578063c87b56dd146104e5578063e985e9c5146105215761019b565b8063a22cb465116100c5578063a22cb46514610423578063ae6155501461044b578063b36c128414610475578063b4a012391461049f5761019b565b80638da5cb5b146103b357806395d89b41146103dd578063a0712d68146104075761019b565b806323b872dd1161015857806342842e0e1161013257806342842e0e146103095780636352211e1461032557806370a0823114610361578063715018a61461039d5761019b565b806323b872dd146102af57806333ea51a8146102cb5780633ccfd60b146102f35761019b565b806301ffc9a71461019f57806306fdde03146101db578063081812fc14610205578063095ea7b3146102415780631130630c1461025d57806318160ddd14610285575b5f80fd5b3480156101aa575f80fd5b506101c560048036038101906101c09190611bc1565b6105ff565b6040516101d29190611c06565b60405180910390f35b3480156101e6575f80fd5b506101ef610690565b6040516101fc9190611c8f565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190611ce2565b610720565b6040516102389190611d4c565b60405180910390f35b61025b60048036038101906102569190611d8f565b610779565b005b348015610268575f80fd5b50610283600480360381019061027e9190611ef9565b610789565b005b348015610290575f80fd5b506102996107a4565b6040516102a69190611f4f565b60405180910390f35b6102c960048036038101906102c49190611f68565b6107ef565b005b3480156102d6575f80fd5b506102f160048036038101906102ec9190611fb8565b610a9a565b005b3480156102fe575f80fd5b50610307610ae5565b005b610323600480360381019061031e9190611f68565b610b54565b005b348015610330575f80fd5b5061034b60048036038101906103469190611ce2565b610b73565b6040516103589190611d4c565b60405180910390f35b34801561036c575f80fd5b5061038760048036038101906103829190611fb8565b610b84565b6040516103949190611f4f565b60405180910390f35b3480156103a8575f80fd5b506103b1610c18565b005b3480156103be575f80fd5b506103c7610c2b565b6040516103d49190611d4c565b60405180910390f35b3480156103e8575f80fd5b506103f1610c53565b6040516103fe9190611c8f565b60405180910390f35b610421600480360381019061041c9190611ce2565b610ce3565b005b34801561042e575f80fd5b506104496004803603810190610444919061200d565b610de2565b005b348015610456575f80fd5b5061045f610ee8565b60405161046c9190611c8f565b60405180910390f35b348015610480575f80fd5b50610489610f74565b6040516104969190611f4f565b60405180910390f35b3480156104aa575f80fd5b506104b3610f7a565b6040516104c09190611d4c565b60405180910390f35b6104e360048036038101906104de91906120e9565b610f9f565b005b3480156104f0575f80fd5b5061050b60048036038101906105069190611ce2565b610ff0565b6040516105189190611c8f565b60405180910390f35b34801561052c575f80fd5b5061054760048036038101906105429190612169565b6110ca565b6040516105549190611c06565b60405180910390f35b348015610568575f80fd5b50610583600480360381019061057e91906121a7565b611158565b005b348015610590575f80fd5b506105ab60048036038101906105a69190611fb8565b611209565b005b3480156105b8575f80fd5b506105d360048036038101906105ce9190611ce2565b61128d565b005b3480156105e0575f80fd5b506105e961129f565b6040516105f69190611f4f565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106895750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461069f90612212565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb90612212565b80156107165780601f106106ed57610100808354040283529160200191610716565b820191905f5260205f20905b8154815290600101906020018083116106f957829003601f168201915b5050505050905090565b5f61072a826112a5565b61073f5761073e63cf4700e460e01b611348565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61078582826001611350565b5050565b61079161147a565b80600c90816107a091906123df565b5050565b5f6107ad611501565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6107df611509565b146107ec57600854810190505b90565b5f6107f982611530565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461086e5761086d63a114810060e01b611348565b5b5f806108798461163f565b9150915061088f818761088a611662565b611669565b6108ba576108a48661089f611662565b6110ca565b6108b9576108b86359c896be60e01b611348565b5b5b6108c786868660016116ac565b80156108d1575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610999856109758888876116b2565b7c0200000000000000000000000000000000000000000000000000000000176116d9565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610a15575f6001850190505f60045f8381526020019081526020015f205403610a13575f548114610a12578360045f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610a8457610a8363ea553b3460e01b611348565b5b610a918787876001611703565b50505050505050565b610aa261147a565b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610aed61147a565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610b51573d5f803e3d5ffd5b50565b610b6e83838360405180602001604052805f815250610f9f565b505050565b5f610b7d82611530565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc957610bc8638f4eb60460e01b611348565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610c2061147a565b610c295f611709565b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c6290612212565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e90612212565b8015610cd95780601f10610cb057610100808354040283529160200191610cd9565b820191905f5260205f20905b815481529060010190602001808311610cbc57829003601f168201915b5050505050905090565b805f8111610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d906124f8565b60405180910390fd5b6101f481610d326107a4565b610d3c9190612543565b1115610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d74906125c0565b60405180910390fd5b81600a54610d8b91906125de565b341015610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490612669565b60405180910390fd5b610dde610dd86117cc565b836117d3565b5050565b8060075f610dee611662565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e97611662565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610edc9190611c06565b60405180910390a35050565b600c8054610ef590612212565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2190612212565b8015610f6c5780601f10610f4357610100808354040283529160200191610f6c565b820191905f5260205f20905b815481529060010190602001808311610f4f57829003601f168201915b505050505081565b6101f481565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610faa8484846107ef565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14610fea57610fd4848484846117f0565b610fe957610fe863d1a57ed660e01b611348565b5b5b50505050565b6060610ffb826112a5565b61103a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611031906126f7565b60405180910390fd5b600c805461104790612212565b80601f016020809104026020016040519081016040528092919081815260200182805461107390612212565b80156110be5780601f10611095576101008083540402835291602001916110be565b820191905f5260205f20905b8154815290600101906020018083116110a157829003601f168201915b50505050509050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b815f811161119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906124f8565b60405180910390fd5b6101f4816111a76107a4565b6111b19190612543565b11156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906125c0565b60405180910390fd5b6111fa61147a565b61120482846117d3565b505050565b61121161147a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611281575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016112789190611d4c565b60405180910390fd5b61128a81611709565b50565b61129561147a565b80600a8190555050565b600a5481565b5f816112af611501565b11611342576112bc611509565b8211156112e4576112dd60045f8481526020019081526020015f205461191a565b9050611343565b5f54821015611341575f5b5f60045f8581526020019081526020015f20549150810361131b578261131490612715565b92506112ef565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f61135a83610b73565b905081801561139c57508073ffffffffffffffffffffffffffffffffffffffff16611383611662565b73ffffffffffffffffffffffffffffffffffffffff1614155b156113c8576113b2816113ad611662565b6110ca565b6113c7576113c663cfb3b94260e01b611348565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b6114826117cc565b73ffffffffffffffffffffffffffffffffffffffff166114a0610c2b565b73ffffffffffffffffffffffffffffffffffffffff16146114ff576114c36117cc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016114f69190611d4c565b60405180910390fd5b565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f8161153a611501565b116116295760045f8381526020019081526020015f2054905061155b611509565b8211156115805761156b8161191a565b61163a5761157f63df2d9b4260e01b611348565b5b5f8103611601575f5482106115a05761159f63df2d9b4260e01b611348565b5b5b60045f836001900393508381526020019081526020015f205490505f8103156115fc575f7c01000000000000000000000000000000000000000000000000000000008216031561163a576115fb63df2d9b4260e01b611348565b5b6115a1565b5f7c01000000000000000000000000000000000000000000000000000000008216031561163a575b61163963df2d9b4260e01b611348565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86116c886868461195a565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b6117ec828260405180602001604052805f815250611962565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611815611662565b8786866040518563ffffffff1660e01b8152600401611837949392919061278e565b6020604051808303815f875af192505050801561187257506040513d601f19601f8201168201806040525081019061186f91906127ec565b60015b6118c7573d805f81146118a0576040519150601f19603f3d011682016040523d82523d5f602084013e6118a5565b606091505b505f8151036118bf576118be63d1a57ed660e01b611348565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f9392505050565b61196c83836119d8565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146119d3575f805490505f83820390505b6119a85f8683806001019450866117f0565b6119bd576119bc63d1a57ed660e01b611348565b5b81811061199657815f54146119d0575f80fd5b50505b505050565b5f805490505f82036119f5576119f463b562e8dd60e01b611348565b5b611a015f8483856116ac565b611a1f83611a105f865f6116b2565b611a1985611b4c565b176116d9565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f8103611ad057611acf632e07630060e01b611348565b5b5f83830190505f839050611ae2611509565b600183031115611afd57611afc6381647e3a60e01b611348565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103611afe57815f81905550505050611b475f848385611703565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ba081611b6c565b8114611baa575f80fd5b50565b5f81359050611bbb81611b97565b92915050565b5f60208284031215611bd657611bd5611b64565b5b5f611be384828501611bad565b91505092915050565b5f8115159050919050565b611c0081611bec565b82525050565b5f602082019050611c195f830184611bf7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c6182611c1f565b611c6b8185611c29565b9350611c7b818560208601611c39565b611c8481611c47565b840191505092915050565b5f6020820190508181035f830152611ca78184611c57565b905092915050565b5f819050919050565b611cc181611caf565b8114611ccb575f80fd5b50565b5f81359050611cdc81611cb8565b92915050565b5f60208284031215611cf757611cf6611b64565b5b5f611d0484828501611cce565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d3682611d0d565b9050919050565b611d4681611d2c565b82525050565b5f602082019050611d5f5f830184611d3d565b92915050565b611d6e81611d2c565b8114611d78575f80fd5b50565b5f81359050611d8981611d65565b92915050565b5f8060408385031215611da557611da4611b64565b5b5f611db285828601611d7b565b9250506020611dc385828601611cce565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611e0b82611c47565b810181811067ffffffffffffffff82111715611e2a57611e29611dd5565b5b80604052505050565b5f611e3c611b5b565b9050611e488282611e02565b919050565b5f67ffffffffffffffff821115611e6757611e66611dd5565b5b611e7082611c47565b9050602081019050919050565b828183375f83830152505050565b5f611e9d611e9884611e4d565b611e33565b905082815260208101848484011115611eb957611eb8611dd1565b5b611ec4848285611e7d565b509392505050565b5f82601f830112611ee057611edf611dcd565b5b8135611ef0848260208601611e8b565b91505092915050565b5f60208284031215611f0e57611f0d611b64565b5b5f82013567ffffffffffffffff811115611f2b57611f2a611b68565b5b611f3784828501611ecc565b91505092915050565b611f4981611caf565b82525050565b5f602082019050611f625f830184611f40565b92915050565b5f805f60608486031215611f7f57611f7e611b64565b5b5f611f8c86828701611d7b565b9350506020611f9d86828701611d7b565b9250506040611fae86828701611cce565b9150509250925092565b5f60208284031215611fcd57611fcc611b64565b5b5f611fda84828501611d7b565b91505092915050565b611fec81611bec565b8114611ff6575f80fd5b50565b5f8135905061200781611fe3565b92915050565b5f806040838503121561202357612022611b64565b5b5f61203085828601611d7b565b925050602061204185828601611ff9565b9150509250929050565b5f67ffffffffffffffff82111561206557612064611dd5565b5b61206e82611c47565b9050602081019050919050565b5f61208d6120888461204b565b611e33565b9050828152602081018484840111156120a9576120a8611dd1565b5b6120b4848285611e7d565b509392505050565b5f82601f8301126120d0576120cf611dcd565b5b81356120e084826020860161207b565b91505092915050565b5f805f806080858703121561210157612100611b64565b5b5f61210e87828801611d7b565b945050602061211f87828801611d7b565b935050604061213087828801611cce565b925050606085013567ffffffffffffffff81111561215157612150611b68565b5b61215d878288016120bc565b91505092959194509250565b5f806040838503121561217f5761217e611b64565b5b5f61218c85828601611d7b565b925050602061219d85828601611d7b565b9150509250929050565b5f80604083850312156121bd576121bc611b64565b5b5f6121ca85828601611cce565b92505060206121db85828601611d7b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061222957607f821691505b60208210810361223c5761223b6121e5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261229e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612263565b6122a88683612263565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6122e36122de6122d984611caf565b6122c0565b611caf565b9050919050565b5f819050919050565b6122fc836122c9565b612310612308826122ea565b84845461226f565b825550505050565b5f90565b612324612318565b61232f8184846122f3565b505050565b5b81811015612352576123475f8261231c565b600181019050612335565b5050565b601f8211156123975761236881612242565b61237184612254565b81016020851015612380578190505b61239461238c85612254565b830182612334565b50505b505050565b5f82821c905092915050565b5f6123b75f198460080261239c565b1980831691505092915050565b5f6123cf83836123a8565b9150826002028217905092915050565b6123e882611c1f565b67ffffffffffffffff81111561240157612400611dd5565b5b61240b8254612212565b612416828285612356565b5f60209050601f831160018114612447575f8415612435578287015190505b61243f85826123c4565b8655506124a6565b601f19841661245586612242565b5f5b8281101561247c57848901518255600182019150602085019450602081019050612457565b868310156124995784890151612495601f8916826123a8565b8355505b6001600288020188555050505b505050505050565b7f496e76616c6964206d696e7420616d6f756e74210000000000000000000000005f82015250565b5f6124e2601483611c29565b91506124ed826124ae565b602082019050919050565b5f6020820190508181035f83015261250f816124d6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61254d82611caf565b915061255883611caf565b92508282019050808211156125705761256f612516565b5b92915050565b7f4d6178206d696e746161626c6520737570706c792065786365656465642100005f82015250565b5f6125aa601e83611c29565b91506125b582612576565b602082019050919050565b5f6020820190508181035f8301526125d78161259e565b9050919050565b5f6125e882611caf565b91506125f383611caf565b925082820261260181611caf565b9150828204841483151761261857612617612516565b5b5092915050565b7f496e73756666696369656e742066756e647321000000000000000000000000005f82015250565b5f612653601383611c29565b915061265e8261261f565b602082019050919050565b5f6020820190508181035f83015261268081612647565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f6126e1602f83611c29565b91506126ec82612687565b604082019050919050565b5f6020820190508181035f83015261270e816126d5565b9050919050565b5f61271f82611caf565b91505f820361273157612730612516565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6127608261273c565b61276a8185612746565b935061277a818560208601611c39565b61278381611c47565b840191505092915050565b5f6080820190506127a15f830187611d3d565b6127ae6020830186611d3d565b6127bb6040830185611f40565b81810360608301526127cd8184612756565b905095945050505050565b5f815190506127e681611b97565b92915050565b5f6020828403121561280157612800611b64565b5b5f61280e848285016127d8565b9150509291505056fea26469706673582212208425aa249a4791a8fddc4d638d8ac51cc3175becaad68a5247ffe43b62a9458a64736f6c634300081900330000000000000000000000006c3c3224350ad7d1e2855339c2f509aa91c4dca2000000000000000000000000000000000000000000000000007c58508723800000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d5954505866397754503933423835563232553152436b52794a756356546a796b556e53324e664648716836412f6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019b575f3560e01c80638da5cb5b116100eb578063b88d4fde11610089578063efbd73f411610063578063efbd73f41461055d578063f2fde38b14610585578063f4a0a528146105ad578063fdbf9ef2146105d55761019b565b8063b88d4fde146104c9578063c87b56dd146104e5578063e985e9c5146105215761019b565b8063a22cb465116100c5578063a22cb46514610423578063ae6155501461044b578063b36c128414610475578063b4a012391461049f5761019b565b80638da5cb5b146103b357806395d89b41146103dd578063a0712d68146104075761019b565b806323b872dd1161015857806342842e0e1161013257806342842e0e146103095780636352211e1461032557806370a0823114610361578063715018a61461039d5761019b565b806323b872dd146102af57806333ea51a8146102cb5780633ccfd60b146102f35761019b565b806301ffc9a71461019f57806306fdde03146101db578063081812fc14610205578063095ea7b3146102415780631130630c1461025d57806318160ddd14610285575b5f80fd5b3480156101aa575f80fd5b506101c560048036038101906101c09190611bc1565b6105ff565b6040516101d29190611c06565b60405180910390f35b3480156101e6575f80fd5b506101ef610690565b6040516101fc9190611c8f565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190611ce2565b610720565b6040516102389190611d4c565b60405180910390f35b61025b60048036038101906102569190611d8f565b610779565b005b348015610268575f80fd5b50610283600480360381019061027e9190611ef9565b610789565b005b348015610290575f80fd5b506102996107a4565b6040516102a69190611f4f565b60405180910390f35b6102c960048036038101906102c49190611f68565b6107ef565b005b3480156102d6575f80fd5b506102f160048036038101906102ec9190611fb8565b610a9a565b005b3480156102fe575f80fd5b50610307610ae5565b005b610323600480360381019061031e9190611f68565b610b54565b005b348015610330575f80fd5b5061034b60048036038101906103469190611ce2565b610b73565b6040516103589190611d4c565b60405180910390f35b34801561036c575f80fd5b5061038760048036038101906103829190611fb8565b610b84565b6040516103949190611f4f565b60405180910390f35b3480156103a8575f80fd5b506103b1610c18565b005b3480156103be575f80fd5b506103c7610c2b565b6040516103d49190611d4c565b60405180910390f35b3480156103e8575f80fd5b506103f1610c53565b6040516103fe9190611c8f565b60405180910390f35b610421600480360381019061041c9190611ce2565b610ce3565b005b34801561042e575f80fd5b506104496004803603810190610444919061200d565b610de2565b005b348015610456575f80fd5b5061045f610ee8565b60405161046c9190611c8f565b60405180910390f35b348015610480575f80fd5b50610489610f74565b6040516104969190611f4f565b60405180910390f35b3480156104aa575f80fd5b506104b3610f7a565b6040516104c09190611d4c565b60405180910390f35b6104e360048036038101906104de91906120e9565b610f9f565b005b3480156104f0575f80fd5b5061050b60048036038101906105069190611ce2565b610ff0565b6040516105189190611c8f565b60405180910390f35b34801561052c575f80fd5b5061054760048036038101906105429190612169565b6110ca565b6040516105549190611c06565b60405180910390f35b348015610568575f80fd5b50610583600480360381019061057e91906121a7565b611158565b005b348015610590575f80fd5b506105ab60048036038101906105a69190611fb8565b611209565b005b3480156105b8575f80fd5b506105d360048036038101906105ce9190611ce2565b61128d565b005b3480156105e0575f80fd5b506105e961129f565b6040516105f69190611f4f565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106895750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461069f90612212565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb90612212565b80156107165780601f106106ed57610100808354040283529160200191610716565b820191905f5260205f20905b8154815290600101906020018083116106f957829003601f168201915b5050505050905090565b5f61072a826112a5565b61073f5761073e63cf4700e460e01b611348565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61078582826001611350565b5050565b61079161147a565b80600c90816107a091906123df565b5050565b5f6107ad611501565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6107df611509565b146107ec57600854810190505b90565b5f6107f982611530565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461086e5761086d63a114810060e01b611348565b5b5f806108798461163f565b9150915061088f818761088a611662565b611669565b6108ba576108a48661089f611662565b6110ca565b6108b9576108b86359c896be60e01b611348565b5b5b6108c786868660016116ac565b80156108d1575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610999856109758888876116b2565b7c0200000000000000000000000000000000000000000000000000000000176116d9565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610a15575f6001850190505f60045f8381526020019081526020015f205403610a13575f548114610a12578360045f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610a8457610a8363ea553b3460e01b611348565b5b610a918787876001611703565b50505050505050565b610aa261147a565b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610aed61147a565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610b51573d5f803e3d5ffd5b50565b610b6e83838360405180602001604052805f815250610f9f565b505050565b5f610b7d82611530565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc957610bc8638f4eb60460e01b611348565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610c2061147a565b610c295f611709565b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c6290612212565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e90612212565b8015610cd95780601f10610cb057610100808354040283529160200191610cd9565b820191905f5260205f20905b815481529060010190602001808311610cbc57829003601f168201915b5050505050905090565b805f8111610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d906124f8565b60405180910390fd5b6101f481610d326107a4565b610d3c9190612543565b1115610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d74906125c0565b60405180910390fd5b81600a54610d8b91906125de565b341015610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490612669565b60405180910390fd5b610dde610dd86117cc565b836117d3565b5050565b8060075f610dee611662565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e97611662565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610edc9190611c06565b60405180910390a35050565b600c8054610ef590612212565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2190612212565b8015610f6c5780601f10610f4357610100808354040283529160200191610f6c565b820191905f5260205f20905b815481529060010190602001808311610f4f57829003601f168201915b505050505081565b6101f481565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610faa8484846107ef565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14610fea57610fd4848484846117f0565b610fe957610fe863d1a57ed660e01b611348565b5b5b50505050565b6060610ffb826112a5565b61103a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611031906126f7565b60405180910390fd5b600c805461104790612212565b80601f016020809104026020016040519081016040528092919081815260200182805461107390612212565b80156110be5780601f10611095576101008083540402835291602001916110be565b820191905f5260205f20905b8154815290600101906020018083116110a157829003601f168201915b50505050509050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b815f811161119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906124f8565b60405180910390fd5b6101f4816111a76107a4565b6111b19190612543565b11156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906125c0565b60405180910390fd5b6111fa61147a565b61120482846117d3565b505050565b61121161147a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611281575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016112789190611d4c565b60405180910390fd5b61128a81611709565b50565b61129561147a565b80600a8190555050565b600a5481565b5f816112af611501565b11611342576112bc611509565b8211156112e4576112dd60045f8481526020019081526020015f205461191a565b9050611343565b5f54821015611341575f5b5f60045f8581526020019081526020015f20549150810361131b578261131490612715565b92506112ef565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f61135a83610b73565b905081801561139c57508073ffffffffffffffffffffffffffffffffffffffff16611383611662565b73ffffffffffffffffffffffffffffffffffffffff1614155b156113c8576113b2816113ad611662565b6110ca565b6113c7576113c663cfb3b94260e01b611348565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b6114826117cc565b73ffffffffffffffffffffffffffffffffffffffff166114a0610c2b565b73ffffffffffffffffffffffffffffffffffffffff16146114ff576114c36117cc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016114f69190611d4c565b60405180910390fd5b565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f8161153a611501565b116116295760045f8381526020019081526020015f2054905061155b611509565b8211156115805761156b8161191a565b61163a5761157f63df2d9b4260e01b611348565b5b5f8103611601575f5482106115a05761159f63df2d9b4260e01b611348565b5b5b60045f836001900393508381526020019081526020015f205490505f8103156115fc575f7c01000000000000000000000000000000000000000000000000000000008216031561163a576115fb63df2d9b4260e01b611348565b5b6115a1565b5f7c01000000000000000000000000000000000000000000000000000000008216031561163a575b61163963df2d9b4260e01b611348565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86116c886868461195a565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b6117ec828260405180602001604052805f815250611962565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611815611662565b8786866040518563ffffffff1660e01b8152600401611837949392919061278e565b6020604051808303815f875af192505050801561187257506040513d601f19601f8201168201806040525081019061186f91906127ec565b60015b6118c7573d805f81146118a0576040519150601f19603f3d011682016040523d82523d5f602084013e6118a5565b606091505b505f8151036118bf576118be63d1a57ed660e01b611348565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f9392505050565b61196c83836119d8565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146119d3575f805490505f83820390505b6119a85f8683806001019450866117f0565b6119bd576119bc63d1a57ed660e01b611348565b5b81811061199657815f54146119d0575f80fd5b50505b505050565b5f805490505f82036119f5576119f463b562e8dd60e01b611348565b5b611a015f8483856116ac565b611a1f83611a105f865f6116b2565b611a1985611b4c565b176116d9565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f8103611ad057611acf632e07630060e01b611348565b5b5f83830190505f839050611ae2611509565b600183031115611afd57611afc6381647e3a60e01b611348565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103611afe57815f81905550505050611b475f848385611703565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ba081611b6c565b8114611baa575f80fd5b50565b5f81359050611bbb81611b97565b92915050565b5f60208284031215611bd657611bd5611b64565b5b5f611be384828501611bad565b91505092915050565b5f8115159050919050565b611c0081611bec565b82525050565b5f602082019050611c195f830184611bf7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c6182611c1f565b611c6b8185611c29565b9350611c7b818560208601611c39565b611c8481611c47565b840191505092915050565b5f6020820190508181035f830152611ca78184611c57565b905092915050565b5f819050919050565b611cc181611caf565b8114611ccb575f80fd5b50565b5f81359050611cdc81611cb8565b92915050565b5f60208284031215611cf757611cf6611b64565b5b5f611d0484828501611cce565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d3682611d0d565b9050919050565b611d4681611d2c565b82525050565b5f602082019050611d5f5f830184611d3d565b92915050565b611d6e81611d2c565b8114611d78575f80fd5b50565b5f81359050611d8981611d65565b92915050565b5f8060408385031215611da557611da4611b64565b5b5f611db285828601611d7b565b9250506020611dc385828601611cce565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611e0b82611c47565b810181811067ffffffffffffffff82111715611e2a57611e29611dd5565b5b80604052505050565b5f611e3c611b5b565b9050611e488282611e02565b919050565b5f67ffffffffffffffff821115611e6757611e66611dd5565b5b611e7082611c47565b9050602081019050919050565b828183375f83830152505050565b5f611e9d611e9884611e4d565b611e33565b905082815260208101848484011115611eb957611eb8611dd1565b5b611ec4848285611e7d565b509392505050565b5f82601f830112611ee057611edf611dcd565b5b8135611ef0848260208601611e8b565b91505092915050565b5f60208284031215611f0e57611f0d611b64565b5b5f82013567ffffffffffffffff811115611f2b57611f2a611b68565b5b611f3784828501611ecc565b91505092915050565b611f4981611caf565b82525050565b5f602082019050611f625f830184611f40565b92915050565b5f805f60608486031215611f7f57611f7e611b64565b5b5f611f8c86828701611d7b565b9350506020611f9d86828701611d7b565b9250506040611fae86828701611cce565b9150509250925092565b5f60208284031215611fcd57611fcc611b64565b5b5f611fda84828501611d7b565b91505092915050565b611fec81611bec565b8114611ff6575f80fd5b50565b5f8135905061200781611fe3565b92915050565b5f806040838503121561202357612022611b64565b5b5f61203085828601611d7b565b925050602061204185828601611ff9565b9150509250929050565b5f67ffffffffffffffff82111561206557612064611dd5565b5b61206e82611c47565b9050602081019050919050565b5f61208d6120888461204b565b611e33565b9050828152602081018484840111156120a9576120a8611dd1565b5b6120b4848285611e7d565b509392505050565b5f82601f8301126120d0576120cf611dcd565b5b81356120e084826020860161207b565b91505092915050565b5f805f806080858703121561210157612100611b64565b5b5f61210e87828801611d7b565b945050602061211f87828801611d7b565b935050604061213087828801611cce565b925050606085013567ffffffffffffffff81111561215157612150611b68565b5b61215d878288016120bc565b91505092959194509250565b5f806040838503121561217f5761217e611b64565b5b5f61218c85828601611d7b565b925050602061219d85828601611d7b565b9150509250929050565b5f80604083850312156121bd576121bc611b64565b5b5f6121ca85828601611cce565b92505060206121db85828601611d7b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061222957607f821691505b60208210810361223c5761223b6121e5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261229e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612263565b6122a88683612263565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6122e36122de6122d984611caf565b6122c0565b611caf565b9050919050565b5f819050919050565b6122fc836122c9565b612310612308826122ea565b84845461226f565b825550505050565b5f90565b612324612318565b61232f8184846122f3565b505050565b5b81811015612352576123475f8261231c565b600181019050612335565b5050565b601f8211156123975761236881612242565b61237184612254565b81016020851015612380578190505b61239461238c85612254565b830182612334565b50505b505050565b5f82821c905092915050565b5f6123b75f198460080261239c565b1980831691505092915050565b5f6123cf83836123a8565b9150826002028217905092915050565b6123e882611c1f565b67ffffffffffffffff81111561240157612400611dd5565b5b61240b8254612212565b612416828285612356565b5f60209050601f831160018114612447575f8415612435578287015190505b61243f85826123c4565b8655506124a6565b601f19841661245586612242565b5f5b8281101561247c57848901518255600182019150602085019450602081019050612457565b868310156124995784890151612495601f8916826123a8565b8355505b6001600288020188555050505b505050505050565b7f496e76616c6964206d696e7420616d6f756e74210000000000000000000000005f82015250565b5f6124e2601483611c29565b91506124ed826124ae565b602082019050919050565b5f6020820190508181035f83015261250f816124d6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61254d82611caf565b915061255883611caf565b92508282019050808211156125705761256f612516565b5b92915050565b7f4d6178206d696e746161626c6520737570706c792065786365656465642100005f82015250565b5f6125aa601e83611c29565b91506125b582612576565b602082019050919050565b5f6020820190508181035f8301526125d78161259e565b9050919050565b5f6125e882611caf565b91506125f383611caf565b925082820261260181611caf565b9150828204841483151761261857612617612516565b5b5092915050565b7f496e73756666696369656e742066756e647321000000000000000000000000005f82015250565b5f612653601383611c29565b915061265e8261261f565b602082019050919050565b5f6020820190508181035f83015261268081612647565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f6126e1602f83611c29565b91506126ec82612687565b604082019050919050565b5f6020820190508181035f83015261270e816126d5565b9050919050565b5f61271f82611caf565b91505f820361273157612730612516565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6127608261273c565b61276a8185612746565b935061277a818560208601611c39565b61278381611c47565b840191505092915050565b5f6080820190506127a15f830187611d3d565b6127ae6020830186611d3d565b6127bb6040830185611f40565b81810360608301526127cd8184612756565b905095945050505050565b5f815190506127e681611b97565b92915050565b5f6020828403121561280157612800611b64565b5b5f61280e848285016127d8565b9150509291505056fea26469706673582212208425aa249a4791a8fddc4d638d8ac51cc3175becaad68a5247ffe43b62a9458a64736f6c63430008190033

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

0000000000000000000000006c3c3224350ad7d1e2855339c2f509aa91c4dca2000000000000000000000000000000000000000000000000007c58508723800000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d5954505866397754503933423835563232553152436b52794a756356546a796b556e53324e664648716836412f6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _InitialOwner (address): 0x6C3C3224350Ad7d1e2855339C2F509AA91C4dcA2
Arg [1] : _MintPrice (uint256): 35000000000000000
Arg [2] : _MetadataUri (string): ipfs://QmYTPXf9wTP93B85V22U1RCkRyJucVTjykUnS2NfFHqh6A/metadata.json

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000006c3c3224350ad7d1e2855339c2f509aa91c4dca2
Arg [1] : 000000000000000000000000000000000000000000000000007c585087238000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f516d5954505866397754503933423835563232553152436b52
Arg [5] : 794a756356546a796b556e53324e664648716836412f6d657461646174612e6a
Arg [6] : 736f6e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

65378:1960:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24785:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25687:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32927:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32644:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66639:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20889:573;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37199:3523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67087:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67199:135;;;;;;;;;;;;;:::i;:::-;;40818:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27089:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22613:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3361:103;;;;;;;;;;;;;:::i;:::-;;2686:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25863:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66252:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33494:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65541:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65428:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65509:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41609:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66848:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33885:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66454:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3619:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66130:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65471:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24785:639;24870:4;25209:10;25194:25;;:11;:25;;;;:102;;;;25286:10;25271:25;;:11;:25;;;;25194:102;:179;;;;25363:10;25348:25;;:11;:25;;;;25194:179;25174:199;;24785:639;;;:::o;25687:100::-;25741:13;25774:5;25767:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25687:100;:::o;32927:227::-;33003:7;33028:16;33036:7;33028;:16::i;:::-;33023:73;;33046:50;33054:41;;;33046:7;:50::i;:::-;33023:73;33116:15;:24;33132:7;33116:24;;;;;;;;;;;:30;;;;;;;;;;;;33109:37;;32927:227;;;:::o;32644:124::-;32733:27;32742:2;32746:7;32755:4;32733:8;:27::i;:::-;32644:124;;:::o;66639:107::-;2572:13;:11;:13::i;:::-;66729:12:::1;66715:11;:26;;;;;;:::i;:::-;;66639:107:::0;:::o;20889:573::-;20950:14;21348:15;:13;:15::i;:::-;21333:12;;21317:13;;:28;:46;21308:55;;21403:17;21382;:15;:17::i;:::-;:38;21378:65;;21432:11;;21422:21;;;;21378:65;20889:573;:::o;37199:3523::-;37341:27;37371;37390:7;37371:18;:27::i;:::-;37341:57;;16831:14;37542:4;37526:22;;:41;37503:66;;37627:4;37586:45;;37602:19;37586:45;;;37582:95;;37633:44;37641:35;;;37633:7;:44::i;:::-;37582:95;37691:27;37720:23;37747:35;37774:7;37747:26;:35::i;:::-;37690:92;;;;37882:68;37907:15;37924:4;37930:19;:17;:19::i;:::-;37882:24;:68::i;:::-;37877:189;;37970:43;37987:4;37993:19;:17;:19::i;:::-;37970:16;:43::i;:::-;37965:101;;38015:51;38023:42;;;38015:7;:51::i;:::-;37965:101;37877:189;38079:43;38101:4;38107:2;38111:7;38120:1;38079:21;:43::i;:::-;38215:15;38212:160;;;38355:1;38334:19;38327:30;38212:160;38752:18;:24;38771:4;38752:24;;;;;;;;;;;;;;;;38750:26;;;;;;;;;;;;38821:18;:22;38840:2;38821:22;;;;;;;;;;;;;;;;38819:24;;;;;;;;;;;39143:146;39180:2;39229:45;39244:4;39250:2;39254:19;39229:14;:45::i;:::-;16429:8;39201:73;39143:18;:146::i;:::-;39114:17;:26;39132:7;39114:26;;;;;;;;;;;:175;;;;39460:1;16429:8;39409:19;:47;:52;39405:627;;39482:19;39514:1;39504:7;:11;39482:33;;39671:1;39637:17;:30;39655:11;39637:30;;;;;;;;;;;;:35;39633:384;;39775:13;;39760:11;:28;39756:242;;39955:19;39922:17;:30;39940:11;39922:30;;;;;;;;;;;:52;;;;39756:242;39633:384;39463:569;39405:627;40145:16;16831:14;40180:2;40164:20;;:39;40145:58;;40544:7;40508:8;40474:4;40416:25;40361:1;40304;40281:299;40617:1;40605:8;:13;40601:58;;40620:39;40628:30;;;40620:7;:39::i;:::-;40601:58;40672:42;40693:4;40699:2;40703:7;40712:1;40672:20;:42::i;:::-;37330:3392;;;;37199:3523;;;:::o;67087:107::-;2572:13;:11;:13::i;:::-;67175:14:::1;67159:13;;:30;;;;;;;;;;;;;;;;;;67087:107:::0;:::o;67199:135::-;2572:13;:11;:13::i;:::-;67249::::1;;;;;;;;;;;67241:31;;:54;67273:21;67241:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;67199:135::o:0;40818:193::-;40964:39;40981:4;40987:2;40991:7;40964:39;;;;;;;;;;;;:16;:39::i;:::-;40818:193;;;:::o;27089:152::-;27161:7;27204:27;27223:7;27204:18;:27::i;:::-;27181:52;;27089:152;;;:::o;22613:242::-;22685:7;22726:1;22709:19;;:5;:19;;;22705:69;;22730:44;22738:35;;;22730:7;:44::i;:::-;22705:69;15373:13;22792:18;:25;22811:5;22792:25;;;;;;;;;;;;;;;;:55;22785:62;;22613:242;;;:::o;3361:103::-;2572:13;:11;:13::i;:::-;3426:30:::1;3453:1;3426:18;:30::i;:::-;3361:103::o:0;2686:87::-;2732:7;2759:6;;;;;;;;;;;2752:13;;2686:87;:::o;25863:104::-;25919:13;25952:7;25945:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25863:104;:::o;66252:197::-;66317:11;65686:1;65672:11;:15;65664:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;65464:3;65741:11;65725:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;65717:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;66368:11:::1;66356:9;;:23;;;;:::i;:::-;66343:9;:36;;66335:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66408:36;66418:12;:10;:12::i;:::-;66432:11;66408:9;:36::i;:::-;66252:197:::0;;:::o;33494:234::-;33641:8;33589:18;:39;33608:19;:17;:19::i;:::-;33589:39;;;;;;;;;;;;;;;:49;33629:8;33589:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33701:8;33665:55;;33680:19;:17;:19::i;:::-;33665:55;;;33711:8;33665:55;;;;;;:::i;:::-;;;;;;;;33494:234;;:::o;65541:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65428:39::-;65464:3;65428:39;:::o;65509:28::-;;;;;;;;;;;;;:::o;41609:416::-;41784:31;41797:4;41803:2;41807:7;41784:12;:31::i;:::-;41848:1;41830:2;:14;;;:19;41826:192;;41869:56;41900:4;41906:2;41910:7;41919:5;41869:30;:56::i;:::-;41864:154;;41946:56;41954:47;;;41946:7;:56::i;:::-;41864:154;41826:192;41609:416;;;;:::o;66848:201::-;66922:13;66950:17;66958:8;66950:7;:17::i;:::-;66942:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;67032:11;67024:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66848:201;;;:::o;33885:164::-;33982:4;34006:18;:25;34025:5;34006:25;;;;;;;;;;;;;;;:35;34032:8;34006:35;;;;;;;;;;;;;;;;;;;;;;;;;33999:42;;33885:164;;;;:::o;66454:152::-;66540:11;65686:1;65672:11;:15;65664:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;65464:3;65741:11;65725:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;65717:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2572:13:::1;:11;:13::i;:::-;66568:33:::2;66578:9;66589:11;66568:9;:33::i;:::-;66454:152:::0;;;:::o;3619:220::-;2572:13;:11;:13::i;:::-;3724:1:::1;3704:22;;:8;:22;;::::0;3700:93:::1;;3778:1;3750:31;;;;;;;;;;;:::i;:::-;;;;;;;;3700:93;3803:28;3822:8;3803:18;:28::i;:::-;3619:220:::0;:::o;66130:93::-;2572:13;:11;:13::i;:::-;66208:10:::1;66196:9;:22;;;;66130:93:::0;:::o;65471:24::-;;;;:::o;34307:475::-;34372:11;34419:7;34400:15;:13;:15::i;:::-;:26;34396:379;;34457:17;:15;:17::i;:::-;34447:7;:27;34443:90;;;34483:50;34506:17;:26;34524:7;34506:26;;;;;;;;;;;;34483:22;:50::i;:::-;34476:57;;;;34443:90;34564:13;;34554:7;:23;34550:214;;;34598:14;34631:60;34679:1;34648:17;:26;34666:7;34648:26;;;;;;;;;;;;34639:35;;;34638:42;34631:60;;34682:9;;;;:::i;:::-;;;34631:60;;;34747:1;16149:8;34719:6;:24;:29;34710:38;;34579:185;34550:214;34396:379;34307:475;;;;:::o;64816:165::-;64917:13;64911:4;64904:27;64958:4;64952;64945:18;56231:474;56360:13;56376:16;56384:7;56376;:16::i;:::-;56360:32;;56409:13;:45;;;;;56449:5;56426:28;;:19;:17;:19::i;:::-;:28;;;;56409:45;56405:201;;;56474:44;56491:5;56498:19;:17;:19::i;:::-;56474:16;:44::i;:::-;56469:137;;56539:51;56547:42;;;56539:7;:51::i;:::-;56469:137;56405:201;56651:2;56618:15;:24;56634:7;56618:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56689:7;56685:2;56669:28;;56678:5;56669:28;;;;;;;;;;;;56349:356;56231:474;;;:::o;2851:166::-;2922:12;:10;:12::i;:::-;2911:23;;:7;:5;:7::i;:::-;:23;;;2907:103;;2985:12;:10;:12::i;:::-;2958:40;;;;;;;;;;;:::i;:::-;;;;;;;;2907:103;2851:166::o;66751:92::-;66816:7;66837:1;66830:8;;66751:92;:::o;20387:110::-;20445:7;20472:17;20465:24;;20387:110;:::o;28574:2213::-;28641:14;28691:7;28672:15;:13;:15::i;:::-;:26;28668:2054;;28724:17;:26;28742:7;28724:26;;;;;;;;;;;;28715:35;;28781:17;:15;:17::i;:::-;28771:7;:27;28767:183;;;28823:30;28846:6;28823:22;:30::i;:::-;28855:13;28819:49;28887:47;28895:38;;;28887:7;:47::i;:::-;28767:183;29061:1;29051:6;:11;29047:1292;;29098:13;;29087:7;:24;29083:77;;29113:47;29121:38;;;29113:7;:47::i;:::-;29083:77;29717:607;29795:17;:28;29813:9;;;;;;;29795:28;;;;;;;;;;;;29786:37;;29883:1;29873:6;:11;29869:25;29886:8;29869:25;29949:1;16149:8;29921:6;:24;:29;29917:48;29952:13;29917:48;30257:47;30265:38;;;30257:7;:47::i;:::-;29717:607;;;29047:1292;30694:1;16149:8;30666:6;:24;:29;30662:48;30697:13;30662:48;28668:2054;30732:47;30740:38;;;30732:7;:47::i;:::-;28574:2213;;;;:::o;36094:485::-;36196:27;36225:23;36266:38;36307:15;:24;36323:7;36307:24;;;;;;;;;;;36266:65;;36484:18;36461:41;;36541:19;36535:26;36516:45;;36446:126;36094:485;;;:::o;62797:105::-;62857:7;62884:10;62877:17;;62797:105;:::o;35322:659::-;35471:11;35636:16;35629:5;35625:28;35616:37;;35796:16;35785:9;35781:32;35768:45;;35946:15;35935:9;35932:30;35924:5;35913:9;35910:20;35907:56;35897:66;;35322:659;;;;;:::o;42687:159::-;;;;;:::o;62106:311::-;62241:7;62261:16;16553:3;62287:19;:41;;62261:68;;16553:3;62355:31;62366:4;62372:2;62376:9;62355:10;:31::i;:::-;62347:40;;:62;;62340:69;;;62106:311;;;;;:::o;31335:450::-;31415:14;31583:16;31576:5;31572:28;31563:37;;31760:5;31746:11;31721:23;31717:41;31714:52;31707:5;31704:63;31694:73;;31335:450;;;;:::o;43511:158::-;;;;;:::o;3999:191::-;4073:16;4092:6;;;;;;;;;;;4073:25;;4118:8;4109:6;;:17;;;;;;;;;;;;;;;;;;4173:8;4142:40;;4163:8;4142:40;;;;;;;;;;;;4062:128;3999:191;:::o;695:98::-;748:7;775:10;768:17;;695:98;:::o;51425:112::-;51502:27;51512:2;51516:8;51502:27;;;;;;;;;;;;:9;:27::i;:::-;51425:112;;:::o;44109:691::-;44272:4;44318:2;44293:45;;;44339:19;:17;:19::i;:::-;44360:4;44366:7;44375:5;44293:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44289:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44593:1;44576:6;:13;:18;44572:115;;44615:56;44623:47;;;44615:7;:56::i;:::-;44572:115;44759:6;44753:13;44744:6;44740:2;44736:15;44729:38;44289:504;44462:54;;;44452:64;;;:6;:64;;;;44445:71;;;44109:691;;;;;;:::o;34878:335::-;34948:11;35178:15;35170:6;35166:28;35147:16;35139:6;35135:29;35132:63;35122:73;;34878:335;;;:::o;61807:147::-;61944:6;61807:147;;;;;:::o;50554:787::-;50685:19;50691:2;50695:8;50685:5;:19::i;:::-;50764:1;50746:2;:14;;;:19;50742:581;;50786:11;50800:13;;50786:27;;50832:13;50854:8;50848:3;:14;50832:30;;50881:242;50912:62;50951:1;50955:2;50959:7;;;;;;50968:5;50912:30;:62::i;:::-;50907:176;;51003:56;51011:47;;;51003:7;:56::i;:::-;50907:176;51118:3;51110:5;:11;50881:242;;51294:3;51277:13;;:20;51273:34;;51299:8;;;51273:34;50767:556;;50742:581;50554:787;;;:::o;45262:2399::-;45335:20;45358:13;;45335:36;;45398:1;45386:8;:13;45382:53;;45401:34;45409:25;;;45401:7;:34::i;:::-;45382:53;45448:61;45478:1;45482:2;45486:12;45500:8;45448:21;:61::i;:::-;45982:139;46019:2;46073:33;46096:1;46100:2;46104:1;46073:14;:33::i;:::-;46040:30;46061:8;46040:20;:30::i;:::-;:66;45982:18;:139::i;:::-;45948:17;:31;45966:12;45948:31;;;;;;;;;;;:173;;;;46408:1;15511:2;46378:1;:26;;46377:32;46365:8;:45;46339:18;:22;46358:2;46339:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46521:16;16831:14;46556:2;46540:20;;:39;46521:58;;46612:1;46600:8;:13;46596:54;;46615:35;46623:26;;;46615:7;:35::i;:::-;46596:54;46667:11;46696:8;46681:12;:23;46667:37;;46719:15;46737:12;46719:30;;46780:17;:15;:17::i;:::-;46776:1;46770:3;:7;:27;46766:77;;;46799:44;46807:35;;;46799:7;:44::i;:::-;46766:77;46860:676;47279:7;47235:8;47190:1;47124:25;47061:1;46996;46965:358;47531:3;47518:9;;;;;;:16;46860:676;;47568:3;47552:13;:19;;;;45697:1886;;;47593:60;47622:1;47626:2;47630:12;47644:8;47593:20;:60::i;:::-;45324:2337;45262:2399;;:::o;31887:324::-;31957:14;32190:1;32180:8;32177:15;32151:24;32147:46;32137:56;;31887:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:117::-;4892:1;4889;4882:12;4906:117;5015:1;5012;5005:12;5029:180;5077:77;5074:1;5067:88;5174:4;5171:1;5164:15;5198:4;5195:1;5188:15;5215:281;5298:27;5320:4;5298:27;:::i;:::-;5290:6;5286:40;5428:6;5416:10;5413:22;5392:18;5380:10;5377:34;5374:62;5371:88;;;5439:18;;:::i;:::-;5371:88;5479:10;5475:2;5468:22;5258:238;5215:281;;:::o;5502:129::-;5536:6;5563:20;;:::i;:::-;5553:30;;5592:33;5620:4;5612:6;5592:33;:::i;:::-;5502:129;;;:::o;5637:308::-;5699:4;5789:18;5781:6;5778:30;5775:56;;;5811:18;;:::i;:::-;5775:56;5849:29;5871:6;5849:29;:::i;:::-;5841:37;;5933:4;5927;5923:15;5915:23;;5637:308;;;:::o;5951:148::-;6049:6;6044:3;6039;6026:30;6090:1;6081:6;6076:3;6072:16;6065:27;5951:148;;;:::o;6105:425::-;6183:5;6208:66;6224:49;6266:6;6224:49;:::i;:::-;6208:66;:::i;:::-;6199:75;;6297:6;6290:5;6283:21;6335:4;6328:5;6324:16;6373:3;6364:6;6359:3;6355:16;6352:25;6349:112;;;6380:79;;:::i;:::-;6349:112;6470:54;6517:6;6512:3;6507;6470:54;:::i;:::-;6189:341;6105:425;;;;;:::o;6550:340::-;6606:5;6655:3;6648:4;6640:6;6636:17;6632:27;6622:122;;6663:79;;:::i;:::-;6622:122;6780:6;6767:20;6805:79;6880:3;6872:6;6865:4;6857:6;6853:17;6805:79;:::i;:::-;6796:88;;6612:278;6550:340;;;;:::o;6896:509::-;6965:6;7014:2;7002:9;6993:7;6989:23;6985:32;6982:119;;;7020:79;;:::i;:::-;6982:119;7168:1;7157:9;7153:17;7140:31;7198:18;7190:6;7187:30;7184:117;;;7220:79;;:::i;:::-;7184:117;7325:63;7380:7;7371:6;7360:9;7356:22;7325:63;:::i;:::-;7315:73;;7111:287;6896:509;;;;:::o;7411:118::-;7498:24;7516:5;7498:24;:::i;:::-;7493:3;7486:37;7411:118;;:::o;7535:222::-;7628:4;7666:2;7655:9;7651:18;7643:26;;7679:71;7747:1;7736:9;7732:17;7723:6;7679:71;:::i;:::-;7535:222;;;;:::o;7763:619::-;7840:6;7848;7856;7905:2;7893:9;7884:7;7880:23;7876:32;7873:119;;;7911:79;;:::i;:::-;7873:119;8031:1;8056:53;8101:7;8092:6;8081:9;8077:22;8056:53;:::i;:::-;8046:63;;8002:117;8158:2;8184:53;8229:7;8220:6;8209:9;8205:22;8184:53;:::i;:::-;8174:63;;8129:118;8286:2;8312:53;8357:7;8348:6;8337:9;8333:22;8312:53;:::i;:::-;8302:63;;8257:118;7763:619;;;;;:::o;8388:329::-;8447:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8388:329;;;;:::o;8723:116::-;8793:21;8808:5;8793:21;:::i;:::-;8786:5;8783:32;8773:60;;8829:1;8826;8819:12;8773:60;8723:116;:::o;8845:133::-;8888:5;8926:6;8913:20;8904:29;;8942:30;8966:5;8942:30;:::i;:::-;8845:133;;;;:::o;8984:468::-;9049:6;9057;9106:2;9094:9;9085:7;9081:23;9077:32;9074:119;;;9112:79;;:::i;:::-;9074:119;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:50;9427:7;9418:6;9407:9;9403:22;9385:50;:::i;:::-;9375:60;;9330:115;8984:468;;;;;:::o;9458:307::-;9519:4;9609:18;9601:6;9598:30;9595:56;;;9631:18;;:::i;:::-;9595:56;9669:29;9691:6;9669:29;:::i;:::-;9661:37;;9753:4;9747;9743:15;9735:23;;9458:307;;;:::o;9771:423::-;9848:5;9873:65;9889:48;9930:6;9889:48;:::i;:::-;9873:65;:::i;:::-;9864:74;;9961:6;9954:5;9947:21;9999:4;9992:5;9988:16;10037:3;10028:6;10023:3;10019:16;10016:25;10013:112;;;10044:79;;:::i;:::-;10013:112;10134:54;10181:6;10176:3;10171;10134:54;:::i;:::-;9854:340;9771:423;;;;;:::o;10213:338::-;10268:5;10317:3;10310:4;10302:6;10298:17;10294:27;10284:122;;10325:79;;:::i;:::-;10284:122;10442:6;10429:20;10467:78;10541:3;10533:6;10526:4;10518:6;10514:17;10467:78;:::i;:::-;10458:87;;10274:277;10213:338;;;;:::o;10557:943::-;10652:6;10660;10668;10676;10725:3;10713:9;10704:7;10700:23;10696:33;10693:120;;;10732:79;;:::i;:::-;10693:120;10852:1;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10823:117;10979:2;11005:53;11050:7;11041:6;11030:9;11026:22;11005:53;:::i;:::-;10995:63;;10950:118;11107:2;11133:53;11178:7;11169:6;11158:9;11154:22;11133:53;:::i;:::-;11123:63;;11078:118;11263:2;11252:9;11248:18;11235:32;11294:18;11286:6;11283:30;11280:117;;;11316:79;;:::i;:::-;11280:117;11421:62;11475:7;11466:6;11455:9;11451:22;11421:62;:::i;:::-;11411:72;;11206:287;10557:943;;;;;;;:::o;11506:474::-;11574:6;11582;11631:2;11619:9;11610:7;11606:23;11602:32;11599:119;;;11637:79;;:::i;:::-;11599:119;11757:1;11782:53;11827:7;11818:6;11807:9;11803:22;11782:53;:::i;:::-;11772:63;;11728:117;11884:2;11910:53;11955:7;11946:6;11935:9;11931:22;11910:53;:::i;:::-;11900:63;;11855:118;11506:474;;;;;:::o;11986:::-;12054:6;12062;12111:2;12099:9;12090:7;12086:23;12082:32;12079:119;;;12117:79;;:::i;:::-;12079:119;12237:1;12262:53;12307:7;12298:6;12287:9;12283:22;12262:53;:::i;:::-;12252:63;;12208:117;12364:2;12390:53;12435:7;12426:6;12415:9;12411:22;12390:53;:::i;:::-;12380:63;;12335:118;11986:474;;;;;:::o;12466:180::-;12514:77;12511:1;12504:88;12611:4;12608:1;12601:15;12635:4;12632:1;12625:15;12652:320;12696:6;12733:1;12727:4;12723:12;12713:22;;12780:1;12774:4;12770:12;12801:18;12791:81;;12857:4;12849:6;12845:17;12835:27;;12791:81;12919:2;12911:6;12908:14;12888:18;12885:38;12882:84;;12938:18;;:::i;:::-;12882:84;12703:269;12652:320;;;:::o;12978:141::-;13027:4;13050:3;13042:11;;13073:3;13070:1;13063:14;13107:4;13104:1;13094:18;13086:26;;12978:141;;;:::o;13125:93::-;13162:6;13209:2;13204;13197:5;13193:14;13189:23;13179:33;;13125:93;;;:::o;13224:107::-;13268:8;13318:5;13312:4;13308:16;13287:37;;13224:107;;;;:::o;13337:393::-;13406:6;13456:1;13444:10;13440:18;13479:97;13509:66;13498:9;13479:97;:::i;:::-;13597:39;13627:8;13616:9;13597:39;:::i;:::-;13585:51;;13669:4;13665:9;13658:5;13654:21;13645:30;;13718:4;13708:8;13704:19;13697:5;13694:30;13684:40;;13413:317;;13337:393;;;;;:::o;13736:60::-;13764:3;13785:5;13778:12;;13736:60;;;:::o;13802:142::-;13852:9;13885:53;13903:34;13912:24;13930:5;13912:24;:::i;:::-;13903:34;:::i;:::-;13885:53;:::i;:::-;13872:66;;13802:142;;;:::o;13950:75::-;13993:3;14014:5;14007:12;;13950:75;;;:::o;14031:269::-;14141:39;14172:7;14141:39;:::i;:::-;14202:91;14251:41;14275:16;14251:41;:::i;:::-;14243:6;14236:4;14230:11;14202:91;:::i;:::-;14196:4;14189:105;14107:193;14031:269;;;:::o;14306:73::-;14351:3;14306:73;:::o;14385:189::-;14462:32;;:::i;:::-;14503:65;14561:6;14553;14547:4;14503:65;:::i;:::-;14438:136;14385:189;;:::o;14580:186::-;14640:120;14657:3;14650:5;14647:14;14640:120;;;14711:39;14748:1;14741:5;14711:39;:::i;:::-;14684:1;14677:5;14673:13;14664:22;;14640:120;;;14580:186;;:::o;14772:543::-;14873:2;14868:3;14865:11;14862:446;;;14907:38;14939:5;14907:38;:::i;:::-;14991:29;15009:10;14991:29;:::i;:::-;14981:8;14977:44;15174:2;15162:10;15159:18;15156:49;;;15195:8;15180:23;;15156:49;15218:80;15274:22;15292:3;15274:22;:::i;:::-;15264:8;15260:37;15247:11;15218:80;:::i;:::-;14877:431;;14862:446;14772:543;;;:::o;15321:117::-;15375:8;15425:5;15419:4;15415:16;15394:37;;15321:117;;;;:::o;15444:169::-;15488:6;15521:51;15569:1;15565:6;15557:5;15554:1;15550:13;15521:51;:::i;:::-;15517:56;15602:4;15596;15592:15;15582:25;;15495:118;15444:169;;;;:::o;15618:295::-;15694:4;15840:29;15865:3;15859:4;15840:29;:::i;:::-;15832:37;;15902:3;15899:1;15895:11;15889:4;15886:21;15878:29;;15618:295;;;;:::o;15918:1395::-;16035:37;16068:3;16035:37;:::i;:::-;16137:18;16129:6;16126:30;16123:56;;;16159:18;;:::i;:::-;16123:56;16203:38;16235:4;16229:11;16203:38;:::i;:::-;16288:67;16348:6;16340;16334:4;16288:67;:::i;:::-;16382:1;16406:4;16393:17;;16438:2;16430:6;16427:14;16455:1;16450:618;;;;17112:1;17129:6;17126:77;;;17178:9;17173:3;17169:19;17163:26;17154:35;;17126:77;17229:67;17289:6;17282:5;17229:67;:::i;:::-;17223:4;17216:81;17085:222;16420:887;;16450:618;16502:4;16498:9;16490:6;16486:22;16536:37;16568:4;16536:37;:::i;:::-;16595:1;16609:208;16623:7;16620:1;16617:14;16609:208;;;16702:9;16697:3;16693:19;16687:26;16679:6;16672:42;16753:1;16745:6;16741:14;16731:24;;16800:2;16789:9;16785:18;16772:31;;16646:4;16643:1;16639:12;16634:17;;16609:208;;;16845:6;16836:7;16833:19;16830:179;;;16903:9;16898:3;16894:19;16888:26;16946:48;16988:4;16980:6;16976:17;16965:9;16946:48;:::i;:::-;16938:6;16931:64;16853:156;16830:179;17055:1;17051;17043:6;17039:14;17035:22;17029:4;17022:36;16457:611;;;16420:887;;16010:1303;;;15918:1395;;:::o;17319:170::-;17459:22;17455:1;17447:6;17443:14;17436:46;17319:170;:::o;17495:366::-;17637:3;17658:67;17722:2;17717:3;17658:67;:::i;:::-;17651:74;;17734:93;17823:3;17734:93;:::i;:::-;17852:2;17847:3;17843:12;17836:19;;17495:366;;;:::o;17867:419::-;18033:4;18071:2;18060:9;18056:18;18048:26;;18120:9;18114:4;18110:20;18106:1;18095:9;18091:17;18084:47;18148:131;18274:4;18148:131;:::i;:::-;18140:139;;17867:419;;;:::o;18292:180::-;18340:77;18337:1;18330:88;18437:4;18434:1;18427:15;18461:4;18458:1;18451:15;18478:191;18518:3;18537:20;18555:1;18537:20;:::i;:::-;18532:25;;18571:20;18589:1;18571:20;:::i;:::-;18566:25;;18614:1;18611;18607:9;18600:16;;18635:3;18632:1;18629:10;18626:36;;;18642:18;;:::i;:::-;18626:36;18478:191;;;;:::o;18675:180::-;18815:32;18811:1;18803:6;18799:14;18792:56;18675:180;:::o;18861:366::-;19003:3;19024:67;19088:2;19083:3;19024:67;:::i;:::-;19017:74;;19100:93;19189:3;19100:93;:::i;:::-;19218:2;19213:3;19209:12;19202:19;;18861:366;;;:::o;19233:419::-;19399:4;19437:2;19426:9;19422:18;19414:26;;19486:9;19480:4;19476:20;19472:1;19461:9;19457:17;19450:47;19514:131;19640:4;19514:131;:::i;:::-;19506:139;;19233:419;;;:::o;19658:410::-;19698:7;19721:20;19739:1;19721:20;:::i;:::-;19716:25;;19755:20;19773:1;19755:20;:::i;:::-;19750:25;;19810:1;19807;19803:9;19832:30;19850:11;19832:30;:::i;:::-;19821:41;;20011:1;20002:7;19998:15;19995:1;19992:22;19972:1;19965:9;19945:83;19922:139;;20041:18;;:::i;:::-;19922:139;19706:362;19658:410;;;;:::o;20074:169::-;20214:21;20210:1;20202:6;20198:14;20191:45;20074:169;:::o;20249:366::-;20391:3;20412:67;20476:2;20471:3;20412:67;:::i;:::-;20405:74;;20488:93;20577:3;20488:93;:::i;:::-;20606:2;20601:3;20597:12;20590:19;;20249:366;;;:::o;20621:419::-;20787:4;20825:2;20814:9;20810:18;20802:26;;20874:9;20868:4;20864:20;20860:1;20849:9;20845:17;20838:47;20902:131;21028:4;20902:131;:::i;:::-;20894:139;;20621:419;;;:::o;21046:234::-;21186:34;21182:1;21174:6;21170:14;21163:58;21255:17;21250:2;21242:6;21238:15;21231:42;21046:234;:::o;21286:366::-;21428:3;21449:67;21513:2;21508:3;21449:67;:::i;:::-;21442:74;;21525:93;21614:3;21525:93;:::i;:::-;21643:2;21638:3;21634:12;21627:19;;21286:366;;;:::o;21658:419::-;21824:4;21862:2;21851:9;21847:18;21839:26;;21911:9;21905:4;21901:20;21897:1;21886:9;21882:17;21875:47;21939:131;22065:4;21939:131;:::i;:::-;21931:139;;21658:419;;;:::o;22083:171::-;22122:3;22145:24;22163:5;22145:24;:::i;:::-;22136:33;;22191:4;22184:5;22181:15;22178:41;;22199:18;;:::i;:::-;22178:41;22246:1;22239:5;22235:13;22228:20;;22083:171;;;:::o;22260:98::-;22311:6;22345:5;22339:12;22329:22;;22260:98;;;:::o;22364:168::-;22447:11;22481:6;22476:3;22469:19;22521:4;22516:3;22512:14;22497:29;;22364:168;;;;:::o;22538:373::-;22624:3;22652:38;22684:5;22652:38;:::i;:::-;22706:70;22769:6;22764:3;22706:70;:::i;:::-;22699:77;;22785:65;22843:6;22838:3;22831:4;22824:5;22820:16;22785:65;:::i;:::-;22875:29;22897:6;22875:29;:::i;:::-;22870:3;22866:39;22859:46;;22628:283;22538:373;;;;:::o;22917:640::-;23112:4;23150:3;23139:9;23135:19;23127:27;;23164:71;23232:1;23221:9;23217:17;23208:6;23164:71;:::i;:::-;23245:72;23313:2;23302:9;23298:18;23289:6;23245:72;:::i;:::-;23327;23395:2;23384:9;23380:18;23371:6;23327:72;:::i;:::-;23446:9;23440:4;23436:20;23431:2;23420:9;23416:18;23409:48;23474:76;23545:4;23536:6;23474:76;:::i;:::-;23466:84;;22917:640;;;;;;;:::o;23563:141::-;23619:5;23650:6;23644:13;23635:22;;23666:32;23692:5;23666:32;:::i;:::-;23563:141;;;;:::o;23710:349::-;23779:6;23828:2;23816:9;23807:7;23803:23;23799:32;23796:119;;;23834:79;;:::i;:::-;23796:119;23954:1;23979:63;24034:7;24025:6;24014:9;24010:22;23979:63;:::i;:::-;23969:73;;23925:127;23710:349;;;;:::o

Swarm Source

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