ETH Price: $2,515.69 (+0.33%)

Token

Zoë Moss | Infinite Video (Zoë Moss)
 

Overview

Max Total Supply

105 Zoë Moss

Holders

63

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
Zoe_Moss_Infinite

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-24
*/

// SPDX-License-Identifier: MIT

// 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/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// 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/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// 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: ZoëMoss3d.sol



pragma solidity ^0.8.0;






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

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

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


/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))
            // prettier-ignore
            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00))
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if `from` is a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For gas efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperator(address from, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // This code prioritizes runtime gas costs on a chain with the registry.
            // As such, we will not use `extcodesize`, but rather abuse the behavior
            // of `staticcall` returning 1 when called on an empty / missing contract,
            // to avoid reverting when a chain does not have the registry.

            if enabled {
                // Check if `from` is not equal to `msg.sender`,
                // discarding the upper 96 bits of `from` in case they are dirty.
                if iszero(eq(shr(96, shl(96, from)), caller())) {
                    // Store the function selector of `isOperatorAllowed(address,address)`,
                    // shifted left by 6 bytes, which is enough for 8tb of memory.
                    // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
                    mstore(0x00, 0xc6171134001122334455)
                    // Store the `address(this)`.
                    mstore(0x1a, address())
                    // Store the `msg.sender`.
                    mstore(0x3a, caller())

                    // `isOperatorAllowed` always returns true if it does not revert.
                    if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                        // Bubble up the revert if the staticcall reverts.
                        returndatacopy(0x00, 0x00, returndatasize())
                        revert(0x00, returndatasize())
                    }

                    // We'll skip checking if `from` is inside the blacklist.
                    // Even though that can block transferring out of wrapper contracts,
                    // we don't want tokens to be stuck.

                    // Restore the part of the free memory pointer that was overwritten,
                    // which is guaranteed to be zero, if less than 8tb of memory is used.
                    mstore(0x3a, 0)
                }
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperatorApproval(address operator, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // For more information on the optimization techniques used,
            // see the comments in `onlyAllowedOperator`.

            if enabled {
                // Store the function selector of `isOperatorAllowed(address,address)`,
                mstore(0x00, 0xc6171134001122334455)
                // Store the `address(this)`.
                mstore(0x1a, address())
                // Store the `operator`, discarding the upper 96 bits in case they are dirty.
                mstore(0x3a, shr(96, shl(96, operator)))

                // `isOperatorAllowed` always returns true if it does not revert.
                if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                    // Bubble up the revert if the staticcall reverts.
                    returndatacopy(0x00, 0x00, returndatasize())
                    revert(0x00, returndatasize())
                }

                // Restore the part of the free memory pointer that was overwritten.
                mstore(0x3a, 0)
            }
        }
        _;
    }
}

    error AlreadyReservedTokens();
    error CallerNotOffsetter();
    error FunctionLocked();
    error InsufficientValue();
    error InsufficientMints();
    error InsufficientSupply();
    error InvalidSignature();
    error NoContractMinting();
    error ProvenanceHashAlreadySet();
    error ProvenanceHashNotSet();
    error TokenOffsetAlreadySet();
    error TokenOffsetNotSet();
    error WithdrawFailed();

    interface Offsetable { function setOffset(uint256 randomness) external; }

contract Zoe_Moss_Infinite is ERC721A, ERC2981, OperatorFilterer, Ownable {
    using ECDSA for bytes32;

    string private _baseTokenURI;
    string public baseExtension = ".json";
    uint256 public constant RESERVED = 105;
    uint256 public constant MAX_SUPPLY = 105;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    mapping(bytes4 => bool) public functionLocked;

    constructor(
        address _royaltyReceiver,
        uint96 _royaltyFraction
    )
        ERC721A(unicode"Zoë Moss |  Infinite Video", unicode"Zoë Moss")
    {

        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;

        _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction);
    }

    /**
     * @notice Modifier applied to functions that will be disabled when they're no longer needed
     */
    modifier lockable() {
        if (functionLocked[msg.sig]) revert FunctionLocked();
        _;
    }

    /**
     * @inheritdoc ERC721A
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId)
            || ERC2981.supportsInterface(interfaceId);
    }

    /**
     * @notice Override ERC721A _baseURI function to use base URI pattern
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

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

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

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


    /**
     * @notice Return the number of tokens an address has minted
     * @param account Address to return the number of tokens minted for
     */
    function numberMinted(address account) external view returns (uint256) {
        return _numberMinted(account);
    }

    /**
     * @notice Lock a function so that it can no longer be called
     * @dev WARNING: THIS CANNOT BE UNDONE
     * @param id Function signature
     */
    function lockFunction(bytes4 id) external onlyOwner {
        functionLocked[id] = true;
    }

    /**
     * @notice Set the state of the OpenSea operator filter
     * @param value Flag indicating if the operator filter should be applied to transfers and approvals
     */
    function setOperatorFilteringEnabled(bool value) external lockable onlyOwner {
        operatorFilteringEnabled = value;
    }

    /**
     * @notice Set new royalties settings for the collection
     * @param receiver Address to receive royalties
     * @param royaltyFraction Royalty fee respective to fee denominator (10_000)
     */
    function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }


    /**
     * @notice Set token metadata base URI
     * @param _newBaseURI New base URI
     */
    function setBaseURI(string calldata _newBaseURI) external lockable onlyOwner {
        _baseTokenURI = _newBaseURI;
    }

    /**
     * @notice Set provenance hash for the collection
     * @param _provenanceHash New hash of the metadata
     */
    function setProvenanceHash(string calldata _provenanceHash) external lockable onlyOwner {
        if (bytes(provenanceHash).length != 0) revert ProvenanceHashAlreadySet();

        provenanceHash = _provenanceHash;
    }


    /**
     * @notice Mint `RESERVED` amount of tokens to an address
     * @param to Address to send the reserved tokens
     */
    function reserve(address to) external lockable onlyOwner {
        if (_totalMinted() >= RESERVED) revert AlreadyReservedTokens();

        _mint(to, RESERVED);
    }

    /**
     * @notice Withdraw all ETH sent to the contract
     */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        if (!success) revert WithdrawFailed();
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.setApprovalForAll(operator, approved);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function approve(address operator, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.approve(operator, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.transferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FunctionLocked","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":"ProvenanceHashAlreadySet","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"},{"inputs":[],"name":"WithdrawFailed","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","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":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620004b0565b503480156200005f57600080fd5b50604051620042283803806200422883398181016040528101906200008591906200058e565b6040518060400160405280601b81526020017f5a6fc3ab204d6f7373207c2020496e66696e69746520566964656f00000000008152506040518060400160405280600981526020017f5a6fc3ab204d6f73730000000000000000000000000000000000000000000000815250816002908051906020019062000109929190620004b0565b50806003908051906020019062000122929190620004b0565b5062000133620001a060201b60201c565b60008190555050506200015b6200014f620001a960201b60201c565b620001b160201b60201c565b6200016b6200027760201b60201c565b6001600e60006101000a81548160ff021916908315150217905550620001988282620002a060201b60201c565b5050620007da565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029e733cc6cdda760b79bafa08df41ecfa224f810dceb660016200044460201b60201c565b565b620002b0620004a660201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003089062000623565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000384576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037b9062000645565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c9250816200047357826200046b57634420e486905062000473565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6000612710905090565b828054620004be90620006c4565b90600052602060002090601f016020900481019282620004e257600085556200052e565b82601f10620004fd57805160ff19168380011785556200052e565b828001600101855582156200052e579182015b828111156200052d57825182559160200191906001019062000510565b5b5090506200053d919062000541565b5090565b5b808211156200055c57600081600090555060010162000542565b5090565b6000815190506200057181620007a6565b92915050565b6000815190506200058881620007c0565b92915050565b60008060408385031215620005a857620005a762000729565b5b6000620005b88582860162000560565b9250506020620005cb8582860162000577565b9150509250929050565b6000620005e4602a8362000667565b9150620005f1826200072e565b604082019050919050565b60006200060b60198362000667565b915062000618826200077d565b602082019050919050565b600060208201905081810360008301526200063e81620005d5565b9050919050565b600060208201905081810360008301526200066081620005fc565b9050919050565b600082825260208201905092915050565b600062000685826200068c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b60006002820490506001821680620006dd57607f821691505b60208210811415620006f457620006f3620006fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b620007b18162000678565b8114620007bd57600080fd5b50565b620007cb81620006ac565b8114620007d757600080fd5b50565b613a3e80620007ea6000396000f3fe6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c6682862116100a0578063dc33e6811161006f578063dc33e681146106b4578063e75179a4146106f1578063e985e9c51461071a578063f2fde38b14610757578063fb796e6c14610780576101ee565b8063c6682862146105f8578063c6ab67a314610623578063c87b56dd1461064e578063da3ef23f1461068b576101ee565b8063b7c0b8e8116100dc578063b7c0b8e81461054d578063b88d4fde14610576578063bbadfe7614610592578063c21b471b146105cf576101ee565b80638da5cb5b146104a357806395d89b41146104ce578063a22cb465146104f9578063aa592f2514610522576101ee565b806332cb6b0c1161018557806355f804b31161015457806355f804b3146103e95780636352211e1461041257806370a082311461044f578063715018a61461048c576101ee565b806332cb6b0c14610362578063345318281461038d5780633ccfd60b146103b657806342842e0e146103cd576101ee565b806310969523116101c157806310969523146102b457806318160ddd146102dd57806323b872dd146103085780632a55205a14610324576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612e43565b6107ab565b6040516102279190613297565b60405180910390f35b34801561023c57600080fd5b506102456107cd565b60405161025291906132b2565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f33565b61085f565b60405161028f9190613207565b60405180910390f35b6102b260048036038101906102ad9190612d96565b6108de565b005b3480156102c057600080fd5b506102db60048036038101906102d69190612e9d565b61094d565b005b3480156102e957600080fd5b506102f2610a6c565b6040516102ff9190613374565b60405180910390f35b610322600480360381019061031d9190612c80565b610a83565b005b34801561033057600080fd5b5061034b60048036038101906103469190612f60565b610afc565b60405161035992919061326e565b60405180910390f35b34801561036e57600080fd5b50610377610ce7565b6040516103849190613374565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190612e43565b610cec565b005b3480156103c257600080fd5b506103cb610d61565b005b6103e760048036038101906103e29190612c80565b610e0f565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612e9d565b610e88565b005b34801561041e57600080fd5b5061043960048036038101906104349190612f33565b610f5f565b6040516104469190613207565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612c13565b610f71565b6040516104839190613374565b60405180910390f35b34801561049857600080fd5b506104a161102a565b005b3480156104af57600080fd5b506104b861103e565b6040516104c59190613207565b60405180910390f35b3480156104da57600080fd5b506104e3611068565b6040516104f091906132b2565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612d56565b6110fa565b005b34801561052e57600080fd5b50610537611169565b6040516105449190613374565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612e16565b61116e565b005b610590600480360381019061058b9190612cd3565b61124c565b005b34801561059e57600080fd5b506105b960048036038101906105b49190612e43565b6112c7565b6040516105c69190613297565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612dd6565b6112e7565b005b34801561060457600080fd5b5061060d6112fd565b60405161061a91906132b2565b60405180910390f35b34801561062f57600080fd5b5061063861138b565b60405161064591906132b2565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190612f33565b611419565b60405161068291906132b2565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190612eea565b6114c3565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612c13565b6114e5565b6040516106e89190613374565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612c13565b6114f7565b005b34801561072657600080fd5b50610741600480360381019061073c9190612c40565b611607565b60405161074e9190613297565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190612c13565b61169b565b005b34801561078c57600080fd5b5061079561171f565b6040516107a29190613297565b60405180910390f35b60006107b682611732565b806107c657506107c5826117c4565b5b9050919050565b6060600280546107dc9061365c565b80601f01602080910402602001604051908101604052809291908181526020018280546108089061365c565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a8261183e565b6108a0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81600e60009054906101000a900460ff16801561093d5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610937573d6000803e3d6000fd5b6000603a525b610947848461189d565b50505050565b600f600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610a06576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a0e6119e1565b6000600d8054610a1d9061365c565b905014610a56576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181600d9190610a67929190612936565b505050565b6000610a76611a5f565b6001546000540303905090565b82600e60009054906101000a900460ff168015610aea57338260601b60601c14610ae95769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610ae3573d6000803e3d6000fd5b6000603a525b5b610af5858585611a68565b5050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610c925760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c9c611d8d565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610cc89190613500565b610cd291906134cf565b90508160000151819350935050509250929050565b606981565b610cf46119e1565b6001600f6000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610d696119e1565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d8f906131f2565b60006040518083038185875af1925050503d8060008114610dcc576040519150601f19603f3d011682016040523d82523d6000602084013e610dd1565b606091505b5050905080610e0c576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b82600e60009054906101000a900460ff168015610e7657338260601b60601c14610e755769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610e6f573d6000803e3d6000fd5b6000603a525b5b610e81858585611d97565b5050505050565b600f600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610f41576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f496119e1565b8181600b9190610f5a929190612936565b505050565b6000610f6a82611db7565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110326119e1565b61103c6000611e85565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110779061365c565b80601f01602080910402602001604051908101604052809291908181526020018280546110a39061365c565b80156110f05780601f106110c5576101008083540402835291602001916110f0565b820191906000526020600020905b8154815290600101906020018083116110d357829003601f168201915b5050505050905090565b81600e60009054906101000a900460ff1680156111595769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611153573d6000803e3d6000fd5b6000603a525b6111638484611f4b565b50505050565b606981565b600f600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611227576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61122f6119e1565b80600e60006101000a81548160ff02191690831515021790555050565b83600e60009054906101000a900460ff1680156112b357338260601b60601c146112b25769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6112ac573d6000803e3d6000fd5b6000603a525b5b6112bf86868686612056565b505050505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6112ef6119e1565b6112f982826120c9565b5050565b600c805461130a9061365c565b80601f01602080910402602001604051908101604052809291908181526020018280546113369061365c565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b505050505081565b600d80546113989061365c565b80601f01602080910402602001604051908101604052809291908181526020018280546113c49061365c565b80156114115780601f106113e657610100808354040283529160200191611411565b820191906000526020600020905b8154815290600101906020018083116113f457829003601f168201915b505050505081565b60606114248261183e565b611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90613314565b60405180910390fd5b600061146d61225f565b9050600081511161148d57604051806020016040528060008152506114bb565b80611497846122f1565b600c6040516020016114ab939291906131c1565b6040516020818303038152906040525b915050919050565b6114cb6119e1565b80600c90805190602001906114e19291906129bc565b5050565b60006114f082612452565b9050919050565b600f600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156115b0576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115b86119e1565b60696115c26124a9565b106115f9576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116048160696124bc565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a36119e1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906132d4565b60405180910390fd5b61171c81611e85565b50565b600e60009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061178d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117bd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611837575061183682612679565b5b9050919050565b600081611849611a5f565b11158015611858575060005482105b8015611896575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006118a882610f5f565b90508073ffffffffffffffffffffffffffffffffffffffff166118c96126e3565b73ffffffffffffffffffffffffffffffffffffffff161461192c576118f5816118f06126e3565b611607565b61192b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119e96126eb565b73ffffffffffffffffffffffffffffffffffffffff16611a0761103e565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a54906132f4565b60405180910390fd5b565b60006001905090565b6000611a7382611db7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ada576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611ae6846126f3565b91509150611afc8187611af76126e3565b61271a565b611b4857611b1186611b0c6126e3565b611607565b611b47576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611baf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bbc868686600161275e565b8015611bc757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611c9585611c71888887612764565b7c02000000000000000000000000000000000000000000000000000000001761278c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611d1d576000600185019050600060046000838152602001908152602001600020541415611d1b576000548114611d1a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8586868660016127b7565b505050505050565b6000612710905090565b611db28383836040518060200160405280600081525061124c565b505050565b60008082905080611dc6611a5f565b11611e4e57600054811015611e4d5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e4b575b6000811415611e41576004600083600190039350838152602001908152602001600020549050611e16565b8092505050611e80565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611f586126e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120056126e3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204a9190613297565b60405180910390a35050565b612061848484610a83565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120c35761208c848484846127bd565b6120c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6120d1611d8d565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613334565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690613354565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b805461226e9061365c565b80601f016020809104026020016040519081016040528092919081815260200182805461229a9061365c565b80156122e75780601f106122bc576101008083540402835291602001916122e7565b820191906000526020600020905b8154815290600101906020018083116122ca57829003601f168201915b5050505050905090565b60606000821415612339576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061244d565b600082905060005b6000821461236b578080612354906136bf565b915050600a8261236491906134cf565b9150612341565b60008167ffffffffffffffff811115612387576123866137f5565b5b6040519080825280601f01601f1916602001820160405280156123b95781602001600182028036833780820191505090505b5090505b60008514612446576001826123d2919061355a565b9150600a856123e19190613708565b60306123ed9190613479565b60f81b818381518110612403576124026137c6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561243f91906134cf565b94506123bd565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60006124b3611a5f565b60005403905090565b60008054905060008214156124fd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61250a600084838561275e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612581836125726000866000612764565b61257b8561291d565b1761278c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461262257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125e7565b50600082141561265e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061267460008483856127b7565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861277b86868461292d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e36126e3565b8786866040518563ffffffff1660e01b81526004016128059493929190613222565b602060405180830381600087803b15801561281f57600080fd5b505af192505050801561285057506040513d601f19601f8201168201806040525081019061284d9190612e70565b60015b6128ca573d8060008114612880576040519150601f19603f3d011682016040523d82523d6000602084013e612885565b606091505b506000815114156128c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006001821460e11b9050919050565b60009392505050565b8280546129429061365c565b90600052602060002090601f01602090048101928261296457600085556129ab565b82601f1061297d57803560ff19168380011785556129ab565b828001600101855582156129ab579182015b828111156129aa57823582559160200191906001019061298f565b5b5090506129b89190612a42565b5090565b8280546129c89061365c565b90600052602060002090601f0160209004810192826129ea5760008555612a31565b82601f10612a0357805160ff1916838001178555612a31565b82800160010185558215612a31579182015b82811115612a30578251825591602001919060010190612a15565b5b509050612a3e9190612a42565b5090565b5b80821115612a5b576000816000905550600101612a43565b5090565b6000612a72612a6d846133b4565b61338f565b905082815260208101848484011115612a8e57612a8d613833565b5b612a9984828561361a565b509392505050565b6000612ab4612aaf846133e5565b61338f565b905082815260208101848484011115612ad057612acf613833565b5b612adb84828561361a565b509392505050565b600081359050612af281613995565b92915050565b600081359050612b07816139ac565b92915050565b600081359050612b1c816139c3565b92915050565b600081519050612b31816139c3565b92915050565b600082601f830112612b4c57612b4b613829565b5b8135612b5c848260208601612a5f565b91505092915050565b60008083601f840112612b7b57612b7a613829565b5b8235905067ffffffffffffffff811115612b9857612b97613824565b5b602083019150836001820283011115612bb457612bb361382e565b5b9250929050565b600082601f830112612bd057612bcf613829565b5b8135612be0848260208601612aa1565b91505092915050565b600081359050612bf8816139da565b92915050565b600081359050612c0d816139f1565b92915050565b600060208284031215612c2957612c2861383d565b5b6000612c3784828501612ae3565b91505092915050565b60008060408385031215612c5757612c5661383d565b5b6000612c6585828601612ae3565b9250506020612c7685828601612ae3565b9150509250929050565b600080600060608486031215612c9957612c9861383d565b5b6000612ca786828701612ae3565b9350506020612cb886828701612ae3565b9250506040612cc986828701612be9565b9150509250925092565b60008060008060808587031215612ced57612cec61383d565b5b6000612cfb87828801612ae3565b9450506020612d0c87828801612ae3565b9350506040612d1d87828801612be9565b925050606085013567ffffffffffffffff811115612d3e57612d3d613838565b5b612d4a87828801612b37565b91505092959194509250565b60008060408385031215612d6d57612d6c61383d565b5b6000612d7b85828601612ae3565b9250506020612d8c85828601612af8565b9150509250929050565b60008060408385031215612dad57612dac61383d565b5b6000612dbb85828601612ae3565b9250506020612dcc85828601612be9565b9150509250929050565b60008060408385031215612ded57612dec61383d565b5b6000612dfb85828601612ae3565b9250506020612e0c85828601612bfe565b9150509250929050565b600060208284031215612e2c57612e2b61383d565b5b6000612e3a84828501612af8565b91505092915050565b600060208284031215612e5957612e5861383d565b5b6000612e6784828501612b0d565b91505092915050565b600060208284031215612e8657612e8561383d565b5b6000612e9484828501612b22565b91505092915050565b60008060208385031215612eb457612eb361383d565b5b600083013567ffffffffffffffff811115612ed257612ed1613838565b5b612ede85828601612b65565b92509250509250929050565b600060208284031215612f0057612eff61383d565b5b600082013567ffffffffffffffff811115612f1e57612f1d613838565b5b612f2a84828501612bbb565b91505092915050565b600060208284031215612f4957612f4861383d565b5b6000612f5784828501612be9565b91505092915050565b60008060408385031215612f7757612f7661383d565b5b6000612f8585828601612be9565b9250506020612f9685828601612be9565b9150509250929050565b612fa98161358e565b82525050565b612fb8816135a0565b82525050565b6000612fc98261342b565b612fd38185613441565b9350612fe3818560208601613629565b612fec81613842565b840191505092915050565b600061300282613436565b61300c818561345d565b935061301c818560208601613629565b61302581613842565b840191505092915050565b600061303b82613436565b613045818561346e565b9350613055818560208601613629565b80840191505092915050565b6000815461306e8161365c565b613078818661346e565b9450600182166000811461309357600181146130a4576130d7565b60ff198316865281860193506130d7565b6130ad85613416565b60005b838110156130cf578154818901526001820191506020810190506130b0565b838801955050505b50505092915050565b60006130ed60268361345d565b91506130f882613853565b604082019050919050565b600061311060208361345d565b915061311b826138a2565b602082019050919050565b6000613133602f8361345d565b915061313e826138cb565b604082019050919050565b6000613156600083613452565b91506131618261391a565b600082019050919050565b6000613179602a8361345d565b91506131848261391d565b604082019050919050565b600061319c60198361345d565b91506131a78261396c565b602082019050919050565b6131bb816135f8565b82525050565b60006131cd8286613030565b91506131d98285613030565b91506131e58284613061565b9150819050949350505050565b60006131fd82613149565b9150819050919050565b600060208201905061321c6000830184612fa0565b92915050565b60006080820190506132376000830187612fa0565b6132446020830186612fa0565b61325160408301856131b2565b81810360608301526132638184612fbe565b905095945050505050565b60006040820190506132836000830185612fa0565b61329060208301846131b2565b9392505050565b60006020820190506132ac6000830184612faf565b92915050565b600060208201905081810360008301526132cc8184612ff7565b905092915050565b600060208201905081810360008301526132ed816130e0565b9050919050565b6000602082019050818103600083015261330d81613103565b9050919050565b6000602082019050818103600083015261332d81613126565b9050919050565b6000602082019050818103600083015261334d8161316c565b9050919050565b6000602082019050818103600083015261336d8161318f565b9050919050565b600060208201905061338960008301846131b2565b92915050565b60006133996133aa565b90506133a5828261368e565b919050565b6000604051905090565b600067ffffffffffffffff8211156133cf576133ce6137f5565b5b6133d882613842565b9050602081019050919050565b600067ffffffffffffffff821115613400576133ff6137f5565b5b61340982613842565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613484826135f8565b915061348f836135f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c4576134c3613739565b5b828201905092915050565b60006134da826135f8565b91506134e5836135f8565b9250826134f5576134f4613768565b5b828204905092915050565b600061350b826135f8565b9150613516836135f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354f5761354e613739565b5b828202905092915050565b6000613565826135f8565b9150613570836135f8565b92508282101561358357613582613739565b5b828203905092915050565b6000613599826135d8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561364757808201518184015260208101905061362c565b83811115613656576000848401525b50505050565b6000600282049050600182168061367457607f821691505b6020821081141561368857613687613797565b5b50919050565b61369782613842565b810181811067ffffffffffffffff821117156136b6576136b56137f5565b5b80604052505050565b60006136ca826135f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136fd576136fc613739565b5b600182019050919050565b6000613713826135f8565b915061371e836135f8565b92508261372e5761372d613768565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61399e8161358e565b81146139a957600080fd5b50565b6139b5816135a0565b81146139c057600080fd5b50565b6139cc816135ac565b81146139d757600080fd5b50565b6139e3816135f8565b81146139ee57600080fd5b50565b6139fa81613602565b8114613a0557600080fd5b5056fea26469706673582212204ce182f1d66632c2ed07a20584c16d495e7f354b8a3f9ef33aeedada3de1473d64736f6c6343000807003300000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb731800000000000000000000000000000000000000000000000000000000000002bc

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c6682862116100a0578063dc33e6811161006f578063dc33e681146106b4578063e75179a4146106f1578063e985e9c51461071a578063f2fde38b14610757578063fb796e6c14610780576101ee565b8063c6682862146105f8578063c6ab67a314610623578063c87b56dd1461064e578063da3ef23f1461068b576101ee565b8063b7c0b8e8116100dc578063b7c0b8e81461054d578063b88d4fde14610576578063bbadfe7614610592578063c21b471b146105cf576101ee565b80638da5cb5b146104a357806395d89b41146104ce578063a22cb465146104f9578063aa592f2514610522576101ee565b806332cb6b0c1161018557806355f804b31161015457806355f804b3146103e95780636352211e1461041257806370a082311461044f578063715018a61461048c576101ee565b806332cb6b0c14610362578063345318281461038d5780633ccfd60b146103b657806342842e0e146103cd576101ee565b806310969523116101c157806310969523146102b457806318160ddd146102dd57806323b872dd146103085780632a55205a14610324576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612e43565b6107ab565b6040516102279190613297565b60405180910390f35b34801561023c57600080fd5b506102456107cd565b60405161025291906132b2565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f33565b61085f565b60405161028f9190613207565b60405180910390f35b6102b260048036038101906102ad9190612d96565b6108de565b005b3480156102c057600080fd5b506102db60048036038101906102d69190612e9d565b61094d565b005b3480156102e957600080fd5b506102f2610a6c565b6040516102ff9190613374565b60405180910390f35b610322600480360381019061031d9190612c80565b610a83565b005b34801561033057600080fd5b5061034b60048036038101906103469190612f60565b610afc565b60405161035992919061326e565b60405180910390f35b34801561036e57600080fd5b50610377610ce7565b6040516103849190613374565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190612e43565b610cec565b005b3480156103c257600080fd5b506103cb610d61565b005b6103e760048036038101906103e29190612c80565b610e0f565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612e9d565b610e88565b005b34801561041e57600080fd5b5061043960048036038101906104349190612f33565b610f5f565b6040516104469190613207565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612c13565b610f71565b6040516104839190613374565b60405180910390f35b34801561049857600080fd5b506104a161102a565b005b3480156104af57600080fd5b506104b861103e565b6040516104c59190613207565b60405180910390f35b3480156104da57600080fd5b506104e3611068565b6040516104f091906132b2565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612d56565b6110fa565b005b34801561052e57600080fd5b50610537611169565b6040516105449190613374565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612e16565b61116e565b005b610590600480360381019061058b9190612cd3565b61124c565b005b34801561059e57600080fd5b506105b960048036038101906105b49190612e43565b6112c7565b6040516105c69190613297565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612dd6565b6112e7565b005b34801561060457600080fd5b5061060d6112fd565b60405161061a91906132b2565b60405180910390f35b34801561062f57600080fd5b5061063861138b565b60405161064591906132b2565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190612f33565b611419565b60405161068291906132b2565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190612eea565b6114c3565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612c13565b6114e5565b6040516106e89190613374565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612c13565b6114f7565b005b34801561072657600080fd5b50610741600480360381019061073c9190612c40565b611607565b60405161074e9190613297565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190612c13565b61169b565b005b34801561078c57600080fd5b5061079561171f565b6040516107a29190613297565b60405180910390f35b60006107b682611732565b806107c657506107c5826117c4565b5b9050919050565b6060600280546107dc9061365c565b80601f01602080910402602001604051908101604052809291908181526020018280546108089061365c565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a8261183e565b6108a0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81600e60009054906101000a900460ff16801561093d5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610937573d6000803e3d6000fd5b6000603a525b610947848461189d565b50505050565b600f600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610a06576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a0e6119e1565b6000600d8054610a1d9061365c565b905014610a56576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181600d9190610a67929190612936565b505050565b6000610a76611a5f565b6001546000540303905090565b82600e60009054906101000a900460ff168015610aea57338260601b60601c14610ae95769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610ae3573d6000803e3d6000fd5b6000603a525b5b610af5858585611a68565b5050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610c925760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c9c611d8d565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610cc89190613500565b610cd291906134cf565b90508160000151819350935050509250929050565b606981565b610cf46119e1565b6001600f6000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610d696119e1565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d8f906131f2565b60006040518083038185875af1925050503d8060008114610dcc576040519150601f19603f3d011682016040523d82523d6000602084013e610dd1565b606091505b5050905080610e0c576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b82600e60009054906101000a900460ff168015610e7657338260601b60601c14610e755769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610e6f573d6000803e3d6000fd5b6000603a525b5b610e81858585611d97565b5050505050565b600f600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610f41576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f496119e1565b8181600b9190610f5a929190612936565b505050565b6000610f6a82611db7565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110326119e1565b61103c6000611e85565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110779061365c565b80601f01602080910402602001604051908101604052809291908181526020018280546110a39061365c565b80156110f05780601f106110c5576101008083540402835291602001916110f0565b820191906000526020600020905b8154815290600101906020018083116110d357829003601f168201915b5050505050905090565b81600e60009054906101000a900460ff1680156111595769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611153573d6000803e3d6000fd5b6000603a525b6111638484611f4b565b50505050565b606981565b600f600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611227576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61122f6119e1565b80600e60006101000a81548160ff02191690831515021790555050565b83600e60009054906101000a900460ff1680156112b357338260601b60601c146112b25769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6112ac573d6000803e3d6000fd5b6000603a525b5b6112bf86868686612056565b505050505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6112ef6119e1565b6112f982826120c9565b5050565b600c805461130a9061365c565b80601f01602080910402602001604051908101604052809291908181526020018280546113369061365c565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b505050505081565b600d80546113989061365c565b80601f01602080910402602001604051908101604052809291908181526020018280546113c49061365c565b80156114115780601f106113e657610100808354040283529160200191611411565b820191906000526020600020905b8154815290600101906020018083116113f457829003601f168201915b505050505081565b60606114248261183e565b611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90613314565b60405180910390fd5b600061146d61225f565b9050600081511161148d57604051806020016040528060008152506114bb565b80611497846122f1565b600c6040516020016114ab939291906131c1565b6040516020818303038152906040525b915050919050565b6114cb6119e1565b80600c90805190602001906114e19291906129bc565b5050565b60006114f082612452565b9050919050565b600f600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156115b0576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115b86119e1565b60696115c26124a9565b106115f9576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116048160696124bc565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a36119e1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906132d4565b60405180910390fd5b61171c81611e85565b50565b600e60009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061178d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117bd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611837575061183682612679565b5b9050919050565b600081611849611a5f565b11158015611858575060005482105b8015611896575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006118a882610f5f565b90508073ffffffffffffffffffffffffffffffffffffffff166118c96126e3565b73ffffffffffffffffffffffffffffffffffffffff161461192c576118f5816118f06126e3565b611607565b61192b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119e96126eb565b73ffffffffffffffffffffffffffffffffffffffff16611a0761103e565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a54906132f4565b60405180910390fd5b565b60006001905090565b6000611a7382611db7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ada576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611ae6846126f3565b91509150611afc8187611af76126e3565b61271a565b611b4857611b1186611b0c6126e3565b611607565b611b47576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611baf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bbc868686600161275e565b8015611bc757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611c9585611c71888887612764565b7c02000000000000000000000000000000000000000000000000000000001761278c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611d1d576000600185019050600060046000838152602001908152602001600020541415611d1b576000548114611d1a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8586868660016127b7565b505050505050565b6000612710905090565b611db28383836040518060200160405280600081525061124c565b505050565b60008082905080611dc6611a5f565b11611e4e57600054811015611e4d5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e4b575b6000811415611e41576004600083600190039350838152602001908152602001600020549050611e16565b8092505050611e80565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611f586126e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120056126e3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204a9190613297565b60405180910390a35050565b612061848484610a83565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120c35761208c848484846127bd565b6120c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6120d1611d8d565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613334565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690613354565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b805461226e9061365c565b80601f016020809104026020016040519081016040528092919081815260200182805461229a9061365c565b80156122e75780601f106122bc576101008083540402835291602001916122e7565b820191906000526020600020905b8154815290600101906020018083116122ca57829003601f168201915b5050505050905090565b60606000821415612339576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061244d565b600082905060005b6000821461236b578080612354906136bf565b915050600a8261236491906134cf565b9150612341565b60008167ffffffffffffffff811115612387576123866137f5565b5b6040519080825280601f01601f1916602001820160405280156123b95781602001600182028036833780820191505090505b5090505b60008514612446576001826123d2919061355a565b9150600a856123e19190613708565b60306123ed9190613479565b60f81b818381518110612403576124026137c6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561243f91906134cf565b94506123bd565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60006124b3611a5f565b60005403905090565b60008054905060008214156124fd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61250a600084838561275e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612581836125726000866000612764565b61257b8561291d565b1761278c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461262257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125e7565b50600082141561265e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061267460008483856127b7565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861277b86868461292d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e36126e3565b8786866040518563ffffffff1660e01b81526004016128059493929190613222565b602060405180830381600087803b15801561281f57600080fd5b505af192505050801561285057506040513d601f19601f8201168201806040525081019061284d9190612e70565b60015b6128ca573d8060008114612880576040519150601f19603f3d011682016040523d82523d6000602084013e612885565b606091505b506000815114156128c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006001821460e11b9050919050565b60009392505050565b8280546129429061365c565b90600052602060002090601f01602090048101928261296457600085556129ab565b82601f1061297d57803560ff19168380011785556129ab565b828001600101855582156129ab579182015b828111156129aa57823582559160200191906001019061298f565b5b5090506129b89190612a42565b5090565b8280546129c89061365c565b90600052602060002090601f0160209004810192826129ea5760008555612a31565b82601f10612a0357805160ff1916838001178555612a31565b82800160010185558215612a31579182015b82811115612a30578251825591602001919060010190612a15565b5b509050612a3e9190612a42565b5090565b5b80821115612a5b576000816000905550600101612a43565b5090565b6000612a72612a6d846133b4565b61338f565b905082815260208101848484011115612a8e57612a8d613833565b5b612a9984828561361a565b509392505050565b6000612ab4612aaf846133e5565b61338f565b905082815260208101848484011115612ad057612acf613833565b5b612adb84828561361a565b509392505050565b600081359050612af281613995565b92915050565b600081359050612b07816139ac565b92915050565b600081359050612b1c816139c3565b92915050565b600081519050612b31816139c3565b92915050565b600082601f830112612b4c57612b4b613829565b5b8135612b5c848260208601612a5f565b91505092915050565b60008083601f840112612b7b57612b7a613829565b5b8235905067ffffffffffffffff811115612b9857612b97613824565b5b602083019150836001820283011115612bb457612bb361382e565b5b9250929050565b600082601f830112612bd057612bcf613829565b5b8135612be0848260208601612aa1565b91505092915050565b600081359050612bf8816139da565b92915050565b600081359050612c0d816139f1565b92915050565b600060208284031215612c2957612c2861383d565b5b6000612c3784828501612ae3565b91505092915050565b60008060408385031215612c5757612c5661383d565b5b6000612c6585828601612ae3565b9250506020612c7685828601612ae3565b9150509250929050565b600080600060608486031215612c9957612c9861383d565b5b6000612ca786828701612ae3565b9350506020612cb886828701612ae3565b9250506040612cc986828701612be9565b9150509250925092565b60008060008060808587031215612ced57612cec61383d565b5b6000612cfb87828801612ae3565b9450506020612d0c87828801612ae3565b9350506040612d1d87828801612be9565b925050606085013567ffffffffffffffff811115612d3e57612d3d613838565b5b612d4a87828801612b37565b91505092959194509250565b60008060408385031215612d6d57612d6c61383d565b5b6000612d7b85828601612ae3565b9250506020612d8c85828601612af8565b9150509250929050565b60008060408385031215612dad57612dac61383d565b5b6000612dbb85828601612ae3565b9250506020612dcc85828601612be9565b9150509250929050565b60008060408385031215612ded57612dec61383d565b5b6000612dfb85828601612ae3565b9250506020612e0c85828601612bfe565b9150509250929050565b600060208284031215612e2c57612e2b61383d565b5b6000612e3a84828501612af8565b91505092915050565b600060208284031215612e5957612e5861383d565b5b6000612e6784828501612b0d565b91505092915050565b600060208284031215612e8657612e8561383d565b5b6000612e9484828501612b22565b91505092915050565b60008060208385031215612eb457612eb361383d565b5b600083013567ffffffffffffffff811115612ed257612ed1613838565b5b612ede85828601612b65565b92509250509250929050565b600060208284031215612f0057612eff61383d565b5b600082013567ffffffffffffffff811115612f1e57612f1d613838565b5b612f2a84828501612bbb565b91505092915050565b600060208284031215612f4957612f4861383d565b5b6000612f5784828501612be9565b91505092915050565b60008060408385031215612f7757612f7661383d565b5b6000612f8585828601612be9565b9250506020612f9685828601612be9565b9150509250929050565b612fa98161358e565b82525050565b612fb8816135a0565b82525050565b6000612fc98261342b565b612fd38185613441565b9350612fe3818560208601613629565b612fec81613842565b840191505092915050565b600061300282613436565b61300c818561345d565b935061301c818560208601613629565b61302581613842565b840191505092915050565b600061303b82613436565b613045818561346e565b9350613055818560208601613629565b80840191505092915050565b6000815461306e8161365c565b613078818661346e565b9450600182166000811461309357600181146130a4576130d7565b60ff198316865281860193506130d7565b6130ad85613416565b60005b838110156130cf578154818901526001820191506020810190506130b0565b838801955050505b50505092915050565b60006130ed60268361345d565b91506130f882613853565b604082019050919050565b600061311060208361345d565b915061311b826138a2565b602082019050919050565b6000613133602f8361345d565b915061313e826138cb565b604082019050919050565b6000613156600083613452565b91506131618261391a565b600082019050919050565b6000613179602a8361345d565b91506131848261391d565b604082019050919050565b600061319c60198361345d565b91506131a78261396c565b602082019050919050565b6131bb816135f8565b82525050565b60006131cd8286613030565b91506131d98285613030565b91506131e58284613061565b9150819050949350505050565b60006131fd82613149565b9150819050919050565b600060208201905061321c6000830184612fa0565b92915050565b60006080820190506132376000830187612fa0565b6132446020830186612fa0565b61325160408301856131b2565b81810360608301526132638184612fbe565b905095945050505050565b60006040820190506132836000830185612fa0565b61329060208301846131b2565b9392505050565b60006020820190506132ac6000830184612faf565b92915050565b600060208201905081810360008301526132cc8184612ff7565b905092915050565b600060208201905081810360008301526132ed816130e0565b9050919050565b6000602082019050818103600083015261330d81613103565b9050919050565b6000602082019050818103600083015261332d81613126565b9050919050565b6000602082019050818103600083015261334d8161316c565b9050919050565b6000602082019050818103600083015261336d8161318f565b9050919050565b600060208201905061338960008301846131b2565b92915050565b60006133996133aa565b90506133a5828261368e565b919050565b6000604051905090565b600067ffffffffffffffff8211156133cf576133ce6137f5565b5b6133d882613842565b9050602081019050919050565b600067ffffffffffffffff821115613400576133ff6137f5565b5b61340982613842565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613484826135f8565b915061348f836135f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c4576134c3613739565b5b828201905092915050565b60006134da826135f8565b91506134e5836135f8565b9250826134f5576134f4613768565b5b828204905092915050565b600061350b826135f8565b9150613516836135f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354f5761354e613739565b5b828202905092915050565b6000613565826135f8565b9150613570836135f8565b92508282101561358357613582613739565b5b828203905092915050565b6000613599826135d8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561364757808201518184015260208101905061362c565b83811115613656576000848401525b50505050565b6000600282049050600182168061367457607f821691505b6020821081141561368857613687613797565b5b50919050565b61369782613842565b810181811067ffffffffffffffff821117156136b6576136b56137f5565b5b80604052505050565b60006136ca826135f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136fd576136fc613739565b5b600182019050919050565b6000613713826135f8565b915061371e836135f8565b92508261372e5761372d613768565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61399e8161358e565b81146139a957600080fd5b50565b6139b5816135a0565b81146139c057600080fd5b50565b6139cc816135ac565b81146139d757600080fd5b50565b6139e3816135f8565b81146139ee57600080fd5b50565b6139fa81613602565b8114613a0557600080fd5b5056fea26469706673582212204ce182f1d66632c2ed07a20584c16d495e7f354b8a3f9ef33aeedada3de1473d64736f6c63430008070033

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

00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb731800000000000000000000000000000000000000000000000000000000000002bc

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0x59dE7273191E6bf1907d614e94eCFbe8e5FB7318
Arg [1] : _royaltyFraction (uint96): 700

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb7318
Arg [1] : 00000000000000000000000000000000000000000000000000000000000002bc


Deployed Bytecode Sourcemap

80270:6534:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81296:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41002:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47493:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85346:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83990:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36753:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85738:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15793:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;80507:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82832:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84609:183;;;;;;;;;;;;;:::i;:::-;;86129:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83730:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42395:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37937:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21066:103;;;;;;;;;;;;;:::i;:::-;;20418:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41178:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84952:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80462:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83120:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86528:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80632:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83471:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80418:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80554:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81929:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81793:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82539:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84359:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48442:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21324:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80589:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81296:274;81427:4;81469:38;81495:11;81469:25;:38::i;:::-;:93;;;;81524:38;81550:11;81524:25;:38::i;:::-;81469:93;81449:113;;81296:274;;;:::o;41002:100::-;41056:13;41089:5;41082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41002:100;:::o;47493:218::-;47569:7;47594:16;47602:7;47594;:16::i;:::-;47589:64;;47619:34;;;;;;;;;;;;;;47589:64;47673:15;:24;47689:7;47673:24;;;;;;;;;;;:30;;;;;;;;;;;;47666:37;;47493:218;;;:::o;85346:232::-;85486:8;85496:24;;;;;;;;;;;78799:7;78796:925;;;78928:22;78922:4;78915:36;79029:9;79023:4;79016:23;79181:8;79177:2;79173:17;79169:2;79165:26;79159:4;79152:40;79368:4;79362;79356;79350;79323:25;79316:5;79305:68;79295:290;;79497:16;79491:4;79485;79470:44;79549:16;79543:4;79536:30;79295:290;79704:1;79698:4;79691:15;78796:925;85538:32:::1;85552:8;85562:7;85538:13;:32::i;:::-;85346:232:::0;;;;:::o;83990:224::-;81174:14;:23;81189:7;;;;81174:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81170:52;;;81206:16;;;;;;;;;;;;;;81170:52;20304:13:::1;:11;:13::i;:::-;84125:1:::2;84099:14;84093:28;;;;;:::i;:::-;;;:33;84089:72;;84135:26;;;;;;;;;;;;;;84089:72;84191:15;;84174:14;:32;;;;;;;:::i;:::-;;83990:224:::0;;:::o;36753:323::-;36814:7;37042:15;:13;:15::i;:::-;37027:12;;37011:13;;:28;:46;37004:53;;36753:323;:::o;85738:231::-;85881:4;85887:24;;;;;;;;;;;76572:7;76569:1643;;;76785:8;76777:4;76773:2;76769:13;76765:2;76761:22;76758:36;76748:1449;;77100:22;77094:4;77087:36;77209:9;77203:4;77196:23;77302:8;77296:4;77289:22;77495:4;77489;77483;77477;77450:25;77443:5;77432:68;77422:306;;77632:16;77626:4;77620;77605:44;77688:16;77682:4;77675:30;77422:306;78176:1;78170:4;78163:15;76748:1449;76569:1643;85924:37:::1;85943:4;85949:2;85953:7;85924:18;:37::i;:::-;85738:231:::0;;;;;:::o;15793:442::-;15890:7;15899;15919:26;15948:17;:27;15966:8;15948:27;;;;;;;;;;;15919:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16020:1;15992:30;;:7;:16;;;:30;;;15988:92;;;16049:19;16039:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15988:92;16092:21;16157:17;:15;:17::i;:::-;16116:58;;16130:7;:23;;;16117:36;;:10;:36;;;;:::i;:::-;16116:58;;;;:::i;:::-;16092:82;;16195:7;:16;;;16213:13;16187:40;;;;;;15793:442;;;;;:::o;80507:40::-;80544:3;80507:40;:::o;82832:96::-;20304:13;:11;:13::i;:::-;82916:4:::1;82895:14;:18;82910:2;82895:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;82832:96:::0;:::o;84609:183::-;20304:13;:11;:13::i;:::-;84660:12:::1;84686:10;84678:24;;84710:21;84678:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84659:77;;;84752:7;84747:37;;84768:16;;;;;;;;;;;;;;84747:37;84648:144;84609:183::o:0;86129:239::-;86276:4;86282:24;;;;;;;;;;;76572:7;76569:1643;;;76785:8;76777:4;76773:2;76769:13;76765:2;76761:22;76758:36;76748:1449;;77100:22;77094:4;77087:36;77209:9;77203:4;77196:23;77302:8;77296:4;77289:22;77495:4;77489;77483;77477;77450:25;77443:5;77432:68;77422:306;;77632:16;77626:4;77620;77605:44;77688:16;77682:4;77675:30;77422:306;78176:1;78170:4;78163:15;76748:1449;76569:1643;86319:41:::1;86342:4;86348:2;86352:7;86319:22;:41::i;:::-;86129:239:::0;;;;;:::o;83730:123::-;81174:14;:23;81189:7;;;;81174:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81170:52;;;81206:16;;;;;;;;;;;;;;81170:52;20304:13:::1;:11;:13::i;:::-;83834:11:::2;;83818:13;:27;;;;;;;:::i;:::-;;83730:123:::0;;:::o;42395:152::-;42467:7;42510:27;42529:7;42510:18;:27::i;:::-;42487:52;;42395:152;;;:::o;37937:233::-;38009:7;38050:1;38033:19;;:5;:19;;;38029:60;;;38061:28;;;;;;;;;;;;;;38029:60;32096:13;38107:18;:25;38126:5;38107:25;;;;;;;;;;;;;;;;:55;38100:62;;37937:233;;;:::o;21066:103::-;20304:13;:11;:13::i;:::-;21131:30:::1;21158:1;21131:18;:30::i;:::-;21066:103::o:0;20418:87::-;20464:7;20491:6;;;;;;;;;;;20484:13;;20418:87;:::o;41178:104::-;41234:13;41267:7;41260:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41178:104;:::o;84952:234::-;85083:8;85093:24;;;;;;;;;;;78799:7;78796:925;;;78928:22;78922:4;78915:36;79029:9;79023:4;79016:23;79181:8;79177:2;79173:17;79169:2;79165:26;79159:4;79152:40;79368:4;79362;79356;79350;79323:25;79316:5;79305:68;79295:290;;79497:16;79491:4;79485;79470:44;79549:16;79543:4;79536:30;79295:290;79704:1;79698:4;79691:15;78796:925;85135:43:::1;85159:8;85169;85135:23;:43::i;:::-;84952:234:::0;;;;:::o;80462:38::-;80497:3;80462:38;:::o;83120:128::-;81174:14;:23;81189:7;;;;81174:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81170:52;;;81206:16;;;;;;;;;;;;;;81170:52;20304:13:::1;:11;:13::i;:::-;83235:5:::2;83208:24;;:32;;;;;;;;;;;;;;;;;;83120:128:::0;:::o;86528:273::-;86703:4;86709:24;;;;;;;;;;;76572:7;76569:1643;;;76785:8;76777:4;76773:2;76769:13;76765:2;76761:22;76758:36;76748:1449;;77100:22;77094:4;77087:36;77209:9;77203:4;77196:23;77302:8;77296:4;77289:22;77495:4;77489;77483;77477;77450:25;77443:5;77432:68;77422:306;;77632:16;77626:4;77620;77605:44;77688:16;77682:4;77675:30;77422:306;78176:1;78170:4;78163:15;76748:1449;76569:1643;86746:47:::1;86769:4;86775:2;86779:7;86788:4;86746:22;:47::i;:::-;86528:273:::0;;;;;;:::o;80632:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;83471:147::-;20304:13;:11;:13::i;:::-;83565:45:::1;83584:8;83594:15;83565:18;:45::i;:::-;83471:147:::0;;:::o;80418:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80554:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81929:442::-;82027:13;82068:16;82076:7;82068;:16::i;:::-;82052:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;82170:28;82201:10;:8;:10::i;:::-;82170:41;;82256:1;82231:14;82225:28;:32;:140;;;;;;;;;;;;;;;;;82293:14;82309:25;82326:7;82309:16;:25::i;:::-;82336:13;82276:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82225:140;82218:147;;;81929:442;;;:::o;81793:128::-;20304:13;:11;:13::i;:::-;81896:17:::1;81880:13;:33;;;;;;;;;;;;:::i;:::-;;81793:128:::0;:::o;82539:119::-;82601:7;82628:22;82642:7;82628:13;:22::i;:::-;82621:29;;82539:119;;;:::o;84359:170::-;81174:14;:23;81189:7;;;;81174:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81170:52;;;81206:16;;;;;;;;;;;;;;81170:52;20304:13:::1;:11;:13::i;:::-;80497:3:::2;84431:14;:12;:14::i;:::-;:26;84427:62;;84466:23;;;;;;;;;;;;;;84427:62;84502:19;84508:2;80497:3;84502:5;:19::i;:::-;84359:170:::0;:::o;48442:164::-;48539:4;48563:18;:25;48582:5;48563:25;;;;;;;;;;;;;;;:35;48589:8;48563:35;;;;;;;;;;;;;;;;;;;;;;;;;48556:42;;48442:164;;;;:::o;21324:201::-;20304:13;:11;:13::i;:::-;21433:1:::1;21413:22;;:8;:22;;;;21405:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21489:28;21508:8;21489:18;:28::i;:::-;21324:201:::0;:::o;80589:36::-;;;;;;;;;;;;;:::o;40100:639::-;40185:4;40524:10;40509:25;;:11;:25;;;;:102;;;;40601:10;40586:25;;:11;:25;;;;40509:102;:179;;;;40678:10;40663:25;;:11;:25;;;;40509:179;40489:199;;40100:639;;;:::o;15523:215::-;15625:4;15664:26;15649:41;;;:11;:41;;;;:81;;;;15694:36;15718:11;15694:23;:36::i;:::-;15649:81;15642:88;;15523:215;;;:::o;48864:282::-;48929:4;48985:7;48966:15;:13;:15::i;:::-;:26;;:66;;;;;49019:13;;49009:7;:23;48966:66;:153;;;;;49118:1;32872:8;49070:17;:26;49088:7;49070:26;;;;;;;;;;;;:44;:49;48966:153;48946:173;;48864:282;;;:::o;46926:408::-;47015:13;47031:16;47039:7;47031;:16::i;:::-;47015:32;;47087:5;47064:28;;:19;:17;:19::i;:::-;:28;;;47060:175;;47112:44;47129:5;47136:19;:17;:19::i;:::-;47112:16;:44::i;:::-;47107:128;;47184:35;;;;;;;;;;;;;;47107:128;47060:175;47280:2;47247:15;:24;47263:7;47247:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47318:7;47314:2;47298:28;;47307:5;47298:28;;;;;;;;;;;;47004:330;46926:408;;:::o;20583:132::-;20658:12;:10;:12::i;:::-;20647:23;;:7;:5;:7::i;:::-;:23;;;20639:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20583:132::o;36269:92::-;36325:7;36352:1;36345:8;;36269:92;:::o;51132:2825::-;51274:27;51304;51323:7;51304:18;:27::i;:::-;51274:57;;51389:4;51348:45;;51364:19;51348:45;;;51344:86;;51402:28;;;;;;;;;;;;;;51344:86;51444:27;51473:23;51500:35;51527:7;51500:26;:35::i;:::-;51443:92;;;;51635:68;51660:15;51677:4;51683:19;:17;:19::i;:::-;51635:24;:68::i;:::-;51630:180;;51723:43;51740:4;51746:19;:17;:19::i;:::-;51723:16;:43::i;:::-;51718:92;;51775:35;;;;;;;;;;;;;;51718:92;51630:180;51841:1;51827:16;;:2;:16;;;51823:52;;;51852:23;;;;;;;;;;;;;;51823:52;51888:43;51910:4;51916:2;51920:7;51929:1;51888:21;:43::i;:::-;52024:15;52021:160;;;52164:1;52143:19;52136:30;52021:160;52561:18;:24;52580:4;52561:24;;;;;;;;;;;;;;;;52559:26;;;;;;;;;;;;52630:18;:22;52649:2;52630:22;;;;;;;;;;;;;;;;52628:24;;;;;;;;;;;52952:146;52989:2;53038:45;53053:4;53059:2;53063:19;53038:14;:45::i;:::-;33152:8;53010:73;52952:18;:146::i;:::-;52923:17;:26;52941:7;52923:26;;;;;;;;;;;:175;;;;53269:1;33152:8;53218:19;:47;:52;53214:627;;;53291:19;53323:1;53313:7;:11;53291:33;;53480:1;53446:17;:30;53464:11;53446:30;;;;;;;;;;;;:35;53442:384;;;53584:13;;53569:11;:28;53565:242;;53764:19;53731:17;:30;53749:11;53731:30;;;;;;;;;;;:52;;;;53565:242;53442:384;53272:569;53214:627;53888:7;53884:2;53869:27;;53878:4;53869:27;;;;;;;;;;;;53907:42;53928:4;53934:2;53938:7;53947:1;53907:20;:42::i;:::-;51263:2694;;;51132:2825;;;:::o;16517:97::-;16575:6;16601:5;16594:12;;16517:97;:::o;54053:193::-;54199:39;54216:4;54222:2;54226:7;54199:39;;;;;;;;;;;;:16;:39::i;:::-;54053:193;;;:::o;43550:1275::-;43617:7;43637:12;43652:7;43637:22;;43720:4;43701:15;:13;:15::i;:::-;:23;43697:1061;;43754:13;;43747:4;:20;43743:1015;;;43792:14;43809:17;:23;43827:4;43809:23;;;;;;;;;;;;43792:40;;43926:1;32872:8;43898:6;:24;:29;43894:845;;;44563:113;44580:1;44570:6;:11;44563:113;;;44623:17;:25;44641:6;;;;;;;44623:25;;;;;;;;;;;;44614:34;;44563:113;;;44709:6;44702:13;;;;;;43894:845;43769:989;43743:1015;43697:1061;44786:31;;;;;;;;;;;;;;43550:1275;;;;:::o;21685:191::-;21759:16;21778:6;;;;;;;;;;;21759:25;;21804:8;21795:6;;:17;;;;;;;;;;;;;;;;;;21859:8;21828:40;;21849:8;21828:40;;;;;;;;;;;;21748:128;21685:191;:::o;48051:234::-;48198:8;48146:18;:39;48165:19;:17;:19::i;:::-;48146:39;;;;;;;;;;;;;;;:49;48186:8;48146:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48258:8;48222:55;;48237:19;:17;:19::i;:::-;48222:55;;;48268:8;48222:55;;;;;;:::i;:::-;;;;;;;;48051:234;;:::o;54844:407::-;55019:31;55032:4;55038:2;55042:7;55019:12;:31::i;:::-;55083:1;55065:2;:14;;;:19;55061:183;;55104:56;55135:4;55141:2;55145:7;55154:5;55104:30;:56::i;:::-;55099:145;;55188:40;;;;;;;;;;;;;;55099:145;55061:183;54844:407;;;;:::o;16885:332::-;17004:17;:15;:17::i;:::-;16988:33;;:12;:33;;;;16980:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;17107:1;17087:22;;:8;:22;;;;17079:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;17174:35;;;;;;;;17186:8;17174:35;;;;;;17196:12;17174:35;;;;;17152:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16885:332;;:::o;81671:114::-;81731:13;81764;81757:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81671:114;:::o;465:723::-;521:13;751:1;742:5;:10;738:53;;;769:10;;;;;;;;;;;;;;;;;;;;;738:53;801:12;816:5;801:20;;832:14;857:78;872:1;864:4;:9;857:78;;890:8;;;;;:::i;:::-;;;;921:2;913:10;;;;;:::i;:::-;;;857:78;;;945:19;977:6;967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945:39;;995:154;1011:1;1002:5;:10;995:154;;1039:1;1029:11;;;;;:::i;:::-;;;1106:2;1098:5;:10;;;;:::i;:::-;1085:2;:24;;;;:::i;:::-;1072:39;;1055:6;1062;1055:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1135:2;1126:11;;;;;:::i;:::-;;;995:154;;;1173:6;1159:21;;;;;465:723;;;;:::o;38252:178::-;38313:7;32096:13;32234:2;38341:18;:25;38360:5;38341:25;;;;;;;;;;;;;;;;:50;;38340:82;38333:89;;38252:178;;;:::o;37174:296::-;37229:7;37436:15;:13;:15::i;:::-;37420:13;;:31;37413:38;;37174:296;:::o;58513:2966::-;58586:20;58609:13;;58586:36;;58649:1;58637:8;:13;58633:44;;;58659:18;;;;;;;;;;;;;;58633:44;58690:61;58720:1;58724:2;58728:12;58742:8;58690:21;:61::i;:::-;59234:1;32234:2;59204:1;:26;;59203:32;59191:8;:45;59165:18;:22;59184:2;59165:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;59513:139;59550:2;59604:33;59627:1;59631:2;59635:1;59604:14;:33::i;:::-;59571:30;59592:8;59571:20;:30::i;:::-;:66;59513:18;:139::i;:::-;59479:17;:31;59497:12;59479:31;;;;;;;;;;;:173;;;;59669:16;59700:11;59729:8;59714:12;:23;59700:37;;60250:16;60246:2;60242:25;60230:37;;60622:12;60582:8;60541:1;60479:25;60420:1;60359;60332:335;60993:1;60979:12;60975:20;60933:346;61034:3;61025:7;61022:16;60933:346;;61252:7;61242:8;61239:1;61212:25;61209:1;61206;61201:59;61087:1;61078:7;61074:15;61063:26;;60933:346;;;60937:77;61324:1;61312:8;:13;61308:45;;;61334:19;;;;;;;;;;;;;;61308:45;61386:3;61370:13;:19;;;;58939:2462;;61411:60;61440:1;61444:2;61448:12;61462:8;61411:20;:60::i;:::-;58575:2904;58513:2966;;:::o;13075:157::-;13160:4;13199:25;13184:40;;;:11;:40;;;;13177:47;;13075:157;;;:::o;71172:105::-;71232:7;71259:10;71252:17;;71172:105;:::o;18969:98::-;19022:7;19049:10;19042:17;;18969:98;:::o;50027:485::-;50129:27;50158:23;50199:38;50240:15;:24;50256:7;50240:24;;;;;;;;;;;50199:65;;50417:18;50394:41;;50474:19;50468:26;50449:45;;50379:126;50027:485;;;:::o;49255:659::-;49404:11;49569:16;49562:5;49558:28;49549:37;;49729:16;49718:9;49714:32;49701:45;;49879:15;49868:9;49865:30;49857:5;49846:9;49843:20;49840:56;49830:66;;49255:659;;;;;:::o;55913:159::-;;;;;:::o;70481:311::-;70616:7;70636:16;33276:3;70662:19;:41;;70636:68;;33276:3;70730:31;70741:4;70747:2;70751:9;70730:10;:31::i;:::-;70722:40;;:62;;70715:69;;;70481:311;;;;;:::o;45373:450::-;45453:14;45621:16;45614:5;45610:28;45601:37;;45798:5;45784:11;45759:23;45755:41;45752:52;45745:5;45742:63;45732:73;;45373:450;;;;:::o;56737:158::-;;;;;:::o;57335:716::-;57498:4;57544:2;57519:45;;;57565:19;:17;:19::i;:::-;57586:4;57592:7;57601:5;57519:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57515:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57819:1;57802:6;:13;:18;57798:235;;;57848:40;;;;;;;;;;;;;;57798:235;57991:6;57985:13;57976:6;57972:2;57968:15;57961:38;57515:529;57688:54;;;57678:64;;;:6;:64;;;;57671:71;;;57335:716;;;;;;:::o;45925:324::-;45995:14;46228:1;46218:8;46215:15;46189:24;46185:46;46175:56;;45925:324;;;:::o;70182:147::-;70319:6;70182:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:553::-;1844:8;1854:6;1904:3;1897:4;1889:6;1885:17;1881:27;1871:122;;1912:79;;:::i;:::-;1871:122;2025:6;2012:20;2002:30;;2055:18;2047:6;2044:30;2041:117;;;2077:79;;:::i;:::-;2041:117;2191:4;2183:6;2179:17;2167:29;;2245:3;2237:4;2229:6;2225:17;2215:8;2211:32;2208:41;2205:128;;;2252:79;;:::i;:::-;2205:128;1786:553;;;;;:::o;2359:340::-;2415:5;2464:3;2457:4;2449:6;2445:17;2441:27;2431:122;;2472:79;;:::i;:::-;2431:122;2589:6;2576:20;2614:79;2689:3;2681:6;2674:4;2666:6;2662:17;2614:79;:::i;:::-;2605:88;;2421:278;2359:340;;;;:::o;2705:139::-;2751:5;2789:6;2776:20;2767:29;;2805:33;2832:5;2805:33;:::i;:::-;2705:139;;;;:::o;2850:137::-;2895:5;2933:6;2920:20;2911:29;;2949:32;2975:5;2949:32;:::i;:::-;2850:137;;;;:::o;2993:329::-;3052:6;3101:2;3089:9;3080:7;3076:23;3072:32;3069:119;;;3107:79;;:::i;:::-;3069:119;3227:1;3252:53;3297:7;3288:6;3277:9;3273:22;3252:53;:::i;:::-;3242:63;;3198:117;2993:329;;;;:::o;3328:474::-;3396:6;3404;3453:2;3441:9;3432:7;3428:23;3424:32;3421:119;;;3459:79;;:::i;:::-;3421:119;3579:1;3604:53;3649:7;3640:6;3629:9;3625:22;3604:53;:::i;:::-;3594:63;;3550:117;3706:2;3732:53;3777:7;3768:6;3757:9;3753:22;3732:53;:::i;:::-;3722:63;;3677:118;3328:474;;;;;:::o;3808:619::-;3885:6;3893;3901;3950:2;3938:9;3929:7;3925:23;3921:32;3918:119;;;3956:79;;:::i;:::-;3918:119;4076:1;4101:53;4146:7;4137:6;4126:9;4122:22;4101:53;:::i;:::-;4091:63;;4047:117;4203:2;4229:53;4274:7;4265:6;4254:9;4250:22;4229:53;:::i;:::-;4219:63;;4174:118;4331:2;4357:53;4402:7;4393:6;4382:9;4378:22;4357:53;:::i;:::-;4347:63;;4302:118;3808:619;;;;;:::o;4433:943::-;4528:6;4536;4544;4552;4601:3;4589:9;4580:7;4576:23;4572:33;4569:120;;;4608:79;;:::i;:::-;4569:120;4728:1;4753:53;4798:7;4789:6;4778:9;4774:22;4753:53;:::i;:::-;4743:63;;4699:117;4855:2;4881:53;4926:7;4917:6;4906:9;4902:22;4881:53;:::i;:::-;4871:63;;4826:118;4983:2;5009:53;5054:7;5045:6;5034:9;5030:22;5009:53;:::i;:::-;4999:63;;4954:118;5139:2;5128:9;5124:18;5111:32;5170:18;5162:6;5159:30;5156:117;;;5192:79;;:::i;:::-;5156:117;5297:62;5351:7;5342:6;5331:9;5327:22;5297:62;:::i;:::-;5287:72;;5082:287;4433:943;;;;;;;:::o;5382:468::-;5447:6;5455;5504:2;5492:9;5483:7;5479:23;5475:32;5472:119;;;5510:79;;:::i;:::-;5472:119;5630:1;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5601:117;5757:2;5783:50;5825:7;5816:6;5805:9;5801:22;5783:50;:::i;:::-;5773:60;;5728:115;5382:468;;;;;:::o;5856:474::-;5924:6;5932;5981:2;5969:9;5960:7;5956:23;5952:32;5949:119;;;5987:79;;:::i;:::-;5949:119;6107:1;6132:53;6177:7;6168:6;6157:9;6153:22;6132:53;:::i;:::-;6122:63;;6078:117;6234:2;6260:53;6305:7;6296:6;6285:9;6281:22;6260:53;:::i;:::-;6250:63;;6205:118;5856:474;;;;;:::o;6336:472::-;6403:6;6411;6460:2;6448:9;6439:7;6435:23;6431:32;6428:119;;;6466:79;;:::i;:::-;6428:119;6586:1;6611:53;6656:7;6647:6;6636:9;6632:22;6611:53;:::i;:::-;6601:63;;6557:117;6713:2;6739:52;6783:7;6774:6;6763:9;6759:22;6739:52;:::i;:::-;6729:62;;6684:117;6336:472;;;;;:::o;6814:323::-;6870:6;6919:2;6907:9;6898:7;6894:23;6890:32;6887:119;;;6925:79;;:::i;:::-;6887:119;7045:1;7070:50;7112:7;7103:6;7092:9;7088:22;7070:50;:::i;:::-;7060:60;;7016:114;6814:323;;;;:::o;7143:327::-;7201:6;7250:2;7238:9;7229:7;7225:23;7221:32;7218:119;;;7256:79;;:::i;:::-;7218:119;7376:1;7401:52;7445:7;7436:6;7425:9;7421:22;7401:52;:::i;:::-;7391:62;;7347:116;7143:327;;;;:::o;7476:349::-;7545:6;7594:2;7582:9;7573:7;7569:23;7565:32;7562:119;;;7600:79;;:::i;:::-;7562:119;7720:1;7745:63;7800:7;7791:6;7780:9;7776:22;7745:63;:::i;:::-;7735:73;;7691:127;7476:349;;;;:::o;7831:529::-;7902:6;7910;7959:2;7947:9;7938:7;7934:23;7930:32;7927:119;;;7965:79;;:::i;:::-;7927:119;8113:1;8102:9;8098:17;8085:31;8143:18;8135:6;8132:30;8129:117;;;8165:79;;:::i;:::-;8129:117;8278:65;8335:7;8326:6;8315:9;8311:22;8278:65;:::i;:::-;8260:83;;;;8056:297;7831:529;;;;;:::o;8366:509::-;8435:6;8484:2;8472:9;8463:7;8459:23;8455:32;8452:119;;;8490:79;;:::i;:::-;8452:119;8638:1;8627:9;8623:17;8610:31;8668:18;8660:6;8657:30;8654:117;;;8690:79;;:::i;:::-;8654:117;8795:63;8850:7;8841:6;8830:9;8826:22;8795:63;:::i;:::-;8785:73;;8581:287;8366:509;;;;:::o;8881:329::-;8940:6;8989:2;8977:9;8968:7;8964:23;8960:32;8957:119;;;8995:79;;:::i;:::-;8957:119;9115:1;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9086:117;8881:329;;;;:::o;9216:474::-;9284:6;9292;9341:2;9329:9;9320:7;9316:23;9312:32;9309:119;;;9347:79;;:::i;:::-;9309:119;9467:1;9492:53;9537:7;9528:6;9517:9;9513:22;9492:53;:::i;:::-;9482:63;;9438:117;9594:2;9620:53;9665:7;9656:6;9645:9;9641:22;9620:53;:::i;:::-;9610:63;;9565:118;9216:474;;;;;:::o;9696:118::-;9783:24;9801:5;9783:24;:::i;:::-;9778:3;9771:37;9696:118;;:::o;9820:109::-;9901:21;9916:5;9901:21;:::i;:::-;9896:3;9889:34;9820:109;;:::o;9935:360::-;10021:3;10049:38;10081:5;10049:38;:::i;:::-;10103:70;10166:6;10161:3;10103:70;:::i;:::-;10096:77;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:29;10281:6;10259:29;:::i;:::-;10254:3;10250:39;10243:46;;10025:270;9935:360;;;;:::o;10301:364::-;10389:3;10417:39;10450:5;10417:39;:::i;:::-;10472:71;10536:6;10531:3;10472:71;:::i;:::-;10465:78;;10552:52;10597:6;10592:3;10585:4;10578:5;10574:16;10552:52;:::i;:::-;10629:29;10651:6;10629:29;:::i;:::-;10624:3;10620:39;10613:46;;10393:272;10301:364;;;;:::o;10671:377::-;10777:3;10805:39;10838:5;10805:39;:::i;:::-;10860:89;10942:6;10937:3;10860:89;:::i;:::-;10853:96;;10958:52;11003:6;10998:3;10991:4;10984:5;10980:16;10958:52;:::i;:::-;11035:6;11030:3;11026:16;11019:23;;10781:267;10671:377;;;;:::o;11078:845::-;11181:3;11218:5;11212:12;11247:36;11273:9;11247:36;:::i;:::-;11299:89;11381:6;11376:3;11299:89;:::i;:::-;11292:96;;11419:1;11408:9;11404:17;11435:1;11430:137;;;;11581:1;11576:341;;;;11397:520;;11430:137;11514:4;11510:9;11499;11495:25;11490:3;11483:38;11550:6;11545:3;11541:16;11534:23;;11430:137;;11576:341;11643:38;11675:5;11643:38;:::i;:::-;11703:1;11717:154;11731:6;11728:1;11725:13;11717:154;;;11805:7;11799:14;11795:1;11790:3;11786:11;11779:35;11855:1;11846:7;11842:15;11831:26;;11753:4;11750:1;11746:12;11741:17;;11717:154;;;11900:6;11895:3;11891:16;11884:23;;11583:334;;11397:520;;11185:738;;11078:845;;;;:::o;11929:366::-;12071:3;12092:67;12156:2;12151:3;12092:67;:::i;:::-;12085:74;;12168:93;12257:3;12168:93;:::i;:::-;12286:2;12281:3;12277:12;12270:19;;11929:366;;;:::o;12301:::-;12443:3;12464:67;12528:2;12523:3;12464:67;:::i;:::-;12457:74;;12540:93;12629:3;12540:93;:::i;:::-;12658:2;12653:3;12649:12;12642:19;;12301:366;;;:::o;12673:::-;12815:3;12836:67;12900:2;12895:3;12836:67;:::i;:::-;12829:74;;12912:93;13001:3;12912:93;:::i;:::-;13030:2;13025:3;13021:12;13014:19;;12673:366;;;:::o;13045:398::-;13204:3;13225:83;13306:1;13301:3;13225:83;:::i;:::-;13218:90;;13317:93;13406:3;13317:93;:::i;:::-;13435:1;13430:3;13426:11;13419:18;;13045:398;;;:::o;13449:366::-;13591:3;13612:67;13676:2;13671:3;13612:67;:::i;:::-;13605:74;;13688:93;13777:3;13688:93;:::i;:::-;13806:2;13801:3;13797:12;13790:19;;13449:366;;;:::o;13821:::-;13963:3;13984:67;14048:2;14043:3;13984:67;:::i;:::-;13977:74;;14060:93;14149:3;14060:93;:::i;:::-;14178:2;14173:3;14169:12;14162:19;;13821:366;;;:::o;14193:118::-;14280:24;14298:5;14280:24;:::i;:::-;14275:3;14268:37;14193:118;;:::o;14317:589::-;14542:3;14564:95;14655:3;14646:6;14564:95;:::i;:::-;14557:102;;14676:95;14767:3;14758:6;14676:95;:::i;:::-;14669:102;;14788:92;14876:3;14867:6;14788:92;:::i;:::-;14781:99;;14897:3;14890:10;;14317:589;;;;;;:::o;14912:379::-;15096:3;15118:147;15261:3;15118:147;:::i;:::-;15111:154;;15282:3;15275:10;;14912:379;;;:::o;15297:222::-;15390:4;15428:2;15417:9;15413:18;15405:26;;15441:71;15509:1;15498:9;15494:17;15485:6;15441:71;:::i;:::-;15297:222;;;;:::o;15525:640::-;15720:4;15758:3;15747:9;15743:19;15735:27;;15772:71;15840:1;15829:9;15825:17;15816:6;15772:71;:::i;:::-;15853:72;15921:2;15910:9;15906:18;15897:6;15853:72;:::i;:::-;15935;16003:2;15992:9;15988:18;15979:6;15935:72;:::i;:::-;16054:9;16048:4;16044:20;16039:2;16028:9;16024:18;16017:48;16082:76;16153:4;16144:6;16082:76;:::i;:::-;16074:84;;15525:640;;;;;;;:::o;16171:332::-;16292:4;16330:2;16319:9;16315:18;16307:26;;16343:71;16411:1;16400:9;16396:17;16387:6;16343:71;:::i;:::-;16424:72;16492:2;16481:9;16477:18;16468:6;16424:72;:::i;:::-;16171:332;;;;;:::o;16509:210::-;16596:4;16634:2;16623:9;16619:18;16611:26;;16647:65;16709:1;16698:9;16694:17;16685:6;16647:65;:::i;:::-;16509:210;;;;:::o;16725:313::-;16838:4;16876:2;16865:9;16861:18;16853:26;;16925:9;16919:4;16915:20;16911:1;16900:9;16896:17;16889:47;16953:78;17026:4;17017:6;16953:78;:::i;:::-;16945:86;;16725:313;;;;:::o;17044:419::-;17210:4;17248:2;17237:9;17233:18;17225:26;;17297:9;17291:4;17287:20;17283:1;17272:9;17268:17;17261:47;17325:131;17451:4;17325:131;:::i;:::-;17317:139;;17044:419;;;:::o;17469:::-;17635:4;17673:2;17662:9;17658:18;17650:26;;17722:9;17716:4;17712:20;17708:1;17697:9;17693:17;17686:47;17750:131;17876:4;17750:131;:::i;:::-;17742:139;;17469:419;;;:::o;17894:::-;18060:4;18098:2;18087:9;18083:18;18075:26;;18147:9;18141:4;18137:20;18133:1;18122:9;18118:17;18111:47;18175:131;18301:4;18175:131;:::i;:::-;18167:139;;17894:419;;;:::o;18319:::-;18485:4;18523:2;18512:9;18508:18;18500:26;;18572:9;18566:4;18562:20;18558:1;18547:9;18543:17;18536:47;18600:131;18726:4;18600:131;:::i;:::-;18592:139;;18319:419;;;:::o;18744:::-;18910:4;18948:2;18937:9;18933:18;18925:26;;18997:9;18991:4;18987:20;18983:1;18972:9;18968:17;18961:47;19025:131;19151:4;19025:131;:::i;:::-;19017:139;;18744:419;;;:::o;19169:222::-;19262:4;19300:2;19289:9;19285:18;19277:26;;19313:71;19381:1;19370:9;19366:17;19357:6;19313:71;:::i;:::-;19169:222;;;;:::o;19397:129::-;19431:6;19458:20;;:::i;:::-;19448:30;;19487:33;19515:4;19507:6;19487:33;:::i;:::-;19397:129;;;:::o;19532:75::-;19565:6;19598:2;19592:9;19582:19;;19532:75;:::o;19613:307::-;19674:4;19764:18;19756:6;19753:30;19750:56;;;19786:18;;:::i;:::-;19750:56;19824:29;19846:6;19824:29;:::i;:::-;19816:37;;19908:4;19902;19898:15;19890:23;;19613:307;;;:::o;19926:308::-;19988:4;20078:18;20070:6;20067:30;20064:56;;;20100:18;;:::i;:::-;20064:56;20138:29;20160:6;20138:29;:::i;:::-;20130:37;;20222:4;20216;20212:15;20204:23;;19926:308;;;:::o;20240:141::-;20289:4;20312:3;20304:11;;20335:3;20332:1;20325:14;20369:4;20366:1;20356:18;20348:26;;20240:141;;;:::o;20387:98::-;20438:6;20472:5;20466:12;20456:22;;20387:98;;;:::o;20491:99::-;20543:6;20577:5;20571:12;20561:22;;20491:99;;;:::o;20596:168::-;20679:11;20713:6;20708:3;20701:19;20753:4;20748:3;20744:14;20729:29;;20596:168;;;;:::o;20770:147::-;20871:11;20908:3;20893:18;;20770:147;;;;:::o;20923:169::-;21007:11;21041:6;21036:3;21029:19;21081:4;21076:3;21072:14;21057:29;;20923:169;;;;:::o;21098:148::-;21200:11;21237:3;21222:18;;21098:148;;;;:::o;21252:305::-;21292:3;21311:20;21329:1;21311:20;:::i;:::-;21306:25;;21345:20;21363:1;21345:20;:::i;:::-;21340:25;;21499:1;21431:66;21427:74;21424:1;21421:81;21418:107;;;21505:18;;:::i;:::-;21418:107;21549:1;21546;21542:9;21535:16;;21252:305;;;;:::o;21563:185::-;21603:1;21620:20;21638:1;21620:20;:::i;:::-;21615:25;;21654:20;21672:1;21654:20;:::i;:::-;21649:25;;21693:1;21683:35;;21698:18;;:::i;:::-;21683:35;21740:1;21737;21733:9;21728:14;;21563:185;;;;:::o;21754:348::-;21794:7;21817:20;21835:1;21817:20;:::i;:::-;21812:25;;21851:20;21869:1;21851:20;:::i;:::-;21846:25;;22039:1;21971:66;21967:74;21964:1;21961:81;21956:1;21949:9;21942:17;21938:105;21935:131;;;22046:18;;:::i;:::-;21935:131;22094:1;22091;22087:9;22076:20;;21754:348;;;;:::o;22108:191::-;22148:4;22168:20;22186:1;22168:20;:::i;:::-;22163:25;;22202:20;22220:1;22202:20;:::i;:::-;22197:25;;22241:1;22238;22235:8;22232:34;;;22246:18;;:::i;:::-;22232:34;22291:1;22288;22284:9;22276:17;;22108:191;;;;:::o;22305:96::-;22342:7;22371:24;22389:5;22371:24;:::i;:::-;22360:35;;22305:96;;;:::o;22407:90::-;22441:7;22484:5;22477:13;22470:21;22459:32;;22407:90;;;:::o;22503:149::-;22539:7;22579:66;22572:5;22568:78;22557:89;;22503:149;;;:::o;22658:126::-;22695:7;22735:42;22728:5;22724:54;22713:65;;22658:126;;;:::o;22790:77::-;22827:7;22856:5;22845:16;;22790:77;;;:::o;22873:109::-;22909:7;22949:26;22942:5;22938:38;22927:49;;22873:109;;;:::o;22988:154::-;23072:6;23067:3;23062;23049:30;23134:1;23125:6;23120:3;23116:16;23109:27;22988:154;;;:::o;23148:307::-;23216:1;23226:113;23240:6;23237:1;23234:13;23226:113;;;23325:1;23320:3;23316:11;23310:18;23306:1;23301:3;23297:11;23290:39;23262:2;23259:1;23255:10;23250:15;;23226:113;;;23357:6;23354:1;23351:13;23348:101;;;23437:1;23428:6;23423:3;23419:16;23412:27;23348:101;23197:258;23148:307;;;:::o;23461:320::-;23505:6;23542:1;23536:4;23532:12;23522:22;;23589:1;23583:4;23579:12;23610:18;23600:81;;23666:4;23658:6;23654:17;23644:27;;23600:81;23728:2;23720:6;23717:14;23697:18;23694:38;23691:84;;;23747:18;;:::i;:::-;23691:84;23512:269;23461:320;;;:::o;23787:281::-;23870:27;23892:4;23870:27;:::i;:::-;23862:6;23858:40;24000:6;23988:10;23985:22;23964:18;23952:10;23949:34;23946:62;23943:88;;;24011:18;;:::i;:::-;23943:88;24051:10;24047:2;24040:22;23830:238;23787:281;;:::o;24074:233::-;24113:3;24136:24;24154:5;24136:24;:::i;:::-;24127:33;;24182:66;24175:5;24172:77;24169:103;;;24252:18;;:::i;:::-;24169:103;24299:1;24292:5;24288:13;24281:20;;24074:233;;;:::o;24313:176::-;24345:1;24362:20;24380:1;24362:20;:::i;:::-;24357:25;;24396:20;24414:1;24396:20;:::i;:::-;24391:25;;24435:1;24425:35;;24440:18;;:::i;:::-;24425:35;24481:1;24478;24474:9;24469:14;;24313:176;;;;:::o;24495:180::-;24543:77;24540:1;24533:88;24640:4;24637:1;24630:15;24664:4;24661:1;24654:15;24681:180;24729:77;24726:1;24719:88;24826:4;24823:1;24816:15;24850:4;24847:1;24840:15;24867:180;24915:77;24912:1;24905:88;25012:4;25009:1;25002:15;25036:4;25033:1;25026:15;25053:180;25101:77;25098:1;25091:88;25198:4;25195:1;25188:15;25222:4;25219:1;25212:15;25239:180;25287:77;25284:1;25277:88;25384:4;25381:1;25374:15;25408:4;25405:1;25398:15;25425:117;25534:1;25531;25524:12;25548:117;25657:1;25654;25647:12;25671:117;25780:1;25777;25770:12;25794:117;25903:1;25900;25893:12;25917:117;26026:1;26023;26016:12;26040:117;26149:1;26146;26139:12;26163:102;26204:6;26255:2;26251:7;26246:2;26239:5;26235:14;26231:28;26221:38;;26163:102;;;:::o;26271:225::-;26411:34;26407:1;26399:6;26395:14;26388:58;26480:8;26475:2;26467:6;26463:15;26456:33;26271:225;:::o;26502:182::-;26642:34;26638:1;26630:6;26626:14;26619:58;26502:182;:::o;26690:234::-;26830:34;26826:1;26818:6;26814:14;26807:58;26899:17;26894:2;26886:6;26882:15;26875:42;26690:234;:::o;26930:114::-;;:::o;27050:229::-;27190:34;27186:1;27178:6;27174:14;27167:58;27259:12;27254:2;27246:6;27242:15;27235:37;27050:229;:::o;27285:175::-;27425:27;27421:1;27413:6;27409:14;27402:51;27285:175;:::o;27466:122::-;27539:24;27557:5;27539:24;:::i;:::-;27532:5;27529:35;27519:63;;27578:1;27575;27568:12;27519:63;27466:122;:::o;27594:116::-;27664:21;27679:5;27664:21;:::i;:::-;27657:5;27654:32;27644:60;;27700:1;27697;27690:12;27644:60;27594:116;:::o;27716:120::-;27788:23;27805:5;27788:23;:::i;:::-;27781:5;27778:34;27768:62;;27826:1;27823;27816:12;27768:62;27716:120;:::o;27842:122::-;27915:24;27933:5;27915:24;:::i;:::-;27908:5;27905:35;27895:63;;27954:1;27951;27944:12;27895:63;27842:122;:::o;27970:120::-;28042:23;28059:5;28042:23;:::i;:::-;28035:5;28032:34;28022:62;;28080:1;28077;28070:12;28022:62;27970:120;:::o

Swarm Source

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