ETH Price: $3,103.63 (+1.15%)
Gas: 14 Gwei

Token

Lovecatz (LCAT)
 

Overview

Max Total Supply

3,333 LCAT

Holders

1,199

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LCAT
0xed8dbe738cebb03b220907e40b9b5aa59f1c9a32
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:
LCAT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-06
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        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 virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: lovercatz.sol


pragma solidity ^0.8.9;





contract LCAT is ERC721A, Ownable, ReentrancyGuard { 

    uint256 public _maxSupply = 3333;
    uint256 public _mintPrice = 0.003 ether;
    uint256 public _maxMintPerTx = 33;

    uint256 public _maxFreeMintPerAddr = 2;
    uint256 public _maxFreeMintSupply = 1000;

    using Strings for uint256;
    string public baseURI;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor(string memory initBaseURI) ERC721A("Lovecatz", "LCAT") {
        baseURI = initBaseURI;
    }

    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }

    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"nonpayable","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":"nonpayable","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052610d05600a55660aa87bee538000600b556021600c556002600d556103e8600e553480156200003257600080fd5b5060405162003728380380620037288339818101604052810190620000589190620003b1565b6040518060400160405280600881526020017f4c6f76656361747a0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c434154000000000000000000000000000000000000000000000000000000008152508160029081620000d591906200064d565b508060039081620000e791906200064d565b50620000f86200014160201b60201c565b600081905550505062000120620001146200014660201b60201c565b6200014e60201b60201c565b600160098190555080600f90816200013991906200064d565b505062000734565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200027d8262000232565b810181811067ffffffffffffffff821117156200029f576200029e62000243565b5b80604052505050565b6000620002b462000214565b9050620002c2828262000272565b919050565b600067ffffffffffffffff821115620002e557620002e462000243565b5b620002f08262000232565b9050602081019050919050565b60005b838110156200031d57808201518184015260208101905062000300565b838111156200032d576000848401525b50505050565b60006200034a6200034484620002c7565b620002a8565b9050828152602081018484840111156200036957620003686200022d565b5b62000376848285620002fd565b509392505050565b600082601f83011262000396576200039562000228565b5b8151620003a884826020860162000333565b91505092915050565b600060208284031215620003ca57620003c96200021e565b5b600082015167ffffffffffffffff811115620003eb57620003ea62000223565b5b620003f9848285016200037e565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045557607f821691505b6020821081036200046b576200046a6200040d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000496565b620004e1868362000496565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200052e620005286200052284620004f9565b62000503565b620004f9565b9050919050565b6000819050919050565b6200054a836200050d565b62000562620005598262000535565b848454620004a3565b825550505050565b600090565b620005796200056a565b620005868184846200053f565b505050565b5b81811015620005ae57620005a26000826200056f565b6001810190506200058c565b5050565b601f821115620005fd57620005c78162000471565b620005d28462000486565b81016020851015620005e2578190505b620005fa620005f18562000486565b8301826200058b565b50505b505050565b600082821c905092915050565b6000620006226000198460080262000602565b1980831691505092915050565b60006200063d83836200060f565b9150826002028217905092915050565b620006588262000402565b67ffffffffffffffff81111562000674576200067362000243565b5b6200068082546200043c565b6200068d828285620005b2565b600060209050601f831160018114620006c55760008415620006b0578287015190505b620006bc85826200062f565b8655506200072c565b601f198416620006d58662000471565b60005b82811015620006ff57848901518255600182019150602085019450602081019050620006d8565b868310156200071f57848901516200071b601f8916826200060f565b8355505b6001600288020188555050505b505050505050565b612fe480620007446000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105b8578063de314a59146105f5578063e985e9c514610620578063f2fde38b1461065d576101b7565b8063a0712d681461054a578063a22cb46514610566578063b88d4fde1461058f576101b7565b806391b7f5ed116100c657806391b7f5ed146104a257806392910eec146104cb57806395d89b41146104f45780639cb57d201461051f576101b7565b806370a0823114610423578063715018a6146104605780638da5cb5b14610477576101b7565b806323b872dd1161015957806355f804b31161013357806355f804b3146103675780635e1c4b60146103905780636352211e146103bb5780636c0360eb146103f8576101b7565b806323b872dd1461030b5780633ccfd60b1461033457806342842e0e1461033e576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c57806318160ddd146102b557806322f4596f146102e0576101b7565b806301ffc9a7146101bc5780630387da42146101f957806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611ed1565b610686565b6040516101f09190611f19565b60405180910390f35b34801561020557600080fd5b5061020e610718565b60405161021b9190611f4d565b60405180910390f35b34801561023057600080fd5b5061023961071e565b6040516102469190612001565b60405180910390f35b34801561025b57600080fd5b506102766004803603810190610271919061204f565b6107b0565b60405161028391906120bd565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612104565b61082f565b005b3480156102c157600080fd5b506102ca610973565b6040516102d79190611f4d565b60405180910390f35b3480156102ec57600080fd5b506102f561098a565b6040516103029190611f4d565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612144565b610990565b005b61033c610cb2565b005b34801561034a57600080fd5b5061036560048036038101906103609190612144565b610d88565b005b34801561037357600080fd5b5061038e600480360381019061038991906122cc565b610da8565b005b34801561039c57600080fd5b506103a5610dc3565b6040516103b29190611f4d565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd919061204f565b610dc9565b6040516103ef91906120bd565b60405180910390f35b34801561040457600080fd5b5061040d610ddb565b60405161041a9190612001565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612315565b610e69565b6040516104579190611f4d565b60405180910390f35b34801561046c57600080fd5b50610475610f21565b005b34801561048357600080fd5b5061048c610f35565b60405161049991906120bd565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c4919061204f565b610f5f565b005b3480156104d757600080fd5b506104f260048036038101906104ed919061204f565b610f71565b005b34801561050057600080fd5b50610509610f83565b6040516105169190612001565b60405180910390f35b34801561052b57600080fd5b50610534611015565b6040516105419190611f4d565b60405180910390f35b610564600480360381019061055f919061204f565b61101b565b005b34801561057257600080fd5b5061058d6004803603810190610588919061236e565b611255565b005b34801561059b57600080fd5b506105b660048036038101906105b1919061244f565b6113cc565b005b3480156105c457600080fd5b506105df60048036038101906105da919061204f565b61143f565b6040516105ec9190612001565b60405180910390f35b34801561060157600080fd5b5061060a6114bb565b6040516106179190611f4d565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906124d2565b6114c1565b6040516106549190611f19565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612315565b611555565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461072d90612541565b80601f016020809104026020016040519081016040528092919081815260200182805461075990612541565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bb826115d8565b6107f1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083a82610dc9565b90508073ffffffffffffffffffffffffffffffffffffffff1661085b611637565b73ffffffffffffffffffffffffffffffffffffffff16146108be5761088781610882611637565b6114c1565b6108bd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061097d61163f565b6001546000540303905090565b600a5481565b600061099b82611644565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0e84611710565b91509150610a248187610a1f611637565b611737565b610a7057610a3986610a34611637565b6114c1565b610a6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae3868686600161177b565b8015610aee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbc85610b98888887611781565b7c0200000000000000000000000000000000000000000000000000000000176117a9565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c425760006001850190506000600460008381526020019081526020016000205403610c40576000548114610c3f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610caa86868660016117d4565b505050505050565b610cba6117da565b600260095403610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf6906125be565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d2d9061260f565b60006040518083038185875af1925050503d8060008114610d6a576040519150601f19603f3d011682016040523d82523d6000602084013e610d6f565b606091505b5050905080610d7d57600080fd5b506001600981905550565b610da3838383604051806020016040528060008152506113cc565b505050565b610db06117da565b80600f9081610dbf91906127d0565b5050565b600e5481565b6000610dd482611644565b9050919050565b600f8054610de890612541565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490612541565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f296117da565b610f336000611858565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f676117da565b80600b8190555050565b610f796117da565b80600e8190555050565b606060038054610f9290612541565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbe90612541565b801561100b5780601f10610fe05761010080835404028352916020019161100b565b820191906000526020600020905b815481529060010190602001808311610fee57829003601f168201915b5050505050905090565b600d5481565b6000600b54905060006001600e5461103391906128d1565b8361103c610973565b61104691906128d1565b10801561109f5750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109c91906128d1565b11155b806110dc57506110ad610f35565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b905080156110e957600091505b81836110f59190612927565b341015611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e906129cd565b60405180910390fd5b6001600a5461114691906128d1565b8361114f610973565b61115991906128d1565b10611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090612a39565b60405180910390fd5b6001600c546111a891906128d1565b83106111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612aa5565b60405180910390fd5b80156112465782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461123e91906128d1565b925050819055505b611250338461191e565b505050565b61125d611637565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112c1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112ce611637565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661137b611637565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113c09190611f19565b60405180910390a35050565b6113d7848484610990565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611439576114028484848461193c565b611438576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061144a826115d8565b611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090612b37565b60405180910390fd5b600f61149483611a8c565b6040516020016114a5929190612c62565b6040516020818303038152906040529050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61155d6117da565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390612d03565b60405180910390fd5b6115d581611858565b50565b6000816115e361163f565b111580156115f2575060005482105b8015611630575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061165361163f565b116116d9576000548110156116d85760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116d6575b600081036116cc5760046000836001900393508381526020019081526020016000205490506116a2565b809250505061170b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611798868684611bec565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117e2611bf5565b73ffffffffffffffffffffffffffffffffffffffff16611800610f35565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90612d6f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611938828260405180602001604052806000815250611bfd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611962611637565b8786866040518563ffffffff1660e01b81526004016119849493929190612de4565b6020604051808303816000875af19250505080156119c057506040513d601f19601f820116820180604052508101906119bd9190612e45565b60015b611a39573d80600081146119f0576040519150601f19603f3d011682016040523d82523d6000602084013e6119f5565b606091505b506000815103611a31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611ad3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611be7565b600082905060005b60008214611b05578080611aee90612e72565b915050600a82611afe9190612ee9565b9150611adb565b60008167ffffffffffffffff811115611b2157611b206121a1565b5b6040519080825280601f01601f191660200182016040528015611b535781602001600182028036833780820191505090505b5090505b60008514611be057600182611b6c9190612f1a565b9150600a85611b7b9190612f4e565b6030611b8791906128d1565b60f81b818381518110611b9d57611b9c612f7f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611bd99190612ee9565b9450611b57565b8093505050505b919050565b60009392505050565b600033905090565b611c078383611c9a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9557600080549050600083820390505b611c47600086838060010194508661193c565b611c7d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c34578160005414611c9257600080fd5b50505b505050565b60008054905060008203611cda576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce7600084838561177b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d5e83611d4f6000866000611781565b611d5885611e55565b176117a9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dff57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc4565b5060008203611e3a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e5060008483856117d4565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611eae81611e79565b8114611eb957600080fd5b50565b600081359050611ecb81611ea5565b92915050565b600060208284031215611ee757611ee6611e6f565b5b6000611ef584828501611ebc565b91505092915050565b60008115159050919050565b611f1381611efe565b82525050565b6000602082019050611f2e6000830184611f0a565b92915050565b6000819050919050565b611f4781611f34565b82525050565b6000602082019050611f626000830184611f3e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fa2578082015181840152602081019050611f87565b83811115611fb1576000848401525b50505050565b6000601f19601f8301169050919050565b6000611fd382611f68565b611fdd8185611f73565b9350611fed818560208601611f84565b611ff681611fb7565b840191505092915050565b6000602082019050818103600083015261201b8184611fc8565b905092915050565b61202c81611f34565b811461203757600080fd5b50565b60008135905061204981612023565b92915050565b60006020828403121561206557612064611e6f565b5b60006120738482850161203a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120a78261207c565b9050919050565b6120b78161209c565b82525050565b60006020820190506120d260008301846120ae565b92915050565b6120e18161209c565b81146120ec57600080fd5b50565b6000813590506120fe816120d8565b92915050565b6000806040838503121561211b5761211a611e6f565b5b6000612129858286016120ef565b925050602061213a8582860161203a565b9150509250929050565b60008060006060848603121561215d5761215c611e6f565b5b600061216b868287016120ef565b935050602061217c868287016120ef565b925050604061218d8682870161203a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121d982611fb7565b810181811067ffffffffffffffff821117156121f8576121f76121a1565b5b80604052505050565b600061220b611e65565b905061221782826121d0565b919050565b600067ffffffffffffffff821115612237576122366121a1565b5b61224082611fb7565b9050602081019050919050565b82818337600083830152505050565b600061226f61226a8461221c565b612201565b90508281526020810184848401111561228b5761228a61219c565b5b61229684828561224d565b509392505050565b600082601f8301126122b3576122b2612197565b5b81356122c384826020860161225c565b91505092915050565b6000602082840312156122e2576122e1611e6f565b5b600082013567ffffffffffffffff811115612300576122ff611e74565b5b61230c8482850161229e565b91505092915050565b60006020828403121561232b5761232a611e6f565b5b6000612339848285016120ef565b91505092915050565b61234b81611efe565b811461235657600080fd5b50565b60008135905061236881612342565b92915050565b6000806040838503121561238557612384611e6f565b5b6000612393858286016120ef565b92505060206123a485828601612359565b9150509250929050565b600067ffffffffffffffff8211156123c9576123c86121a1565b5b6123d282611fb7565b9050602081019050919050565b60006123f26123ed846123ae565b612201565b90508281526020810184848401111561240e5761240d61219c565b5b61241984828561224d565b509392505050565b600082601f83011261243657612435612197565b5b81356124468482602086016123df565b91505092915050565b6000806000806080858703121561246957612468611e6f565b5b6000612477878288016120ef565b9450506020612488878288016120ef565b93505060406124998782880161203a565b925050606085013567ffffffffffffffff8111156124ba576124b9611e74565b5b6124c687828801612421565b91505092959194509250565b600080604083850312156124e9576124e8611e6f565b5b60006124f7858286016120ef565b9250506020612508858286016120ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061255957607f821691505b60208210810361256c5761256b612512565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006125a8601f83611f73565b91506125b382612572565b602082019050919050565b600060208201905081810360008301526125d78161259b565b9050919050565b600081905092915050565b50565b60006125f96000836125de565b9150612604826125e9565b600082019050919050565b600061261a826125ec565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026126867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612649565b6126908683612649565b95508019841693508086168417925050509392505050565b6000819050919050565b60006126cd6126c86126c384611f34565b6126a8565b611f34565b9050919050565b6000819050919050565b6126e7836126b2565b6126fb6126f3826126d4565b848454612656565b825550505050565b600090565b612710612703565b61271b8184846126de565b505050565b5b8181101561273f57612734600082612708565b600181019050612721565b5050565b601f8211156127845761275581612624565b61275e84612639565b8101602085101561276d578190505b61278161277985612639565b830182612720565b50505b505050565b600082821c905092915050565b60006127a760001984600802612789565b1980831691505092915050565b60006127c08383612796565b9150826002028217905092915050565b6127d982611f68565b67ffffffffffffffff8111156127f2576127f16121a1565b5b6127fc8254612541565b612807828285612743565b600060209050601f83116001811461283a5760008415612828578287015190505b61283285826127b4565b86555061289a565b601f19841661284886612624565b60005b828110156128705784890151825560018201915060208501945060208101905061284b565b8683101561288d5784890151612889601f891682612796565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128dc82611f34565b91506128e783611f34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561291c5761291b6128a2565b5b828201905092915050565b600061293282611f34565b915061293d83611f34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612976576129756128a2565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006129b7601d83611f73565b91506129c282612981565b602082019050919050565b600060208201905081810360008301526129e6816129aa565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612a23600983611f73565b9150612a2e826129ed565b602082019050919050565b60006020820190508181036000830152612a5281612a16565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612a8f601383611f73565b9150612a9a82612a59565b602082019050919050565b60006020820190508181036000830152612abe81612a82565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612b21602f83611f73565b9150612b2c82612ac5565b604082019050919050565b60006020820190508181036000830152612b5081612b14565b9050919050565b600081905092915050565b60008154612b6f81612541565b612b798186612b57565b94506001821660008114612b945760018114612ba957612bdc565b60ff1983168652811515820286019350612bdc565b612bb285612624565b60005b83811015612bd457815481890152600182019150602081019050612bb5565b838801955050505b50505092915050565b6000612bf082611f68565b612bfa8185612b57565b9350612c0a818560208601611f84565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612c4c600583612b57565b9150612c5782612c16565b600582019050919050565b6000612c6e8285612b62565b9150612c7a8284612be5565b9150612c8582612c3f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ced602683611f73565b9150612cf882612c91565b604082019050919050565b60006020820190508181036000830152612d1c81612ce0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d59602083611f73565b9150612d6482612d23565b602082019050919050565b60006020820190508181036000830152612d8881612d4c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612db682612d8f565b612dc08185612d9a565b9350612dd0818560208601611f84565b612dd981611fb7565b840191505092915050565b6000608082019050612df960008301876120ae565b612e0660208301866120ae565b612e136040830185611f3e565b8181036060830152612e258184612dab565b905095945050505050565b600081519050612e3f81611ea5565b92915050565b600060208284031215612e5b57612e5a611e6f565b5b6000612e6984828501612e30565b91505092915050565b6000612e7d82611f34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612eaf57612eae6128a2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ef482611f34565b9150612eff83611f34565b925082612f0f57612f0e612eba565b5b828204905092915050565b6000612f2582611f34565b9150612f3083611f34565b925082821015612f4357612f426128a2565b5b828203905092915050565b6000612f5982611f34565b9150612f6483611f34565b925082612f7457612f73612eba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e1b0dbc4c4f9578d35f81ef9245cb1fc46705aa66dcc97af3201a6cd0a3d529364736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6571754e5963635a4533345a546348535461794d695135714a54417a4346616877666b31477a50777541644e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105b8578063de314a59146105f5578063e985e9c514610620578063f2fde38b1461065d576101b7565b8063a0712d681461054a578063a22cb46514610566578063b88d4fde1461058f576101b7565b806391b7f5ed116100c657806391b7f5ed146104a257806392910eec146104cb57806395d89b41146104f45780639cb57d201461051f576101b7565b806370a0823114610423578063715018a6146104605780638da5cb5b14610477576101b7565b806323b872dd1161015957806355f804b31161013357806355f804b3146103675780635e1c4b60146103905780636352211e146103bb5780636c0360eb146103f8576101b7565b806323b872dd1461030b5780633ccfd60b1461033457806342842e0e1461033e576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c57806318160ddd146102b557806322f4596f146102e0576101b7565b806301ffc9a7146101bc5780630387da42146101f957806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611ed1565b610686565b6040516101f09190611f19565b60405180910390f35b34801561020557600080fd5b5061020e610718565b60405161021b9190611f4d565b60405180910390f35b34801561023057600080fd5b5061023961071e565b6040516102469190612001565b60405180910390f35b34801561025b57600080fd5b506102766004803603810190610271919061204f565b6107b0565b60405161028391906120bd565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612104565b61082f565b005b3480156102c157600080fd5b506102ca610973565b6040516102d79190611f4d565b60405180910390f35b3480156102ec57600080fd5b506102f561098a565b6040516103029190611f4d565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612144565b610990565b005b61033c610cb2565b005b34801561034a57600080fd5b5061036560048036038101906103609190612144565b610d88565b005b34801561037357600080fd5b5061038e600480360381019061038991906122cc565b610da8565b005b34801561039c57600080fd5b506103a5610dc3565b6040516103b29190611f4d565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd919061204f565b610dc9565b6040516103ef91906120bd565b60405180910390f35b34801561040457600080fd5b5061040d610ddb565b60405161041a9190612001565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612315565b610e69565b6040516104579190611f4d565b60405180910390f35b34801561046c57600080fd5b50610475610f21565b005b34801561048357600080fd5b5061048c610f35565b60405161049991906120bd565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c4919061204f565b610f5f565b005b3480156104d757600080fd5b506104f260048036038101906104ed919061204f565b610f71565b005b34801561050057600080fd5b50610509610f83565b6040516105169190612001565b60405180910390f35b34801561052b57600080fd5b50610534611015565b6040516105419190611f4d565b60405180910390f35b610564600480360381019061055f919061204f565b61101b565b005b34801561057257600080fd5b5061058d6004803603810190610588919061236e565b611255565b005b34801561059b57600080fd5b506105b660048036038101906105b1919061244f565b6113cc565b005b3480156105c457600080fd5b506105df60048036038101906105da919061204f565b61143f565b6040516105ec9190612001565b60405180910390f35b34801561060157600080fd5b5061060a6114bb565b6040516106179190611f4d565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906124d2565b6114c1565b6040516106549190611f19565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612315565b611555565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461072d90612541565b80601f016020809104026020016040519081016040528092919081815260200182805461075990612541565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bb826115d8565b6107f1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083a82610dc9565b90508073ffffffffffffffffffffffffffffffffffffffff1661085b611637565b73ffffffffffffffffffffffffffffffffffffffff16146108be5761088781610882611637565b6114c1565b6108bd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061097d61163f565b6001546000540303905090565b600a5481565b600061099b82611644565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0e84611710565b91509150610a248187610a1f611637565b611737565b610a7057610a3986610a34611637565b6114c1565b610a6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae3868686600161177b565b8015610aee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbc85610b98888887611781565b7c0200000000000000000000000000000000000000000000000000000000176117a9565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c425760006001850190506000600460008381526020019081526020016000205403610c40576000548114610c3f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610caa86868660016117d4565b505050505050565b610cba6117da565b600260095403610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf6906125be565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d2d9061260f565b60006040518083038185875af1925050503d8060008114610d6a576040519150601f19603f3d011682016040523d82523d6000602084013e610d6f565b606091505b5050905080610d7d57600080fd5b506001600981905550565b610da3838383604051806020016040528060008152506113cc565b505050565b610db06117da565b80600f9081610dbf91906127d0565b5050565b600e5481565b6000610dd482611644565b9050919050565b600f8054610de890612541565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490612541565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f296117da565b610f336000611858565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f676117da565b80600b8190555050565b610f796117da565b80600e8190555050565b606060038054610f9290612541565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbe90612541565b801561100b5780601f10610fe05761010080835404028352916020019161100b565b820191906000526020600020905b815481529060010190602001808311610fee57829003601f168201915b5050505050905090565b600d5481565b6000600b54905060006001600e5461103391906128d1565b8361103c610973565b61104691906128d1565b10801561109f5750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109c91906128d1565b11155b806110dc57506110ad610f35565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b905080156110e957600091505b81836110f59190612927565b341015611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e906129cd565b60405180910390fd5b6001600a5461114691906128d1565b8361114f610973565b61115991906128d1565b10611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090612a39565b60405180910390fd5b6001600c546111a891906128d1565b83106111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612aa5565b60405180910390fd5b80156112465782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461123e91906128d1565b925050819055505b611250338461191e565b505050565b61125d611637565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112c1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112ce611637565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661137b611637565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113c09190611f19565b60405180910390a35050565b6113d7848484610990565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611439576114028484848461193c565b611438576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061144a826115d8565b611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090612b37565b60405180910390fd5b600f61149483611a8c565b6040516020016114a5929190612c62565b6040516020818303038152906040529050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61155d6117da565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390612d03565b60405180910390fd5b6115d581611858565b50565b6000816115e361163f565b111580156115f2575060005482105b8015611630575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061165361163f565b116116d9576000548110156116d85760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116d6575b600081036116cc5760046000836001900393508381526020019081526020016000205490506116a2565b809250505061170b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611798868684611bec565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117e2611bf5565b73ffffffffffffffffffffffffffffffffffffffff16611800610f35565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90612d6f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611938828260405180602001604052806000815250611bfd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611962611637565b8786866040518563ffffffff1660e01b81526004016119849493929190612de4565b6020604051808303816000875af19250505080156119c057506040513d601f19601f820116820180604052508101906119bd9190612e45565b60015b611a39573d80600081146119f0576040519150601f19603f3d011682016040523d82523d6000602084013e6119f5565b606091505b506000815103611a31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611ad3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611be7565b600082905060005b60008214611b05578080611aee90612e72565b915050600a82611afe9190612ee9565b9150611adb565b60008167ffffffffffffffff811115611b2157611b206121a1565b5b6040519080825280601f01601f191660200182016040528015611b535781602001600182028036833780820191505090505b5090505b60008514611be057600182611b6c9190612f1a565b9150600a85611b7b9190612f4e565b6030611b8791906128d1565b60f81b818381518110611b9d57611b9c612f7f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611bd99190612ee9565b9450611b57565b8093505050505b919050565b60009392505050565b600033905090565b611c078383611c9a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9557600080549050600083820390505b611c47600086838060010194508661193c565b611c7d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c34578160005414611c9257600080fd5b50505b505050565b60008054905060008203611cda576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce7600084838561177b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d5e83611d4f6000866000611781565b611d5885611e55565b176117a9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dff57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc4565b5060008203611e3a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e5060008483856117d4565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611eae81611e79565b8114611eb957600080fd5b50565b600081359050611ecb81611ea5565b92915050565b600060208284031215611ee757611ee6611e6f565b5b6000611ef584828501611ebc565b91505092915050565b60008115159050919050565b611f1381611efe565b82525050565b6000602082019050611f2e6000830184611f0a565b92915050565b6000819050919050565b611f4781611f34565b82525050565b6000602082019050611f626000830184611f3e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fa2578082015181840152602081019050611f87565b83811115611fb1576000848401525b50505050565b6000601f19601f8301169050919050565b6000611fd382611f68565b611fdd8185611f73565b9350611fed818560208601611f84565b611ff681611fb7565b840191505092915050565b6000602082019050818103600083015261201b8184611fc8565b905092915050565b61202c81611f34565b811461203757600080fd5b50565b60008135905061204981612023565b92915050565b60006020828403121561206557612064611e6f565b5b60006120738482850161203a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120a78261207c565b9050919050565b6120b78161209c565b82525050565b60006020820190506120d260008301846120ae565b92915050565b6120e18161209c565b81146120ec57600080fd5b50565b6000813590506120fe816120d8565b92915050565b6000806040838503121561211b5761211a611e6f565b5b6000612129858286016120ef565b925050602061213a8582860161203a565b9150509250929050565b60008060006060848603121561215d5761215c611e6f565b5b600061216b868287016120ef565b935050602061217c868287016120ef565b925050604061218d8682870161203a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121d982611fb7565b810181811067ffffffffffffffff821117156121f8576121f76121a1565b5b80604052505050565b600061220b611e65565b905061221782826121d0565b919050565b600067ffffffffffffffff821115612237576122366121a1565b5b61224082611fb7565b9050602081019050919050565b82818337600083830152505050565b600061226f61226a8461221c565b612201565b90508281526020810184848401111561228b5761228a61219c565b5b61229684828561224d565b509392505050565b600082601f8301126122b3576122b2612197565b5b81356122c384826020860161225c565b91505092915050565b6000602082840312156122e2576122e1611e6f565b5b600082013567ffffffffffffffff811115612300576122ff611e74565b5b61230c8482850161229e565b91505092915050565b60006020828403121561232b5761232a611e6f565b5b6000612339848285016120ef565b91505092915050565b61234b81611efe565b811461235657600080fd5b50565b60008135905061236881612342565b92915050565b6000806040838503121561238557612384611e6f565b5b6000612393858286016120ef565b92505060206123a485828601612359565b9150509250929050565b600067ffffffffffffffff8211156123c9576123c86121a1565b5b6123d282611fb7565b9050602081019050919050565b60006123f26123ed846123ae565b612201565b90508281526020810184848401111561240e5761240d61219c565b5b61241984828561224d565b509392505050565b600082601f83011261243657612435612197565b5b81356124468482602086016123df565b91505092915050565b6000806000806080858703121561246957612468611e6f565b5b6000612477878288016120ef565b9450506020612488878288016120ef565b93505060406124998782880161203a565b925050606085013567ffffffffffffffff8111156124ba576124b9611e74565b5b6124c687828801612421565b91505092959194509250565b600080604083850312156124e9576124e8611e6f565b5b60006124f7858286016120ef565b9250506020612508858286016120ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061255957607f821691505b60208210810361256c5761256b612512565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006125a8601f83611f73565b91506125b382612572565b602082019050919050565b600060208201905081810360008301526125d78161259b565b9050919050565b600081905092915050565b50565b60006125f96000836125de565b9150612604826125e9565b600082019050919050565b600061261a826125ec565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026126867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612649565b6126908683612649565b95508019841693508086168417925050509392505050565b6000819050919050565b60006126cd6126c86126c384611f34565b6126a8565b611f34565b9050919050565b6000819050919050565b6126e7836126b2565b6126fb6126f3826126d4565b848454612656565b825550505050565b600090565b612710612703565b61271b8184846126de565b505050565b5b8181101561273f57612734600082612708565b600181019050612721565b5050565b601f8211156127845761275581612624565b61275e84612639565b8101602085101561276d578190505b61278161277985612639565b830182612720565b50505b505050565b600082821c905092915050565b60006127a760001984600802612789565b1980831691505092915050565b60006127c08383612796565b9150826002028217905092915050565b6127d982611f68565b67ffffffffffffffff8111156127f2576127f16121a1565b5b6127fc8254612541565b612807828285612743565b600060209050601f83116001811461283a5760008415612828578287015190505b61283285826127b4565b86555061289a565b601f19841661284886612624565b60005b828110156128705784890151825560018201915060208501945060208101905061284b565b8683101561288d5784890151612889601f891682612796565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128dc82611f34565b91506128e783611f34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561291c5761291b6128a2565b5b828201905092915050565b600061293282611f34565b915061293d83611f34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612976576129756128a2565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006129b7601d83611f73565b91506129c282612981565b602082019050919050565b600060208201905081810360008301526129e6816129aa565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612a23600983611f73565b9150612a2e826129ed565b602082019050919050565b60006020820190508181036000830152612a5281612a16565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612a8f601383611f73565b9150612a9a82612a59565b602082019050919050565b60006020820190508181036000830152612abe81612a82565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612b21602f83611f73565b9150612b2c82612ac5565b604082019050919050565b60006020820190508181036000830152612b5081612b14565b9050919050565b600081905092915050565b60008154612b6f81612541565b612b798186612b57565b94506001821660008114612b945760018114612ba957612bdc565b60ff1983168652811515820286019350612bdc565b612bb285612624565b60005b83811015612bd457815481890152600182019150602081019050612bb5565b838801955050505b50505092915050565b6000612bf082611f68565b612bfa8185612b57565b9350612c0a818560208601611f84565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612c4c600583612b57565b9150612c5782612c16565b600582019050919050565b6000612c6e8285612b62565b9150612c7a8284612be5565b9150612c8582612c3f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ced602683611f73565b9150612cf882612c91565b604082019050919050565b60006020820190508181036000830152612d1c81612ce0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d59602083611f73565b9150612d6482612d23565b602082019050919050565b60006020820190508181036000830152612d8881612d4c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612db682612d8f565b612dc08185612d9a565b9350612dd0818560208601611f84565b612dd981611fb7565b840191505092915050565b6000608082019050612df960008301876120ae565b612e0660208301866120ae565b612e136040830185611f3e565b8181036060830152612e258184612dab565b905095945050505050565b600081519050612e3f81611ea5565b92915050565b600060208284031215612e5b57612e5a611e6f565b5b6000612e6984828501612e30565b91505092915050565b6000612e7d82611f34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612eaf57612eae6128a2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ef482611f34565b9150612eff83611f34565b925082612f0f57612f0e612eba565b5b828204905092915050565b6000612f2582611f34565b9150612f3083611f34565b925082821015612f4357612f426128a2565b5b828203905092915050565b6000612f5982611f34565b9150612f6483611f34565b925082612f7457612f73612eba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e1b0dbc4c4f9578d35f81ef9245cb1fc46705aa66dcc97af3201a6cd0a3d529364736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6571754e5963635a4533345a546348535461794d695135714a54417a4346616877666b31477a50777541644e2f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmequNYccZE34ZTcHSTayMiQ5qJTAzCFahwfk1GzPwuAdN/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6571754e5963635a4533345a546348535461794d695135
Arg [3] : 714a54417a4346616877666b31477a50777541644e2f00000000000000000000


Deployed Bytecode Sourcemap

59738:2214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27284:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59838:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28186:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34669:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34110:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23937:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59799:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38376:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61744:205;;;:::i;:::-;;41289:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61431:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59971:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29579:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60052:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25121:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61639:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61527:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28362;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59926:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60257:692;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35227:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42072:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61073:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59884:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27284:639;27369:4;27708:10;27693:25;;:11;:25;;;;:102;;;;27785:10;27770:25;;:11;:25;;;;27693:102;:179;;;;27862:10;27847:25;;:11;:25;;;;27693:179;27673:199;;27284:639;;;:::o;59838:39::-;;;;:::o;28186:100::-;28240:13;28273:5;28266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28186:100;:::o;34669:218::-;34745:7;34770:16;34778:7;34770;:16::i;:::-;34765:64;;34795:34;;;;;;;;;;;;;;34765:64;34849:15;:24;34865:7;34849:24;;;;;;;;;;;:30;;;;;;;;;;;;34842:37;;34669:218;;;:::o;34110:400::-;34191:13;34207:16;34215:7;34207;:16::i;:::-;34191:32;;34263:5;34240:28;;:19;:17;:19::i;:::-;:28;;;34236:175;;34288:44;34305:5;34312:19;:17;:19::i;:::-;34288:16;:44::i;:::-;34283:128;;34360:35;;;;;;;;;;;;;;34283:128;34236:175;34456:2;34423:15;:24;34439:7;34423:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34494:7;34490:2;34474:28;;34483:5;34474:28;;;;;;;;;;;;34180:330;34110:400;;:::o;23937:323::-;23998:7;24226:15;:13;:15::i;:::-;24211:12;;24195:13;;:28;:46;24188:53;;23937:323;:::o;59799:32::-;;;;:::o;38376:2817::-;38510:27;38540;38559:7;38540:18;:27::i;:::-;38510:57;;38625:4;38584:45;;38600:19;38584:45;;;38580:86;;38638:28;;;;;;;;;;;;;;38580:86;38680:27;38709:23;38736:35;38763:7;38736:26;:35::i;:::-;38679:92;;;;38871:68;38896:15;38913:4;38919:19;:17;:19::i;:::-;38871:24;:68::i;:::-;38866:180;;38959:43;38976:4;38982:19;:17;:19::i;:::-;38959:16;:43::i;:::-;38954:92;;39011:35;;;;;;;;;;;;;;38954:92;38866:180;39077:1;39063:16;;:2;:16;;;39059:52;;39088:23;;;;;;;;;;;;;;39059:52;39124:43;39146:4;39152:2;39156:7;39165:1;39124:21;:43::i;:::-;39260:15;39257:160;;;39400:1;39379:19;39372:30;39257:160;39797:18;:24;39816:4;39797:24;;;;;;;;;;;;;;;;39795:26;;;;;;;;;;;;39866:18;:22;39885:2;39866:22;;;;;;;;;;;;;;;;39864:24;;;;;;;;;;;40188:146;40225:2;40274:45;40289:4;40295:2;40299:19;40274:14;:45::i;:::-;20336:8;40246:73;40188:18;:146::i;:::-;40159:17;:26;40177:7;40159:26;;;;;;;;;;;:175;;;;40505:1;20336:8;40454:19;:47;:52;40450:627;;40527:19;40559:1;40549:7;:11;40527:33;;40716:1;40682:17;:30;40700:11;40682:30;;;;;;;;;;;;:35;40678:384;;40820:13;;40805:11;:28;40801:242;;41000:19;40967:17;:30;40985:11;40967:30;;;;;;;;;;;:52;;;;40801:242;40678:384;40508:569;40450:627;41124:7;41120:2;41105:27;;41114:4;41105:27;;;;;;;;;;;;41143:42;41164:4;41170:2;41174:7;41183:1;41143:20;:42::i;:::-;38499:2694;;;38376:2817;;;:::o;61744:205::-;7270:13;:11;:13::i;:::-;4309:1:::1;4907:7;;:19:::0;4899:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1;5040:7;:18;;;;61814:12:::2;61840:10;61832:24;;61878:21;61832:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61813:101;;;61933:7;61925:16;;;::::0;::::2;;61802:147;4265:1:::1;5219:7;:22;;;;61744:205::o:0;41289:185::-;41427:39;41444:4;41450:2;41454:7;41427:39;;;;;;;;;;;;:16;:39::i;:::-;41289:185;;;:::o;61431:88::-;7270:13;:11;:13::i;:::-;61508:3:::1;61498:7;:13;;;;;;:::i;:::-;;61431:88:::0;:::o;59971:40::-;;;;:::o;29579:152::-;29651:7;29694:27;29713:7;29694:18;:27::i;:::-;29671:52;;29579:152;;;:::o;60052:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25121:233::-;25193:7;25234:1;25217:19;;:5;:19;;;25213:60;;25245:28;;;;;;;;;;;;;;25213:60;19280:13;25291:18;:25;25310:5;25291:25;;;;;;;;;;;;;;;;:55;25284:62;;25121:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;61639:97::-;7270:13;:11;:13::i;:::-;61719:9:::1;61706:10;:22;;;;61639:97:::0;:::o;61527:104::-;7270:13;:11;:13::i;:::-;61617:6:::1;61596:18;:27;;;;61527:104:::0;:::o;28362:::-;28418:13;28451:7;28444:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28362:104;:::o;59926:38::-;;;;:::o;60257:692::-;60314:12;60329:10;;60314:25;;60350:11;60411:1;60390:18;;:22;;;;:::i;:::-;60382:5;60366:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;60365:127;;;;;60472:19;;60463:5;60431:17;:29;60449:10;60431:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;60365:127;60364:169;;;;60525:7;:5;:7::i;:::-;60511:21;;:10;:21;;;60364:169;60350:183;;60550:6;60546:47;;;60580:1;60573:8;;60546:47;60634:4;60626:5;:12;;;;:::i;:::-;60613:9;:25;;60605:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;60728:1;60715:10;;:14;;;;:::i;:::-;60707:5;60691:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:38;60683:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;60786:1;60770:13;;:17;;;;:::i;:::-;60762:5;:25;60754:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;60828:6;60824:77;;;60884:5;60851:17;:29;60869:10;60851:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;60824:77;60913:28;60923:10;60935:5;60913:9;:28::i;:::-;60303:646;;60257:692;:::o;35227:308::-;35338:19;:17;:19::i;:::-;35326:31;;:8;:31;;;35322:61;;35366:17;;;;;;;;;;;;;;35322:61;35448:8;35396:18;:39;35415:19;:17;:19::i;:::-;35396:39;;;;;;;;;;;;;;;:49;35436:8;35396:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35508:8;35472:55;;35487:19;:17;:19::i;:::-;35472:55;;;35518:8;35472:55;;;;;;:::i;:::-;;;;;;;;35227:308;;:::o;42072:399::-;42239:31;42252:4;42258:2;42262:7;42239:12;:31::i;:::-;42303:1;42285:2;:14;;;:19;42281:183;;42324:56;42355:4;42361:2;42365:7;42374:5;42324:30;:56::i;:::-;42319:145;;42408:40;;;;;;;;;;;;;;42319:145;42281:183;42072:399;;;;:::o;61073:350::-;61191:13;61244:16;61252:7;61244;:16::i;:::-;61222:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;61377:7;61386:18;:7;:16;:18::i;:::-;61360:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61346:69;;61073:350;;;:::o;59884:33::-;;;;:::o;35692:164::-;35789:4;35813:18;:25;35832:5;35813:25;;;;;;;;;;;;;;;:35;35839:8;35813:35;;;;;;;;;;;;;;;;;;;;;;;;;35806:42;;35692:164;;;;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;::::0;8371:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;36114:282::-;36179:4;36235:7;36216:15;:13;:15::i;:::-;:26;;:66;;;;;36269:13;;36259:7;:23;36216:66;:153;;;;;36368:1;20056:8;36320:17;:26;36338:7;36320:26;;;;;;;;;;;;:44;:49;36216:153;36196:173;;36114:282;;;:::o;57880:105::-;57940:7;57967:10;57960:17;;57880:105;:::o;23453:92::-;23509:7;23453:92;:::o;30734:1275::-;30801:7;30821:12;30836:7;30821:22;;30904:4;30885:15;:13;:15::i;:::-;:23;30881:1061;;30938:13;;30931:4;:20;30927:1015;;;30976:14;30993:17;:23;31011:4;30993:23;;;;;;;;;;;;30976:40;;31110:1;20056:8;31082:6;:24;:29;31078:845;;31747:113;31764:1;31754:6;:11;31747:113;;31807:17;:25;31825:6;;;;;;;31807:25;;;;;;;;;;;;31798:34;;31747:113;;;31893:6;31886:13;;;;;;31078:845;30953:989;30927:1015;30881:1061;31970:31;;;;;;;;;;;;;;30734:1275;;;;:::o;37277:479::-;37379:27;37408:23;37449:38;37490:15;:24;37506:7;37490:24;;;;;;;;;;;37449:65;;37661:18;37638:41;;37718:19;37712:26;37693:45;;37623:126;37277:479;;;:::o;36505:659::-;36654:11;36819:16;36812:5;36808:28;36799:37;;36979:16;36968:9;36964:32;36951:45;;37129:15;37118:9;37115:30;37107:5;37096:9;37093:20;37090:56;37080:66;;36505:659;;;;;:::o;43133:159::-;;;;;:::o;57189:311::-;57324:7;57344:16;20460:3;57370:19;:41;;57344:68;;20460:3;57438:31;57449:4;57455:2;57459:9;57438:10;:31::i;:::-;57430:40;;:62;;57423:69;;;57189:311;;;;;:::o;32557:450::-;32637:14;32805:16;32798:5;32794:28;32785:37;;32982:5;32968:11;32943:23;32939:41;32936:52;32929:5;32926:63;32916:73;;32557:450;;;;:::o;43957:158::-;;;;;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;51712:112::-;51789:27;51799:2;51803:8;51789:27;;;;;;;;;;;;:9;:27::i;:::-;51712:112;;:::o;44555:716::-;44718:4;44764:2;44739:45;;;44785:19;:17;:19::i;:::-;44806:4;44812:7;44821:5;44739:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44735:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45039:1;45022:6;:13;:18;45018:235;;45068:40;;;;;;;;;;;;;;45018:235;45211:6;45205:13;45196:6;45192:2;45188:15;45181:38;44735:529;44908:54;;;44898:64;;;:6;:64;;;;44891:71;;;44555:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;56890:147::-;57027:6;56890:147;;;;;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;50939:689::-;51070:19;51076:2;51080:8;51070:5;:19::i;:::-;51149:1;51131:2;:14;;;:19;51127:483;;51171:11;51185:13;;51171:27;;51217:13;51239:8;51233:3;:14;51217:30;;51266:233;51297:62;51336:1;51340:2;51344:7;;;;;;51353:5;51297:30;:62::i;:::-;51292:167;;51395:40;;;;;;;;;;;;;;51292:167;51494:3;51486:5;:11;51266:233;;51581:3;51564:13;;:20;51560:34;;51586:8;;;51560:34;51152:458;;51127:483;50939:689;;;:::o;45733:2454::-;45806:20;45829:13;;45806:36;;45869:1;45857:8;:13;45853:44;;45879:18;;;;;;;;;;;;;;45853:44;45910:61;45940:1;45944:2;45948:12;45962:8;45910:21;:61::i;:::-;46454:1;19418:2;46424:1;:26;;46423:32;46411:8;:45;46385:18;:22;46404:2;46385:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46733:139;46770:2;46824:33;46847:1;46851:2;46855:1;46824:14;:33::i;:::-;46791:30;46812:8;46791:20;:30::i;:::-;:66;46733:18;:139::i;:::-;46699:17;:31;46717:12;46699:31;;;;;;;;;;;:173;;;;46889:16;46920:11;46949:8;46934:12;:23;46920:37;;47204:16;47200:2;47196:25;47184:37;;47576:12;47536:8;47495:1;47433:25;47374:1;47313;47286:335;47701:1;47687:12;47683:20;47641:346;47742:3;47733:7;47730:16;47641:346;;47960:7;47950:8;47947:1;47920:25;47917:1;47914;47909:59;47795:1;47786:7;47782:15;47771:26;;47641:346;;;47645:77;48032:1;48020:8;:13;48016:45;;48042:19;;;;;;;;;;;;;;48016:45;48094:3;48078:13;:19;;;;46159:1950;;48119:60;48148:1;48152:2;48156:12;48170:8;48119:20;:60::i;:::-;45795:2392;45733:2454;;:::o;33109:324::-;33179:14;33412:1;33402:8;33399:15;33373:24;33369:46;33359:56;;33109: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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:181::-;12773:33;12769:1;12761:6;12757:14;12750:57;12633:181;:::o;12820:366::-;12962:3;12983:67;13047:2;13042:3;12983:67;:::i;:::-;12976:74;;13059:93;13148:3;13059:93;:::i;:::-;13177:2;13172:3;13168:12;13161:19;;12820:366;;;:::o;13192:419::-;13358:4;13396:2;13385:9;13381:18;13373:26;;13445:9;13439:4;13435:20;13431:1;13420:9;13416:17;13409:47;13473:131;13599:4;13473:131;:::i;:::-;13465:139;;13192:419;;;:::o;13617:147::-;13718:11;13755:3;13740:18;;13617:147;;;;:::o;13770:114::-;;:::o;13890:398::-;14049:3;14070:83;14151:1;14146:3;14070:83;:::i;:::-;14063:90;;14162:93;14251:3;14162:93;:::i;:::-;14280:1;14275:3;14271:11;14264:18;;13890:398;;;:::o;14294:379::-;14478:3;14500:147;14643:3;14500:147;:::i;:::-;14493:154;;14664:3;14657:10;;14294:379;;;:::o;14679:141::-;14728:4;14751:3;14743:11;;14774:3;14771:1;14764:14;14808:4;14805:1;14795:18;14787:26;;14679:141;;;:::o;14826:93::-;14863:6;14910:2;14905;14898:5;14894:14;14890:23;14880:33;;14826:93;;;:::o;14925:107::-;14969:8;15019:5;15013:4;15009:16;14988:37;;14925:107;;;;:::o;15038:393::-;15107:6;15157:1;15145:10;15141:18;15180:97;15210:66;15199:9;15180:97;:::i;:::-;15298:39;15328:8;15317:9;15298:39;:::i;:::-;15286:51;;15370:4;15366:9;15359:5;15355:21;15346:30;;15419:4;15409:8;15405:19;15398:5;15395:30;15385:40;;15114:317;;15038:393;;;;;:::o;15437:60::-;15465:3;15486:5;15479:12;;15437:60;;;:::o;15503:142::-;15553:9;15586:53;15604:34;15613:24;15631:5;15613:24;:::i;:::-;15604:34;:::i;:::-;15586:53;:::i;:::-;15573:66;;15503:142;;;:::o;15651:75::-;15694:3;15715:5;15708:12;;15651:75;;;:::o;15732:269::-;15842:39;15873:7;15842:39;:::i;:::-;15903:91;15952:41;15976:16;15952:41;:::i;:::-;15944:6;15937:4;15931:11;15903:91;:::i;:::-;15897:4;15890:105;15808:193;15732:269;;;:::o;16007:73::-;16052:3;16007:73;:::o;16086:189::-;16163:32;;:::i;:::-;16204:65;16262:6;16254;16248:4;16204:65;:::i;:::-;16139:136;16086:189;;:::o;16281:186::-;16341:120;16358:3;16351:5;16348:14;16341:120;;;16412:39;16449:1;16442:5;16412:39;:::i;:::-;16385:1;16378:5;16374:13;16365:22;;16341:120;;;16281:186;;:::o;16473:543::-;16574:2;16569:3;16566:11;16563:446;;;16608:38;16640:5;16608:38;:::i;:::-;16692:29;16710:10;16692:29;:::i;:::-;16682:8;16678:44;16875:2;16863:10;16860:18;16857:49;;;16896:8;16881:23;;16857:49;16919:80;16975:22;16993:3;16975:22;:::i;:::-;16965:8;16961:37;16948:11;16919:80;:::i;:::-;16578:431;;16563:446;16473:543;;;:::o;17022:117::-;17076:8;17126:5;17120:4;17116:16;17095:37;;17022:117;;;;:::o;17145:169::-;17189:6;17222:51;17270:1;17266:6;17258:5;17255:1;17251:13;17222:51;:::i;:::-;17218:56;17303:4;17297;17293:15;17283:25;;17196:118;17145:169;;;;:::o;17319:295::-;17395:4;17541:29;17566:3;17560:4;17541:29;:::i;:::-;17533:37;;17603:3;17600:1;17596:11;17590:4;17587:21;17579:29;;17319:295;;;;:::o;17619:1395::-;17736:37;17769:3;17736:37;:::i;:::-;17838:18;17830:6;17827:30;17824:56;;;17860:18;;:::i;:::-;17824:56;17904:38;17936:4;17930:11;17904:38;:::i;:::-;17989:67;18049:6;18041;18035:4;17989:67;:::i;:::-;18083:1;18107:4;18094:17;;18139:2;18131:6;18128:14;18156:1;18151:618;;;;18813:1;18830:6;18827:77;;;18879:9;18874:3;18870:19;18864:26;18855:35;;18827:77;18930:67;18990:6;18983:5;18930:67;:::i;:::-;18924:4;18917:81;18786:222;18121:887;;18151:618;18203:4;18199:9;18191:6;18187:22;18237:37;18269:4;18237:37;:::i;:::-;18296:1;18310:208;18324:7;18321:1;18318:14;18310:208;;;18403:9;18398:3;18394:19;18388:26;18380:6;18373:42;18454:1;18446:6;18442:14;18432:24;;18501:2;18490:9;18486:18;18473:31;;18347:4;18344:1;18340:12;18335:17;;18310:208;;;18546:6;18537:7;18534:19;18531:179;;;18604:9;18599:3;18595:19;18589:26;18647:48;18689:4;18681:6;18677:17;18666:9;18647:48;:::i;:::-;18639:6;18632:64;18554:156;18531:179;18756:1;18752;18744:6;18740:14;18736:22;18730:4;18723:36;18158:611;;;18121:887;;17711:1303;;;17619:1395;;:::o;19020:180::-;19068:77;19065:1;19058:88;19165:4;19162:1;19155:15;19189:4;19186:1;19179:15;19206:305;19246:3;19265:20;19283:1;19265:20;:::i;:::-;19260:25;;19299:20;19317:1;19299:20;:::i;:::-;19294:25;;19453:1;19385:66;19381:74;19378:1;19375:81;19372:107;;;19459:18;;:::i;:::-;19372:107;19503:1;19500;19496:9;19489:16;;19206:305;;;;:::o;19517:348::-;19557:7;19580:20;19598:1;19580:20;:::i;:::-;19575:25;;19614:20;19632:1;19614:20;:::i;:::-;19609:25;;19802:1;19734:66;19730:74;19727:1;19724:81;19719:1;19712:9;19705:17;19701:105;19698:131;;;19809:18;;:::i;:::-;19698:131;19857:1;19854;19850:9;19839:20;;19517:348;;;;:::o;19871:179::-;20011:31;20007:1;19999:6;19995:14;19988:55;19871:179;:::o;20056:366::-;20198:3;20219:67;20283:2;20278:3;20219:67;:::i;:::-;20212:74;;20295:93;20384:3;20295:93;:::i;:::-;20413:2;20408:3;20404:12;20397:19;;20056:366;;;:::o;20428:419::-;20594:4;20632:2;20621:9;20617:18;20609:26;;20681:9;20675:4;20671:20;20667:1;20656:9;20652:17;20645:47;20709:131;20835:4;20709:131;:::i;:::-;20701:139;;20428:419;;;:::o;20853:159::-;20993:11;20989:1;20981:6;20977:14;20970:35;20853:159;:::o;21018:365::-;21160:3;21181:66;21245:1;21240:3;21181:66;:::i;:::-;21174:73;;21256:93;21345:3;21256:93;:::i;:::-;21374:2;21369:3;21365:12;21358:19;;21018:365;;;:::o;21389:419::-;21555:4;21593:2;21582:9;21578:18;21570:26;;21642:9;21636:4;21632:20;21628:1;21617:9;21613:17;21606:47;21670:131;21796:4;21670:131;:::i;:::-;21662:139;;21389:419;;;:::o;21814:169::-;21954:21;21950:1;21942:6;21938:14;21931:45;21814:169;:::o;21989:366::-;22131:3;22152:67;22216:2;22211:3;22152:67;:::i;:::-;22145:74;;22228:93;22317:3;22228:93;:::i;:::-;22346:2;22341:3;22337:12;22330:19;;21989:366;;;:::o;22361:419::-;22527:4;22565:2;22554:9;22550:18;22542:26;;22614:9;22608:4;22604:20;22600:1;22589:9;22585:17;22578:47;22642:131;22768:4;22642:131;:::i;:::-;22634:139;;22361:419;;;:::o;22786:234::-;22926:34;22922:1;22914:6;22910:14;22903:58;22995:17;22990:2;22982:6;22978:15;22971:42;22786:234;:::o;23026:366::-;23168:3;23189:67;23253:2;23248:3;23189:67;:::i;:::-;23182:74;;23265:93;23354:3;23265:93;:::i;:::-;23383:2;23378:3;23374:12;23367:19;;23026:366;;;:::o;23398:419::-;23564:4;23602:2;23591:9;23587:18;23579:26;;23651:9;23645:4;23641:20;23637:1;23626:9;23622:17;23615:47;23679:131;23805:4;23679:131;:::i;:::-;23671:139;;23398:419;;;:::o;23823:148::-;23925:11;23962:3;23947:18;;23823:148;;;;:::o;24001:874::-;24104:3;24141:5;24135:12;24170:36;24196:9;24170:36;:::i;:::-;24222:89;24304:6;24299:3;24222:89;:::i;:::-;24215:96;;24342:1;24331:9;24327:17;24358:1;24353:166;;;;24533:1;24528:341;;;;24320:549;;24353:166;24437:4;24433:9;24422;24418:25;24413:3;24406:38;24499:6;24492:14;24485:22;24477:6;24473:35;24468:3;24464:45;24457:52;;24353:166;;24528:341;24595:38;24627:5;24595:38;:::i;:::-;24655:1;24669:154;24683:6;24680:1;24677:13;24669:154;;;24757:7;24751:14;24747:1;24742:3;24738:11;24731:35;24807:1;24798:7;24794:15;24783:26;;24705:4;24702:1;24698:12;24693:17;;24669:154;;;24852:6;24847:3;24843:16;24836:23;;24535:334;;24320:549;;24108:767;;24001:874;;;;:::o;24881:377::-;24987:3;25015:39;25048:5;25015:39;:::i;:::-;25070:89;25152:6;25147:3;25070:89;:::i;:::-;25063:96;;25168:52;25213:6;25208:3;25201:4;25194:5;25190:16;25168:52;:::i;:::-;25245:6;25240:3;25236:16;25229:23;;24991:267;24881:377;;;;:::o;25264:155::-;25404:7;25400:1;25392:6;25388:14;25381:31;25264:155;:::o;25425:400::-;25585:3;25606:84;25688:1;25683:3;25606:84;:::i;:::-;25599:91;;25699:93;25788:3;25699:93;:::i;:::-;25817:1;25812:3;25808:11;25801:18;;25425:400;;;:::o;25831:695::-;26109:3;26131:92;26219:3;26210:6;26131:92;:::i;:::-;26124:99;;26240:95;26331:3;26322:6;26240:95;:::i;:::-;26233:102;;26352:148;26496:3;26352:148;:::i;:::-;26345:155;;26517:3;26510:10;;25831:695;;;;;:::o;26532:225::-;26672:34;26668:1;26660:6;26656:14;26649:58;26741:8;26736:2;26728:6;26724:15;26717:33;26532:225;:::o;26763:366::-;26905:3;26926:67;26990:2;26985:3;26926:67;:::i;:::-;26919:74;;27002:93;27091:3;27002:93;:::i;:::-;27120:2;27115:3;27111:12;27104:19;;26763:366;;;:::o;27135:419::-;27301:4;27339:2;27328:9;27324:18;27316:26;;27388:9;27382:4;27378:20;27374:1;27363:9;27359:17;27352:47;27416:131;27542:4;27416:131;:::i;:::-;27408:139;;27135:419;;;:::o;27560:182::-;27700:34;27696:1;27688:6;27684:14;27677:58;27560:182;:::o;27748:366::-;27890:3;27911:67;27975:2;27970:3;27911:67;:::i;:::-;27904:74;;27987:93;28076:3;27987:93;:::i;:::-;28105:2;28100:3;28096:12;28089:19;;27748:366;;;:::o;28120:419::-;28286:4;28324:2;28313:9;28309:18;28301:26;;28373:9;28367:4;28363:20;28359:1;28348:9;28344:17;28337:47;28401:131;28527:4;28401:131;:::i;:::-;28393:139;;28120:419;;;:::o;28545:98::-;28596:6;28630:5;28624:12;28614:22;;28545:98;;;:::o;28649:168::-;28732:11;28766:6;28761:3;28754:19;28806:4;28801:3;28797:14;28782:29;;28649:168;;;;:::o;28823:360::-;28909:3;28937:38;28969:5;28937:38;:::i;:::-;28991:70;29054:6;29049:3;28991:70;:::i;:::-;28984:77;;29070:52;29115:6;29110:3;29103:4;29096:5;29092:16;29070:52;:::i;:::-;29147:29;29169:6;29147:29;:::i;:::-;29142:3;29138:39;29131:46;;28913:270;28823:360;;;;:::o;29189:640::-;29384:4;29422:3;29411:9;29407:19;29399:27;;29436:71;29504:1;29493:9;29489:17;29480:6;29436:71;:::i;:::-;29517:72;29585:2;29574:9;29570:18;29561:6;29517:72;:::i;:::-;29599;29667:2;29656:9;29652:18;29643:6;29599:72;:::i;:::-;29718:9;29712:4;29708:20;29703:2;29692:9;29688:18;29681:48;29746:76;29817:4;29808:6;29746:76;:::i;:::-;29738:84;;29189:640;;;;;;;:::o;29835:141::-;29891:5;29922:6;29916:13;29907:22;;29938:32;29964:5;29938:32;:::i;:::-;29835:141;;;;:::o;29982:349::-;30051:6;30100:2;30088:9;30079:7;30075:23;30071:32;30068:119;;;30106:79;;:::i;:::-;30068:119;30226:1;30251:63;30306:7;30297:6;30286:9;30282:22;30251:63;:::i;:::-;30241:73;;30197:127;29982:349;;;;:::o;30337:233::-;30376:3;30399:24;30417:5;30399:24;:::i;:::-;30390:33;;30445:66;30438:5;30435:77;30432:103;;30515:18;;:::i;:::-;30432:103;30562:1;30555:5;30551:13;30544:20;;30337:233;;;:::o;30576:180::-;30624:77;30621:1;30614:88;30721:4;30718:1;30711:15;30745:4;30742:1;30735:15;30762:185;30802:1;30819:20;30837:1;30819:20;:::i;:::-;30814:25;;30853:20;30871:1;30853:20;:::i;:::-;30848:25;;30892:1;30882:35;;30897:18;;:::i;:::-;30882:35;30939:1;30936;30932:9;30927:14;;30762:185;;;;:::o;30953:191::-;30993:4;31013:20;31031:1;31013:20;:::i;:::-;31008:25;;31047:20;31065:1;31047:20;:::i;:::-;31042:25;;31086:1;31083;31080:8;31077:34;;;31091:18;;:::i;:::-;31077:34;31136:1;31133;31129:9;31121:17;;30953:191;;;;:::o;31150:176::-;31182:1;31199:20;31217:1;31199:20;:::i;:::-;31194:25;;31233:20;31251:1;31233:20;:::i;:::-;31228:25;;31272:1;31262:35;;31277:18;;:::i;:::-;31262:35;31318:1;31315;31311:9;31306:14;;31150:176;;;;:::o;31332:180::-;31380:77;31377:1;31370:88;31477:4;31474:1;31467:15;31501:4;31498:1;31491:15

Swarm Source

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