ETH Price: $3,329.99 (-0.79%)

Token

Aroundbow (2021) (Aroundbow (2021))
 

Overview

Max Total Supply

105 Aroundbow (2021)

Holders

76

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Aroundbow (2021)
0x4606b7859cf8f58718d81c11cd285fd70fec49b8
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:
Aroundbow_2021

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-22
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

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

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


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

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


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

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


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

/**
 * @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 Aroundbow_2021  is ERC721A, ERC2981, OperatorFilterer, Ownable {
    using ECDSA for bytes32;

    string private _baseTokenURI;    
    bytes32 public merkleRoot;
    string public baseExtension = ".json";
    uint256 public constant RESERVED = 10;
    uint256 public secReserved = 0;
    uint256 public constant MAX_SUPPLY = 150;
    uint256 public claimSupply = 140;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    mapping(bytes4 => bool) public functionLocked;
    mapping(address => bool) public Claimed;
    uint256 public totalClaimed = 0;

    constructor(
        address _royaltyReceiver,
        uint96 _royaltyFraction
    )
        ERC721A(unicode"Aroundbow (2021)", unicode"Aroundbow (2021)")
    {

        _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 setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

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

    function secondaryReserve(address to )  external lockable onlyOwner {
        require(_totalMinted() + secReserved  <= MAX_SUPPLY , "Exceeds Maximum Supply.");
        _mint(to, secReserved);
    }

    function updateSecondaryReserveAmt(uint256 amt) external onlyOwner {
        secReserved = amt;
    }

    function updateClaimSupply(uint256 _claimSupply) external onlyOwner {
        claimSupply = _claimSupply;
    } 

    function claim(uint256 amount, bytes32[] calldata merkleProof) external {
        require(Claimed[msg.sender] == false, "Already Claimed the NFT");
        require(totalClaimed + amount <= claimSupply,"All NFTs Claimed.");
        require(_totalMinted() + amount <= MAX_SUPPLY , "Exceeds Maximum Supply");
        bytes32 node = keccak256(abi.encodePacked(msg.sender, amount));
        require(MerkleProof.verify(merkleProof, merkleRoot, node), "Invalid Whitelist Proof.");
        _mint(msg.sender, amount);
        totalClaimed += amount;
        Claimed[msg.sender] = true;
    }
    
     function updateUserClaimStatus(address[] memory users, bool _hasClaimed) external onlyOwner {
        require(users.length < 501,"You can update claim for only 500 users in one transaction.");
        for(uint i=0; i<users.length; i++){
            Claimed[users[i]] = _hasClaimed;
        }

    }
      
    /**
     * @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":[{"internalType":"address","name":"","type":"address"}],"name":"Claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":[],"name":"secReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"secondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimSupply","type":"uint256"}],"name":"updateClaimSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"updateSecondaryReserveAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"_hasClaimed","type":"bool"}],"name":"updateUserClaimStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200004a9190620006f9565b505f600e55608c600f555f60145534801562000064575f80fd5b50604051620051923803806200519283398181016040528101906200008a919062000888565b6040518060400160405280601081526020017f41726f756e64626f7720283230323129000000000000000000000000000000008152506040518060400160405280601081526020017f41726f756e64626f7720283230323129000000000000000000000000000000008152508160029081620001079190620006f9565b508060039081620001199190620006f9565b506200012a6200019560201b60201c565b5f81905550505062000151620001456200019d60201b60201c565b620001a460201b60201c565b620001616200026760201b60201c565b600160115f6101000a81548160ff0219169083151502179055506200018d82826200029060201b60201c565b5050620009df565b5f6001905090565b5f33905090565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028e733cc6cdda760b79bafa08df41ecfa224f810dceb660016200042e60201b60201c565b565b620002a06200048c60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000301576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f89062000951565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000372576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036990620009bf565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c9250816200045d57826200045557634420e48690506200045d565b63a0af290390505b8060e01b5f5230600452826024525f8060445f806daaeb6d7670e522a718067333cd4e5af1505f602452505050565b5f612710905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200051157607f821691505b602082108103620005275762000526620004cc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200058b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200054e565b6200059786836200054e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005e1620005db620005d584620005af565b620005b8565b620005af565b9050919050565b5f819050919050565b620005fc83620005c1565b620006146200060b82620005e8565b8484546200055a565b825550505050565b5f90565b6200062a6200061c565b62000637818484620005f1565b505050565b5b818110156200065e57620006525f8262000620565b6001810190506200063d565b5050565b601f821115620006ad5762000677816200052d565b62000682846200053f565b8101602085101562000692578190505b620006aa620006a1856200053f565b8301826200063c565b50505b505050565b5f82821c905092915050565b5f620006cf5f1984600802620006b2565b1980831691505092915050565b5f620006e98383620006be565b9150826002028217905092915050565b620007048262000495565b67ffffffffffffffff81111562000720576200071f6200049f565b5b6200072c8254620004f9565b6200073982828562000662565b5f60209050601f8311600181146200076f575f84156200075a578287015190505b620007668582620006dc565b865550620007d5565b601f1984166200077f866200052d565b5f5b82811015620007a85784890151825560018201915060208501945060208101905062000781565b86831015620007c85784890151620007c4601f891682620006be565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200080c82620007e1565b9050919050565b6200081e8162000800565b811462000829575f80fd5b50565b5f815190506200083c8162000813565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b620008648162000842565b81146200086f575f80fd5b50565b5f81519050620008828162000859565b92915050565b5f8060408385031215620008a157620008a0620007dd565b5b5f620008b0858286016200082c565b9250506020620008c38582860162000872565b9150509250929050565b5f82825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f62000939602a83620008cd565b91506200094682620008dd565b604082019050919050565b5f6020820190508181035f8301526200096a816200092b565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f620009a7601983620008cd565b9150620009b48262000971565b602082019050919050565b5f6020820190508181035f830152620009d88162000999565b9050919050565b6147a580620009ed5f395ff3fe608060405260043610610266575f3560e01c806395d89b4111610143578063c6ab67a3116100b5578063dc33e68111610079578063dc33e681146108bf578063e75179a4146108fb578063e985e9c514610923578063ecde215a1461095f578063f2fde38b14610987578063fb796e6c146109af57610266565b8063c6ab67a3146107df578063c87b56dd14610809578063cb3f47d914610845578063d54ad2a11461086d578063da3ef23f1461089757610266565b8063b449c24d11610107578063b449c24d146106d1578063b7c0b8e81461070d578063b88d4fde14610735578063bbadfe7614610751578063c21b471b1461078d578063c6682862146107b557610266565b806395d89b4114610605578063a22cb4651461062f578063a810e6ff14610657578063aa592f251461067f578063ae3729ed146106a957610266565b806332cb6b0c116101dc5780636352211e116101a05780636352211e146104fb578063701434651461053757806370a0823114610561578063715018a61461059d5780637cb64759146105b35780638da5cb5b146105db57610266565b806332cb6b0c1461044f57806334531828146104795780633ccfd60b146104a157806342842e0e146104b757806355f804b3146104d357610266565b8063109695231161022e578063109695231461035257806318160ddd1461037a57806323b872dd146103a45780632a55205a146103c05780632eb4a7ab146103fd5780632f52ebb71461042757610266565b806301ffc9a71461026a57806306fdde03146102a6578063081812fc146102d0578063095ea7b31461030c5780630ad29ec314610328575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b919061304b565b6109d9565b60405161029d9190613090565b60405180910390f35b3480156102b1575f80fd5b506102ba6109fa565b6040516102c79190613133565b60405180910390f35b3480156102db575f80fd5b506102f660048036038101906102f19190613186565b610a8a565b60405161030391906131f0565b60405180910390f35b61032660048036038101906103219190613233565b610b04565b005b348015610333575f80fd5b5061033c610b6d565b6040516103499190613280565b60405180910390f35b34801561035d575f80fd5b50610378600480360381019061037391906132fa565b610b73565b005b348015610385575f80fd5b5061038e610c8e565b60405161039b9190613280565b60405180910390f35b6103be60048036038101906103b99190613345565b610ca3565b005b3480156103cb575f80fd5b506103e660048036038101906103e19190613395565b610d16565b6040516103f49291906133d3565b60405180910390f35b348015610408575f80fd5b50610411610ef2565b60405161041e9190613412565b60405180910390f35b348015610432575f80fd5b5061044d60048036038101906104489190613480565b610ef8565b005b34801561045a575f80fd5b50610463611164565b6040516104709190613280565b60405180910390f35b348015610484575f80fd5b5061049f600480360381019061049a919061304b565b611169565b005b3480156104ac575f80fd5b506104b56111db565b005b6104d160048036038101906104cc9190613345565b611285565b005b3480156104de575f80fd5b506104f960048036038101906104f491906132fa565b6112f8565b005b348015610506575f80fd5b50610521600480360381019061051c9190613186565b6113cc565b60405161052e91906131f0565b60405180910390f35b348015610542575f80fd5b5061054b6113dd565b6040516105589190613280565b60405180910390f35b34801561056c575f80fd5b50610587600480360381019061058291906134dd565b6113e3565b6040516105949190613280565b60405180910390f35b3480156105a8575f80fd5b506105b1611498565b005b3480156105be575f80fd5b506105d960048036038101906105d49190613532565b6114ab565b005b3480156105e6575f80fd5b506105ef6114bd565b6040516105fc91906131f0565b60405180910390f35b348015610610575f80fd5b506106196114e5565b6040516106269190613133565b60405180910390f35b34801561063a575f80fd5b5061065560048036038101906106509190613587565b611575565b005b348015610662575f80fd5b5061067d600480360381019061067891906134dd565b6115de565b005b34801561068a575f80fd5b50610693611703565b6040516106a09190613280565b60405180910390f35b3480156106b4575f80fd5b506106cf60048036038101906106ca9190613186565b611708565b005b3480156106dc575f80fd5b506106f760048036038101906106f291906134dd565b61171a565b6040516107049190613090565b60405180910390f35b348015610718575f80fd5b50610733600480360381019061072e91906135c5565b611737565b005b61074f600480360381019061074a9190613718565b611811565b005b34801561075c575f80fd5b506107776004803603810190610772919061304b565b611886565b6040516107849190613090565b60405180910390f35b348015610798575f80fd5b506107b360048036038101906107ae91906137d9565b6118a3565b005b3480156107c0575f80fd5b506107c96118b9565b6040516107d69190613133565b60405180910390f35b3480156107ea575f80fd5b506107f3611945565b6040516108009190613133565b60405180910390f35b348015610814575f80fd5b5061082f600480360381019061082a9190613186565b6119d1565b60405161083c9190613133565b60405180910390f35b348015610850575f80fd5b5061086b600480360381019061086691906138d7565b611a78565b005b348015610878575f80fd5b50610881611b50565b60405161088e9190613280565b60405180910390f35b3480156108a2575f80fd5b506108bd60048036038101906108b891906139cf565b611b56565b005b3480156108ca575f80fd5b506108e560048036038101906108e091906134dd565b611b71565b6040516108f29190613280565b60405180910390f35b348015610906575f80fd5b50610921600480360381019061091c91906134dd565b611b82565b005b34801561092e575f80fd5b5061094960048036038101906109449190613a16565b611c8f565b6040516109569190613090565b60405180910390f35b34801561096a575f80fd5b5061098560048036038101906109809190613186565b611d1d565b005b348015610992575f80fd5b506109ad60048036038101906109a891906134dd565b611d2f565b005b3480156109ba575f80fd5b506109c3611db1565b6040516109d09190613090565b60405180910390f35b5f6109e382611dc3565b806109f357506109f282611e54565b5b9050919050565b606060028054610a0990613a81565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3590613a81565b8015610a805780601f10610a5757610100808354040283529160200191610a80565b820191905f5260205f20905b815481529060010190602001808311610a6357829003601f168201915b5050505050905090565b5f610a9482611ecd565b610aca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160115f9054906101000a900460ff168015610b5d5769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610b58573d5f803e3d5ffd5b5f603a525b610b678484611f27565b50505050565b600f5481565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615610c29576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c31612066565b5f60108054610c3f90613a81565b905014610c78576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610c89929190613c58565b505050565b5f610c976120e4565b6001545f540303905090565b8260115f9054906101000a900460ff168015610d0457338260601b60601c14610d035769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610cfe573d5f803e3d5ffd5b5f603a525b5b610d0f8585856120ec565b5050505050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610e9f5760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610ea86123fa565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ed49190613d52565b610ede9190613dc0565b9050815f0151819350935050509250929050565b600c5481565b5f151560135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151514610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613e3a565b60405180910390fd5b600f5483601454610f989190613e58565b1115610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613ed5565b60405180910390fd5b609683610fe4612403565b610fee9190613e58565b111561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690613f3d565b60405180910390fd5b5f3384604051602001611043929190613fc0565b6040516020818303038152906040528051906020012090506110a88383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600c5483612414565b6110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90614035565b60405180910390fd5b6110f1338561242a565b8360145f8282546111029190613e58565b92505081905550600160135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050505050565b609681565b611171612066565b600160125f837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6111e3612066565b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161120890614080565b5f6040518083038185875af1925050503d805f8114611242576040519150601f19603f3d011682016040523d82523d5f602084013e611247565b606091505b5050905080611282576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b8260115f9054906101000a900460ff1680156112e657338260601b60601c146112e55769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa6112e0573d5f803e3d5ffd5b5f603a525b5b6112f18585856125d3565b5050505050565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff16156113ae576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113b6612066565b8181600b91826113c7929190613c58565b505050565b5f6113d6826125f2565b9050919050565b600e5481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611449576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6114a0612066565b6114a95f6126b5565b565b6114b3612066565b80600c8190555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114f490613a81565b80601f016020809104026020016040519081016040528092919081815260200182805461152090613a81565b801561156b5780601f106115425761010080835404028352916020019161156b565b820191905f5260205f20905b81548152906001019060200180831161154e57829003601f168201915b5050505050905090565b8160115f9054906101000a900460ff1680156115ce5769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa6115c9573d5f803e3d5ffd5b5f603a525b6115d88484612778565b50505050565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611694576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61169c612066565b6096600e546116a9612403565b6116b39190613e58565b11156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb906140de565b60405180910390fd5b61170081600e5461242a565b50565b600a81565b611710612066565b80600e8190555050565b6013602052805f5260405f205f915054906101000a900460ff1681565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff16156117ed576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117f5612066565b8060115f6101000a81548160ff02191690831515021790555050565b8360115f9054906101000a900460ff16801561187257338260601b60601c146118715769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa61186c573d5f803e3d5ffd5b5f603a525b5b61187e8686868661287e565b505050505050565b6012602052805f5260405f205f915054906101000a900460ff1681565b6118ab612066565b6118b582826128f0565b5050565b600d80546118c690613a81565b80601f01602080910402602001604051908101604052809291908181526020018280546118f290613a81565b801561193d5780601f106119145761010080835404028352916020019161193d565b820191905f5260205f20905b81548152906001019060200180831161192057829003601f168201915b505050505081565b6010805461195290613a81565b80601f016020809104026020016040519081016040528092919081815260200182805461197e90613a81565b80156119c95780601f106119a0576101008083540402835291602001916119c9565b820191905f5260205f20905b8154815290600101906020018083116119ac57829003601f168201915b505050505081565b60606119dc82611ecd565b611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a129061416c565b60405180910390fd5b5f611a24612a80565b90505f815111611a425760405180602001604052805f815250611a70565b80611a4c84612b10565b600d604051602001611a6093929190614244565b6040516020818303038152906040525b915050919050565b611a80612066565b6101f5825110611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc906142e4565b60405180910390fd5b5f5b8251811015611b4b578160135f858481518110611ae757611ae6614302565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050611ac7565b505050565b60145481565b611b5e612066565b80600d9081611b6d919061432f565b5050565b5f611b7b82612c69565b9050919050565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611c38576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c40612066565b600a611c4a612403565b10611c81576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8c81600a61242a565b50565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611d25612066565b80600f8190555050565b611d37612066565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c9061446e565b60405180910390fd5b611dae816126b5565b50565b60115f9054906101000a900460ff1681565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ec65750611ec582612cbd565b5b9050919050565b5f81611ed76120e4565b11158015611ee557505f5482105b8015611f2057505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f611f31826113cc565b90508073ffffffffffffffffffffffffffffffffffffffff16611f52612d26565b73ffffffffffffffffffffffffffffffffffffffff1614611fb557611f7e81611f79612d26565b611c8f565b611fb4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61206e612d2d565b73ffffffffffffffffffffffffffffffffffffffff1661208c6114bd565b73ffffffffffffffffffffffffffffffffffffffff16146120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d9906144d6565b60405180910390fd5b565b5f6001905090565b5f6120f6826125f2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461215d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061216884612d34565b9150915061217e8187612179612d26565b612d57565b6121ca576121938661218e612d26565b611c8f565b6121c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361222f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61223c8686866001612d9a565b8015612246575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061230e856122ea888887612da0565b7c020000000000000000000000000000000000000000000000000000000017612dc7565b60045f8681526020019081526020015f20819055505f7c020000000000000000000000000000000000000000000000000000000084160361238a575f6001850190505f60045f8381526020019081526020015f205403612388575f548114612387578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123f28686866001612df1565b505050505050565b5f612710905090565b5f61240c6120e4565b5f5403905090565b5f826124208584612df7565b1490509392505050565b5f805490505f8203612468576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124745f848385612d9a565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506124e6836124d75f865f612da0565b6124e085612e45565b17612dc7565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146125805780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612547565b505f82036125ba576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506125ce5f848385612df1565b505050565b6125ed83838360405180602001604052805f815250611811565b505050565b5f80829050806126006120e4565b1161267e575f5481101561267d575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361267b575b5f81036126715760045f836001900393508381526020019081526020015f2054905061264a565b80925050506126b0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060075f612784612d26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661282d612d26565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128729190613090565b60405180910390a35050565b612889848484610ca3565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146128ea576128b384848484612e54565b6128e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6128f86123fa565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d90614564565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bb906145cc565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612a8f90613a81565b80601f0160208091040260200160405190810160405280929190818152602001828054612abb90613a81565b8015612b065780601f10612add57610100808354040283529160200191612b06565b820191905f5260205f20905b815481529060010190602001808311612ae957829003601f168201915b5050505050905090565b60605f8203612b56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c64565b5f8290505f5b5f8214612b85578080612b6e906145ea565b915050600a82612b7e9190613dc0565b9150612b5c565b5f8167ffffffffffffffff811115612ba057612b9f6135f4565b5b6040519080825280601f01601f191660200182016040528015612bd25781602001600182028036833780820191505090505b5090505b5f8514612c5d57600182612bea9190614631565b9150600a85612bf99190614664565b6030612c059190613e58565b60f81b818381518110612c1b57612c1a614302565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85612c569190613dc0565b9450612bd6565b8093505050505b919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8612db6868684612f9f565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f808290505f5b8451811015612e3a57612e2b82868381518110612e1e57612e1d614302565b5b6020026020010151612fa7565b91508080600101915050612dfe565b508091505092915050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e79612d26565b8786866040518563ffffffff1660e01b8152600401612e9b94939291906146e6565b6020604051808303815f875af1925050508015612ed657506040513d601f19601f82011682018060405250810190612ed39190614744565b60015b612f4c573d805f8114612f04576040519150601f19603f3d011682016040523d82523d5f602084013e612f09565b606091505b505f815103612f44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f9392505050565b5f818310612fbe57612fb98284612fd1565b612fc9565b612fc88383612fd1565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61302a81612ff6565b8114613034575f80fd5b50565b5f8135905061304581613021565b92915050565b5f602082840312156130605761305f612fee565b5b5f61306d84828501613037565b91505092915050565b5f8115159050919050565b61308a81613076565b82525050565b5f6020820190506130a35f830184613081565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156130e05780820151818401526020810190506130c5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613105826130a9565b61310f81856130b3565b935061311f8185602086016130c3565b613128816130eb565b840191505092915050565b5f6020820190508181035f83015261314b81846130fb565b905092915050565b5f819050919050565b61316581613153565b811461316f575f80fd5b50565b5f813590506131808161315c565b92915050565b5f6020828403121561319b5761319a612fee565b5b5f6131a884828501613172565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6131da826131b1565b9050919050565b6131ea816131d0565b82525050565b5f6020820190506132035f8301846131e1565b92915050565b613212816131d0565b811461321c575f80fd5b50565b5f8135905061322d81613209565b92915050565b5f806040838503121561324957613248612fee565b5b5f6132568582860161321f565b925050602061326785828601613172565b9150509250929050565b61327a81613153565b82525050565b5f6020820190506132935f830184613271565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126132ba576132b9613299565b5b8235905067ffffffffffffffff8111156132d7576132d661329d565b5b6020830191508360018202830111156132f3576132f26132a1565b5b9250929050565b5f80602083850312156133105761330f612fee565b5b5f83013567ffffffffffffffff81111561332d5761332c612ff2565b5b613339858286016132a5565b92509250509250929050565b5f805f6060848603121561335c5761335b612fee565b5b5f6133698682870161321f565b935050602061337a8682870161321f565b925050604061338b86828701613172565b9150509250925092565b5f80604083850312156133ab576133aa612fee565b5b5f6133b885828601613172565b92505060206133c985828601613172565b9150509250929050565b5f6040820190506133e65f8301856131e1565b6133f36020830184613271565b9392505050565b5f819050919050565b61340c816133fa565b82525050565b5f6020820190506134255f830184613403565b92915050565b5f8083601f8401126134405761343f613299565b5b8235905067ffffffffffffffff81111561345d5761345c61329d565b5b602083019150836020820283011115613479576134786132a1565b5b9250929050565b5f805f6040848603121561349757613496612fee565b5b5f6134a486828701613172565b935050602084013567ffffffffffffffff8111156134c5576134c4612ff2565b5b6134d18682870161342b565b92509250509250925092565b5f602082840312156134f2576134f1612fee565b5b5f6134ff8482850161321f565b91505092915050565b613511816133fa565b811461351b575f80fd5b50565b5f8135905061352c81613508565b92915050565b5f6020828403121561354757613546612fee565b5b5f6135548482850161351e565b91505092915050565b61356681613076565b8114613570575f80fd5b50565b5f813590506135818161355d565b92915050565b5f806040838503121561359d5761359c612fee565b5b5f6135aa8582860161321f565b92505060206135bb85828601613573565b9150509250929050565b5f602082840312156135da576135d9612fee565b5b5f6135e784828501613573565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61362a826130eb565b810181811067ffffffffffffffff82111715613649576136486135f4565b5b80604052505050565b5f61365b612fe5565b90506136678282613621565b919050565b5f67ffffffffffffffff821115613686576136856135f4565b5b61368f826130eb565b9050602081019050919050565b828183375f83830152505050565b5f6136bc6136b78461366c565b613652565b9050828152602081018484840111156136d8576136d76135f0565b5b6136e384828561369c565b509392505050565b5f82601f8301126136ff576136fe613299565b5b813561370f8482602086016136aa565b91505092915050565b5f805f80608085870312156137305761372f612fee565b5b5f61373d8782880161321f565b945050602061374e8782880161321f565b935050604061375f87828801613172565b925050606085013567ffffffffffffffff8111156137805761377f612ff2565b5b61378c878288016136eb565b91505092959194509250565b5f6bffffffffffffffffffffffff82169050919050565b6137b881613798565b81146137c2575f80fd5b50565b5f813590506137d3816137af565b92915050565b5f80604083850312156137ef576137ee612fee565b5b5f6137fc8582860161321f565b925050602061380d858286016137c5565b9150509250929050565b5f67ffffffffffffffff821115613831576138306135f4565b5b602082029050602081019050919050565b5f61385461384f84613817565b613652565b90508083825260208201905060208402830185811115613877576138766132a1565b5b835b818110156138a0578061388c888261321f565b845260208401935050602081019050613879565b5050509392505050565b5f82601f8301126138be576138bd613299565b5b81356138ce848260208601613842565b91505092915050565b5f80604083850312156138ed576138ec612fee565b5b5f83013567ffffffffffffffff81111561390a57613909612ff2565b5b613916858286016138aa565b925050602061392785828601613573565b9150509250929050565b5f67ffffffffffffffff82111561394b5761394a6135f4565b5b613954826130eb565b9050602081019050919050565b5f61397361396e84613931565b613652565b90508281526020810184848401111561398f5761398e6135f0565b5b61399a84828561369c565b509392505050565b5f82601f8301126139b6576139b5613299565b5b81356139c6848260208601613961565b91505092915050565b5f602082840312156139e4576139e3612fee565b5b5f82013567ffffffffffffffff811115613a0157613a00612ff2565b5b613a0d848285016139a2565b91505092915050565b5f8060408385031215613a2c57613a2b612fee565b5b5f613a398582860161321f565b9250506020613a4a8582860161321f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613a9857607f821691505b602082108103613aab57613aaa613a54565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613b177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613adc565b613b218683613adc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613b5c613b57613b5284613153565b613b39565b613153565b9050919050565b5f819050919050565b613b7583613b42565b613b89613b8182613b63565b848454613ae8565b825550505050565b5f90565b613b9d613b91565b613ba8818484613b6c565b505050565b5b81811015613bcb57613bc05f82613b95565b600181019050613bae565b5050565b601f821115613c1057613be181613abb565b613bea84613acd565b81016020851015613bf9578190505b613c0d613c0585613acd565b830182613bad565b50505b505050565b5f82821c905092915050565b5f613c305f1984600802613c15565b1980831691505092915050565b5f613c488383613c21565b9150826002028217905092915050565b613c628383613ab1565b67ffffffffffffffff811115613c7b57613c7a6135f4565b5b613c858254613a81565b613c90828285613bcf565b5f601f831160018114613cbd575f8415613cab578287013590505b613cb58582613c3d565b865550613d1c565b601f198416613ccb86613abb565b5f5b82811015613cf257848901358255600182019150602085019450602081019050613ccd565b86831015613d0f5784890135613d0b601f891682613c21565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613d5c82613153565b9150613d6783613153565b9250828202613d7581613153565b91508282048414831517613d8c57613d8b613d25565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613dca82613153565b9150613dd583613153565b925082613de557613de4613d93565b5b828204905092915050565b7f416c726561647920436c61696d656420746865204e46540000000000000000005f82015250565b5f613e246017836130b3565b9150613e2f82613df0565b602082019050919050565b5f6020820190508181035f830152613e5181613e18565b9050919050565b5f613e6282613153565b9150613e6d83613153565b9250828201905080821115613e8557613e84613d25565b5b92915050565b7f416c6c204e46547320436c61696d65642e0000000000000000000000000000005f82015250565b5f613ebf6011836130b3565b9150613eca82613e8b565b602082019050919050565b5f6020820190508181035f830152613eec81613eb3565b9050919050565b7f45786365656473204d6178696d756d20537570706c79000000000000000000005f82015250565b5f613f276016836130b3565b9150613f3282613ef3565b602082019050919050565b5f6020820190508181035f830152613f5481613f1b565b9050919050565b5f8160601b9050919050565b5f613f7182613f5b565b9050919050565b5f613f8282613f67565b9050919050565b613f9a613f95826131d0565b613f78565b82525050565b5f819050919050565b613fba613fb582613153565b613fa0565b82525050565b5f613fcb8285613f89565b601482019150613fdb8284613fa9565b6020820191508190509392505050565b7f496e76616c69642057686974656c6973742050726f6f662e00000000000000005f82015250565b5f61401f6018836130b3565b915061402a82613feb565b602082019050919050565b5f6020820190508181035f83015261404c81614013565b9050919050565b5f81905092915050565b50565b5f61406b5f83614053565b91506140768261405d565b5f82019050919050565b5f61408a82614060565b9150819050919050565b7f45786365656473204d6178696d756d20537570706c792e0000000000000000005f82015250565b5f6140c86017836130b3565b91506140d382614094565b602082019050919050565b5f6020820190508181035f8301526140f5816140bc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f614156602f836130b3565b9150614161826140fc565b604082019050919050565b5f6020820190508181035f8301526141838161414a565b9050919050565b5f81905092915050565b5f61419e826130a9565b6141a8818561418a565b93506141b88185602086016130c3565b80840191505092915050565b5f81546141d081613a81565b6141da818661418a565b9450600182165f81146141f457600181146142095761423b565b60ff198316865281151582028601935061423b565b61421285613abb565b5f5b8381101561423357815481890152600182019150602081019050614214565b838801955050505b50505092915050565b5f61424f8286614194565b915061425b8285614194565b915061426782846141c4565b9150819050949350505050565b7f596f752063616e2075706461746520636c61696d20666f72206f6e6c792035305f8201527f3020757365727320696e206f6e65207472616e73616374696f6e2e0000000000602082015250565b5f6142ce603b836130b3565b91506142d982614274565b604082019050919050565b5f6020820190508181035f8301526142fb816142c2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b614338826130a9565b67ffffffffffffffff811115614351576143506135f4565b5b61435b8254613a81565b614366828285613bcf565b5f60209050601f831160018114614397575f8415614385578287015190505b61438f8582613c3d565b8655506143f6565b601f1984166143a586613abb565b5f5b828110156143cc578489015182556001820191506020850194506020810190506143a7565b868310156143e957848901516143e5601f891682613c21565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6144586026836130b3565b9150614463826143fe565b604082019050919050565b5f6020820190508181035f8301526144858161444c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6144c06020836130b3565b91506144cb8261448c565b602082019050919050565b5f6020820190508181035f8301526144ed816144b4565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f61454e602a836130b3565b9150614559826144f4565b604082019050919050565b5f6020820190508181035f83015261457b81614542565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f6145b66019836130b3565b91506145c182614582565b602082019050919050565b5f6020820190508181035f8301526145e3816145aa565b9050919050565b5f6145f482613153565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361462657614625613d25565b5b600182019050919050565b5f61463b82613153565b915061464683613153565b925082820390508181111561465e5761465d613d25565b5b92915050565b5f61466e82613153565b915061467983613153565b92508261468957614688613d93565b5b828206905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6146b882614694565b6146c2818561469e565b93506146d28185602086016130c3565b6146db816130eb565b840191505092915050565b5f6080820190506146f95f8301876131e1565b61470660208301866131e1565b6147136040830185613271565b818103606083015261472581846146ae565b905095945050505050565b5f8151905061473e81613021565b92915050565b5f6020828403121561475957614758612fee565b5b5f61476684828501614730565b9150509291505056fea2646970667358221220396b01357fa294c21beaf639eaa8f612135f03ce9ecc9f111a43b84f6a98bb9664736f6c63430008180033000000000000000000000000d6de78688cce125741e1ef5319256f58cf8fb49300000000000000000000000000000000000000000000000000000000000001f4

Deployed Bytecode

0x608060405260043610610266575f3560e01c806395d89b4111610143578063c6ab67a3116100b5578063dc33e68111610079578063dc33e681146108bf578063e75179a4146108fb578063e985e9c514610923578063ecde215a1461095f578063f2fde38b14610987578063fb796e6c146109af57610266565b8063c6ab67a3146107df578063c87b56dd14610809578063cb3f47d914610845578063d54ad2a11461086d578063da3ef23f1461089757610266565b8063b449c24d11610107578063b449c24d146106d1578063b7c0b8e81461070d578063b88d4fde14610735578063bbadfe7614610751578063c21b471b1461078d578063c6682862146107b557610266565b806395d89b4114610605578063a22cb4651461062f578063a810e6ff14610657578063aa592f251461067f578063ae3729ed146106a957610266565b806332cb6b0c116101dc5780636352211e116101a05780636352211e146104fb578063701434651461053757806370a0823114610561578063715018a61461059d5780637cb64759146105b35780638da5cb5b146105db57610266565b806332cb6b0c1461044f57806334531828146104795780633ccfd60b146104a157806342842e0e146104b757806355f804b3146104d357610266565b8063109695231161022e578063109695231461035257806318160ddd1461037a57806323b872dd146103a45780632a55205a146103c05780632eb4a7ab146103fd5780632f52ebb71461042757610266565b806301ffc9a71461026a57806306fdde03146102a6578063081812fc146102d0578063095ea7b31461030c5780630ad29ec314610328575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b919061304b565b6109d9565b60405161029d9190613090565b60405180910390f35b3480156102b1575f80fd5b506102ba6109fa565b6040516102c79190613133565b60405180910390f35b3480156102db575f80fd5b506102f660048036038101906102f19190613186565b610a8a565b60405161030391906131f0565b60405180910390f35b61032660048036038101906103219190613233565b610b04565b005b348015610333575f80fd5b5061033c610b6d565b6040516103499190613280565b60405180910390f35b34801561035d575f80fd5b50610378600480360381019061037391906132fa565b610b73565b005b348015610385575f80fd5b5061038e610c8e565b60405161039b9190613280565b60405180910390f35b6103be60048036038101906103b99190613345565b610ca3565b005b3480156103cb575f80fd5b506103e660048036038101906103e19190613395565b610d16565b6040516103f49291906133d3565b60405180910390f35b348015610408575f80fd5b50610411610ef2565b60405161041e9190613412565b60405180910390f35b348015610432575f80fd5b5061044d60048036038101906104489190613480565b610ef8565b005b34801561045a575f80fd5b50610463611164565b6040516104709190613280565b60405180910390f35b348015610484575f80fd5b5061049f600480360381019061049a919061304b565b611169565b005b3480156104ac575f80fd5b506104b56111db565b005b6104d160048036038101906104cc9190613345565b611285565b005b3480156104de575f80fd5b506104f960048036038101906104f491906132fa565b6112f8565b005b348015610506575f80fd5b50610521600480360381019061051c9190613186565b6113cc565b60405161052e91906131f0565b60405180910390f35b348015610542575f80fd5b5061054b6113dd565b6040516105589190613280565b60405180910390f35b34801561056c575f80fd5b50610587600480360381019061058291906134dd565b6113e3565b6040516105949190613280565b60405180910390f35b3480156105a8575f80fd5b506105b1611498565b005b3480156105be575f80fd5b506105d960048036038101906105d49190613532565b6114ab565b005b3480156105e6575f80fd5b506105ef6114bd565b6040516105fc91906131f0565b60405180910390f35b348015610610575f80fd5b506106196114e5565b6040516106269190613133565b60405180910390f35b34801561063a575f80fd5b5061065560048036038101906106509190613587565b611575565b005b348015610662575f80fd5b5061067d600480360381019061067891906134dd565b6115de565b005b34801561068a575f80fd5b50610693611703565b6040516106a09190613280565b60405180910390f35b3480156106b4575f80fd5b506106cf60048036038101906106ca9190613186565b611708565b005b3480156106dc575f80fd5b506106f760048036038101906106f291906134dd565b61171a565b6040516107049190613090565b60405180910390f35b348015610718575f80fd5b50610733600480360381019061072e91906135c5565b611737565b005b61074f600480360381019061074a9190613718565b611811565b005b34801561075c575f80fd5b506107776004803603810190610772919061304b565b611886565b6040516107849190613090565b60405180910390f35b348015610798575f80fd5b506107b360048036038101906107ae91906137d9565b6118a3565b005b3480156107c0575f80fd5b506107c96118b9565b6040516107d69190613133565b60405180910390f35b3480156107ea575f80fd5b506107f3611945565b6040516108009190613133565b60405180910390f35b348015610814575f80fd5b5061082f600480360381019061082a9190613186565b6119d1565b60405161083c9190613133565b60405180910390f35b348015610850575f80fd5b5061086b600480360381019061086691906138d7565b611a78565b005b348015610878575f80fd5b50610881611b50565b60405161088e9190613280565b60405180910390f35b3480156108a2575f80fd5b506108bd60048036038101906108b891906139cf565b611b56565b005b3480156108ca575f80fd5b506108e560048036038101906108e091906134dd565b611b71565b6040516108f29190613280565b60405180910390f35b348015610906575f80fd5b50610921600480360381019061091c91906134dd565b611b82565b005b34801561092e575f80fd5b5061094960048036038101906109449190613a16565b611c8f565b6040516109569190613090565b60405180910390f35b34801561096a575f80fd5b5061098560048036038101906109809190613186565b611d1d565b005b348015610992575f80fd5b506109ad60048036038101906109a891906134dd565b611d2f565b005b3480156109ba575f80fd5b506109c3611db1565b6040516109d09190613090565b60405180910390f35b5f6109e382611dc3565b806109f357506109f282611e54565b5b9050919050565b606060028054610a0990613a81565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3590613a81565b8015610a805780601f10610a5757610100808354040283529160200191610a80565b820191905f5260205f20905b815481529060010190602001808311610a6357829003601f168201915b5050505050905090565b5f610a9482611ecd565b610aca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160115f9054906101000a900460ff168015610b5d5769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610b58573d5f803e3d5ffd5b5f603a525b610b678484611f27565b50505050565b600f5481565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615610c29576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c31612066565b5f60108054610c3f90613a81565b905014610c78576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610c89929190613c58565b505050565b5f610c976120e4565b6001545f540303905090565b8260115f9054906101000a900460ff168015610d0457338260601b60601c14610d035769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610cfe573d5f803e3d5ffd5b5f603a525b5b610d0f8585856120ec565b5050505050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610e9f5760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610ea86123fa565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ed49190613d52565b610ede9190613dc0565b9050815f0151819350935050509250929050565b600c5481565b5f151560135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151514610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613e3a565b60405180910390fd5b600f5483601454610f989190613e58565b1115610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613ed5565b60405180910390fd5b609683610fe4612403565b610fee9190613e58565b111561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690613f3d565b60405180910390fd5b5f3384604051602001611043929190613fc0565b6040516020818303038152906040528051906020012090506110a88383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600c5483612414565b6110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90614035565b60405180910390fd5b6110f1338561242a565b8360145f8282546111029190613e58565b92505081905550600160135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050505050565b609681565b611171612066565b600160125f837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6111e3612066565b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161120890614080565b5f6040518083038185875af1925050503d805f8114611242576040519150601f19603f3d011682016040523d82523d5f602084013e611247565b606091505b5050905080611282576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b8260115f9054906101000a900460ff1680156112e657338260601b60601c146112e55769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa6112e0573d5f803e3d5ffd5b5f603a525b5b6112f18585856125d3565b5050505050565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff16156113ae576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113b6612066565b8181600b91826113c7929190613c58565b505050565b5f6113d6826125f2565b9050919050565b600e5481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611449576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6114a0612066565b6114a95f6126b5565b565b6114b3612066565b80600c8190555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114f490613a81565b80601f016020809104026020016040519081016040528092919081815260200182805461152090613a81565b801561156b5780601f106115425761010080835404028352916020019161156b565b820191905f5260205f20905b81548152906001019060200180831161154e57829003601f168201915b5050505050905090565b8160115f9054906101000a900460ff1680156115ce5769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa6115c9573d5f803e3d5ffd5b5f603a525b6115d88484612778565b50505050565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611694576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61169c612066565b6096600e546116a9612403565b6116b39190613e58565b11156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb906140de565b60405180910390fd5b61170081600e5461242a565b50565b600a81565b611710612066565b80600e8190555050565b6013602052805f5260405f205f915054906101000a900460ff1681565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff16156117ed576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117f5612066565b8060115f6101000a81548160ff02191690831515021790555050565b8360115f9054906101000a900460ff16801561187257338260601b60601c146118715769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa61186c573d5f803e3d5ffd5b5f603a525b5b61187e8686868661287e565b505050505050565b6012602052805f5260405f205f915054906101000a900460ff1681565b6118ab612066565b6118b582826128f0565b5050565b600d80546118c690613a81565b80601f01602080910402602001604051908101604052809291908181526020018280546118f290613a81565b801561193d5780601f106119145761010080835404028352916020019161193d565b820191905f5260205f20905b81548152906001019060200180831161192057829003601f168201915b505050505081565b6010805461195290613a81565b80601f016020809104026020016040519081016040528092919081815260200182805461197e90613a81565b80156119c95780601f106119a0576101008083540402835291602001916119c9565b820191905f5260205f20905b8154815290600101906020018083116119ac57829003601f168201915b505050505081565b60606119dc82611ecd565b611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a129061416c565b60405180910390fd5b5f611a24612a80565b90505f815111611a425760405180602001604052805f815250611a70565b80611a4c84612b10565b600d604051602001611a6093929190614244565b6040516020818303038152906040525b915050919050565b611a80612066565b6101f5825110611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc906142e4565b60405180910390fd5b5f5b8251811015611b4b578160135f858481518110611ae757611ae6614302565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050611ac7565b505050565b60145481565b611b5e612066565b80600d9081611b6d919061432f565b5050565b5f611b7b82612c69565b9050919050565b60125f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611c38576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c40612066565b600a611c4a612403565b10611c81576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8c81600a61242a565b50565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611d25612066565b80600f8190555050565b611d37612066565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c9061446e565b60405180910390fd5b611dae816126b5565b50565b60115f9054906101000a900460ff1681565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ec65750611ec582612cbd565b5b9050919050565b5f81611ed76120e4565b11158015611ee557505f5482105b8015611f2057505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f611f31826113cc565b90508073ffffffffffffffffffffffffffffffffffffffff16611f52612d26565b73ffffffffffffffffffffffffffffffffffffffff1614611fb557611f7e81611f79612d26565b611c8f565b611fb4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61206e612d2d565b73ffffffffffffffffffffffffffffffffffffffff1661208c6114bd565b73ffffffffffffffffffffffffffffffffffffffff16146120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d9906144d6565b60405180910390fd5b565b5f6001905090565b5f6120f6826125f2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461215d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061216884612d34565b9150915061217e8187612179612d26565b612d57565b6121ca576121938661218e612d26565b611c8f565b6121c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361222f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61223c8686866001612d9a565b8015612246575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061230e856122ea888887612da0565b7c020000000000000000000000000000000000000000000000000000000017612dc7565b60045f8681526020019081526020015f20819055505f7c020000000000000000000000000000000000000000000000000000000084160361238a575f6001850190505f60045f8381526020019081526020015f205403612388575f548114612387578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123f28686866001612df1565b505050505050565b5f612710905090565b5f61240c6120e4565b5f5403905090565b5f826124208584612df7565b1490509392505050565b5f805490505f8203612468576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124745f848385612d9a565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506124e6836124d75f865f612da0565b6124e085612e45565b17612dc7565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146125805780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612547565b505f82036125ba576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506125ce5f848385612df1565b505050565b6125ed83838360405180602001604052805f815250611811565b505050565b5f80829050806126006120e4565b1161267e575f5481101561267d575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361267b575b5f81036126715760045f836001900393508381526020019081526020015f2054905061264a565b80925050506126b0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060075f612784612d26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661282d612d26565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128729190613090565b60405180910390a35050565b612889848484610ca3565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146128ea576128b384848484612e54565b6128e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6128f86123fa565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d90614564565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bb906145cc565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612a8f90613a81565b80601f0160208091040260200160405190810160405280929190818152602001828054612abb90613a81565b8015612b065780601f10612add57610100808354040283529160200191612b06565b820191905f5260205f20905b815481529060010190602001808311612ae957829003601f168201915b5050505050905090565b60605f8203612b56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c64565b5f8290505f5b5f8214612b85578080612b6e906145ea565b915050600a82612b7e9190613dc0565b9150612b5c565b5f8167ffffffffffffffff811115612ba057612b9f6135f4565b5b6040519080825280601f01601f191660200182016040528015612bd25781602001600182028036833780820191505090505b5090505b5f8514612c5d57600182612bea9190614631565b9150600a85612bf99190614664565b6030612c059190613e58565b60f81b818381518110612c1b57612c1a614302565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85612c569190613dc0565b9450612bd6565b8093505050505b919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8612db6868684612f9f565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f808290505f5b8451811015612e3a57612e2b82868381518110612e1e57612e1d614302565b5b6020026020010151612fa7565b91508080600101915050612dfe565b508091505092915050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e79612d26565b8786866040518563ffffffff1660e01b8152600401612e9b94939291906146e6565b6020604051808303815f875af1925050508015612ed657506040513d601f19601f82011682018060405250810190612ed39190614744565b60015b612f4c573d805f8114612f04576040519150601f19603f3d011682016040523d82523d5f602084013e612f09565b606091505b505f815103612f44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f9392505050565b5f818310612fbe57612fb98284612fd1565b612fc9565b612fc88383612fd1565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61302a81612ff6565b8114613034575f80fd5b50565b5f8135905061304581613021565b92915050565b5f602082840312156130605761305f612fee565b5b5f61306d84828501613037565b91505092915050565b5f8115159050919050565b61308a81613076565b82525050565b5f6020820190506130a35f830184613081565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156130e05780820151818401526020810190506130c5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613105826130a9565b61310f81856130b3565b935061311f8185602086016130c3565b613128816130eb565b840191505092915050565b5f6020820190508181035f83015261314b81846130fb565b905092915050565b5f819050919050565b61316581613153565b811461316f575f80fd5b50565b5f813590506131808161315c565b92915050565b5f6020828403121561319b5761319a612fee565b5b5f6131a884828501613172565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6131da826131b1565b9050919050565b6131ea816131d0565b82525050565b5f6020820190506132035f8301846131e1565b92915050565b613212816131d0565b811461321c575f80fd5b50565b5f8135905061322d81613209565b92915050565b5f806040838503121561324957613248612fee565b5b5f6132568582860161321f565b925050602061326785828601613172565b9150509250929050565b61327a81613153565b82525050565b5f6020820190506132935f830184613271565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126132ba576132b9613299565b5b8235905067ffffffffffffffff8111156132d7576132d661329d565b5b6020830191508360018202830111156132f3576132f26132a1565b5b9250929050565b5f80602083850312156133105761330f612fee565b5b5f83013567ffffffffffffffff81111561332d5761332c612ff2565b5b613339858286016132a5565b92509250509250929050565b5f805f6060848603121561335c5761335b612fee565b5b5f6133698682870161321f565b935050602061337a8682870161321f565b925050604061338b86828701613172565b9150509250925092565b5f80604083850312156133ab576133aa612fee565b5b5f6133b885828601613172565b92505060206133c985828601613172565b9150509250929050565b5f6040820190506133e65f8301856131e1565b6133f36020830184613271565b9392505050565b5f819050919050565b61340c816133fa565b82525050565b5f6020820190506134255f830184613403565b92915050565b5f8083601f8401126134405761343f613299565b5b8235905067ffffffffffffffff81111561345d5761345c61329d565b5b602083019150836020820283011115613479576134786132a1565b5b9250929050565b5f805f6040848603121561349757613496612fee565b5b5f6134a486828701613172565b935050602084013567ffffffffffffffff8111156134c5576134c4612ff2565b5b6134d18682870161342b565b92509250509250925092565b5f602082840312156134f2576134f1612fee565b5b5f6134ff8482850161321f565b91505092915050565b613511816133fa565b811461351b575f80fd5b50565b5f8135905061352c81613508565b92915050565b5f6020828403121561354757613546612fee565b5b5f6135548482850161351e565b91505092915050565b61356681613076565b8114613570575f80fd5b50565b5f813590506135818161355d565b92915050565b5f806040838503121561359d5761359c612fee565b5b5f6135aa8582860161321f565b92505060206135bb85828601613573565b9150509250929050565b5f602082840312156135da576135d9612fee565b5b5f6135e784828501613573565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61362a826130eb565b810181811067ffffffffffffffff82111715613649576136486135f4565b5b80604052505050565b5f61365b612fe5565b90506136678282613621565b919050565b5f67ffffffffffffffff821115613686576136856135f4565b5b61368f826130eb565b9050602081019050919050565b828183375f83830152505050565b5f6136bc6136b78461366c565b613652565b9050828152602081018484840111156136d8576136d76135f0565b5b6136e384828561369c565b509392505050565b5f82601f8301126136ff576136fe613299565b5b813561370f8482602086016136aa565b91505092915050565b5f805f80608085870312156137305761372f612fee565b5b5f61373d8782880161321f565b945050602061374e8782880161321f565b935050604061375f87828801613172565b925050606085013567ffffffffffffffff8111156137805761377f612ff2565b5b61378c878288016136eb565b91505092959194509250565b5f6bffffffffffffffffffffffff82169050919050565b6137b881613798565b81146137c2575f80fd5b50565b5f813590506137d3816137af565b92915050565b5f80604083850312156137ef576137ee612fee565b5b5f6137fc8582860161321f565b925050602061380d858286016137c5565b9150509250929050565b5f67ffffffffffffffff821115613831576138306135f4565b5b602082029050602081019050919050565b5f61385461384f84613817565b613652565b90508083825260208201905060208402830185811115613877576138766132a1565b5b835b818110156138a0578061388c888261321f565b845260208401935050602081019050613879565b5050509392505050565b5f82601f8301126138be576138bd613299565b5b81356138ce848260208601613842565b91505092915050565b5f80604083850312156138ed576138ec612fee565b5b5f83013567ffffffffffffffff81111561390a57613909612ff2565b5b613916858286016138aa565b925050602061392785828601613573565b9150509250929050565b5f67ffffffffffffffff82111561394b5761394a6135f4565b5b613954826130eb565b9050602081019050919050565b5f61397361396e84613931565b613652565b90508281526020810184848401111561398f5761398e6135f0565b5b61399a84828561369c565b509392505050565b5f82601f8301126139b6576139b5613299565b5b81356139c6848260208601613961565b91505092915050565b5f602082840312156139e4576139e3612fee565b5b5f82013567ffffffffffffffff811115613a0157613a00612ff2565b5b613a0d848285016139a2565b91505092915050565b5f8060408385031215613a2c57613a2b612fee565b5b5f613a398582860161321f565b9250506020613a4a8582860161321f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613a9857607f821691505b602082108103613aab57613aaa613a54565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613b177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613adc565b613b218683613adc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613b5c613b57613b5284613153565b613b39565b613153565b9050919050565b5f819050919050565b613b7583613b42565b613b89613b8182613b63565b848454613ae8565b825550505050565b5f90565b613b9d613b91565b613ba8818484613b6c565b505050565b5b81811015613bcb57613bc05f82613b95565b600181019050613bae565b5050565b601f821115613c1057613be181613abb565b613bea84613acd565b81016020851015613bf9578190505b613c0d613c0585613acd565b830182613bad565b50505b505050565b5f82821c905092915050565b5f613c305f1984600802613c15565b1980831691505092915050565b5f613c488383613c21565b9150826002028217905092915050565b613c628383613ab1565b67ffffffffffffffff811115613c7b57613c7a6135f4565b5b613c858254613a81565b613c90828285613bcf565b5f601f831160018114613cbd575f8415613cab578287013590505b613cb58582613c3d565b865550613d1c565b601f198416613ccb86613abb565b5f5b82811015613cf257848901358255600182019150602085019450602081019050613ccd565b86831015613d0f5784890135613d0b601f891682613c21565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613d5c82613153565b9150613d6783613153565b9250828202613d7581613153565b91508282048414831517613d8c57613d8b613d25565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613dca82613153565b9150613dd583613153565b925082613de557613de4613d93565b5b828204905092915050565b7f416c726561647920436c61696d656420746865204e46540000000000000000005f82015250565b5f613e246017836130b3565b9150613e2f82613df0565b602082019050919050565b5f6020820190508181035f830152613e5181613e18565b9050919050565b5f613e6282613153565b9150613e6d83613153565b9250828201905080821115613e8557613e84613d25565b5b92915050565b7f416c6c204e46547320436c61696d65642e0000000000000000000000000000005f82015250565b5f613ebf6011836130b3565b9150613eca82613e8b565b602082019050919050565b5f6020820190508181035f830152613eec81613eb3565b9050919050565b7f45786365656473204d6178696d756d20537570706c79000000000000000000005f82015250565b5f613f276016836130b3565b9150613f3282613ef3565b602082019050919050565b5f6020820190508181035f830152613f5481613f1b565b9050919050565b5f8160601b9050919050565b5f613f7182613f5b565b9050919050565b5f613f8282613f67565b9050919050565b613f9a613f95826131d0565b613f78565b82525050565b5f819050919050565b613fba613fb582613153565b613fa0565b82525050565b5f613fcb8285613f89565b601482019150613fdb8284613fa9565b6020820191508190509392505050565b7f496e76616c69642057686974656c6973742050726f6f662e00000000000000005f82015250565b5f61401f6018836130b3565b915061402a82613feb565b602082019050919050565b5f6020820190508181035f83015261404c81614013565b9050919050565b5f81905092915050565b50565b5f61406b5f83614053565b91506140768261405d565b5f82019050919050565b5f61408a82614060565b9150819050919050565b7f45786365656473204d6178696d756d20537570706c792e0000000000000000005f82015250565b5f6140c86017836130b3565b91506140d382614094565b602082019050919050565b5f6020820190508181035f8301526140f5816140bc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f614156602f836130b3565b9150614161826140fc565b604082019050919050565b5f6020820190508181035f8301526141838161414a565b9050919050565b5f81905092915050565b5f61419e826130a9565b6141a8818561418a565b93506141b88185602086016130c3565b80840191505092915050565b5f81546141d081613a81565b6141da818661418a565b9450600182165f81146141f457600181146142095761423b565b60ff198316865281151582028601935061423b565b61421285613abb565b5f5b8381101561423357815481890152600182019150602081019050614214565b838801955050505b50505092915050565b5f61424f8286614194565b915061425b8285614194565b915061426782846141c4565b9150819050949350505050565b7f596f752063616e2075706461746520636c61696d20666f72206f6e6c792035305f8201527f3020757365727320696e206f6e65207472616e73616374696f6e2e0000000000602082015250565b5f6142ce603b836130b3565b91506142d982614274565b604082019050919050565b5f6020820190508181035f8301526142fb816142c2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b614338826130a9565b67ffffffffffffffff811115614351576143506135f4565b5b61435b8254613a81565b614366828285613bcf565b5f60209050601f831160018114614397575f8415614385578287015190505b61438f8582613c3d565b8655506143f6565b601f1984166143a586613abb565b5f5b828110156143cc578489015182556001820191506020850194506020810190506143a7565b868310156143e957848901516143e5601f891682613c21565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6144586026836130b3565b9150614463826143fe565b604082019050919050565b5f6020820190508181035f8301526144858161444c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6144c06020836130b3565b91506144cb8261448c565b602082019050919050565b5f6020820190508181035f8301526144ed816144b4565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f61454e602a836130b3565b9150614559826144f4565b604082019050919050565b5f6020820190508181035f83015261457b81614542565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f6145b66019836130b3565b91506145c182614582565b602082019050919050565b5f6020820190508181035f8301526145e3816145aa565b9050919050565b5f6145f482613153565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361462657614625613d25565b5b600182019050919050565b5f61463b82613153565b915061464683613153565b925082820390508181111561465e5761465d613d25565b5b92915050565b5f61466e82613153565b915061467983613153565b92508261468957614688613d93565b5b828206905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6146b882614694565b6146c2818561469e565b93506146d28185602086016130c3565b6146db816130eb565b840191505092915050565b5f6080820190506146f95f8301876131e1565b61470660208301866131e1565b6147136040830185613271565b818103606083015261472581846146ae565b905095945050505050565b5f8151905061473e81613021565b92915050565b5f6020828403121561475957614758612fee565b5b5f61476684828501614730565b9150509291505056fea2646970667358221220396b01357fa294c21beaf639eaa8f612135f03ce9ecc9f111a43b84f6a98bb9664736f6c63430008180033

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

000000000000000000000000d6de78688cce125741e1ef5319256f58cf8fb49300000000000000000000000000000000000000000000000000000000000001f4

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0xd6dE78688cCE125741e1ef5319256F58cf8fb493
Arg [1] : _royaltyFraction (uint96): 500

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d6de78688cce125741e1ef5319256f58cf8fb493
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001f4


Deployed Bytecode Sourcemap

88135:8200:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89350:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48921:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55412:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94877:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88489:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92162:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44672:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95269:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24075:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;88285:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93146:591;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88442:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91004:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94140:183;;;;;;;;;;;;;:::i;:::-;;95660:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91902:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50314:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88405:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45856:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29053:103;;;;;;;;;;;;;:::i;:::-;;89847:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28405:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49097:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94483:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92705:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88361:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92913:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88658:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91292:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96059:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88606:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91643:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88317:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88528:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90097:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93750:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88704:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89961:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90711:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92529:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56361:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93024:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29311:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88563:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89350:274;89481:4;89523:38;89549:11;89523:25;:38::i;:::-;:93;;;;89578:38;89604:11;89578:25;:38::i;:::-;89523:93;89503:113;;89350:274;;;:::o;48921:100::-;48975:13;49008:5;49001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48921:100;:::o;55412:218::-;55488:7;55513:16;55521:7;55513;:16::i;:::-;55508:64;;55538:34;;;;;;;;;;;;;;55508:64;55592:15;:24;55608:7;55592:24;;;;;;;;;;;:30;;;;;;;;;;;;55585:37;;55412:218;;;:::o;94877:232::-;95017:8;95027:24;;;;;;;;;;;86718:7;86715:925;;;86847:22;86841:4;86834:36;86948:9;86942:4;86935:23;87100:8;87096:2;87092:17;87088:2;87084:26;87078:4;87071:40;87287:4;87281;87275;87269;87242:25;87235:5;87224:68;87214:290;;87416:16;87410:4;87404;87389:44;87468:16;87462:4;87455:30;87214:290;87623:1;87617:4;87610:15;86715:925;95069:32:::1;95083:8;95093:7;95069:13;:32::i;:::-;94877:232:::0;;;;:::o;88489:32::-;;;;:::o;92162:224::-;89228:14;:23;89243:7;;;;89228:23;;;;;;;;;;;;;;;;;;;;;;;;;;;89224:52;;;89260:16;;;;;;;;;;;;;;89224:52;28291:13:::1;:11;:13::i;:::-;92297:1:::2;92271:14;92265:28;;;;;:::i;:::-;;;:33;92261:72;;92307:26;;;;;;;;;;;;;;92261:72;92363:15;;92346:14;:32;;;;;;;:::i;:::-;;92162:224:::0;;:::o;44672:323::-;44733:7;44961:15;:13;:15::i;:::-;44946:12;;44930:13;;:28;:46;44923:53;;44672:323;:::o;95269:231::-;95412:4;95418:24;;;;;;;;;;;84491:7;84488:1643;;;84704:8;84696:4;84692:2;84688:13;84684:2;84680:22;84677:36;84667:1449;;85019:22;85013:4;85006:36;85128:9;85122:4;85115:23;85221:8;85215:4;85208:22;85414:4;85408;85402;85396;85369:25;85362:5;85351:68;85341:306;;85551:16;85545:4;85539;85524:44;85607:16;85601:4;85594:30;85341:306;86095:1;86089:4;86082:15;84667:1449;84488:1643;95455:37:::1;95474:4;95480:2;95484:7;95455:18;:37::i;:::-;95269:231:::0;;;;;:::o;24075:442::-;24172:7;24181;24201:26;24230:17;:27;24248:8;24230:27;;;;;;;;;;;24201:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24302:1;24274:30;;:7;:16;;;:30;;;24270:92;;24331:19;24321:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24270:92;24374:21;24439:17;:15;:17::i;:::-;24398:58;;24412:7;:23;;;24399:36;;:10;:36;;;;:::i;:::-;24398:58;;;;:::i;:::-;24374:82;;24477:7;:16;;;24495:13;24469:40;;;;;;24075:442;;;;;:::o;88285:25::-;;;;:::o;93146:591::-;93260:5;93237:28;;:7;:19;93245:10;93237:19;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;93229:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;93337:11;;93327:6;93312:12;;:21;;;;:::i;:::-;:36;;93304:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;88479:3;93405:6;93388:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;93380:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;93464:12;93506:10;93518:6;93489:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93479:47;;;;;;93464:62;;93545:49;93564:11;;93545:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93577:10;;93589:4;93545:18;:49::i;:::-;93537:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;93634:25;93640:10;93652:6;93634:5;:25::i;:::-;93686:6;93670:12;;:22;;;;;;;:::i;:::-;;;;;;;;93725:4;93703:7;:19;93711:10;93703:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;93218:519;93146:591;;;:::o;88442:40::-;88479:3;88442:40;:::o;91004:96::-;28291:13;:11;:13::i;:::-;91088:4:::1;91067:14;:18;91082:2;91067:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;91004:96:::0;:::o;94140:183::-;28291:13;:11;:13::i;:::-;94191:12:::1;94217:10;94209:24;;94241:21;94209:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94190:77;;;94283:7;94278:37;;94299:16;;;;;;;;;;;;;;94278:37;94179:144;94140:183::o:0;95660:239::-;95807:4;95813:24;;;;;;;;;;;84491:7;84488:1643;;;84704:8;84696:4;84692:2;84688:13;84684:2;84680:22;84677:36;84667:1449;;85019:22;85013:4;85006:36;85128:9;85122:4;85115:23;85221:8;85215:4;85208:22;85414:4;85408;85402;85396;85369:25;85362:5;85351:68;85341:306;;85551:16;85545:4;85539;85524:44;85607:16;85601:4;85594:30;85341:306;86095:1;86089:4;86082:15;84667:1449;84488:1643;95850:41:::1;95873:4;95879:2;95883:7;95850:22;:41::i;:::-;95660:239:::0;;;;;:::o;91902:123::-;89228:14;:23;89243:7;;;;89228:23;;;;;;;;;;;;;;;;;;;;;;;;;;;89224:52;;;89260:16;;;;;;;;;;;;;;89224:52;28291:13:::1;:11;:13::i;:::-;92006:11:::2;;91990:13;:27;;;;;;;:::i;:::-;;91902:123:::0;;:::o;50314:152::-;50386:7;50429:27;50448:7;50429:18;:27::i;:::-;50406:52;;50314:152;;;:::o;88405:30::-;;;;:::o;45856:233::-;45928:7;45969:1;45952:19;;:5;:19;;;45948:60;;45980:28;;;;;;;;;;;;;;45948:60;40015:13;46026:18;:25;46045:5;46026:25;;;;;;;;;;;;;;;;:55;46019:62;;45856:233;;;:::o;29053:103::-;28291:13;:11;:13::i;:::-;29118:30:::1;29145:1;29118:18;:30::i;:::-;29053:103::o:0;89847:106::-;28291:13;:11;:13::i;:::-;89934:11:::1;89921:10;:24;;;;89847:106:::0;:::o;28405:87::-;28451:7;28478:6;;;;;;;;;;;28471:13;;28405:87;:::o;49097:104::-;49153:13;49186:7;49179:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49097:104;:::o;94483:234::-;94614:8;94624:24;;;;;;;;;;;86718:7;86715:925;;;86847:22;86841:4;86834:36;86948:9;86942:4;86935:23;87100:8;87096:2;87092:17;87088:2;87084:26;87078:4;87071:40;87287:4;87281;87275;87269;87242:25;87235:5;87224:68;87214:290;;87416:16;87410:4;87404;87389:44;87468:16;87462:4;87455:30;87214:290;87623:1;87617:4;87610:15;86715:925;94666:43:::1;94690:8;94700;94666:23;:43::i;:::-;94483:234:::0;;;;:::o;92705:200::-;89228:14;:23;89243:7;;;;89228:23;;;;;;;;;;;;;;;;;;;;;;;;;;;89224:52;;;89260:16;;;;;;;;;;;;;;89224:52;28291:13:::1;:11;:13::i;:::-;88479:3:::2;92809:11;;92792:14;:12;:14::i;:::-;:28;;;;:::i;:::-;:43;;92784:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;92875:22;92881:2;92885:11;;92875:5;:22::i;:::-;92705:200:::0;:::o;88361:37::-;88396:2;88361:37;:::o;92913:103::-;28291:13;:11;:13::i;:::-;93005:3:::1;92991:11;:17;;;;92913:103:::0;:::o;88658:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;91292:128::-;89228:14;:23;89243:7;;;;89228:23;;;;;;;;;;;;;;;;;;;;;;;;;;;89224:52;;;89260:16;;;;;;;;;;;;;;89224:52;28291:13:::1;:11;:13::i;:::-;91407:5:::2;91380:24;;:32;;;;;;;;;;;;;;;;;;91292:128:::0;:::o;96059:273::-;96234:4;96240:24;;;;;;;;;;;84491:7;84488:1643;;;84704:8;84696:4;84692:2;84688:13;84684:2;84680:22;84677:36;84667:1449;;85019:22;85013:4;85006:36;85128:9;85122:4;85115:23;85221:8;85215:4;85208:22;85414:4;85408;85402;85396;85369:25;85362:5;85351:68;85341:306;;85551:16;85545:4;85539;85524:44;85607:16;85601:4;85594:30;85341:306;86095:1;86089:4;86082:15;84667:1449;84488:1643;96277:47:::1;96300:4;96306:2;96310:7;96319:4;96277:22;:47::i;:::-;96059:273:::0;;;;;;:::o;88606:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;91643:147::-;28291:13;:11;:13::i;:::-;91737:45:::1;91756:8;91766:15;91737:18;:45::i;:::-;91643:147:::0;;:::o;88317:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88528:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;90097:446::-;90195:13;90238:16;90246:7;90238;:16::i;:::-;90222:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;90340:28;90371:10;:8;:10::i;:::-;90340:41;;90426:1;90401:14;90395:28;:32;:140;;;;;;;;;;;;;;;;;90463:14;90479:25;90496:7;90479:16;:25::i;:::-;90506:13;90446:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90395:140;90388:147;;;90097:446;;;:::o;93750:304::-;28291:13;:11;:13::i;:::-;93876:3:::1;93861:5;:12;:18;93853:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;93957:6;93953:92;93969:5;:12;93967:1;:14;93953:92;;;94022:11;94002:7;:17;94010:5;94016:1;94010:8;;;;;;;;:::i;:::-;;;;;;;;94002:17;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;93983:3;;;;;;;93953:92;;;;93750:304:::0;;:::o;88704:31::-;;;;:::o;89961:128::-;28291:13;:11;:13::i;:::-;90064:17:::1;90048:13;:33;;;;;;:::i;:::-;;89961:128:::0;:::o;90711:119::-;90773:7;90800:22;90814:7;90800:13;:22::i;:::-;90793:29;;90711:119;;;:::o;92529:168::-;89228:14;:23;89243:7;;;;89228:23;;;;;;;;;;;;;;;;;;;;;;;;;;;89224:52;;;89260:16;;;;;;;;;;;;;;89224:52;28291:13:::1;:11;:13::i;:::-;88396:2:::2;92601:14;:12;:14::i;:::-;:26;92597:62;;92636:23;;;;;;;;;;;;;;92597:62;92670:19;92676:2;88396;92670:5;:19::i;:::-;92529:168:::0;:::o;56361:164::-;56458:4;56482:18;:25;56501:5;56482:25;;;;;;;;;;;;;;;:35;56508:8;56482:35;;;;;;;;;;;;;;;;;;;;;;;;;56475:42;;56361:164;;;;:::o;93024:113::-;28291:13;:11;:13::i;:::-;93117:12:::1;93103:11;:26;;;;93024:113:::0;:::o;29311:201::-;28291:13;:11;:13::i;:::-;29420:1:::1;29400:22;;:8;:22;;::::0;29392:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29476:28;29495:8;29476:18;:28::i;:::-;29311:201:::0;:::o;88563:36::-;;;;;;;;;;;;;:::o;48019:639::-;48104:4;48443:10;48428:25;;:11;:25;;;;:102;;;;48520:10;48505:25;;:11;:25;;;;48428:102;:179;;;;48597:10;48582:25;;:11;:25;;;;48428:179;48408:199;;48019:639;;;:::o;23805:215::-;23907:4;23946:26;23931:41;;;:11;:41;;;;:81;;;;23976:36;24000:11;23976:23;:36::i;:::-;23931:81;23924:88;;23805:215;;;:::o;56783:282::-;56848:4;56904:7;56885:15;:13;:15::i;:::-;:26;;:66;;;;;56938:13;;56928:7;:23;56885:66;:153;;;;;57037:1;40791:8;56989:17;:26;57007:7;56989:26;;;;;;;;;;;;:44;:49;56885:153;56865:173;;56783:282;;;:::o;54845:408::-;54934:13;54950:16;54958:7;54950;:16::i;:::-;54934:32;;55006:5;54983:28;;:19;:17;:19::i;:::-;:28;;;54979:175;;55031:44;55048:5;55055:19;:17;:19::i;:::-;55031:16;:44::i;:::-;55026:128;;55103:35;;;;;;;;;;;;;;55026:128;54979:175;55199:2;55166:15;:24;55182:7;55166:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;55237:7;55233:2;55217:28;;55226:5;55217:28;;;;;;;;;;;;54923:330;54845:408;;:::o;28570:132::-;28645:12;:10;:12::i;:::-;28634:23;;:7;:5;:7::i;:::-;:23;;;28626:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28570:132::o;44188:92::-;44244:7;44271:1;44264:8;;44188:92;:::o;59051:2825::-;59193:27;59223;59242:7;59223:18;:27::i;:::-;59193:57;;59308:4;59267:45;;59283:19;59267:45;;;59263:86;;59321:28;;;;;;;;;;;;;;59263:86;59363:27;59392:23;59419:35;59446:7;59419:26;:35::i;:::-;59362:92;;;;59554:68;59579:15;59596:4;59602:19;:17;:19::i;:::-;59554:24;:68::i;:::-;59549:180;;59642:43;59659:4;59665:19;:17;:19::i;:::-;59642:16;:43::i;:::-;59637:92;;59694:35;;;;;;;;;;;;;;59637:92;59549:180;59760:1;59746:16;;:2;:16;;;59742:52;;59771:23;;;;;;;;;;;;;;59742:52;59807:43;59829:4;59835:2;59839:7;59848:1;59807:21;:43::i;:::-;59943:15;59940:160;;;60083:1;60062:19;60055:30;59940:160;60480:18;:24;60499:4;60480:24;;;;;;;;;;;;;;;;60478:26;;;;;;;;;;;;60549:18;:22;60568:2;60549:22;;;;;;;;;;;;;;;;60547:24;;;;;;;;;;;60871:146;60908:2;60957:45;60972:4;60978:2;60982:19;60957:14;:45::i;:::-;41071:8;60929:73;60871:18;:146::i;:::-;60842:17;:26;60860:7;60842:26;;;;;;;;;;;:175;;;;61188:1;41071:8;61137:19;:47;:52;61133:627;;61210:19;61242:1;61232:7;:11;61210:33;;61399:1;61365:17;:30;61383:11;61365:30;;;;;;;;;;;;:35;61361:384;;61503:13;;61488:11;:28;61484:242;;61683:19;61650:17;:30;61668:11;61650:30;;;;;;;;;;;:52;;;;61484:242;61361:384;61191:569;61133:627;61807:7;61803:2;61788:27;;61797:4;61788:27;;;;;;;;;;;;61826:42;61847:4;61853:2;61857:7;61866:1;61826:20;:42::i;:::-;59182:2694;;;59051:2825;;;:::o;24799:97::-;24857:6;24883:5;24876:12;;24799:97;:::o;45093:296::-;45148:7;45355:15;:13;:15::i;:::-;45339:13;;:31;45332:38;;45093:296;:::o;1096:156::-;1187:4;1240;1211:25;1224:5;1231:4;1211:12;:25::i;:::-;:33;1204:40;;1096:156;;;;;:::o;66432:2966::-;66505:20;66528:13;;66505:36;;66568:1;66556:8;:13;66552:44;;66578:18;;;;;;;;;;;;;;66552:44;66609:61;66639:1;66643:2;66647:12;66661:8;66609:21;:61::i;:::-;67153:1;40153:2;67123:1;:26;;67122:32;67110:8;:45;67084:18;:22;67103:2;67084:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;67432:139;67469:2;67523:33;67546:1;67550:2;67554:1;67523:14;:33::i;:::-;67490:30;67511:8;67490:20;:30::i;:::-;:66;67432:18;:139::i;:::-;67398:17;:31;67416:12;67398:31;;;;;;;;;;;:173;;;;67588:16;67619:11;67648:8;67633:12;:23;67619:37;;68169:16;68165:2;68161:25;68149:37;;68541:12;68501:8;68460:1;68398:25;68339:1;68278;68251:335;68912:1;68898:12;68894:20;68852:346;68953:3;68944:7;68941:16;68852:346;;69171:7;69161:8;69158:1;69131:25;69128:1;69125;69120:59;69006:1;68997:7;68993:15;68982:26;;68852:346;;;68856:77;69243:1;69231:8;:13;69227:45;;69253:19;;;;;;;;;;;;;;69227:45;69305:3;69289:13;:19;;;;66858:2462;;69330:60;69359:1;69363:2;69367:12;69381:8;69330:20;:60::i;:::-;66494:2904;66432:2966;;:::o;61972:193::-;62118:39;62135:4;62141:2;62145:7;62118:39;;;;;;;;;;;;:16;:39::i;:::-;61972:193;;;:::o;51469:1275::-;51536:7;51556:12;51571:7;51556:22;;51639:4;51620:15;:13;:15::i;:::-;:23;51616:1061;;51673:13;;51666:4;:20;51662:1015;;;51711:14;51728:17;:23;51746:4;51728:23;;;;;;;;;;;;51711:40;;51845:1;40791:8;51817:6;:24;:29;51813:845;;52482:113;52499:1;52489:6;:11;52482:113;;52542:17;:25;52560:6;;;;;;;52542:25;;;;;;;;;;;;52533:34;;52482:113;;;52628:6;52621:13;;;;;;51813:845;51688:989;51662:1015;51616:1061;52705:31;;;;;;;;;;;;;;51469:1275;;;;:::o;29672:191::-;29746:16;29765:6;;;;;;;;;;;29746:25;;29791:8;29782:6;;:17;;;;;;;;;;;;;;;;;;29846:8;29815:40;;29836:8;29815:40;;;;;;;;;;;;29735:128;29672:191;:::o;55970:234::-;56117:8;56065:18;:39;56084:19;:17;:19::i;:::-;56065:39;;;;;;;;;;;;;;;:49;56105:8;56065:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;56177:8;56141:55;;56156:19;:17;:19::i;:::-;56141:55;;;56187:8;56141:55;;;;;;:::i;:::-;;;;;;;;55970:234;;:::o;62763:407::-;62938:31;62951:4;62957:2;62961:7;62938:12;:31::i;:::-;63002:1;62984:2;:14;;;:19;62980:183;;63023:56;63054:4;63060:2;63064:7;63073:5;63023:30;:56::i;:::-;63018:145;;63107:40;;;;;;;;;;;;;;63018:145;62980:183;62763:407;;;;:::o;25167:332::-;25286:17;:15;:17::i;:::-;25270:33;;:12;:33;;;;25262:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;25389:1;25369:22;;:8;:22;;;25361:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;25456:35;;;;;;;;25468:8;25456:35;;;;;;25478:12;25456:35;;;;;25434:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25167:332;;:::o;89725:114::-;89785:13;89818;89811:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89725:114;:::o;9807:723::-;9863:13;10093:1;10084:5;:10;10080:53;;10111:10;;;;;;;;;;;;;;;;;;;;;10080:53;10143:12;10158:5;10143:20;;10174:14;10199:78;10214:1;10206:4;:9;10199:78;;10232:8;;;;;:::i;:::-;;;;10263:2;10255:10;;;;;:::i;:::-;;;10199:78;;;10287:19;10319:6;10309:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10287:39;;10337:154;10353:1;10344:5;:10;10337:154;;10381:1;10371:11;;;;;:::i;:::-;;;10448:2;10440:5;:10;;;;:::i;:::-;10427:2;:24;;;;:::i;:::-;10414:39;;10397:6;10404;10397:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10477:2;10468:11;;;;;:::i;:::-;;;10337:154;;;10515:6;10501:21;;;;;9807:723;;;;:::o;46171:178::-;46232:7;40015:13;40153:2;46260:18;:25;46279:5;46260:25;;;;;;;;;;;;;;;;:50;;46259:82;46252:89;;46171:178;;;:::o;21695:157::-;21780:4;21819:25;21804:40;;;:11;:40;;;;21797:47;;21695:157;;;:::o;79091:105::-;79151:7;79178:10;79171:17;;79091:105;:::o;27112:98::-;27165:7;27192:10;27185:17;;27112:98;:::o;57946:485::-;58048:27;58077:23;58118:38;58159:15;:24;58175:7;58159:24;;;;;;;;;;;58118:65;;58336:18;58313:41;;58393:19;58387:26;58368:45;;58298:126;57946:485;;;:::o;57174:659::-;57323:11;57488:16;57481:5;57477:28;57468:37;;57648:16;57637:9;57633:32;57620:45;;57798:15;57787:9;57784:30;57776:5;57765:9;57762:20;57759:56;57749:66;;57174:659;;;;;:::o;63832:159::-;;;;;:::o;78400:311::-;78535:7;78555:16;41195:3;78581:19;:41;;78555:68;;41195:3;78649:31;78660:4;78666:2;78670:9;78649:10;:31::i;:::-;78641:40;;:62;;78634:69;;;78400:311;;;;;:::o;53292:450::-;53372:14;53540:16;53533:5;53529:28;53520:37;;53717:5;53703:11;53678:23;53674:41;53671:52;53664:5;53661:63;53651:73;;53292:450;;;;:::o;64656:158::-;;;;;:::o;1895:296::-;1978:7;1998:20;2021:4;1998:27;;2041:9;2036:118;2060:5;:12;2056:1;:16;2036:118;;;2109:33;2119:12;2133:5;2139:1;2133:8;;;;;;;;:::i;:::-;;;;;;;;2109:9;:33::i;:::-;2094:48;;2074:3;;;;;;;2036:118;;;;2171:12;2164:19;;;1895:296;;;;:::o;53844:324::-;53914:14;54147:1;54137:8;54134:15;54108:24;54104:46;54094:56;;53844:324;;;:::o;65254:716::-;65417:4;65463:2;65438:45;;;65484:19;:17;:19::i;:::-;65505:4;65511:7;65520:5;65438:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;65434:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65738:1;65721:6;:13;:18;65717:235;;65767:40;;;;;;;;;;;;;;65717:235;65910:6;65904:13;65895:6;65891:2;65887:15;65880:38;65434:529;65607:54;;;65597:64;;;:6;:64;;;;65590:71;;;65254:716;;;;;;:::o;78101:147::-;78238:6;78101:147;;;;;:::o;9099:149::-;9162:7;9193:1;9189;:5;:51;;9220:20;9235:1;9238;9220:14;:20::i;:::-;9189:51;;;9197:20;9212:1;9215;9197:14;:20::i;:::-;9189:51;9182:58;;9099:149;;;;:::o;9256:268::-;9324:13;9431:1;9425:4;9418:15;9460:1;9454:4;9447:15;9501:4;9495;9485:21;9476:30;;9256:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:117;5597:1;5594;5587:12;5625:553;5683:8;5693:6;5743:3;5736:4;5728:6;5724:17;5720:27;5710:122;;5751:79;;:::i;:::-;5710:122;5864:6;5851:20;5841:30;;5894:18;5886:6;5883:30;5880:117;;;5916:79;;:::i;:::-;5880:117;6030:4;6022:6;6018:17;6006:29;;6084:3;6076:4;6068:6;6064:17;6054:8;6050:32;6047:41;6044:128;;;6091:79;;:::i;:::-;6044:128;5625:553;;;;;:::o;6184:529::-;6255:6;6263;6312:2;6300:9;6291:7;6287:23;6283:32;6280:119;;;6318:79;;:::i;:::-;6280:119;6466:1;6455:9;6451:17;6438:31;6496:18;6488:6;6485:30;6482:117;;;6518:79;;:::i;:::-;6482:117;6631:65;6688:7;6679:6;6668:9;6664:22;6631:65;:::i;:::-;6613:83;;;;6409:297;6184:529;;;;;:::o;6719:619::-;6796:6;6804;6812;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7114:2;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7085:118;7242:2;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7213:118;6719:619;;;;;:::o;7344:474::-;7412:6;7420;7469:2;7457:9;7448:7;7444:23;7440:32;7437:119;;;7475:79;;:::i;:::-;7437:119;7595:1;7620:53;7665:7;7656:6;7645:9;7641:22;7620:53;:::i;:::-;7610:63;;7566:117;7722:2;7748:53;7793:7;7784:6;7773:9;7769:22;7748:53;:::i;:::-;7738:63;;7693:118;7344:474;;;;;:::o;7824:332::-;7945:4;7983:2;7972:9;7968:18;7960:26;;7996:71;8064:1;8053:9;8049:17;8040:6;7996:71;:::i;:::-;8077:72;8145:2;8134:9;8130:18;8121:6;8077:72;:::i;:::-;7824:332;;;;;:::o;8162:77::-;8199:7;8228:5;8217:16;;8162:77;;;:::o;8245:118::-;8332:24;8350:5;8332:24;:::i;:::-;8327:3;8320:37;8245:118;;:::o;8369:222::-;8462:4;8500:2;8489:9;8485:18;8477:26;;8513:71;8581:1;8570:9;8566:17;8557:6;8513:71;:::i;:::-;8369:222;;;;:::o;8614:568::-;8687:8;8697:6;8747:3;8740:4;8732:6;8728:17;8724:27;8714:122;;8755:79;;:::i;:::-;8714:122;8868:6;8855:20;8845:30;;8898:18;8890:6;8887:30;8884:117;;;8920:79;;:::i;:::-;8884:117;9034:4;9026:6;9022:17;9010:29;;9088:3;9080:4;9072:6;9068:17;9058:8;9054:32;9051:41;9048:128;;;9095:79;;:::i;:::-;9048:128;8614:568;;;;;:::o;9188:704::-;9283:6;9291;9299;9348:2;9336:9;9327:7;9323:23;9319:32;9316:119;;;9354:79;;:::i;:::-;9316:119;9474:1;9499:53;9544:7;9535:6;9524:9;9520:22;9499:53;:::i;:::-;9489:63;;9445:117;9629:2;9618:9;9614:18;9601:32;9660:18;9652:6;9649:30;9646:117;;;9682:79;;:::i;:::-;9646:117;9795:80;9867:7;9858:6;9847:9;9843:22;9795:80;:::i;:::-;9777:98;;;;9572:313;9188:704;;;;;:::o;9898:329::-;9957:6;10006:2;9994:9;9985:7;9981:23;9977:32;9974:119;;;10012:79;;:::i;:::-;9974:119;10132:1;10157:53;10202:7;10193:6;10182:9;10178:22;10157:53;:::i;:::-;10147:63;;10103:117;9898:329;;;;:::o;10233:122::-;10306:24;10324:5;10306:24;:::i;:::-;10299:5;10296:35;10286:63;;10345:1;10342;10335:12;10286:63;10233:122;:::o;10361:139::-;10407:5;10445:6;10432:20;10423:29;;10461:33;10488:5;10461:33;:::i;:::-;10361:139;;;;:::o;10506:329::-;10565:6;10614:2;10602:9;10593:7;10589:23;10585:32;10582:119;;;10620:79;;:::i;:::-;10582:119;10740:1;10765:53;10810:7;10801:6;10790:9;10786:22;10765:53;:::i;:::-;10755:63;;10711:117;10506:329;;;;:::o;10841:116::-;10911:21;10926:5;10911:21;:::i;:::-;10904:5;10901:32;10891:60;;10947:1;10944;10937:12;10891:60;10841:116;:::o;10963:133::-;11006:5;11044:6;11031:20;11022:29;;11060:30;11084:5;11060:30;:::i;:::-;10963:133;;;;:::o;11102:468::-;11167:6;11175;11224:2;11212:9;11203:7;11199:23;11195:32;11192:119;;;11230:79;;:::i;:::-;11192:119;11350:1;11375:53;11420:7;11411:6;11400:9;11396:22;11375:53;:::i;:::-;11365:63;;11321:117;11477:2;11503:50;11545:7;11536:6;11525:9;11521:22;11503:50;:::i;:::-;11493:60;;11448:115;11102:468;;;;;:::o;11576:323::-;11632:6;11681:2;11669:9;11660:7;11656:23;11652:32;11649:119;;;11687:79;;:::i;:::-;11649:119;11807:1;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11778:114;11576:323;;;;:::o;11905:117::-;12014:1;12011;12004:12;12028:180;12076:77;12073:1;12066:88;12173:4;12170:1;12163:15;12197:4;12194:1;12187:15;12214:281;12297:27;12319:4;12297:27;:::i;:::-;12289:6;12285:40;12427:6;12415:10;12412:22;12391:18;12379:10;12376:34;12373:62;12370:88;;;12438:18;;:::i;:::-;12370:88;12478:10;12474:2;12467:22;12257:238;12214:281;;:::o;12501:129::-;12535:6;12562:20;;:::i;:::-;12552:30;;12591:33;12619:4;12611:6;12591:33;:::i;:::-;12501:129;;;:::o;12636:307::-;12697:4;12787:18;12779:6;12776:30;12773:56;;;12809:18;;:::i;:::-;12773:56;12847:29;12869:6;12847:29;:::i;:::-;12839:37;;12931:4;12925;12921:15;12913:23;;12636:307;;;:::o;12949:146::-;13046:6;13041:3;13036;13023:30;13087:1;13078:6;13073:3;13069:16;13062:27;12949:146;;;:::o;13101:423::-;13178:5;13203:65;13219:48;13260:6;13219:48;:::i;:::-;13203:65;:::i;:::-;13194:74;;13291:6;13284:5;13277:21;13329:4;13322:5;13318:16;13367:3;13358:6;13353:3;13349:16;13346:25;13343:112;;;13374:79;;:::i;:::-;13343:112;13464:54;13511:6;13506:3;13501;13464:54;:::i;:::-;13184:340;13101:423;;;;;:::o;13543:338::-;13598:5;13647:3;13640:4;13632:6;13628:17;13624:27;13614:122;;13655:79;;:::i;:::-;13614:122;13772:6;13759:20;13797:78;13871:3;13863:6;13856:4;13848:6;13844:17;13797:78;:::i;:::-;13788:87;;13604:277;13543:338;;;;:::o;13887:943::-;13982:6;13990;13998;14006;14055:3;14043:9;14034:7;14030:23;14026:33;14023:120;;;14062:79;;:::i;:::-;14023:120;14182:1;14207:53;14252:7;14243:6;14232:9;14228:22;14207:53;:::i;:::-;14197:63;;14153:117;14309:2;14335:53;14380:7;14371:6;14360:9;14356:22;14335:53;:::i;:::-;14325:63;;14280:118;14437:2;14463:53;14508:7;14499:6;14488:9;14484:22;14463:53;:::i;:::-;14453:63;;14408:118;14593:2;14582:9;14578:18;14565:32;14624:18;14616:6;14613:30;14610:117;;;14646:79;;:::i;:::-;14610:117;14751:62;14805:7;14796:6;14785:9;14781:22;14751:62;:::i;:::-;14741:72;;14536:287;13887:943;;;;;;;:::o;14836:109::-;14872:7;14912:26;14905:5;14901:38;14890:49;;14836:109;;;:::o;14951:120::-;15023:23;15040:5;15023:23;:::i;:::-;15016:5;15013:34;15003:62;;15061:1;15058;15051:12;15003:62;14951:120;:::o;15077:137::-;15122:5;15160:6;15147:20;15138:29;;15176:32;15202:5;15176:32;:::i;:::-;15077:137;;;;:::o;15220:472::-;15287:6;15295;15344:2;15332:9;15323:7;15319:23;15315:32;15312:119;;;15350:79;;:::i;:::-;15312:119;15470:1;15495:53;15540:7;15531:6;15520:9;15516:22;15495:53;:::i;:::-;15485:63;;15441:117;15597:2;15623:52;15667:7;15658:6;15647:9;15643:22;15623:52;:::i;:::-;15613:62;;15568:117;15220:472;;;;;:::o;15698:311::-;15775:4;15865:18;15857:6;15854:30;15851:56;;;15887:18;;:::i;:::-;15851:56;15937:4;15929:6;15925:17;15917:25;;15997:4;15991;15987:15;15979:23;;15698:311;;;:::o;16032:710::-;16128:5;16153:81;16169:64;16226:6;16169:64;:::i;:::-;16153:81;:::i;:::-;16144:90;;16254:5;16283:6;16276:5;16269:21;16317:4;16310:5;16306:16;16299:23;;16370:4;16362:6;16358:17;16350:6;16346:30;16399:3;16391:6;16388:15;16385:122;;;16418:79;;:::i;:::-;16385:122;16533:6;16516:220;16550:6;16545:3;16542:15;16516:220;;;16625:3;16654:37;16687:3;16675:10;16654:37;:::i;:::-;16649:3;16642:50;16721:4;16716:3;16712:14;16705:21;;16592:144;16576:4;16571:3;16567:14;16560:21;;16516:220;;;16520:21;16134:608;;16032:710;;;;;:::o;16765:370::-;16836:5;16885:3;16878:4;16870:6;16866:17;16862:27;16852:122;;16893:79;;:::i;:::-;16852:122;17010:6;16997:20;17035:94;17125:3;17117:6;17110:4;17102:6;17098:17;17035:94;:::i;:::-;17026:103;;16842:293;16765:370;;;;:::o;17141:678::-;17231:6;17239;17288:2;17276:9;17267:7;17263:23;17259:32;17256:119;;;17294:79;;:::i;:::-;17256:119;17442:1;17431:9;17427:17;17414:31;17472:18;17464:6;17461:30;17458:117;;;17494:79;;:::i;:::-;17458:117;17599:78;17669:7;17660:6;17649:9;17645:22;17599:78;:::i;:::-;17589:88;;17385:302;17726:2;17752:50;17794:7;17785:6;17774:9;17770:22;17752:50;:::i;:::-;17742:60;;17697:115;17141:678;;;;;:::o;17825:308::-;17887:4;17977:18;17969:6;17966:30;17963:56;;;17999:18;;:::i;:::-;17963:56;18037:29;18059:6;18037:29;:::i;:::-;18029:37;;18121:4;18115;18111:15;18103:23;;17825:308;;;:::o;18139:425::-;18217:5;18242:66;18258:49;18300:6;18258:49;:::i;:::-;18242:66;:::i;:::-;18233:75;;18331:6;18324:5;18317:21;18369:4;18362:5;18358:16;18407:3;18398:6;18393:3;18389:16;18386:25;18383:112;;;18414:79;;:::i;:::-;18383:112;18504:54;18551:6;18546:3;18541;18504:54;:::i;:::-;18223:341;18139:425;;;;;:::o;18584:340::-;18640:5;18689:3;18682:4;18674:6;18670:17;18666:27;18656:122;;18697:79;;:::i;:::-;18656:122;18814:6;18801:20;18839:79;18914:3;18906:6;18899:4;18891:6;18887:17;18839:79;:::i;:::-;18830:88;;18646:278;18584:340;;;;:::o;18930:509::-;18999:6;19048:2;19036:9;19027:7;19023:23;19019:32;19016:119;;;19054:79;;:::i;:::-;19016:119;19202:1;19191:9;19187:17;19174:31;19232:18;19224:6;19221:30;19218:117;;;19254:79;;:::i;:::-;19218:117;19359:63;19414:7;19405:6;19394:9;19390:22;19359:63;:::i;:::-;19349:73;;19145:287;18930:509;;;;:::o;19445:474::-;19513:6;19521;19570:2;19558:9;19549:7;19545:23;19541:32;19538:119;;;19576:79;;:::i;:::-;19538:119;19696:1;19721:53;19766:7;19757:6;19746:9;19742:22;19721:53;:::i;:::-;19711:63;;19667:117;19823:2;19849:53;19894:7;19885:6;19874:9;19870:22;19849:53;:::i;:::-;19839:63;;19794:118;19445:474;;;;;:::o;19925:180::-;19973:77;19970:1;19963:88;20070:4;20067:1;20060:15;20094:4;20091:1;20084:15;20111:320;20155:6;20192:1;20186:4;20182:12;20172:22;;20239:1;20233:4;20229:12;20260:18;20250:81;;20316:4;20308:6;20304:17;20294:27;;20250:81;20378:2;20370:6;20367:14;20347:18;20344:38;20341:84;;20397:18;;:::i;:::-;20341:84;20162:269;20111:320;;;:::o;20437:97::-;20496:6;20524:3;20514:13;;20437:97;;;;:::o;20540:141::-;20589:4;20612:3;20604:11;;20635:3;20632:1;20625:14;20669:4;20666:1;20656:18;20648:26;;20540:141;;;:::o;20687:93::-;20724:6;20771:2;20766;20759:5;20755:14;20751:23;20741:33;;20687:93;;;:::o;20786:107::-;20830:8;20880:5;20874:4;20870:16;20849:37;;20786:107;;;;:::o;20899:393::-;20968:6;21018:1;21006:10;21002:18;21041:97;21071:66;21060:9;21041:97;:::i;:::-;21159:39;21189:8;21178:9;21159:39;:::i;:::-;21147:51;;21231:4;21227:9;21220:5;21216:21;21207:30;;21280:4;21270:8;21266:19;21259:5;21256:30;21246:40;;20975:317;;20899:393;;;;;:::o;21298:60::-;21326:3;21347:5;21340:12;;21298:60;;;:::o;21364:142::-;21414:9;21447:53;21465:34;21474:24;21492:5;21474:24;:::i;:::-;21465:34;:::i;:::-;21447:53;:::i;:::-;21434:66;;21364:142;;;:::o;21512:75::-;21555:3;21576:5;21569:12;;21512:75;;;:::o;21593:269::-;21703:39;21734:7;21703:39;:::i;:::-;21764:91;21813:41;21837:16;21813:41;:::i;:::-;21805:6;21798:4;21792:11;21764:91;:::i;:::-;21758:4;21751:105;21669:193;21593:269;;;:::o;21868:73::-;21913:3;21868:73;:::o;21947:189::-;22024:32;;:::i;:::-;22065:65;22123:6;22115;22109:4;22065:65;:::i;:::-;22000:136;21947:189;;:::o;22142:186::-;22202:120;22219:3;22212:5;22209:14;22202:120;;;22273:39;22310:1;22303:5;22273:39;:::i;:::-;22246:1;22239:5;22235:13;22226:22;;22202:120;;;22142:186;;:::o;22334:543::-;22435:2;22430:3;22427:11;22424:446;;;22469:38;22501:5;22469:38;:::i;:::-;22553:29;22571:10;22553:29;:::i;:::-;22543:8;22539:44;22736:2;22724:10;22721:18;22718:49;;;22757:8;22742:23;;22718:49;22780:80;22836:22;22854:3;22836:22;:::i;:::-;22826:8;22822:37;22809:11;22780:80;:::i;:::-;22439:431;;22424:446;22334:543;;;:::o;22883:117::-;22937:8;22987:5;22981:4;22977:16;22956:37;;22883:117;;;;:::o;23006:169::-;23050:6;23083:51;23131:1;23127:6;23119:5;23116:1;23112:13;23083:51;:::i;:::-;23079:56;23164:4;23158;23154:15;23144:25;;23057:118;23006:169;;;;:::o;23180:295::-;23256:4;23402:29;23427:3;23421:4;23402:29;:::i;:::-;23394:37;;23464:3;23461:1;23457:11;23451:4;23448:21;23440:29;;23180:295;;;;:::o;23480:1403::-;23604:44;23644:3;23639;23604:44;:::i;:::-;23713:18;23705:6;23702:30;23699:56;;;23735:18;;:::i;:::-;23699:56;23779:38;23811:4;23805:11;23779:38;:::i;:::-;23864:67;23924:6;23916;23910:4;23864:67;:::i;:::-;23958:1;23987:2;23979:6;23976:14;24004:1;23999:632;;;;24675:1;24692:6;24689:84;;;24748:9;24743:3;24739:19;24726:33;24717:42;;24689:84;24799:67;24859:6;24852:5;24799:67;:::i;:::-;24793:4;24786:81;24648:229;23969:908;;23999:632;24051:4;24047:9;24039:6;24035:22;24085:37;24117:4;24085:37;:::i;:::-;24144:1;24158:215;24172:7;24169:1;24166:14;24158:215;;;24258:9;24253:3;24249:19;24236:33;24228:6;24221:49;24309:1;24301:6;24297:14;24287:24;;24356:2;24345:9;24341:18;24328:31;;24195:4;24192:1;24188:12;24183:17;;24158:215;;;24401:6;24392:7;24389:19;24386:186;;;24466:9;24461:3;24457:19;24444:33;24509:48;24551:4;24543:6;24539:17;24528:9;24509:48;:::i;:::-;24501:6;24494:64;24409:163;24386:186;24618:1;24614;24606:6;24602:14;24598:22;24592:4;24585:36;24006:625;;;23969:908;;23579:1304;;;23480:1403;;;:::o;24889:180::-;24937:77;24934:1;24927:88;25034:4;25031:1;25024:15;25058:4;25055:1;25048:15;25075:410;25115:7;25138:20;25156:1;25138:20;:::i;:::-;25133:25;;25172:20;25190:1;25172:20;:::i;:::-;25167:25;;25227:1;25224;25220:9;25249:30;25267:11;25249:30;:::i;:::-;25238:41;;25428:1;25419:7;25415:15;25412:1;25409:22;25389:1;25382:9;25362:83;25339:139;;25458:18;;:::i;:::-;25339:139;25123:362;25075:410;;;;:::o;25491:180::-;25539:77;25536:1;25529:88;25636:4;25633:1;25626:15;25660:4;25657:1;25650:15;25677:185;25717:1;25734:20;25752:1;25734:20;:::i;:::-;25729:25;;25768:20;25786:1;25768:20;:::i;:::-;25763:25;;25807:1;25797:35;;25812:18;;:::i;:::-;25797:35;25854:1;25851;25847:9;25842:14;;25677:185;;;;:::o;25868:173::-;26008:25;26004:1;25996:6;25992:14;25985:49;25868:173;:::o;26047:366::-;26189:3;26210:67;26274:2;26269:3;26210:67;:::i;:::-;26203:74;;26286:93;26375:3;26286:93;:::i;:::-;26404:2;26399:3;26395:12;26388:19;;26047:366;;;:::o;26419:419::-;26585:4;26623:2;26612:9;26608:18;26600:26;;26672:9;26666:4;26662:20;26658:1;26647:9;26643:17;26636:47;26700:131;26826:4;26700:131;:::i;:::-;26692:139;;26419:419;;;:::o;26844:191::-;26884:3;26903:20;26921:1;26903:20;:::i;:::-;26898:25;;26937:20;26955:1;26937:20;:::i;:::-;26932:25;;26980:1;26977;26973:9;26966:16;;27001:3;26998:1;26995:10;26992:36;;;27008:18;;:::i;:::-;26992:36;26844:191;;;;:::o;27041:167::-;27181:19;27177:1;27169:6;27165:14;27158:43;27041:167;:::o;27214:366::-;27356:3;27377:67;27441:2;27436:3;27377:67;:::i;:::-;27370:74;;27453:93;27542:3;27453:93;:::i;:::-;27571:2;27566:3;27562:12;27555:19;;27214:366;;;:::o;27586:419::-;27752:4;27790:2;27779:9;27775:18;27767:26;;27839:9;27833:4;27829:20;27825:1;27814:9;27810:17;27803:47;27867:131;27993:4;27867:131;:::i;:::-;27859:139;;27586:419;;;:::o;28011:172::-;28151:24;28147:1;28139:6;28135:14;28128:48;28011:172;:::o;28189:366::-;28331:3;28352:67;28416:2;28411:3;28352:67;:::i;:::-;28345:74;;28428:93;28517:3;28428:93;:::i;:::-;28546:2;28541:3;28537:12;28530:19;;28189:366;;;:::o;28561:419::-;28727:4;28765:2;28754:9;28750:18;28742:26;;28814:9;28808:4;28804:20;28800:1;28789:9;28785:17;28778:47;28842:131;28968:4;28842:131;:::i;:::-;28834:139;;28561:419;;;:::o;28986:94::-;29019:8;29067:5;29063:2;29059:14;29038:35;;28986:94;;;:::o;29086:::-;29125:7;29154:20;29168:5;29154:20;:::i;:::-;29143:31;;29086:94;;;:::o;29186:100::-;29225:7;29254:26;29274:5;29254:26;:::i;:::-;29243:37;;29186:100;;;:::o;29292:157::-;29397:45;29417:24;29435:5;29417:24;:::i;:::-;29397:45;:::i;:::-;29392:3;29385:58;29292:157;;:::o;29455:79::-;29494:7;29523:5;29512:16;;29455:79;;;:::o;29540:157::-;29645:45;29665:24;29683:5;29665:24;:::i;:::-;29645:45;:::i;:::-;29640:3;29633:58;29540:157;;:::o;29703:397::-;29843:3;29858:75;29929:3;29920:6;29858:75;:::i;:::-;29958:2;29953:3;29949:12;29942:19;;29971:75;30042:3;30033:6;29971:75;:::i;:::-;30071:2;30066:3;30062:12;30055:19;;30091:3;30084:10;;29703:397;;;;;:::o;30106:174::-;30246:26;30242:1;30234:6;30230:14;30223:50;30106:174;:::o;30286:366::-;30428:3;30449:67;30513:2;30508:3;30449:67;:::i;:::-;30442:74;;30525:93;30614:3;30525:93;:::i;:::-;30643:2;30638:3;30634:12;30627:19;;30286:366;;;:::o;30658:419::-;30824:4;30862:2;30851:9;30847:18;30839:26;;30911:9;30905:4;30901:20;30897:1;30886:9;30882:17;30875:47;30939:131;31065:4;30939:131;:::i;:::-;30931:139;;30658:419;;;:::o;31083:147::-;31184:11;31221:3;31206:18;;31083:147;;;;:::o;31236:114::-;;:::o;31356:398::-;31515:3;31536:83;31617:1;31612:3;31536:83;:::i;:::-;31529:90;;31628:93;31717:3;31628:93;:::i;:::-;31746:1;31741:3;31737:11;31730:18;;31356:398;;;:::o;31760:379::-;31944:3;31966:147;32109:3;31966:147;:::i;:::-;31959:154;;32130:3;32123:10;;31760:379;;;:::o;32145:173::-;32285:25;32281:1;32273:6;32269:14;32262:49;32145:173;:::o;32324:366::-;32466:3;32487:67;32551:2;32546:3;32487:67;:::i;:::-;32480:74;;32563:93;32652:3;32563:93;:::i;:::-;32681:2;32676:3;32672:12;32665:19;;32324:366;;;:::o;32696:419::-;32862:4;32900:2;32889:9;32885:18;32877:26;;32949:9;32943:4;32939:20;32935:1;32924:9;32920:17;32913:47;32977:131;33103:4;32977:131;:::i;:::-;32969:139;;32696:419;;;:::o;33121:234::-;33261:34;33257:1;33249:6;33245:14;33238:58;33330:17;33325:2;33317:6;33313:15;33306:42;33121:234;:::o;33361:366::-;33503:3;33524:67;33588:2;33583:3;33524:67;:::i;:::-;33517:74;;33600:93;33689:3;33600:93;:::i;:::-;33718:2;33713:3;33709:12;33702:19;;33361:366;;;:::o;33733:419::-;33899:4;33937:2;33926:9;33922:18;33914:26;;33986:9;33980:4;33976:20;33972:1;33961:9;33957:17;33950:47;34014:131;34140:4;34014:131;:::i;:::-;34006:139;;33733:419;;;:::o;34158:148::-;34260:11;34297:3;34282:18;;34158:148;;;;:::o;34312:390::-;34418:3;34446:39;34479:5;34446:39;:::i;:::-;34501:89;34583:6;34578:3;34501:89;:::i;:::-;34494:96;;34599:65;34657:6;34652:3;34645:4;34638:5;34634:16;34599:65;:::i;:::-;34689:6;34684:3;34680:16;34673:23;;34422:280;34312:390;;;;:::o;34732:874::-;34835:3;34872:5;34866:12;34901:36;34927:9;34901:36;:::i;:::-;34953:89;35035:6;35030:3;34953:89;:::i;:::-;34946:96;;35073:1;35062:9;35058:17;35089:1;35084:166;;;;35264:1;35259:341;;;;35051:549;;35084:166;35168:4;35164:9;35153;35149:25;35144:3;35137:38;35230:6;35223:14;35216:22;35208:6;35204:35;35199:3;35195:45;35188:52;;35084:166;;35259:341;35326:38;35358:5;35326:38;:::i;:::-;35386:1;35400:154;35414:6;35411:1;35408:13;35400:154;;;35488:7;35482:14;35478:1;35473:3;35469:11;35462:35;35538:1;35529:7;35525:15;35514:26;;35436:4;35433:1;35429:12;35424:17;;35400:154;;;35583:6;35578:3;35574:16;35567:23;;35266:334;;35051:549;;34839:767;;34732:874;;;;:::o;35612:589::-;35837:3;35859:95;35950:3;35941:6;35859:95;:::i;:::-;35852:102;;35971:95;36062:3;36053:6;35971:95;:::i;:::-;35964:102;;36083:92;36171:3;36162:6;36083:92;:::i;:::-;36076:99;;36192:3;36185:10;;35612:589;;;;;;:::o;36207:246::-;36347:34;36343:1;36335:6;36331:14;36324:58;36416:29;36411:2;36403:6;36399:15;36392:54;36207:246;:::o;36459:366::-;36601:3;36622:67;36686:2;36681:3;36622:67;:::i;:::-;36615:74;;36698:93;36787:3;36698:93;:::i;:::-;36816:2;36811:3;36807:12;36800:19;;36459:366;;;:::o;36831:419::-;36997:4;37035:2;37024:9;37020:18;37012:26;;37084:9;37078:4;37074:20;37070:1;37059:9;37055:17;37048:47;37112:131;37238:4;37112:131;:::i;:::-;37104:139;;36831:419;;;:::o;37256:180::-;37304:77;37301:1;37294:88;37401:4;37398:1;37391:15;37425:4;37422:1;37415:15;37442:1395;37559:37;37592:3;37559:37;:::i;:::-;37661:18;37653:6;37650:30;37647:56;;;37683:18;;:::i;:::-;37647:56;37727:38;37759:4;37753:11;37727:38;:::i;:::-;37812:67;37872:6;37864;37858:4;37812:67;:::i;:::-;37906:1;37930:4;37917:17;;37962:2;37954:6;37951:14;37979:1;37974:618;;;;38636:1;38653:6;38650:77;;;38702:9;38697:3;38693:19;38687:26;38678:35;;38650:77;38753:67;38813:6;38806:5;38753:67;:::i;:::-;38747:4;38740:81;38609:222;37944:887;;37974:618;38026:4;38022:9;38014:6;38010:22;38060:37;38092:4;38060:37;:::i;:::-;38119:1;38133:208;38147:7;38144:1;38141:14;38133:208;;;38226:9;38221:3;38217:19;38211:26;38203:6;38196:42;38277:1;38269:6;38265:14;38255:24;;38324:2;38313:9;38309:18;38296:31;;38170:4;38167:1;38163:12;38158:17;;38133:208;;;38369:6;38360:7;38357:19;38354:179;;;38427:9;38422:3;38418:19;38412:26;38470:48;38512:4;38504:6;38500:17;38489:9;38470:48;:::i;:::-;38462:6;38455:64;38377:156;38354:179;38579:1;38575;38567:6;38563:14;38559:22;38553:4;38546:36;37981:611;;;37944:887;;37534:1303;;;37442:1395;;:::o;38843:225::-;38983:34;38979:1;38971:6;38967:14;38960:58;39052:8;39047:2;39039:6;39035:15;39028:33;38843:225;:::o;39074:366::-;39216:3;39237:67;39301:2;39296:3;39237:67;:::i;:::-;39230:74;;39313:93;39402:3;39313:93;:::i;:::-;39431:2;39426:3;39422:12;39415:19;;39074:366;;;:::o;39446:419::-;39612:4;39650:2;39639:9;39635:18;39627:26;;39699:9;39693:4;39689:20;39685:1;39674:9;39670:17;39663:47;39727:131;39853:4;39727:131;:::i;:::-;39719:139;;39446:419;;;:::o;39871:182::-;40011:34;40007:1;39999:6;39995:14;39988:58;39871:182;:::o;40059:366::-;40201:3;40222:67;40286:2;40281:3;40222:67;:::i;:::-;40215:74;;40298:93;40387:3;40298:93;:::i;:::-;40416:2;40411:3;40407:12;40400:19;;40059:366;;;:::o;40431:419::-;40597:4;40635:2;40624:9;40620:18;40612:26;;40684:9;40678:4;40674:20;40670:1;40659:9;40655:17;40648:47;40712:131;40838:4;40712:131;:::i;:::-;40704:139;;40431:419;;;:::o;40856:229::-;40996:34;40992:1;40984:6;40980:14;40973:58;41065:12;41060:2;41052:6;41048:15;41041:37;40856:229;:::o;41091:366::-;41233:3;41254:67;41318:2;41313:3;41254:67;:::i;:::-;41247:74;;41330:93;41419:3;41330:93;:::i;:::-;41448:2;41443:3;41439:12;41432:19;;41091:366;;;:::o;41463:419::-;41629:4;41667:2;41656:9;41652:18;41644:26;;41716:9;41710:4;41706:20;41702:1;41691:9;41687:17;41680:47;41744:131;41870:4;41744:131;:::i;:::-;41736:139;;41463:419;;;:::o;41888:175::-;42028:27;42024:1;42016:6;42012:14;42005:51;41888:175;:::o;42069:366::-;42211:3;42232:67;42296:2;42291:3;42232:67;:::i;:::-;42225:74;;42308:93;42397:3;42308:93;:::i;:::-;42426:2;42421:3;42417:12;42410:19;;42069:366;;;:::o;42441:419::-;42607:4;42645:2;42634:9;42630:18;42622:26;;42694:9;42688:4;42684:20;42680:1;42669:9;42665:17;42658:47;42722:131;42848:4;42722:131;:::i;:::-;42714:139;;42441:419;;;:::o;42866:233::-;42905:3;42928:24;42946:5;42928:24;:::i;:::-;42919:33;;42974:66;42967:5;42964:77;42961:103;;43044:18;;:::i;:::-;42961:103;43091:1;43084:5;43080:13;43073:20;;42866:233;;;:::o;43105:194::-;43145:4;43165:20;43183:1;43165:20;:::i;:::-;43160:25;;43199:20;43217:1;43199:20;:::i;:::-;43194:25;;43243:1;43240;43236:9;43228:17;;43267:1;43261:4;43258:11;43255:37;;;43272:18;;:::i;:::-;43255:37;43105:194;;;;:::o;43305:176::-;43337:1;43354:20;43372:1;43354:20;:::i;:::-;43349:25;;43388:20;43406:1;43388:20;:::i;:::-;43383:25;;43427:1;43417:35;;43432:18;;:::i;:::-;43417:35;43473:1;43470;43466:9;43461:14;;43305:176;;;;:::o;43487:98::-;43538:6;43572:5;43566:12;43556:22;;43487:98;;;:::o;43591:168::-;43674:11;43708:6;43703:3;43696:19;43748:4;43743:3;43739:14;43724:29;;43591:168;;;;:::o;43765:373::-;43851:3;43879:38;43911:5;43879:38;:::i;:::-;43933:70;43996:6;43991:3;43933:70;:::i;:::-;43926:77;;44012:65;44070:6;44065:3;44058:4;44051:5;44047:16;44012:65;:::i;:::-;44102:29;44124:6;44102:29;:::i;:::-;44097:3;44093:39;44086:46;;43855:283;43765:373;;;;:::o;44144:640::-;44339:4;44377:3;44366:9;44362:19;44354:27;;44391:71;44459:1;44448:9;44444:17;44435:6;44391:71;:::i;:::-;44472:72;44540:2;44529:9;44525:18;44516:6;44472:72;:::i;:::-;44554;44622:2;44611:9;44607:18;44598:6;44554:72;:::i;:::-;44673:9;44667:4;44663:20;44658:2;44647:9;44643:18;44636:48;44701:76;44772:4;44763:6;44701:76;:::i;:::-;44693:84;;44144:640;;;;;;;:::o;44790:141::-;44846:5;44877:6;44871:13;44862:22;;44893:32;44919:5;44893:32;:::i;:::-;44790:141;;;;:::o;44937:349::-;45006:6;45055:2;45043:9;45034:7;45030:23;45026:32;45023:119;;;45061:79;;:::i;:::-;45023:119;45181:1;45206:63;45261:7;45252:6;45241:9;45237:22;45206:63;:::i;:::-;45196:73;;45152:127;44937:349;;;;:::o

Swarm Source

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