ETH Price: $3,356.09 (-0.82%)
Gas: 1 Gwei

Token

Founder Pass - Gold (FNDR)
 

Overview

Max Total Supply

203 FNDR

Holders

139

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FNDR
0x7DA1F119501905075A1107413c8cFdC2CDD4a998
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:
FounderPassGold

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-29
*/

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @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: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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 (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: foundergold.sol


pragma solidity ^0.8.14;





contract FounderPassGold is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI;
    uint256 public currentSupply = 0;
    uint256 public mintLimit = 50;
    uint256 public presaleMaxMint = 2;
    uint256 public _totalSupply = 1000;
    uint256 public cost = 0.001 ether;
    bool public paused = true;
    bool public presale = true;
    bool public revealed = true;
    mapping(address => bool) private whitelisted;
    mapping(address => uint256) private walletMintedBalance;
    address public collabAddress = 0xcBf92Aac95b9f46F6686f69360550d1fb76fA065;

    constructor(string memory _initBaseURI)
        ERC721A("Founder Pass - Gold", "FNDR")
    {
        baseURI = _initBaseURI;
    }

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

    modifier mintCompliance(uint256 quantity) {
        require(quantity > 0 && quantity <= mintLimit, "Invalid mint amount!");
        require(
            currentSupply + quantity <= _totalSupply,
            "You can't mint more than available token"
        );
        _;
    }

    function mint(uint256 quantity) external payable mintCompliance(quantity) {
        require(!paused, "The contract is paused!");
        require(
            tx.origin == msg.sender,
            "Cannot mint through a custom contract"
        );
        if (msg.sender != owner()) {
            if (presale) {
                require(whitelisted[msg.sender], "Wallet not whitelisted");
                require(
                    walletMintedBalance[msg.sender] + quantity <= presaleMaxMint,
                    "Presale token limit reached"
                );
            }
            require(msg.value >= quantity * cost);
        }
        _mintNft(quantity);
    }

    function _mintNft(uint256 _mintAmount) internal {
        _safeMint(msg.sender, _mintAmount);
        if (presale) {
            for (uint256 i = 1; i <= _mintAmount; i++) {
                walletMintedBalance[msg.sender]++;
            }
        }
        currentSupply = currentSupply + _mintAmount;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistant token"
        );
        string memory currentBaseURI = _baseURI();
        if (revealed) {
            return
                bytes(currentBaseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            currentBaseURI,
                            Strings.toString(tokenId),
                            ".json"
                        )
                    )
                    : "";
        } else {
            return string(abi.encodePacked(_baseURI(), "hidden.json"));
        }
    }

    function isWhitelisted(address _user) public view onlyOwner returns (bool) {
        return whitelisted[_user];
    }

    function getWalletPremintBalance(address _user) public view onlyOwner returns (uint256) {
        return walletMintedBalance[_user];
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

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

    function setPresale(bool _state) public onlyOwner {
        presale = _state;
    }

    function setPricePerNFT(uint256 _newpricePerNFT) public onlyOwner {
        cost = _newpricePerNFT;
    }
  
    function setbaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
    }

    function addWhitelistUsers(address[] calldata _users) public onlyOwner {
        for (uint256 i; i < _users.length; i++) {
            whitelisted[_users[i]] = true;
        }
    }

    function addWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = true;
    }

    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = false;
    }

    function withdraw() public payable nonReentrant onlyOwner {
        (bool oh, ) = payable(collabAddress).call{
            value: (address(this).balance * 1) / 100
        }("");
        require(oh);

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

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":"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":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collabAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getWalletPremintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newpricePerNFT","type":"uint256"}],"name":"setPricePerNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setbaseURI","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b556032600c556002600d556103e8600e5566038d7ea4c68000600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff02191690831515021790555073cbf92aac95b9f46f6686f69360550d1fb76fa065601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d757600080fd5b5060405162003e1238038062003e128339818101604052810190620000fd91906200051b565b6040518060400160405280601381526020017f466f756e6465722050617373202d20476f6c64000000000000000000000000008152506040518060400160405280600481526020017f464e445200000000000000000000000000000000000000000000000000000000815250816002908051906020019062000181929190620002ce565b5080600390805190602001906200019a929190620002ce565b50620001ab620001fb60201b60201c565b6000819055505050620001d3620001c76200020060201b60201c565b6200020860201b60201c565b600160098190555080600a9080519060200190620001f3929190620002ce565b5050620005d0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002dc906200059b565b90600052602060002090601f0160209004810192826200030057600085556200034c565b82601f106200031b57805160ff19168380011785556200034c565b828001600101855582156200034c579182015b828111156200034b5782518255916020019190600101906200032e565b5b5090506200035b91906200035f565b5090565b5b808211156200037a57600081600090555060010162000360565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003e7826200039c565b810181811067ffffffffffffffff82111715620004095762000408620003ad565b5b80604052505050565b60006200041e6200037e565b90506200042c8282620003dc565b919050565b600067ffffffffffffffff8211156200044f576200044e620003ad565b5b6200045a826200039c565b9050602081019050919050565b60005b83811015620004875780820151818401526020810190506200046a565b8381111562000497576000848401525b50505050565b6000620004b4620004ae8462000431565b62000412565b905082815260208101848484011115620004d357620004d262000397565b5b620004e084828562000467565b509392505050565b600082601f8301126200050057620004ff62000392565b5b8151620005128482602086016200049d565b91505092915050565b60006020828403121562000534576200053362000388565b5b600082015167ffffffffffffffff8111156200055557620005546200038d565b5b6200056384828501620004e8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005b457607f821691505b602082108103620005ca57620005c96200056c565b5b50919050565b61383280620005e06000396000f3fe6080604052600436106102305760003560e01c8063686b28121161012e578063a0712d68116100ab578063cc9f01941161006f578063cc9f0194146107db578063e0a8085314610804578063e985e9c51461082d578063f2fde38b1461086a578063fdea8e0b1461089357610230565b8063a0712d6814610714578063a22cb46514610730578063b88d4fde14610759578063c54e73e314610775578063c87b56dd1461079e57610230565b806384083c89116100f257806384083c891461063f5780638da5cb5b14610668578063946ef42a1461069357806395d89b41146106be578063996517cf146106e957610230565b8063686b28121461056c5780636c0360eb1461059557806370a08231146105c0578063715018a6146105fd578063771282f61461061457610230565b806330cc7ae0116101bc57806342842e0e1161018057806342842e0e146104945780634a44f379146104b057806351830227146104d95780635c975abb146105045780636352211e1461052f57610230565b806330cc7ae0146103ce57806333f9ce6e146103f75780633af32abf146104225780633ccfd60b1461045f5780633eaaf86b1461046957610230565b806313faede61161020357806313faede6146102f657806316c38b3c1461032157806318160ddd1461034a57806323b872dd1461037557806324a00c6b1461039157610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612748565b6108be565b6040516102699190612790565b60405180910390f35b34801561027e57600080fd5b50610287610950565b6040516102949190612844565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061289c565b6109e2565b6040516102d1919061290a565b60405180910390f35b6102f460048036038101906102ef9190612951565b610a61565b005b34801561030257600080fd5b5061030b610ba5565b60405161031891906129a0565b60405180910390f35b34801561032d57600080fd5b50610348600480360381019061034391906129e7565b610bab565b005b34801561035657600080fd5b5061035f610bd0565b60405161036c91906129a0565b60405180910390f35b61038f600480360381019061038a9190612a14565b610be7565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612a67565b610f09565b6040516103c591906129a0565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612a67565b610f5a565b005b34801561040357600080fd5b5061040c610fbd565b604051610419919061290a565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190612a67565b610fe3565b6040516104569190612790565b60405180910390f35b610467611041565b005b34801561047557600080fd5b5061047e6111cf565b60405161048b91906129a0565b60405180910390f35b6104ae60048036038101906104a99190612a14565b6111d5565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612bc9565b6111f5565b005b3480156104e557600080fd5b506104ee611217565b6040516104fb9190612790565b60405180910390f35b34801561051057600080fd5b5061051961122a565b6040516105269190612790565b60405180910390f35b34801561053b57600080fd5b506105566004803603810190610551919061289c565b61123d565b604051610563919061290a565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612c72565b61124f565b005b3480156105a157600080fd5b506105aa6112fc565b6040516105b79190612844565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190612a67565b61138a565b6040516105f491906129a0565b60405180910390f35b34801561060957600080fd5b50610612611442565b005b34801561062057600080fd5b50610629611456565b60405161063691906129a0565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612a67565b61145c565b005b34801561067457600080fd5b5061067d6114bf565b60405161068a919061290a565b60405180910390f35b34801561069f57600080fd5b506106a86114e9565b6040516106b591906129a0565b60405180910390f35b3480156106ca57600080fd5b506106d36114ef565b6040516106e09190612844565b60405180910390f35b3480156106f557600080fd5b506106fe611581565b60405161070b91906129a0565b60405180910390f35b61072e6004803603810190610729919061289c565b611587565b005b34801561073c57600080fd5b5061075760048036038101906107529190612cbf565b61187c565b005b610773600480360381019061076e9190612da0565b611987565b005b34801561078157600080fd5b5061079c600480360381019061079791906129e7565b6119fa565b005b3480156107aa57600080fd5b506107c560048036038101906107c0919061289c565b611a1f565b6040516107d29190612844565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061289c565b611b0b565b005b34801561081057600080fd5b5061082b600480360381019061082691906129e7565b611b1d565b005b34801561083957600080fd5b50610854600480360381019061084f9190612e23565b611b42565b6040516108619190612790565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190612a67565b611bd6565b005b34801561089f57600080fd5b506108a8611c59565b6040516108b59190612790565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095f90612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461098b90612e92565b80156109d85780601f106109ad576101008083540402835291602001916109d8565b820191906000526020600020905b8154815290600101906020018083116109bb57829003601f168201915b5050505050905090565b60006109ed82611c6c565b610a23576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6c8261123d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8d611ccb565b73ffffffffffffffffffffffffffffffffffffffff1614610af057610ab981610ab4611ccb565b611b42565b610aef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610bb3611cd3565b80601060006101000a81548160ff02191690831515021790555050565b6000610bda611d51565b6001546000540303905090565b6000610bf282611d56565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6584611e22565b91509150610c7b8187610c76611ccb565b611e49565b610cc757610c9086610c8b611ccb565b611b42565b610cc6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d2d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3a8686866001611e8d565b8015610d4557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1385610def888887611e93565b7c020000000000000000000000000000000000000000000000000000000017611ebb565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e995760006001850190506000600460008381526020019081526020016000205403610e97576000548114610e96578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f018686866001611ee6565b505050505050565b6000610f13611cd3565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f62611cd3565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610fed611cd3565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600260095403611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d90612f0f565b60405180910390fd5b6002600981905550611096611cd3565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646001476110e09190612f5e565b6110ea9190612fe7565b6040516110f690613049565b60006040518083038185875af1925050503d8060008114611133576040519150601f19603f3d011682016040523d82523d6000602084013e611138565b606091505b505090508061114657600080fd5b60006111506114bf565b73ffffffffffffffffffffffffffffffffffffffff164760405161117390613049565b60006040518083038185875af1925050503d80600081146111b0576040519150601f19603f3d011682016040523d82523d6000602084013e6111b5565b606091505b50509050806111c357600080fd5b50506001600981905550565b600e5481565b6111f083838360405180602001604052806000815250611987565b505050565b6111fd611cd3565b80600a9080519060200190611213929190612639565b5050565b601060029054906101000a900460ff1681565b601060009054906101000a900460ff1681565b600061124882611d56565b9050919050565b611257611cd3565b60005b828290508110156112f75760016011600085858581811061127e5761127d61305e565b5b90506020020160208101906112939190612a67565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112ef9061308d565b91505061125a565b505050565b600a805461130990612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461133590612e92565b80156113825780601f1061135757610100808354040283529160200191611382565b820191906000526020600020905b81548152906001019060200180831161136557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61144a611cd3565b6114546000611eec565b565b600b5481565b611464611cd3565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600380546114fe90612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461152a90612e92565b80156115775780601f1061154c57610100808354040283529160200191611577565b820191906000526020600020905b81548152906001019060200180831161155a57829003601f168201915b5050505050905090565b600c5481565b8060008111801561159a5750600c548111155b6115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090613121565b60405180910390fd5b600e5481600b546115ea9190613141565b111561162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613209565b60405180910390fd5b601060009054906101000a900460ff161561167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613275565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613307565b60405180910390fd5b6116f16114bf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461186f57601060019054906101000a900460ff161561185457601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613373565b60405180910390fd5b600d5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118129190613141565b1115611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906133df565b60405180910390fd5b5b600f54826118629190612f5e565b34101561186e57600080fd5b5b61187882611fb2565b5050565b8060076000611889611ccb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611936611ccb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197b9190612790565b60405180910390a35050565b611992848484610be7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119f4576119bd84848484612060565b6119f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a02611cd3565b80601060016101000a81548160ff02191690831515021790555050565b6060611a2a82611c6c565b611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090613471565b60405180910390fd5b6000611a736121b0565b9050601060029054906101000a900460ff1615611adb576000815111611aa85760405180602001604052806000815250611ad3565b80611ab284612242565b604051602001611ac3929190613519565b6040516020818303038152906040525b915050611b06565b611ae36121b0565b604051602001611af39190613594565b6040516020818303038152906040529150505b919050565b611b13611cd3565b80600f8190555050565b611b25611cd3565b80601060026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bde611cd3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490613628565b60405180910390fd5b611c5681611eec565b50565b601060019054906101000a900460ff1681565b600081611c77611d51565b11158015611c86575060005482105b8015611cc4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611cdb6123a2565b73ffffffffffffffffffffffffffffffffffffffff16611cf96114bf565b73ffffffffffffffffffffffffffffffffffffffff1614611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613694565b60405180910390fd5b565b600090565b60008082905080611d65611d51565b11611deb57600054811015611dea5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611de8575b60008103611dde576004600083600190039350838152602001908152602001600020549050611db4565b8092505050611e1d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611eaa8686846123aa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fbc33826123b3565b601060019054906101000a900460ff1615612049576000600190505b81811161204757601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061202f9061308d565b9190505550808061203f9061308d565b915050611fd8565b505b80600b546120579190613141565b600b8190555050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612086611ccb565b8786866040518563ffffffff1660e01b81526004016120a89493929190613709565b6020604051808303816000875af19250505080156120e457506040513d601f19601f820116820180604052508101906120e1919061376a565b60015b61215d573d8060008114612114576040519150601f19603f3d011682016040523d82523d6000602084013e612119565b606091505b506000815103612155576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121bf90612e92565b80601f01602080910402602001604051908101604052809291908181526020018280546121eb90612e92565b80156122385780601f1061220d57610100808354040283529160200191612238565b820191906000526020600020905b81548152906001019060200180831161221b57829003601f168201915b5050505050905090565b606060008203612289576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061239d565b600082905060005b600082146122bb5780806122a49061308d565b915050600a826122b49190612fe7565b9150612291565b60008167ffffffffffffffff8111156122d7576122d6612a9e565b5b6040519080825280601f01601f1916602001820160405280156123095781602001600182028036833780820191505090505b5090505b60008514612396576001826123229190613797565b9150600a8561233191906137cb565b603061233d9190613141565b60f81b8183815181106123535761235261305e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238f9190612fe7565b945061230d565b8093505050505b919050565b600033905090565b60009392505050565b6123cd8282604051806020016040528060008152506123d1565b5050565b6123db838361246e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461246957600080549050600083820390505b61241b6000868380600101945086612060565b612451576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061240857816000541461246657600080fd5b50505b505050565b600080549050600082036124ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124bb6000848385611e8d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612532836125236000866000611e93565b61252c85612629565b17611ebb565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125d357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612598565b506000820361260e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126246000848385611ee6565b505050565b60006001821460e11b9050919050565b82805461264590612e92565b90600052602060002090601f01602090048101928261266757600085556126ae565b82601f1061268057805160ff19168380011785556126ae565b828001600101855582156126ae579182015b828111156126ad578251825591602001919060010190612692565b5b5090506126bb91906126bf565b5090565b5b808211156126d85760008160009055506001016126c0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612725816126f0565b811461273057600080fd5b50565b6000813590506127428161271c565b92915050565b60006020828403121561275e5761275d6126e6565b5b600061276c84828501612733565b91505092915050565b60008115159050919050565b61278a81612775565b82525050565b60006020820190506127a56000830184612781565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127e55780820151818401526020810190506127ca565b838111156127f4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612816826127ab565b61282081856127b6565b93506128308185602086016127c7565b612839816127fa565b840191505092915050565b6000602082019050818103600083015261285e818461280b565b905092915050565b6000819050919050565b61287981612866565b811461288457600080fd5b50565b60008135905061289681612870565b92915050565b6000602082840312156128b2576128b16126e6565b5b60006128c084828501612887565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128f4826128c9565b9050919050565b612904816128e9565b82525050565b600060208201905061291f60008301846128fb565b92915050565b61292e816128e9565b811461293957600080fd5b50565b60008135905061294b81612925565b92915050565b60008060408385031215612968576129676126e6565b5b60006129768582860161293c565b925050602061298785828601612887565b9150509250929050565b61299a81612866565b82525050565b60006020820190506129b56000830184612991565b92915050565b6129c481612775565b81146129cf57600080fd5b50565b6000813590506129e1816129bb565b92915050565b6000602082840312156129fd576129fc6126e6565b5b6000612a0b848285016129d2565b91505092915050565b600080600060608486031215612a2d57612a2c6126e6565b5b6000612a3b8682870161293c565b9350506020612a4c8682870161293c565b9250506040612a5d86828701612887565b9150509250925092565b600060208284031215612a7d57612a7c6126e6565b5b6000612a8b8482850161293c565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ad6826127fa565b810181811067ffffffffffffffff82111715612af557612af4612a9e565b5b80604052505050565b6000612b086126dc565b9050612b148282612acd565b919050565b600067ffffffffffffffff821115612b3457612b33612a9e565b5b612b3d826127fa565b9050602081019050919050565b82818337600083830152505050565b6000612b6c612b6784612b19565b612afe565b905082815260208101848484011115612b8857612b87612a99565b5b612b93848285612b4a565b509392505050565b600082601f830112612bb057612baf612a94565b5b8135612bc0848260208601612b59565b91505092915050565b600060208284031215612bdf57612bde6126e6565b5b600082013567ffffffffffffffff811115612bfd57612bfc6126eb565b5b612c0984828501612b9b565b91505092915050565b600080fd5b600080fd5b60008083601f840112612c3257612c31612a94565b5b8235905067ffffffffffffffff811115612c4f57612c4e612c12565b5b602083019150836020820283011115612c6b57612c6a612c17565b5b9250929050565b60008060208385031215612c8957612c886126e6565b5b600083013567ffffffffffffffff811115612ca757612ca66126eb565b5b612cb385828601612c1c565b92509250509250929050565b60008060408385031215612cd657612cd56126e6565b5b6000612ce48582860161293c565b9250506020612cf5858286016129d2565b9150509250929050565b600067ffffffffffffffff821115612d1a57612d19612a9e565b5b612d23826127fa565b9050602081019050919050565b6000612d43612d3e84612cff565b612afe565b905082815260208101848484011115612d5f57612d5e612a99565b5b612d6a848285612b4a565b509392505050565b600082601f830112612d8757612d86612a94565b5b8135612d97848260208601612d30565b91505092915050565b60008060008060808587031215612dba57612db96126e6565b5b6000612dc88782880161293c565b9450506020612dd98782880161293c565b9350506040612dea87828801612887565b925050606085013567ffffffffffffffff811115612e0b57612e0a6126eb565b5b612e1787828801612d72565b91505092959194509250565b60008060408385031215612e3a57612e396126e6565b5b6000612e488582860161293c565b9250506020612e598582860161293c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eaa57607f821691505b602082108103612ebd57612ebc612e63565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ef9601f836127b6565b9150612f0482612ec3565b602082019050919050565b60006020820190508181036000830152612f2881612eec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f6982612866565b9150612f7483612866565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fad57612fac612f2f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ff282612866565b9150612ffd83612866565b92508261300d5761300c612fb8565b5b828204905092915050565b600081905092915050565b50565b6000613033600083613018565b915061303e82613023565b600082019050919050565b600061305482613026565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061309882612866565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130ca576130c9612f2f565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061310b6014836127b6565b9150613116826130d5565b602082019050919050565b6000602082019050818103600083015261313a816130fe565b9050919050565b600061314c82612866565b915061315783612866565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561318c5761318b612f2f565b5b828201905092915050565b7f596f752063616e2774206d696e74206d6f7265207468616e20617661696c616260008201527f6c6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006131f36028836127b6565b91506131fe82613197565b604082019050919050565b60006020820190508181036000830152613222816131e6565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061325f6017836127b6565b915061326a82613229565b602082019050919050565b6000602082019050818103600083015261328e81613252565b9050919050565b7f43616e6e6f74206d696e74207468726f756768206120637573746f6d20636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b60006132f16025836127b6565b91506132fc82613295565b604082019050919050565b60006020820190508181036000830152613320816132e4565b9050919050565b7f57616c6c6574206e6f742077686974656c697374656400000000000000000000600082015250565b600061335d6016836127b6565b915061336882613327565b602082019050919050565b6000602082019050818103600083015261338c81613350565b9050919050565b7f50726573616c6520746f6b656e206c696d697420726561636865640000000000600082015250565b60006133c9601b836127b6565b91506133d482613393565b602082019050919050565b600060208201905081810360008301526133f8816133bc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374616e7420746f6b656e0000000000000000000000000000000000602082015250565b600061345b602f836127b6565b9150613466826133ff565b604082019050919050565b6000602082019050818103600083015261348a8161344e565b9050919050565b600081905092915050565b60006134a7826127ab565b6134b18185613491565b93506134c18185602086016127c7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613503600583613491565b915061350e826134cd565b600582019050919050565b6000613525828561349c565b9150613531828461349c565b915061353c826134f6565b91508190509392505050565b7f68696464656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b600061357e600b83613491565b915061358982613548565b600b82019050919050565b60006135a0828461349c565b91506135ab82613571565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136126026836127b6565b915061361d826135b6565b604082019050919050565b6000602082019050818103600083015261364181613605565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061367e6020836127b6565b915061368982613648565b602082019050919050565b600060208201905081810360008301526136ad81613671565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136db826136b4565b6136e581856136bf565b93506136f58185602086016127c7565b6136fe816127fa565b840191505092915050565b600060808201905061371e60008301876128fb565b61372b60208301866128fb565b6137386040830185612991565b818103606083015261374a81846136d0565b905095945050505050565b6000815190506137648161271c565b92915050565b6000602082840312156137805761377f6126e6565b5b600061378e84828501613755565b91505092915050565b60006137a282612866565b91506137ad83612866565b9250828210156137c0576137bf612f2f565b5b828203905092915050565b60006137d682612866565b91506137e183612866565b9250826137f1576137f0612fb8565b5b82820690509291505056fea2646970667358221220d284bde888fdc77f42951a87eff42922d75b83bf9f76313d59190a944c4a0d6764736f6c634300080e00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001a6e656f676f6c64706173732e6d7970696e6174612e636c6f7564000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063686b28121161012e578063a0712d68116100ab578063cc9f01941161006f578063cc9f0194146107db578063e0a8085314610804578063e985e9c51461082d578063f2fde38b1461086a578063fdea8e0b1461089357610230565b8063a0712d6814610714578063a22cb46514610730578063b88d4fde14610759578063c54e73e314610775578063c87b56dd1461079e57610230565b806384083c89116100f257806384083c891461063f5780638da5cb5b14610668578063946ef42a1461069357806395d89b41146106be578063996517cf146106e957610230565b8063686b28121461056c5780636c0360eb1461059557806370a08231146105c0578063715018a6146105fd578063771282f61461061457610230565b806330cc7ae0116101bc57806342842e0e1161018057806342842e0e146104945780634a44f379146104b057806351830227146104d95780635c975abb146105045780636352211e1461052f57610230565b806330cc7ae0146103ce57806333f9ce6e146103f75780633af32abf146104225780633ccfd60b1461045f5780633eaaf86b1461046957610230565b806313faede61161020357806313faede6146102f657806316c38b3c1461032157806318160ddd1461034a57806323b872dd1461037557806324a00c6b1461039157610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612748565b6108be565b6040516102699190612790565b60405180910390f35b34801561027e57600080fd5b50610287610950565b6040516102949190612844565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061289c565b6109e2565b6040516102d1919061290a565b60405180910390f35b6102f460048036038101906102ef9190612951565b610a61565b005b34801561030257600080fd5b5061030b610ba5565b60405161031891906129a0565b60405180910390f35b34801561032d57600080fd5b50610348600480360381019061034391906129e7565b610bab565b005b34801561035657600080fd5b5061035f610bd0565b60405161036c91906129a0565b60405180910390f35b61038f600480360381019061038a9190612a14565b610be7565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612a67565b610f09565b6040516103c591906129a0565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612a67565b610f5a565b005b34801561040357600080fd5b5061040c610fbd565b604051610419919061290a565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190612a67565b610fe3565b6040516104569190612790565b60405180910390f35b610467611041565b005b34801561047557600080fd5b5061047e6111cf565b60405161048b91906129a0565b60405180910390f35b6104ae60048036038101906104a99190612a14565b6111d5565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612bc9565b6111f5565b005b3480156104e557600080fd5b506104ee611217565b6040516104fb9190612790565b60405180910390f35b34801561051057600080fd5b5061051961122a565b6040516105269190612790565b60405180910390f35b34801561053b57600080fd5b506105566004803603810190610551919061289c565b61123d565b604051610563919061290a565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612c72565b61124f565b005b3480156105a157600080fd5b506105aa6112fc565b6040516105b79190612844565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190612a67565b61138a565b6040516105f491906129a0565b60405180910390f35b34801561060957600080fd5b50610612611442565b005b34801561062057600080fd5b50610629611456565b60405161063691906129a0565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612a67565b61145c565b005b34801561067457600080fd5b5061067d6114bf565b60405161068a919061290a565b60405180910390f35b34801561069f57600080fd5b506106a86114e9565b6040516106b591906129a0565b60405180910390f35b3480156106ca57600080fd5b506106d36114ef565b6040516106e09190612844565b60405180910390f35b3480156106f557600080fd5b506106fe611581565b60405161070b91906129a0565b60405180910390f35b61072e6004803603810190610729919061289c565b611587565b005b34801561073c57600080fd5b5061075760048036038101906107529190612cbf565b61187c565b005b610773600480360381019061076e9190612da0565b611987565b005b34801561078157600080fd5b5061079c600480360381019061079791906129e7565b6119fa565b005b3480156107aa57600080fd5b506107c560048036038101906107c0919061289c565b611a1f565b6040516107d29190612844565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061289c565b611b0b565b005b34801561081057600080fd5b5061082b600480360381019061082691906129e7565b611b1d565b005b34801561083957600080fd5b50610854600480360381019061084f9190612e23565b611b42565b6040516108619190612790565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190612a67565b611bd6565b005b34801561089f57600080fd5b506108a8611c59565b6040516108b59190612790565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095f90612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461098b90612e92565b80156109d85780601f106109ad576101008083540402835291602001916109d8565b820191906000526020600020905b8154815290600101906020018083116109bb57829003601f168201915b5050505050905090565b60006109ed82611c6c565b610a23576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6c8261123d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8d611ccb565b73ffffffffffffffffffffffffffffffffffffffff1614610af057610ab981610ab4611ccb565b611b42565b610aef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610bb3611cd3565b80601060006101000a81548160ff02191690831515021790555050565b6000610bda611d51565b6001546000540303905090565b6000610bf282611d56565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6584611e22565b91509150610c7b8187610c76611ccb565b611e49565b610cc757610c9086610c8b611ccb565b611b42565b610cc6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d2d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3a8686866001611e8d565b8015610d4557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1385610def888887611e93565b7c020000000000000000000000000000000000000000000000000000000017611ebb565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e995760006001850190506000600460008381526020019081526020016000205403610e97576000548114610e96578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f018686866001611ee6565b505050505050565b6000610f13611cd3565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f62611cd3565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610fed611cd3565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600260095403611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d90612f0f565b60405180910390fd5b6002600981905550611096611cd3565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646001476110e09190612f5e565b6110ea9190612fe7565b6040516110f690613049565b60006040518083038185875af1925050503d8060008114611133576040519150601f19603f3d011682016040523d82523d6000602084013e611138565b606091505b505090508061114657600080fd5b60006111506114bf565b73ffffffffffffffffffffffffffffffffffffffff164760405161117390613049565b60006040518083038185875af1925050503d80600081146111b0576040519150601f19603f3d011682016040523d82523d6000602084013e6111b5565b606091505b50509050806111c357600080fd5b50506001600981905550565b600e5481565b6111f083838360405180602001604052806000815250611987565b505050565b6111fd611cd3565b80600a9080519060200190611213929190612639565b5050565b601060029054906101000a900460ff1681565b601060009054906101000a900460ff1681565b600061124882611d56565b9050919050565b611257611cd3565b60005b828290508110156112f75760016011600085858581811061127e5761127d61305e565b5b90506020020160208101906112939190612a67565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112ef9061308d565b91505061125a565b505050565b600a805461130990612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461133590612e92565b80156113825780601f1061135757610100808354040283529160200191611382565b820191906000526020600020905b81548152906001019060200180831161136557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61144a611cd3565b6114546000611eec565b565b600b5481565b611464611cd3565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600380546114fe90612e92565b80601f016020809104026020016040519081016040528092919081815260200182805461152a90612e92565b80156115775780601f1061154c57610100808354040283529160200191611577565b820191906000526020600020905b81548152906001019060200180831161155a57829003601f168201915b5050505050905090565b600c5481565b8060008111801561159a5750600c548111155b6115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090613121565b60405180910390fd5b600e5481600b546115ea9190613141565b111561162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613209565b60405180910390fd5b601060009054906101000a900460ff161561167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613275565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613307565b60405180910390fd5b6116f16114bf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461186f57601060019054906101000a900460ff161561185457601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613373565b60405180910390fd5b600d5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118129190613141565b1115611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906133df565b60405180910390fd5b5b600f54826118629190612f5e565b34101561186e57600080fd5b5b61187882611fb2565b5050565b8060076000611889611ccb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611936611ccb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197b9190612790565b60405180910390a35050565b611992848484610be7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119f4576119bd84848484612060565b6119f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a02611cd3565b80601060016101000a81548160ff02191690831515021790555050565b6060611a2a82611c6c565b611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090613471565b60405180910390fd5b6000611a736121b0565b9050601060029054906101000a900460ff1615611adb576000815111611aa85760405180602001604052806000815250611ad3565b80611ab284612242565b604051602001611ac3929190613519565b6040516020818303038152906040525b915050611b06565b611ae36121b0565b604051602001611af39190613594565b6040516020818303038152906040529150505b919050565b611b13611cd3565b80600f8190555050565b611b25611cd3565b80601060026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bde611cd3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490613628565b60405180910390fd5b611c5681611eec565b50565b601060019054906101000a900460ff1681565b600081611c77611d51565b11158015611c86575060005482105b8015611cc4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611cdb6123a2565b73ffffffffffffffffffffffffffffffffffffffff16611cf96114bf565b73ffffffffffffffffffffffffffffffffffffffff1614611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613694565b60405180910390fd5b565b600090565b60008082905080611d65611d51565b11611deb57600054811015611dea5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611de8575b60008103611dde576004600083600190039350838152602001908152602001600020549050611db4565b8092505050611e1d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611eaa8686846123aa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fbc33826123b3565b601060019054906101000a900460ff1615612049576000600190505b81811161204757601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061202f9061308d565b9190505550808061203f9061308d565b915050611fd8565b505b80600b546120579190613141565b600b8190555050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612086611ccb565b8786866040518563ffffffff1660e01b81526004016120a89493929190613709565b6020604051808303816000875af19250505080156120e457506040513d601f19601f820116820180604052508101906120e1919061376a565b60015b61215d573d8060008114612114576040519150601f19603f3d011682016040523d82523d6000602084013e612119565b606091505b506000815103612155576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121bf90612e92565b80601f01602080910402602001604051908101604052809291908181526020018280546121eb90612e92565b80156122385780601f1061220d57610100808354040283529160200191612238565b820191906000526020600020905b81548152906001019060200180831161221b57829003601f168201915b5050505050905090565b606060008203612289576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061239d565b600082905060005b600082146122bb5780806122a49061308d565b915050600a826122b49190612fe7565b9150612291565b60008167ffffffffffffffff8111156122d7576122d6612a9e565b5b6040519080825280601f01601f1916602001820160405280156123095781602001600182028036833780820191505090505b5090505b60008514612396576001826123229190613797565b9150600a8561233191906137cb565b603061233d9190613141565b60f81b8183815181106123535761235261305e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238f9190612fe7565b945061230d565b8093505050505b919050565b600033905090565b60009392505050565b6123cd8282604051806020016040528060008152506123d1565b5050565b6123db838361246e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461246957600080549050600083820390505b61241b6000868380600101945086612060565b612451576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061240857816000541461246657600080fd5b50505b505050565b600080549050600082036124ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124bb6000848385611e8d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612532836125236000866000611e93565b61252c85612629565b17611ebb565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125d357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612598565b506000820361260e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126246000848385611ee6565b505050565b60006001821460e11b9050919050565b82805461264590612e92565b90600052602060002090601f01602090048101928261266757600085556126ae565b82601f1061268057805160ff19168380011785556126ae565b828001600101855582156126ae579182015b828111156126ad578251825591602001919060010190612692565b5b5090506126bb91906126bf565b5090565b5b808211156126d85760008160009055506001016126c0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612725816126f0565b811461273057600080fd5b50565b6000813590506127428161271c565b92915050565b60006020828403121561275e5761275d6126e6565b5b600061276c84828501612733565b91505092915050565b60008115159050919050565b61278a81612775565b82525050565b60006020820190506127a56000830184612781565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127e55780820151818401526020810190506127ca565b838111156127f4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612816826127ab565b61282081856127b6565b93506128308185602086016127c7565b612839816127fa565b840191505092915050565b6000602082019050818103600083015261285e818461280b565b905092915050565b6000819050919050565b61287981612866565b811461288457600080fd5b50565b60008135905061289681612870565b92915050565b6000602082840312156128b2576128b16126e6565b5b60006128c084828501612887565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128f4826128c9565b9050919050565b612904816128e9565b82525050565b600060208201905061291f60008301846128fb565b92915050565b61292e816128e9565b811461293957600080fd5b50565b60008135905061294b81612925565b92915050565b60008060408385031215612968576129676126e6565b5b60006129768582860161293c565b925050602061298785828601612887565b9150509250929050565b61299a81612866565b82525050565b60006020820190506129b56000830184612991565b92915050565b6129c481612775565b81146129cf57600080fd5b50565b6000813590506129e1816129bb565b92915050565b6000602082840312156129fd576129fc6126e6565b5b6000612a0b848285016129d2565b91505092915050565b600080600060608486031215612a2d57612a2c6126e6565b5b6000612a3b8682870161293c565b9350506020612a4c8682870161293c565b9250506040612a5d86828701612887565b9150509250925092565b600060208284031215612a7d57612a7c6126e6565b5b6000612a8b8482850161293c565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ad6826127fa565b810181811067ffffffffffffffff82111715612af557612af4612a9e565b5b80604052505050565b6000612b086126dc565b9050612b148282612acd565b919050565b600067ffffffffffffffff821115612b3457612b33612a9e565b5b612b3d826127fa565b9050602081019050919050565b82818337600083830152505050565b6000612b6c612b6784612b19565b612afe565b905082815260208101848484011115612b8857612b87612a99565b5b612b93848285612b4a565b509392505050565b600082601f830112612bb057612baf612a94565b5b8135612bc0848260208601612b59565b91505092915050565b600060208284031215612bdf57612bde6126e6565b5b600082013567ffffffffffffffff811115612bfd57612bfc6126eb565b5b612c0984828501612b9b565b91505092915050565b600080fd5b600080fd5b60008083601f840112612c3257612c31612a94565b5b8235905067ffffffffffffffff811115612c4f57612c4e612c12565b5b602083019150836020820283011115612c6b57612c6a612c17565b5b9250929050565b60008060208385031215612c8957612c886126e6565b5b600083013567ffffffffffffffff811115612ca757612ca66126eb565b5b612cb385828601612c1c565b92509250509250929050565b60008060408385031215612cd657612cd56126e6565b5b6000612ce48582860161293c565b9250506020612cf5858286016129d2565b9150509250929050565b600067ffffffffffffffff821115612d1a57612d19612a9e565b5b612d23826127fa565b9050602081019050919050565b6000612d43612d3e84612cff565b612afe565b905082815260208101848484011115612d5f57612d5e612a99565b5b612d6a848285612b4a565b509392505050565b600082601f830112612d8757612d86612a94565b5b8135612d97848260208601612d30565b91505092915050565b60008060008060808587031215612dba57612db96126e6565b5b6000612dc88782880161293c565b9450506020612dd98782880161293c565b9350506040612dea87828801612887565b925050606085013567ffffffffffffffff811115612e0b57612e0a6126eb565b5b612e1787828801612d72565b91505092959194509250565b60008060408385031215612e3a57612e396126e6565b5b6000612e488582860161293c565b9250506020612e598582860161293c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eaa57607f821691505b602082108103612ebd57612ebc612e63565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ef9601f836127b6565b9150612f0482612ec3565b602082019050919050565b60006020820190508181036000830152612f2881612eec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f6982612866565b9150612f7483612866565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fad57612fac612f2f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ff282612866565b9150612ffd83612866565b92508261300d5761300c612fb8565b5b828204905092915050565b600081905092915050565b50565b6000613033600083613018565b915061303e82613023565b600082019050919050565b600061305482613026565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061309882612866565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130ca576130c9612f2f565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061310b6014836127b6565b9150613116826130d5565b602082019050919050565b6000602082019050818103600083015261313a816130fe565b9050919050565b600061314c82612866565b915061315783612866565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561318c5761318b612f2f565b5b828201905092915050565b7f596f752063616e2774206d696e74206d6f7265207468616e20617661696c616260008201527f6c6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006131f36028836127b6565b91506131fe82613197565b604082019050919050565b60006020820190508181036000830152613222816131e6565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061325f6017836127b6565b915061326a82613229565b602082019050919050565b6000602082019050818103600083015261328e81613252565b9050919050565b7f43616e6e6f74206d696e74207468726f756768206120637573746f6d20636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b60006132f16025836127b6565b91506132fc82613295565b604082019050919050565b60006020820190508181036000830152613320816132e4565b9050919050565b7f57616c6c6574206e6f742077686974656c697374656400000000000000000000600082015250565b600061335d6016836127b6565b915061336882613327565b602082019050919050565b6000602082019050818103600083015261338c81613350565b9050919050565b7f50726573616c6520746f6b656e206c696d697420726561636865640000000000600082015250565b60006133c9601b836127b6565b91506133d482613393565b602082019050919050565b600060208201905081810360008301526133f8816133bc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374616e7420746f6b656e0000000000000000000000000000000000602082015250565b600061345b602f836127b6565b9150613466826133ff565b604082019050919050565b6000602082019050818103600083015261348a8161344e565b9050919050565b600081905092915050565b60006134a7826127ab565b6134b18185613491565b93506134c18185602086016127c7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613503600583613491565b915061350e826134cd565b600582019050919050565b6000613525828561349c565b9150613531828461349c565b915061353c826134f6565b91508190509392505050565b7f68696464656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b600061357e600b83613491565b915061358982613548565b600b82019050919050565b60006135a0828461349c565b91506135ab82613571565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136126026836127b6565b915061361d826135b6565b604082019050919050565b6000602082019050818103600083015261364181613605565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061367e6020836127b6565b915061368982613648565b602082019050919050565b600060208201905081810360008301526136ad81613671565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136db826136b4565b6136e581856136bf565b93506136f58185602086016127c7565b6136fe816127fa565b840191505092915050565b600060808201905061371e60008301876128fb565b61372b60208301866128fb565b6137386040830185612991565b818103606083015261374a81846136d0565b905095945050505050565b6000815190506137648161271c565b92915050565b6000602082840312156137805761377f6126e6565b5b600061378e84828501613755565b91505092915050565b60006137a282612866565b91506137ad83612866565b9250828210156137c0576137bf612f2f565b5b828203905092915050565b60006137d682612866565b91506137e183612866565b9250826137f1576137f0612fb8565b5b82820690509291505056fea2646970667358221220d284bde888fdc77f42951a87eff42922d75b83bf9f76313d59190a944c4a0d6764736f6c634300080e0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001a6e656f676f6c64706173732e6d7970696e6174612e636c6f7564000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): neogoldpass.mypinata.cloud

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [2] : 6e656f676f6c64706173732e6d7970696e6174612e636c6f7564000000000000


Deployed Bytecode Sourcemap

92179:4465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59082:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59984:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66475:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65908:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92432:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95408:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55735:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70114:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95260:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96213:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92684:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95133:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96327:314;;;:::i;:::-;;92391:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73035:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95804:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92537:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92472:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61377:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95910:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92248:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56919:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;92276:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96103:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92351:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60160:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92315:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93316:687;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67033:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73826:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95594:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94334:791;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95687:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95499:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67424:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92504:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59082:639;59167:4;59506:10;59491:25;;:11;:25;;;;:102;;;;59583:10;59568:25;;:11;:25;;;;59491:102;:179;;;;59660:10;59645:25;;:11;:25;;;;59491:179;59471:199;;59082:639;;;:::o;59984:100::-;60038:13;60071:5;60064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59984:100;:::o;66475:218::-;66551:7;66576:16;66584:7;66576;:16::i;:::-;66571:64;;66601:34;;;;;;;;;;;;;;66571:64;66655:15;:24;66671:7;66655:24;;;;;;;;;;;:30;;;;;;;;;;;;66648:37;;66475:218;;;:::o;65908:408::-;65997:13;66013:16;66021:7;66013;:16::i;:::-;65997:32;;66069:5;66046:28;;:19;:17;:19::i;:::-;:28;;;66042:175;;66094:44;66111:5;66118:19;:17;:19::i;:::-;66094:16;:44::i;:::-;66089:128;;66166:35;;;;;;;;;;;;;;66089:128;66042:175;66262:2;66229:15;:24;66245:7;66229:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;66300:7;66296:2;66280:28;;66289:5;66280:28;;;;;;;;;;;;65986:330;65908:408;;:::o;92432:33::-;;;;:::o;95408:83::-;7270:13;:11;:13::i;:::-;95477:6:::1;95468;;:15;;;;;;;;;;;;;;;;;;95408:83:::0;:::o;55735:323::-;55796:7;56024:15;:13;:15::i;:::-;56009:12;;55993:13;;:28;:46;55986:53;;55735:323;:::o;70114:2825::-;70256:27;70286;70305:7;70286:18;:27::i;:::-;70256:57;;70371:4;70330:45;;70346:19;70330:45;;;70326:86;;70384:28;;;;;;;;;;;;;;70326:86;70426:27;70455:23;70482:35;70509:7;70482:26;:35::i;:::-;70425:92;;;;70617:68;70642:15;70659:4;70665:19;:17;:19::i;:::-;70617:24;:68::i;:::-;70612:180;;70705:43;70722:4;70728:19;:17;:19::i;:::-;70705:16;:43::i;:::-;70700:92;;70757:35;;;;;;;;;;;;;;70700:92;70612:180;70823:1;70809:16;;:2;:16;;;70805:52;;70834:23;;;;;;;;;;;;;;70805:52;70870:43;70892:4;70898:2;70902:7;70911:1;70870:21;:43::i;:::-;71006:15;71003:160;;;71146:1;71125:19;71118:30;71003:160;71543:18;:24;71562:4;71543:24;;;;;;;;;;;;;;;;71541:26;;;;;;;;;;;;71612:18;:22;71631:2;71612:22;;;;;;;;;;;;;;;;71610:24;;;;;;;;;;;71934:146;71971:2;72020:45;72035:4;72041:2;72045:19;72020:14;:45::i;:::-;52134:8;71992:73;71934:18;:146::i;:::-;71905:17;:26;71923:7;71905:26;;;;;;;;;;;:175;;;;72251:1;52134:8;72200:19;:47;:52;72196:627;;72273:19;72305:1;72295:7;:11;72273:33;;72462:1;72428:17;:30;72446:11;72428:30;;;;;;;;;;;;:35;72424:384;;72566:13;;72551:11;:28;72547:242;;72746:19;72713:17;:30;72731:11;72713:30;;;;;;;;;;;:52;;;;72547:242;72424:384;72254:569;72196:627;72870:7;72866:2;72851:27;;72860:4;72851:27;;;;;;;;;;;;72889:42;72910:4;72916:2;72920:7;72929:1;72889:20;:42::i;:::-;70245:2694;;;70114:2825;;;:::o;95260:140::-;95339:7;7270:13;:11;:13::i;:::-;95366:19:::1;:26;95386:5;95366:26;;;;;;;;;;;;;;;;95359:33;;95260:140:::0;;;:::o;96213:106::-;7270:13;:11;:13::i;:::-;96306:5:::1;96285:11;:18;96297:5;96285:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;96213:106:::0;:::o;92684:73::-;;;;;;;;;;;;;:::o;95133:119::-;95202:4;7270:13;:11;:13::i;:::-;95226:11:::1;:18;95238:5;95226:18;;;;;;;;;;;;;;;;;;;;;;;;;95219:25;;95133:119:::0;;;:::o;96327:314::-;1812:1;2410:7;;:19;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;7270:13:::1;:11;:13::i;:::-;96397:7:::2;96418:13;;;;;;;;;;;96410:27;;96489:3;96484:1;96460:21;:25;;;;:::i;:::-;96459:33;;;;:::i;:::-;96410:97;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96396:111;;;96526:2;96518:11;;;::::0;::::2;;96543:7;96564;:5;:7::i;:::-;96556:21;;96585;96556:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96542:69;;;96630:2;96622:11;;;::::0;::::2;;96385:256;;1768:1:::0;2722:7;:22;;;;96327:314::o;92391:34::-;;;;:::o;73035:193::-;73181:39;73198:4;73204:2;73208:7;73181:39;;;;;;;;;;;;:16;:39::i;:::-;73035:193;;;:::o;95804:98::-;7270:13;:11;:13::i;:::-;95886:8:::1;95876:7;:18;;;;;;;;;;;;:::i;:::-;;95804:98:::0;:::o;92537:27::-;;;;;;;;;;;;;:::o;92472:25::-;;;;;;;;;;;;;:::o;61377:152::-;61449:7;61492:27;61511:7;61492:18;:27::i;:::-;61469:52;;61377:152;;;:::o;95910:185::-;7270:13;:11;:13::i;:::-;95997:9:::1;95992:96;96012:6;;:13;;96008:1;:17;95992:96;;;96072:4;96047:11;:22;96059:6;;96066:1;96059:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;96047:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;96027:3;;;;;:::i;:::-;;;;95992:96;;;;95910:185:::0;;:::o;92248:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56919:233::-;56991:7;57032:1;57015:19;;:5;:19;;;57011:60;;57043:28;;;;;;;;;;;;;;57011:60;51078:13;57089:18;:25;57108:5;57089:25;;;;;;;;;;;;;;;;:55;57082:62;;56919:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;92276:32::-;;;;:::o;96103:102::-;7270:13;:11;:13::i;:::-;96193:4:::1;96172:11;:18;96184:5;96172:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;96103:102:::0;:::o;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;92351:33::-;;;;:::o;60160:104::-;60216:13;60249:7;60242:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60160:104;:::o;92315:29::-;;;;:::o;93316:687::-;93380:8;93096:1;93085:8;:12;:37;;;;;93113:9;;93101:8;:21;;93085:37;93077:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;93208:12;;93196:8;93180:13;;:24;;;;:::i;:::-;:40;;93158:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;93410:6:::1;;;;;;;;;;;93409:7;93401:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;93490:10;93477:23;;:9;:23;;;93455:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;93594:7;:5;:7::i;:::-;93580:21;;:10;:21;;;93576:391;;93622:7;;;;;;;;;;;93618:286;;;93658:11;:23;93670:10;93658:23;;;;;;;;;;;;;;;;;;;;;;;;;93650:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;93803:14;;93791:8;93757:19;:31;93777:10;93757:31;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:60;;93727:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;93618:286;93950:4;;93939:8;:15;;;;:::i;:::-;93926:9;:28;;93918:37;;;::::0;::::1;;93576:391;93977:18;93986:8;93977;:18::i;:::-;93316:687:::0;;:::o;67033:234::-;67180:8;67128:18;:39;67147:19;:17;:19::i;:::-;67128:39;;;;;;;;;;;;;;;:49;67168:8;67128:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;67240:8;67204:55;;67219:19;:17;:19::i;:::-;67204:55;;;67250:8;67204:55;;;;;;:::i;:::-;;;;;;;;67033:234;;:::o;73826:407::-;74001:31;74014:4;74020:2;74024:7;74001:12;:31::i;:::-;74065:1;74047:2;:14;;;:19;74043:183;;74086:56;74117:4;74123:2;74127:7;74136:5;74086:30;:56::i;:::-;74081:145;;74170:40;;;;;;;;;;;;;;74081:145;74043:183;73826:407;;;;:::o;95594:85::-;7270:13;:11;:13::i;:::-;95665:6:::1;95655:7;;:16;;;;;;;;;;;;;;;;;;95594:85:::0;:::o;94334:791::-;94435:13;94488:16;94496:7;94488;:16::i;:::-;94466:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;94590:28;94621:10;:8;:10::i;:::-;94590:41;;94646:8;;;;;;;;;;;94642:476;;;94726:1;94701:14;94695:28;:32;:320;;;;;;;;;;;;;;;;;94831:14;94876:25;94893:7;94876:16;:25::i;:::-;94784:182;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94695:320;94671:344;;;;;94642:476;95079:10;:8;:10::i;:::-;95062:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;95048:58;;;94334:791;;;;:::o;95687:107::-;7270:13;:11;:13::i;:::-;95771:15:::1;95764:4;:22;;;;95687:107:::0;:::o;95499:87::-;7270:13;:11;:13::i;:::-;95572:6:::1;95561:8;;:17;;;;;;;;;;;;;;;;;;95499:87:::0;:::o;67424:164::-;67521:4;67545:18;:25;67564:5;67545:25;;;;;;;;;;;;;;;:35;67571:8;67545:35;;;;;;;;;;;;;;;;;;;;;;;;;67538:42;;67424: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;92504:26::-;;;;;;;;;;;;;:::o;67846:282::-;67911:4;67967:7;67948:15;:13;:15::i;:::-;:26;;:66;;;;;68001:13;;67991:7;:23;67948:66;:153;;;;;68100:1;51854:8;68052:17;:26;68070:7;68052:26;;;;;;;;;;;;:44;:49;67948:153;67928:173;;67846:282;;;:::o;90154:105::-;90214:7;90241:10;90234:17;;90154:105;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;55251:92::-;55307:7;55251:92;:::o;62532:1275::-;62599:7;62619:12;62634:7;62619:22;;62702:4;62683:15;:13;:15::i;:::-;:23;62679:1061;;62736:13;;62729:4;:20;62725:1015;;;62774:14;62791:17;:23;62809:4;62791:23;;;;;;;;;;;;62774:40;;62908:1;51854:8;62880:6;:24;:29;62876:845;;63545:113;63562:1;63552:6;:11;63545:113;;63605:17;:25;63623:6;;;;;;;63605:25;;;;;;;;;;;;63596:34;;63545:113;;;63691:6;63684:13;;;;;;62876:845;62751:989;62725:1015;62679:1061;63768:31;;;;;;;;;;;;;;62532:1275;;;;:::o;69009:485::-;69111:27;69140:23;69181:38;69222:15;:24;69238:7;69222:24;;;;;;;;;;;69181:65;;69399:18;69376:41;;69456:19;69450:26;69431:45;;69361:126;69009:485;;;:::o;68237:659::-;68386:11;68551:16;68544:5;68540:28;68531:37;;68711:16;68700:9;68696:32;68683:45;;68861:15;68850:9;68847:30;68839:5;68828:9;68825:20;68822:56;68812:66;;68237:659;;;;;:::o;74895:159::-;;;;;:::o;89463:311::-;89598:7;89618:16;52258:3;89644:19;:41;;89618:68;;52258:3;89712:31;89723:4;89729:2;89733:9;89712:10;:31::i;:::-;89704:40;;:62;;89697:69;;;89463:311;;;;;:::o;64355:450::-;64435:14;64603:16;64596:5;64592:28;64583:37;;64780:5;64766:11;64741:23;64737:41;64734:52;64727:5;64724:63;64714:73;;64355:450;;;;:::o;75719:158::-;;;;;:::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;94011:315::-;94070:34;94080:10;94092:11;94070:9;:34::i;:::-;94119:7;;;;;;;;;;;94115:150;;;94148:9;94160:1;94148:13;;94143:111;94168:11;94163:1;:16;94143:111;;94205:19;:31;94225:10;94205:31;;;;;;;;;;;;;;;;:33;;;;;;;;;:::i;:::-;;;;;;94181:3;;;;;:::i;:::-;;;;94143:111;;;;94115:150;94307:11;94291:13;;:27;;;;:::i;:::-;94275:13;:43;;;;94011:315;:::o;76317:716::-;76480:4;76526:2;76501:45;;;76547:19;:17;:19::i;:::-;76568:4;76574:7;76583:5;76501:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;76497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76801:1;76784:6;:13;:18;76780:235;;76830:40;;;;;;;;;;;;;;76780:235;76973:6;76967:13;76958:6;76954:2;76950:15;76943:38;76497:529;76670:54;;;76660:64;;;:6;:64;;;;76653:71;;;76317:716;;;;;;:::o;92908:108::-;92968:13;93001:7;92994:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92908:108;:::o;3189:723::-;3245:13;3475:1;3466:5;:10;3462:53;;3493:10;;;;;;;;;;;;;;;;;;;;;3462:53;3525:12;3540:5;3525:20;;3556:14;3581:78;3596:1;3588:4;:9;3581:78;;3614:8;;;;;:::i;:::-;;;;3645:2;3637:10;;;;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669:39;;3719:154;3735:1;3726:5;:10;3719:154;;3763:1;3753:11;;;;;:::i;:::-;;;3830:2;3822:5;:10;;;;:::i;:::-;3809:2;:24;;;;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3859:2;3850:11;;;;;:::i;:::-;;;3719:154;;;3897:6;3883:21;;;;;3189:723;;;;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;89164:147::-;89301:6;89164:147;;;;;:::o;83986:112::-;84063:27;84073:2;84077:8;84063:27;;;;;;;;;;;;:9;:27::i;:::-;83986:112;;:::o;83213:689::-;83344:19;83350:2;83354:8;83344:5;:19::i;:::-;83423:1;83405:2;:14;;;:19;83401:483;;83445:11;83459:13;;83445:27;;83491:13;83513:8;83507:3;:14;83491:30;;83540:233;83571:62;83610:1;83614:2;83618:7;;;;;;83627:5;83571:30;:62::i;:::-;83566:167;;83669:40;;;;;;;;;;;;;;83566:167;83768:3;83760:5;:11;83540:233;;83855:3;83838:13;;:20;83834:34;;83860:8;;;83834:34;83426:458;;83401:483;83213:689;;;:::o;77495:2966::-;77568:20;77591:13;;77568:36;;77631:1;77619:8;:13;77615:44;;77641:18;;;;;;;;;;;;;;77615:44;77672:61;77702:1;77706:2;77710:12;77724:8;77672:21;:61::i;:::-;78216:1;51216:2;78186:1;:26;;78185:32;78173:8;:45;78147:18;:22;78166:2;78147:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;78495:139;78532:2;78586:33;78609:1;78613:2;78617:1;78586:14;:33::i;:::-;78553:30;78574:8;78553:20;:30::i;:::-;:66;78495:18;:139::i;:::-;78461:17;:31;78479:12;78461:31;;;;;;;;;;;:173;;;;78651:16;78682:11;78711:8;78696:12;:23;78682:37;;79232:16;79228:2;79224:25;79212:37;;79604:12;79564:8;79523:1;79461:25;79402:1;79341;79314:335;79975:1;79961:12;79957:20;79915:346;80016:3;80007:7;80004:16;79915:346;;80234:7;80224:8;80221:1;80194:25;80191:1;80188;80183:59;80069:1;80060:7;80056:15;80045:26;;79915:346;;;79919:77;80306:1;80294:8;:13;80290:45;;80316:19;;;;;;;;;;;;;;80290:45;80368:3;80352:13;:19;;;;77921:2462;;80393:60;80422:1;80426:2;80430:12;80444:8;80393:20;:60::i;:::-;77557:2904;77495:2966;;:::o;64907:324::-;64977:14;65210:1;65200:8;65197:15;65171:24;65167:46;65157:56;;64907:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:116::-;5360:21;5375:5;5360:21;:::i;:::-;5353:5;5350:32;5340:60;;5396:1;5393;5386:12;5340:60;5290:116;:::o;5412:133::-;5455:5;5493:6;5480:20;5471:29;;5509:30;5533:5;5509:30;:::i;:::-;5412:133;;;;:::o;5551:323::-;5607:6;5656:2;5644:9;5635:7;5631:23;5627:32;5624:119;;;5662:79;;:::i;:::-;5624:119;5782:1;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5753:114;5551:323;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:117::-;9570:1;9567;9560:12;9584:117;9693:1;9690;9683:12;9724:568;9797:8;9807:6;9857:3;9850:4;9842:6;9838:17;9834:27;9824:122;;9865:79;;:::i;:::-;9824:122;9978:6;9965:20;9955:30;;10008:18;10000:6;9997:30;9994:117;;;10030:79;;:::i;:::-;9994:117;10144:4;10136:6;10132:17;10120:29;;10198:3;10190:4;10182:6;10178:17;10168:8;10164:32;10161:41;10158:128;;;10205:79;;:::i;:::-;10158:128;9724:568;;;;;:::o;10298:559::-;10384:6;10392;10441:2;10429:9;10420:7;10416:23;10412:32;10409:119;;;10447:79;;:::i;:::-;10409:119;10595:1;10584:9;10580:17;10567:31;10625:18;10617:6;10614:30;10611:117;;;10647:79;;:::i;:::-;10611:117;10760:80;10832:7;10823:6;10812:9;10808:22;10760:80;:::i;:::-;10742:98;;;;10538:312;10298:559;;;;;:::o;10863:468::-;10928:6;10936;10985:2;10973:9;10964:7;10960:23;10956:32;10953:119;;;10991:79;;:::i;:::-;10953:119;11111:1;11136:53;11181:7;11172:6;11161:9;11157:22;11136:53;:::i;:::-;11126:63;;11082:117;11238:2;11264:50;11306:7;11297:6;11286:9;11282:22;11264:50;:::i;:::-;11254:60;;11209:115;10863:468;;;;;:::o;11337:307::-;11398:4;11488:18;11480:6;11477:30;11474:56;;;11510:18;;:::i;:::-;11474:56;11548:29;11570:6;11548:29;:::i;:::-;11540:37;;11632:4;11626;11622:15;11614:23;;11337:307;;;:::o;11650:410::-;11727:5;11752:65;11768:48;11809:6;11768:48;:::i;:::-;11752:65;:::i;:::-;11743:74;;11840:6;11833:5;11826:21;11878:4;11871:5;11867:16;11916:3;11907:6;11902:3;11898:16;11895:25;11892:112;;;11923:79;;:::i;:::-;11892:112;12013:41;12047:6;12042:3;12037;12013:41;:::i;:::-;11733:327;11650:410;;;;;:::o;12079:338::-;12134:5;12183:3;12176:4;12168:6;12164:17;12160:27;12150:122;;12191:79;;:::i;:::-;12150:122;12308:6;12295:20;12333:78;12407:3;12399:6;12392:4;12384:6;12380:17;12333:78;:::i;:::-;12324:87;;12140:277;12079:338;;;;:::o;12423:943::-;12518:6;12526;12534;12542;12591:3;12579:9;12570:7;12566:23;12562:33;12559:120;;;12598:79;;:::i;:::-;12559:120;12718:1;12743:53;12788:7;12779:6;12768:9;12764:22;12743:53;:::i;:::-;12733:63;;12689:117;12845:2;12871:53;12916:7;12907:6;12896:9;12892:22;12871:53;:::i;:::-;12861:63;;12816:118;12973:2;12999:53;13044:7;13035:6;13024:9;13020:22;12999:53;:::i;:::-;12989:63;;12944:118;13129:2;13118:9;13114:18;13101:32;13160:18;13152:6;13149:30;13146:117;;;13182:79;;:::i;:::-;13146:117;13287:62;13341:7;13332:6;13321:9;13317:22;13287:62;:::i;:::-;13277:72;;13072:287;12423:943;;;;;;;:::o;13372:474::-;13440:6;13448;13497:2;13485:9;13476:7;13472:23;13468:32;13465:119;;;13503:79;;:::i;:::-;13465:119;13623:1;13648:53;13693:7;13684:6;13673:9;13669:22;13648:53;:::i;:::-;13638:63;;13594:117;13750:2;13776:53;13821:7;13812:6;13801:9;13797:22;13776:53;:::i;:::-;13766:63;;13721:118;13372:474;;;;;:::o;13852:180::-;13900:77;13897:1;13890:88;13997:4;13994:1;13987:15;14021:4;14018:1;14011:15;14038:320;14082:6;14119:1;14113:4;14109:12;14099:22;;14166:1;14160:4;14156:12;14187:18;14177:81;;14243:4;14235:6;14231:17;14221:27;;14177:81;14305:2;14297:6;14294:14;14274:18;14271:38;14268:84;;14324:18;;:::i;:::-;14268:84;14089:269;14038:320;;;:::o;14364:181::-;14504:33;14500:1;14492:6;14488:14;14481:57;14364:181;:::o;14551:366::-;14693:3;14714:67;14778:2;14773:3;14714:67;:::i;:::-;14707:74;;14790:93;14879:3;14790:93;:::i;:::-;14908:2;14903:3;14899:12;14892:19;;14551:366;;;:::o;14923:419::-;15089:4;15127:2;15116:9;15112:18;15104:26;;15176:9;15170:4;15166:20;15162:1;15151:9;15147:17;15140:47;15204:131;15330:4;15204:131;:::i;:::-;15196:139;;14923:419;;;:::o;15348:180::-;15396:77;15393:1;15386:88;15493:4;15490:1;15483:15;15517:4;15514:1;15507:15;15534:348;15574:7;15597:20;15615:1;15597:20;:::i;:::-;15592:25;;15631:20;15649:1;15631:20;:::i;:::-;15626:25;;15819:1;15751:66;15747:74;15744:1;15741:81;15736:1;15729:9;15722:17;15718:105;15715:131;;;15826:18;;:::i;:::-;15715:131;15874:1;15871;15867:9;15856:20;;15534:348;;;;:::o;15888:180::-;15936:77;15933:1;15926:88;16033:4;16030:1;16023:15;16057:4;16054:1;16047:15;16074:185;16114:1;16131:20;16149:1;16131:20;:::i;:::-;16126:25;;16165:20;16183:1;16165:20;:::i;:::-;16160:25;;16204:1;16194:35;;16209:18;;:::i;:::-;16194:35;16251:1;16248;16244:9;16239:14;;16074:185;;;;:::o;16265:147::-;16366:11;16403:3;16388:18;;16265:147;;;;:::o;16418:114::-;;:::o;16538:398::-;16697:3;16718:83;16799:1;16794:3;16718:83;:::i;:::-;16711:90;;16810:93;16899:3;16810:93;:::i;:::-;16928:1;16923:3;16919:11;16912:18;;16538:398;;;:::o;16942:379::-;17126:3;17148:147;17291:3;17148:147;:::i;:::-;17141:154;;17312:3;17305:10;;16942:379;;;:::o;17327:180::-;17375:77;17372:1;17365:88;17472:4;17469:1;17462:15;17496:4;17493:1;17486:15;17513:233;17552:3;17575:24;17593:5;17575:24;:::i;:::-;17566:33;;17621:66;17614:5;17611:77;17608:103;;17691:18;;:::i;:::-;17608:103;17738:1;17731:5;17727:13;17720:20;;17513:233;;;:::o;17752:170::-;17892:22;17888:1;17880:6;17876:14;17869:46;17752:170;:::o;17928:366::-;18070:3;18091:67;18155:2;18150:3;18091:67;:::i;:::-;18084:74;;18167:93;18256:3;18167:93;:::i;:::-;18285:2;18280:3;18276:12;18269:19;;17928:366;;;:::o;18300:419::-;18466:4;18504:2;18493:9;18489:18;18481:26;;18553:9;18547:4;18543:20;18539:1;18528:9;18524:17;18517:47;18581:131;18707:4;18581:131;:::i;:::-;18573:139;;18300:419;;;:::o;18725:305::-;18765:3;18784:20;18802:1;18784:20;:::i;:::-;18779:25;;18818:20;18836:1;18818:20;:::i;:::-;18813:25;;18972:1;18904:66;18900:74;18897:1;18894:81;18891:107;;;18978:18;;:::i;:::-;18891:107;19022:1;19019;19015:9;19008:16;;18725:305;;;;:::o;19036:227::-;19176:34;19172:1;19164:6;19160:14;19153:58;19245:10;19240:2;19232:6;19228:15;19221:35;19036:227;:::o;19269:366::-;19411:3;19432:67;19496:2;19491:3;19432:67;:::i;:::-;19425:74;;19508:93;19597:3;19508:93;:::i;:::-;19626:2;19621:3;19617:12;19610:19;;19269:366;;;:::o;19641:419::-;19807:4;19845:2;19834:9;19830:18;19822:26;;19894:9;19888:4;19884:20;19880:1;19869:9;19865:17;19858:47;19922:131;20048:4;19922:131;:::i;:::-;19914:139;;19641:419;;;:::o;20066:173::-;20206:25;20202:1;20194:6;20190:14;20183:49;20066:173;:::o;20245:366::-;20387:3;20408:67;20472:2;20467:3;20408:67;:::i;:::-;20401:74;;20484:93;20573:3;20484:93;:::i;:::-;20602:2;20597:3;20593:12;20586:19;;20245:366;;;:::o;20617:419::-;20783:4;20821:2;20810:9;20806:18;20798:26;;20870:9;20864:4;20860:20;20856:1;20845:9;20841:17;20834:47;20898:131;21024:4;20898:131;:::i;:::-;20890:139;;20617:419;;;:::o;21042:224::-;21182:34;21178:1;21170:6;21166:14;21159:58;21251:7;21246:2;21238:6;21234:15;21227:32;21042:224;:::o;21272:366::-;21414:3;21435:67;21499:2;21494:3;21435:67;:::i;:::-;21428:74;;21511:93;21600:3;21511:93;:::i;:::-;21629:2;21624:3;21620:12;21613:19;;21272:366;;;:::o;21644:419::-;21810:4;21848:2;21837:9;21833:18;21825:26;;21897:9;21891:4;21887:20;21883:1;21872:9;21868:17;21861:47;21925:131;22051:4;21925:131;:::i;:::-;21917:139;;21644:419;;;:::o;22069:172::-;22209:24;22205:1;22197:6;22193:14;22186:48;22069:172;:::o;22247:366::-;22389:3;22410:67;22474:2;22469:3;22410:67;:::i;:::-;22403:74;;22486:93;22575:3;22486:93;:::i;:::-;22604:2;22599:3;22595:12;22588:19;;22247:366;;;:::o;22619:419::-;22785:4;22823:2;22812:9;22808:18;22800:26;;22872:9;22866:4;22862:20;22858:1;22847:9;22843:17;22836:47;22900:131;23026:4;22900:131;:::i;:::-;22892:139;;22619:419;;;:::o;23044:177::-;23184:29;23180:1;23172:6;23168:14;23161:53;23044:177;:::o;23227:366::-;23369:3;23390:67;23454:2;23449:3;23390:67;:::i;:::-;23383:74;;23466:93;23555:3;23466:93;:::i;:::-;23584:2;23579:3;23575:12;23568:19;;23227:366;;;:::o;23599:419::-;23765:4;23803:2;23792:9;23788:18;23780:26;;23852:9;23846:4;23842:20;23838:1;23827:9;23823:17;23816:47;23880:131;24006:4;23880:131;:::i;:::-;23872:139;;23599:419;;;:::o;24024:234::-;24164:34;24160:1;24152:6;24148:14;24141:58;24233:17;24228:2;24220:6;24216:15;24209:42;24024:234;:::o;24264:366::-;24406:3;24427:67;24491:2;24486:3;24427:67;:::i;:::-;24420:74;;24503:93;24592:3;24503:93;:::i;:::-;24621:2;24616:3;24612:12;24605:19;;24264:366;;;:::o;24636:419::-;24802:4;24840:2;24829:9;24825:18;24817:26;;24889:9;24883:4;24879:20;24875:1;24864:9;24860:17;24853:47;24917:131;25043:4;24917:131;:::i;:::-;24909:139;;24636:419;;;:::o;25061:148::-;25163:11;25200:3;25185:18;;25061:148;;;;:::o;25215:377::-;25321:3;25349:39;25382:5;25349:39;:::i;:::-;25404:89;25486:6;25481:3;25404:89;:::i;:::-;25397:96;;25502:52;25547:6;25542:3;25535:4;25528:5;25524:16;25502:52;:::i;:::-;25579:6;25574:3;25570:16;25563:23;;25325:267;25215:377;;;;:::o;25598:155::-;25738:7;25734:1;25726:6;25722:14;25715:31;25598:155;:::o;25759:400::-;25919:3;25940:84;26022:1;26017:3;25940:84;:::i;:::-;25933:91;;26033:93;26122:3;26033:93;:::i;:::-;26151:1;26146:3;26142:11;26135:18;;25759:400;;;:::o;26165:701::-;26446:3;26468:95;26559:3;26550:6;26468:95;:::i;:::-;26461:102;;26580:95;26671:3;26662:6;26580:95;:::i;:::-;26573:102;;26692:148;26836:3;26692:148;:::i;:::-;26685:155;;26857:3;26850:10;;26165:701;;;;;:::o;26872:161::-;27012:13;27008:1;27000:6;26996:14;26989:37;26872:161;:::o;27039:402::-;27199:3;27220:85;27302:2;27297:3;27220:85;:::i;:::-;27213:92;;27314:93;27403:3;27314:93;:::i;:::-;27432:2;27427:3;27423:12;27416:19;;27039:402;;;:::o;27447:541::-;27680:3;27702:95;27793:3;27784:6;27702:95;:::i;:::-;27695:102;;27814:148;27958:3;27814:148;:::i;:::-;27807:155;;27979:3;27972:10;;27447:541;;;;:::o;27994:225::-;28134:34;28130:1;28122:6;28118:14;28111:58;28203:8;28198:2;28190:6;28186:15;28179:33;27994:225;:::o;28225:366::-;28367:3;28388:67;28452:2;28447:3;28388:67;:::i;:::-;28381:74;;28464:93;28553:3;28464:93;:::i;:::-;28582:2;28577:3;28573:12;28566:19;;28225:366;;;:::o;28597:419::-;28763:4;28801:2;28790:9;28786:18;28778:26;;28850:9;28844:4;28840:20;28836:1;28825:9;28821:17;28814:47;28878:131;29004:4;28878:131;:::i;:::-;28870:139;;28597:419;;;:::o;29022:182::-;29162:34;29158:1;29150:6;29146:14;29139:58;29022:182;:::o;29210:366::-;29352:3;29373:67;29437:2;29432:3;29373:67;:::i;:::-;29366:74;;29449:93;29538:3;29449:93;:::i;:::-;29567:2;29562:3;29558:12;29551:19;;29210:366;;;:::o;29582:419::-;29748:4;29786:2;29775:9;29771:18;29763:26;;29835:9;29829:4;29825:20;29821:1;29810:9;29806:17;29799:47;29863:131;29989:4;29863:131;:::i;:::-;29855:139;;29582:419;;;:::o;30007:98::-;30058:6;30092:5;30086:12;30076:22;;30007:98;;;:::o;30111:168::-;30194:11;30228:6;30223:3;30216:19;30268:4;30263:3;30259:14;30244:29;;30111:168;;;;:::o;30285:360::-;30371:3;30399:38;30431:5;30399:38;:::i;:::-;30453:70;30516:6;30511:3;30453:70;:::i;:::-;30446:77;;30532:52;30577:6;30572:3;30565:4;30558:5;30554:16;30532:52;:::i;:::-;30609:29;30631:6;30609:29;:::i;:::-;30604:3;30600:39;30593:46;;30375:270;30285:360;;;;:::o;30651:640::-;30846:4;30884:3;30873:9;30869:19;30861:27;;30898:71;30966:1;30955:9;30951:17;30942:6;30898:71;:::i;:::-;30979:72;31047:2;31036:9;31032:18;31023:6;30979:72;:::i;:::-;31061;31129:2;31118:9;31114:18;31105:6;31061:72;:::i;:::-;31180:9;31174:4;31170:20;31165:2;31154:9;31150:18;31143:48;31208:76;31279:4;31270:6;31208:76;:::i;:::-;31200:84;;30651:640;;;;;;;:::o;31297:141::-;31353:5;31384:6;31378:13;31369:22;;31400:32;31426:5;31400:32;:::i;:::-;31297:141;;;;:::o;31444:349::-;31513:6;31562:2;31550:9;31541:7;31537:23;31533:32;31530:119;;;31568:79;;:::i;:::-;31530:119;31688:1;31713:63;31768:7;31759:6;31748:9;31744:22;31713:63;:::i;:::-;31703:73;;31659:127;31444:349;;;;:::o;31799:191::-;31839:4;31859:20;31877:1;31859:20;:::i;:::-;31854:25;;31893:20;31911:1;31893:20;:::i;:::-;31888:25;;31932:1;31929;31926:8;31923:34;;;31937:18;;:::i;:::-;31923:34;31982:1;31979;31975:9;31967:17;;31799:191;;;;:::o;31996:176::-;32028:1;32045:20;32063:1;32045:20;:::i;:::-;32040:25;;32079:20;32097:1;32079:20;:::i;:::-;32074:25;;32118:1;32108:35;;32123:18;;:::i;:::-;32108:35;32164:1;32161;32157:9;32152:14;;31996:176;;;;:::o

Swarm Source

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