ETH Price: $3,143.06 (-8.13%)
Gas: 6 Gwei

Token

The Charles Salvador Bronson_Collection (The Charles Salvador Bronson Collection)
 

Overview

Max Total Supply

400 The Charles Salvador Bronson Collection

Holders

182

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 The Charles Salvador Bronson Collection
0x23b3f93dd5326ee2b82e8f0f16b0210042afbd7b
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:
The_Charles_Salvador_Bronson_Collection

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-18
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: bronsoncollection.sol



pragma solidity ^0.8.0;






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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    string private _baseTokenURI;
    string public baseExtension = ".json";
    uint256 public constant RESERVED = 4;
    uint256 public SEC_RESERVED = 9;
    uint256 public constant MAX_SUPPLY = 400; 
    uint256 public PUBLIC_SUPPLY = 387;   
    uint256 public mintPrice = 0.037 ether;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    mapping(bytes4 => bool) public functionLocked;   
    bool public mintEnable = false;
    mapping(address => bool) public isUk;
    mapping(address => bool) public minter;

    constructor(
        address _royaltyReceiver,
        uint96 _royaltyFraction
    )
        ERC721A("The Charles Salvador Bronson_Collection", "The Charles Salvador Bronson Collection")
    {

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

    modifier onlyMinter() {
        require(minter[msg.sender] == true, "You're not a minter");
        _;
    }

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

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

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

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

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


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

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

    function assignMinterRole(address _minter) external onlyOwner() {
        require(minter[_minter] == false);
        minter[_minter] = true;
    }

    function revokeMinterRole(address _minter) external onlyOwner() {
        require(minter[_minter] == true);
        minter[_minter] = false;
    }

    /**
     * @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, uint256 quantity) external lockable onlyOwner {
        require(_totalMinted() + SEC_RESERVED <= MAX_SUPPLY , "Exceeds Maximum Supply" );
        _mint(to, quantity);
    }

    function publicMint(address to, uint256 quantity, bool _isUk) external payable onlyMinter {
        require(quantity <= PUBLIC_SUPPLY, "NFT amount exceeds");
        require(mintEnable == true, "Minting is not yet open.");
        require(_totalMinted() + quantity <= MAX_SUPPLY , "Exceeds Maximum Supply" );
        uint totalCost = quantity * mintPrice;
        require( msg.value >= totalCost, "Ether sent is not correct." );
        _mint(to, quantity);
        PUBLIC_SUPPLY -= quantity;
        isUk[to] = _isUk;
        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }

    function setMintPrice(uint256 _newPrice) external onlyOwner() {
        mintPrice = _newPrice;
    }

    function setPublicSupply(uint256 _newSupply) external onlyOwner() {
        PUBLIC_SUPPLY = _newSupply;
    }

    function setSecondaryReserve(uint256 amount) external onlyOwner() {
        SEC_RESERVED = amount;
    }
    function enableMinting(bool _enable) external onlyOwner{
        mintEnable = _enable;
    }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FunctionLocked","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ProvenanceHashAlreadySet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_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":[],"name":"SEC_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":"_minter","type":"address"}],"name":"assignMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"isUk","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":"mintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_isUk","type":"bool"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"address","name":"_minter","type":"address"}],"name":"revokeMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"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":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","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":"uint256","name":"_newSupply","type":"uint256"}],"name":"setPublicSupply","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":"uint256","name":"amount","type":"uint256"}],"name":"setSecondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200004a91906200070d565b506009600d55610183600e556683734dd0b08000600f556000601360006101000a81548160ff0219169083151502179055503480156200008957600080fd5b50604051620051e4380380620051e48339818101604052810190620000af9190620008a7565b604051806060016040528060278152602001620051bd6027913960405180606001604052806027815260200162005196602791398160029081620000f491906200070d565b5080600390816200010691906200070d565b50620001176200018460201b60201c565b60008190555050506200013f620001336200018d60201b60201c565b6200019560201b60201c565b6200014f6200025b60201b60201c565b6001601160006101000a81548160ff0219169083151502179055506200017c82826200028460201b60201c565b505062000a09565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000282733cc6cdda760b79bafa08df41ecfa224f810dceb660016200042760201b60201c565b565b620002946200048960201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ec9062000975565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000367576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035e90620009e7565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c9250816200045657826200044e57634420e486905062000456565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051557607f821691505b6020821081036200052b576200052a620004cd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000556565b620005a1868362000556565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ee620005e8620005e284620005b9565b620005c3565b620005b9565b9050919050565b6000819050919050565b6200060a83620005cd565b620006226200061982620005f5565b84845462000563565b825550505050565b600090565b620006396200062a565b62000646818484620005ff565b505050565b5b818110156200066e57620006626000826200062f565b6001810190506200064c565b5050565b601f821115620006bd57620006878162000531565b620006928462000546565b81016020851015620006a2578190505b620006ba620006b18562000546565b8301826200064b565b50505b505050565b600082821c905092915050565b6000620006e260001984600802620006c2565b1980831691505092915050565b6000620006fd8383620006cf565b9150826002028217905092915050565b620007188262000493565b67ffffffffffffffff8111156200073457620007336200049e565b5b620007408254620004fc565b6200074d82828562000672565b600060209050601f83116001811462000785576000841562000770578287015190505b6200077c8582620006ef565b865550620007ec565b601f198416620007958662000531565b60005b82811015620007bf5784890151825560018201915060208501945060208101905062000798565b86831015620007df5784890151620007db601f891682620006cf565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200082682620007f9565b9050919050565b620008388162000819565b81146200084457600080fd5b50565b60008151905062000858816200082d565b92915050565b60006bffffffffffffffffffffffff82169050919050565b62000881816200085e565b81146200088d57600080fd5b50565b600081519050620008a18162000876565b92915050565b60008060408385031215620008c157620008c0620007f4565b5b6000620008d18582860162000847565b9250506020620008e48582860162000890565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006200095d602a83620008ee565b91506200096a82620008ff565b604082019050919050565b6000602082019050818103600083015262000990816200094e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000620009cf601983620008ee565b9150620009dc8262000997565b602082019050919050565b6000602082019050818103600083015262000a0281620009c0565b9050919050565b61477d8062000a196000396000f3fe6080604052600436106102885760003560e01c806374d0101d1161015a578063c1e1ce29116100c1578063dc33e6811161007a578063dc33e68114610986578063e75179a4146109c3578063e985e9c5146109ec578063f2fde38b14610a29578063f4a0a52814610a52578063fb796e6c14610a7b57610288565b8063c1e1ce2914610876578063c21b471b146108a1578063c6682862146108ca578063c6ab67a3146108f5578063c87b56dd14610920578063da3ef23f1461095d57610288565b8063aa592f2511610113578063aa592f2514610763578063b366d6131461078e578063b629f192146107b7578063b7c0b8e8146107f4578063b88d4fde1461081d578063bbadfe761461083957610288565b806374d0101d1461066757806378acea1e146106905780638342083a146106b95780638da5cb5b146106e457806395d89b411461070f578063a22cb4651461073a57610288565b80633ccfd60b116101fe578063601e5e77116101b7578063601e5e77146105575780636352211e146105825780636817c76c146105bf57806369e2f0fb146105ea57806370a0823114610613578063715018a61461065057610288565b80633ccfd60b146104795780633dd08c3814610490578063402c3856146104cd57806342842e0e146104e9578063559c55b91461050557806355f804b31461052e57610288565b806318160ddd1161025057806318160ddd1461037757806323b872dd146103a257806326aa420a146103be5780632a55205a146103e757806332cb6b0c14610425578063345318281461045057610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b314610332578063109695231461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613298565b610aa6565b6040516102c191906132e0565b60405180910390f35b3480156102d657600080fd5b506102df610ac8565b6040516102ec919061338b565b60405180910390f35b34801561030157600080fd5b5061031c600480360381019061031791906133e3565b610b5a565b6040516103299190613451565b60405180910390f35b61034c60048036038101906103479190613498565b610bd9565b005b34801561035a57600080fd5b506103756004803603810190610370919061353d565b610c48565b005b34801561038357600080fd5b5061038c610d67565b6040516103999190613599565b60405180910390f35b6103bc60048036038101906103b791906135b4565b610d7e565b005b3480156103ca57600080fd5b506103e560048036038101906103e091906133e3565b610df7565b005b3480156103f357600080fd5b5061040e60048036038101906104099190613607565b610e09565b60405161041c929190613647565b60405180910390f35b34801561043157600080fd5b5061043a610ff3565b6040516104479190613599565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613298565b610ff9565b005b34801561048557600080fd5b5061048e61106e565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613670565b61111c565b6040516104c491906132e0565b60405180910390f35b6104e760048036038101906104e291906136c9565b61113c565b005b61050360048036038101906104fe91906135b4565b6113f1565b005b34801561051157600080fd5b5061052c600480360381019061052791906133e3565b61146a565b005b34801561053a57600080fd5b506105556004803603810190610550919061353d565b61147c565b005b34801561056357600080fd5b5061056c611553565b6040516105799190613599565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a491906133e3565b611559565b6040516105b69190613451565b60405180910390f35b3480156105cb57600080fd5b506105d461156b565b6040516105e19190613599565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190613670565b611571565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613670565b611631565b6040516106479190613599565b60405180910390f35b34801561065c57600080fd5b506106656116e9565b005b34801561067357600080fd5b5061068e60048036038101906106899190613498565b6116fd565b005b34801561069c57600080fd5b506106b760048036038101906106b2919061371c565b611825565b005b3480156106c557600080fd5b506106ce61184a565b6040516106db9190613599565b60405180910390f35b3480156106f057600080fd5b506106f9611850565b6040516107069190613451565b60405180910390f35b34801561071b57600080fd5b5061072461187a565b604051610731919061338b565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613749565b61190c565b005b34801561076f57600080fd5b5061077861197b565b6040516107859190613599565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613670565b611980565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613670565b611a40565b6040516107eb91906132e0565b60405180910390f35b34801561080057600080fd5b5061081b6004803603810190610816919061371c565b611a60565b005b610837600480360381019061083291906138b9565b611b3e565b005b34801561084557600080fd5b50610860600480360381019061085b9190613298565b611bb9565b60405161086d91906132e0565b60405180910390f35b34801561088257600080fd5b5061088b611bd9565b60405161089891906132e0565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613980565b611bec565b005b3480156108d657600080fd5b506108df611c02565b6040516108ec919061338b565b60405180910390f35b34801561090157600080fd5b5061090a611c90565b604051610917919061338b565b60405180910390f35b34801561092c57600080fd5b50610947600480360381019061094291906133e3565b611d1e565b604051610954919061338b565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613a61565b611dc8565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613670565b611de3565b6040516109ba9190613599565b60405180910390f35b3480156109cf57600080fd5b506109ea60048036038101906109e59190613670565b611df5565b005b3480156109f857600080fd5b50610a136004803603810190610a0e9190613aaa565b611f05565b604051610a2091906132e0565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613670565b611f99565b005b348015610a5e57600080fd5b50610a796004803603810190610a7491906133e3565b61201c565b005b348015610a8757600080fd5b50610a9061202e565b604051610a9d91906132e0565b60405180910390f35b6000610ab182612041565b80610ac15750610ac0826120d3565b5b9050919050565b606060028054610ad790613b19565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390613b19565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b6000610b658261214d565b610b9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601160009054906101000a900460ff168015610c385769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610c32573d6000803e3d6000fd5b6000603a525b610c4284846121ac565b50505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610d01576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d096122f0565b600060108054610d1890613b19565b905014610d51576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610d62929190613d01565b505050565b6000610d7161236e565b6001546000540303905090565b82601160009054906101000a900460ff168015610de557338260601b60601c14610de45769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610dde573d6000803e3d6000fd5b6000603a525b5b610df0858585612377565b5050505050565b610dff6122f0565b80600e8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610f9e5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fa8612699565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610fd49190613e00565b610fde9190613e71565b90508160000151819350935050509250929050565b61019081565b6110016122f0565b600160126000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6110766122f0565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161109c90613ed3565b60006040518083038185875af1925050503d80600081146110d9576040519150601f19603f3d011682016040523d82523d6000602084013e6110de565b606091505b5050905080611119576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60156020528060005260406000206000915054906101000a900460ff1681565b60011515601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613f34565b60405180910390fd5b600e54821115611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90613fa0565b60405180910390fd5b60011515601360009054906101000a900460ff1615151461126a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112619061400c565b60405180910390fd5b610190826112766126a3565b611280919061402c565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906140ac565b60405180910390fd5b6000600f54836112d19190613e00565b905080341015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614118565b60405180910390fd5b61132084846126b6565b82600e60008282546113329190614138565b9250508190555081601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550803411156113eb573373ffffffffffffffffffffffffffffffffffffffff166108fc82346113be9190614138565b9081150290604051600060405180830381858888f193505050501580156113e9573d6000803e3d6000fd5b505b50505050565b82601160009054906101000a900460ff16801561145857338260601b60601c146114575769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611451573d6000803e3d6000fd5b6000603a525b5b611463858585612871565b5050505050565b6114726122f0565b80600d8190555050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611535576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153d6122f0565b8181600b918261154e929190613d01565b505050565b600d5481565b600061156482612891565b9050919050565b600f5481565b6115796122f0565b60011515601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146115d657600080fd5b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611698576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116f16122f0565b6116fb600061295d565b565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156117b6576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117be6122f0565b610190600d546117cc6126a3565b6117d6919061402c565b1115611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906140ac565b60405180910390fd5b61182182826126b6565b5050565b61182d6122f0565b80601360006101000a81548160ff02191690831515021790555050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461188990613b19565b80601f01602080910402602001604051908101604052809291908181526020018280546118b590613b19565b80156119025780601f106118d757610100808354040283529160200191611902565b820191906000526020600020905b8154815290600101906020018083116118e557829003601f168201915b5050505050905090565b81601160009054906101000a900460ff16801561196b5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611965573d6000803e3d6000fd5b6000603a525b6119758484612a23565b50505050565b600481565b6119886122f0565b60001515601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146119e557600080fd5b6001601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60146020528060005260406000206000915054906101000a900460ff1681565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611b19576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b216122f0565b80601160006101000a81548160ff02191690831515021790555050565b83601160009054906101000a900460ff168015611ba557338260601b60601c14611ba45769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611b9e573d6000803e3d6000fd5b6000603a525b5b611bb186868686612b2e565b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900460ff1681565b611bf46122f0565b611bfe8282612ba1565b5050565b600c8054611c0f90613b19565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3b90613b19565b8015611c885780601f10611c5d57610100808354040283529160200191611c88565b820191906000526020600020905b815481529060010190602001808311611c6b57829003601f168201915b505050505081565b60108054611c9d90613b19565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc990613b19565b8015611d165780601f10611ceb57610100808354040283529160200191611d16565b820191906000526020600020905b815481529060010190602001808311611cf957829003601f168201915b505050505081565b6060611d298261214d565b611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f906141de565b60405180910390fd5b6000611d72612d36565b90506000815111611d925760405180602001604052806000815250611dc0565b80611d9c84612dc8565b600c604051602001611db0939291906142bd565b6040516020818303038152906040525b915050919050565b611dd06122f0565b80600c9081611ddf91906142ee565b5050565b6000611dee82612f28565b9050919050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611eae576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb66122f0565b6004611ec06126a3565b10611ef7576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f028160046126b6565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa16122f0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200790614432565b60405180910390fd5b6120198161295d565b50565b6120246122f0565b80600f8190555050565b601160009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120cc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612146575061214582612f7f565b5b9050919050565b60008161215861236e565b11158015612167575060005482105b80156121a5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006121b782611559565b90508073ffffffffffffffffffffffffffffffffffffffff166121d8612fe9565b73ffffffffffffffffffffffffffffffffffffffff161461223b57612204816121ff612fe9565b611f05565b61223a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6122f8612ff1565b73ffffffffffffffffffffffffffffffffffffffff16612316611850565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123639061449e565b60405180910390fd5b565b60006001905090565b600061238282612891565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123e9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806123f584612ff9565b9150915061240b8187612406612fe9565b613020565b612457576124208661241b612fe9565b611f05565b612456576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124bd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ca8686866001613064565b80156124d557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506125a38561257f88888761306a565b7c020000000000000000000000000000000000000000000000000000000017613092565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036126295760006001850190506000600460008381526020019081526020016000205403612627576000548114612626578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461269186868660016130bd565b505050505050565b6000612710905090565b60006126ad61236e565b60005403905090565b600080549050600082036126f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127036000848385613064565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061277a8361276b600086600061306a565b612774856130c3565b17613092565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461281b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127e0565b5060008203612856576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061286c60008483856130bd565b505050565b61288c83838360405180602001604052806000815250611b3e565b505050565b600080829050806128a061236e565b11612926576000548110156129255760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612923575b600081036129195760046000836001900393508381526020019081526020016000205490506128ef565b8092505050612958565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612a30612fe9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612add612fe9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b2291906132e0565b60405180910390a35050565b612b39848484610d7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b9b57612b64848484846130d3565b612b9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612ba9612699565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe90614530565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6d9061459c565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612d4590613b19565b80601f0160208091040260200160405190810160405280929190818152602001828054612d7190613b19565b8015612dbe5780601f10612d9357610100808354040283529160200191612dbe565b820191906000526020600020905b815481529060010190602001808311612da157829003601f168201915b5050505050905090565b606060008203612e0f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f23565b600082905060005b60008214612e41578080612e2a906145bc565b915050600a82612e3a9190613e71565b9150612e17565b60008167ffffffffffffffff811115612e5d57612e5c61378e565b5b6040519080825280601f01601f191660200182016040528015612e8f5781602001600182028036833780820191505090505b5090505b60008514612f1c57600182612ea89190614138565b9150600a85612eb79190614604565b6030612ec3919061402c565b60f81b818381518110612ed957612ed8614635565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f159190613e71565b9450612e93565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613081868684613223565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f9612fe9565b8786866040518563ffffffff1660e01b815260040161311b94939291906146b9565b6020604051808303816000875af192505050801561315757506040513d601f19601f82011682018060405250810190613154919061471a565b60015b6131d0573d8060008114613187576040519150601f19603f3d011682016040523d82523d6000602084013e61318c565b606091505b5060008151036131c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61327581613240565b811461328057600080fd5b50565b6000813590506132928161326c565b92915050565b6000602082840312156132ae576132ad613236565b5b60006132bc84828501613283565b91505092915050565b60008115159050919050565b6132da816132c5565b82525050565b60006020820190506132f560008301846132d1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561333557808201518184015260208101905061331a565b60008484015250505050565b6000601f19601f8301169050919050565b600061335d826132fb565b6133678185613306565b9350613377818560208601613317565b61338081613341565b840191505092915050565b600060208201905081810360008301526133a58184613352565b905092915050565b6000819050919050565b6133c0816133ad565b81146133cb57600080fd5b50565b6000813590506133dd816133b7565b92915050565b6000602082840312156133f9576133f8613236565b5b6000613407848285016133ce565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343b82613410565b9050919050565b61344b81613430565b82525050565b60006020820190506134666000830184613442565b92915050565b61347581613430565b811461348057600080fd5b50565b6000813590506134928161346c565b92915050565b600080604083850312156134af576134ae613236565b5b60006134bd85828601613483565b92505060206134ce858286016133ce565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126134fd576134fc6134d8565b5b8235905067ffffffffffffffff81111561351a576135196134dd565b5b602083019150836001820283011115613536576135356134e2565b5b9250929050565b6000806020838503121561355457613553613236565b5b600083013567ffffffffffffffff8111156135725761357161323b565b5b61357e858286016134e7565b92509250509250929050565b613593816133ad565b82525050565b60006020820190506135ae600083018461358a565b92915050565b6000806000606084860312156135cd576135cc613236565b5b60006135db86828701613483565b93505060206135ec86828701613483565b92505060406135fd868287016133ce565b9150509250925092565b6000806040838503121561361e5761361d613236565b5b600061362c858286016133ce565b925050602061363d858286016133ce565b9150509250929050565b600060408201905061365c6000830185613442565b613669602083018461358a565b9392505050565b60006020828403121561368657613685613236565b5b600061369484828501613483565b91505092915050565b6136a6816132c5565b81146136b157600080fd5b50565b6000813590506136c38161369d565b92915050565b6000806000606084860312156136e2576136e1613236565b5b60006136f086828701613483565b9350506020613701868287016133ce565b9250506040613712868287016136b4565b9150509250925092565b60006020828403121561373257613731613236565b5b6000613740848285016136b4565b91505092915050565b600080604083850312156137605761375f613236565b5b600061376e85828601613483565b925050602061377f858286016136b4565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137c682613341565b810181811067ffffffffffffffff821117156137e5576137e461378e565b5b80604052505050565b60006137f861322c565b905061380482826137bd565b919050565b600067ffffffffffffffff8211156138245761382361378e565b5b61382d82613341565b9050602081019050919050565b82818337600083830152505050565b600061385c61385784613809565b6137ee565b90508281526020810184848401111561387857613877613789565b5b61388384828561383a565b509392505050565b600082601f8301126138a05761389f6134d8565b5b81356138b0848260208601613849565b91505092915050565b600080600080608085870312156138d3576138d2613236565b5b60006138e187828801613483565b94505060206138f287828801613483565b9350506040613903878288016133ce565b925050606085013567ffffffffffffffff8111156139245761392361323b565b5b6139308782880161388b565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b61395d8161393c565b811461396857600080fd5b50565b60008135905061397a81613954565b92915050565b6000806040838503121561399757613996613236565b5b60006139a585828601613483565b92505060206139b68582860161396b565b9150509250929050565b600067ffffffffffffffff8211156139db576139da61378e565b5b6139e482613341565b9050602081019050919050565b6000613a046139ff846139c0565b6137ee565b905082815260208101848484011115613a2057613a1f613789565b5b613a2b84828561383a565b509392505050565b600082601f830112613a4857613a476134d8565b5b8135613a588482602086016139f1565b91505092915050565b600060208284031215613a7757613a76613236565b5b600082013567ffffffffffffffff811115613a9557613a9461323b565b5b613aa184828501613a33565b91505092915050565b60008060408385031215613ac157613ac0613236565b5b6000613acf85828601613483565b9250506020613ae085828601613483565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b3157607f821691505b602082108103613b4457613b43613aea565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613bb77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613b7a565b613bc18683613b7a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613bfe613bf9613bf4846133ad565b613bd9565b6133ad565b9050919050565b6000819050919050565b613c1883613be3565b613c2c613c2482613c05565b848454613b87565b825550505050565b600090565b613c41613c34565b613c4c818484613c0f565b505050565b5b81811015613c7057613c65600082613c39565b600181019050613c52565b5050565b601f821115613cb557613c8681613b55565b613c8f84613b6a565b81016020851015613c9e578190505b613cb2613caa85613b6a565b830182613c51565b50505b505050565b600082821c905092915050565b6000613cd860001984600802613cba565b1980831691505092915050565b6000613cf18383613cc7565b9150826002028217905092915050565b613d0b8383613b4a565b67ffffffffffffffff811115613d2457613d2361378e565b5b613d2e8254613b19565b613d39828285613c74565b6000601f831160018114613d685760008415613d56578287013590505b613d608582613ce5565b865550613dc8565b601f198416613d7686613b55565b60005b82811015613d9e57848901358255600182019150602085019450602081019050613d79565b86831015613dbb5784890135613db7601f891682613cc7565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e0b826133ad565b9150613e16836133ad565b9250828202613e24816133ad565b91508282048414831517613e3b57613e3a613dd1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e7c826133ad565b9150613e87836133ad565b925082613e9757613e96613e42565b5b828204905092915050565b600081905092915050565b50565b6000613ebd600083613ea2565b9150613ec882613ead565b600082019050919050565b6000613ede82613eb0565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b6000613f1e601383613306565b9150613f2982613ee8565b602082019050919050565b60006020820190508181036000830152613f4d81613f11565b9050919050565b7f4e465420616d6f756e7420657863656564730000000000000000000000000000600082015250565b6000613f8a601283613306565b9150613f9582613f54565b602082019050919050565b60006020820190508181036000830152613fb981613f7d565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b6000613ff6601883613306565b915061400182613fc0565b602082019050919050565b6000602082019050818103600083015261402581613fe9565b9050919050565b6000614037826133ad565b9150614042836133ad565b925082820190508082111561405a57614059613dd1565b5b92915050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b6000614096601683613306565b91506140a182614060565b602082019050919050565b600060208201905081810360008301526140c581614089565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000614102601a83613306565b915061410d826140cc565b602082019050919050565b60006020820190508181036000830152614131816140f5565b9050919050565b6000614143826133ad565b915061414e836133ad565b925082820390508181111561416657614165613dd1565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006141c8602f83613306565b91506141d38261416c565b604082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b600081905092915050565b6000614214826132fb565b61421e81856141fe565b935061422e818560208601613317565b80840191505092915050565b6000815461424781613b19565b61425181866141fe565b9450600182166000811461426c5760018114614281576142b4565b60ff19831686528115158202860193506142b4565b61428a85613b55565b60005b838110156142ac5781548189015260018201915060208101905061428d565b838801955050505b50505092915050565b60006142c98286614209565b91506142d58285614209565b91506142e1828461423a565b9150819050949350505050565b6142f7826132fb565b67ffffffffffffffff8111156143105761430f61378e565b5b61431a8254613b19565b614325828285613c74565b600060209050601f8311600181146143585760008415614346578287015190505b6143508582613ce5565b8655506143b8565b601f19841661436686613b55565b60005b8281101561438e57848901518255600182019150602085019450602081019050614369565b868310156143ab57848901516143a7601f891682613cc7565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061441c602683613306565b9150614427826143c0565b604082019050919050565b6000602082019050818103600083015261444b8161440f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614488602083613306565b915061449382614452565b602082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061451a602a83613306565b9150614525826144be565b604082019050919050565b600060208201905081810360008301526145498161450d565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614586601983613306565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c7826133ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145f9576145f8613dd1565b5b600182019050919050565b600061460f826133ad565b915061461a836133ad565b92508261462a57614629613e42565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061468b82614664565b614695818561466f565b93506146a5818560208601613317565b6146ae81613341565b840191505092915050565b60006080820190506146ce6000830187613442565b6146db6020830186613442565b6146e8604083018561358a565b81810360608301526146fa8184614680565b905095945050505050565b6000815190506147148161326c565b92915050565b6000602082840312156147305761472f613236565b5b600061473e84828501614705565b9150509291505056fea2646970667358221220f4aec7cfc66dfa522e4a65b9f17678e3a4d50a8d3272665a5d0ca335f9b1d44764736f6c6343000813003354686520436861726c65732053616c7661646f722042726f6e736f6e20436f6c6c656374696f6e54686520436861726c65732053616c7661646f722042726f6e736f6e5f436f6c6c656374696f6e00000000000000000000000010992b3845e9d85281623f06addb37ebaa672f8b00000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x6080604052600436106102885760003560e01c806374d0101d1161015a578063c1e1ce29116100c1578063dc33e6811161007a578063dc33e68114610986578063e75179a4146109c3578063e985e9c5146109ec578063f2fde38b14610a29578063f4a0a52814610a52578063fb796e6c14610a7b57610288565b8063c1e1ce2914610876578063c21b471b146108a1578063c6682862146108ca578063c6ab67a3146108f5578063c87b56dd14610920578063da3ef23f1461095d57610288565b8063aa592f2511610113578063aa592f2514610763578063b366d6131461078e578063b629f192146107b7578063b7c0b8e8146107f4578063b88d4fde1461081d578063bbadfe761461083957610288565b806374d0101d1461066757806378acea1e146106905780638342083a146106b95780638da5cb5b146106e457806395d89b411461070f578063a22cb4651461073a57610288565b80633ccfd60b116101fe578063601e5e77116101b7578063601e5e77146105575780636352211e146105825780636817c76c146105bf57806369e2f0fb146105ea57806370a0823114610613578063715018a61461065057610288565b80633ccfd60b146104795780633dd08c3814610490578063402c3856146104cd57806342842e0e146104e9578063559c55b91461050557806355f804b31461052e57610288565b806318160ddd1161025057806318160ddd1461037757806323b872dd146103a257806326aa420a146103be5780632a55205a146103e757806332cb6b0c14610425578063345318281461045057610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b314610332578063109695231461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613298565b610aa6565b6040516102c191906132e0565b60405180910390f35b3480156102d657600080fd5b506102df610ac8565b6040516102ec919061338b565b60405180910390f35b34801561030157600080fd5b5061031c600480360381019061031791906133e3565b610b5a565b6040516103299190613451565b60405180910390f35b61034c60048036038101906103479190613498565b610bd9565b005b34801561035a57600080fd5b506103756004803603810190610370919061353d565b610c48565b005b34801561038357600080fd5b5061038c610d67565b6040516103999190613599565b60405180910390f35b6103bc60048036038101906103b791906135b4565b610d7e565b005b3480156103ca57600080fd5b506103e560048036038101906103e091906133e3565b610df7565b005b3480156103f357600080fd5b5061040e60048036038101906104099190613607565b610e09565b60405161041c929190613647565b60405180910390f35b34801561043157600080fd5b5061043a610ff3565b6040516104479190613599565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613298565b610ff9565b005b34801561048557600080fd5b5061048e61106e565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613670565b61111c565b6040516104c491906132e0565b60405180910390f35b6104e760048036038101906104e291906136c9565b61113c565b005b61050360048036038101906104fe91906135b4565b6113f1565b005b34801561051157600080fd5b5061052c600480360381019061052791906133e3565b61146a565b005b34801561053a57600080fd5b506105556004803603810190610550919061353d565b61147c565b005b34801561056357600080fd5b5061056c611553565b6040516105799190613599565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a491906133e3565b611559565b6040516105b69190613451565b60405180910390f35b3480156105cb57600080fd5b506105d461156b565b6040516105e19190613599565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190613670565b611571565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613670565b611631565b6040516106479190613599565b60405180910390f35b34801561065c57600080fd5b506106656116e9565b005b34801561067357600080fd5b5061068e60048036038101906106899190613498565b6116fd565b005b34801561069c57600080fd5b506106b760048036038101906106b2919061371c565b611825565b005b3480156106c557600080fd5b506106ce61184a565b6040516106db9190613599565b60405180910390f35b3480156106f057600080fd5b506106f9611850565b6040516107069190613451565b60405180910390f35b34801561071b57600080fd5b5061072461187a565b604051610731919061338b565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613749565b61190c565b005b34801561076f57600080fd5b5061077861197b565b6040516107859190613599565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613670565b611980565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613670565b611a40565b6040516107eb91906132e0565b60405180910390f35b34801561080057600080fd5b5061081b6004803603810190610816919061371c565b611a60565b005b610837600480360381019061083291906138b9565b611b3e565b005b34801561084557600080fd5b50610860600480360381019061085b9190613298565b611bb9565b60405161086d91906132e0565b60405180910390f35b34801561088257600080fd5b5061088b611bd9565b60405161089891906132e0565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613980565b611bec565b005b3480156108d657600080fd5b506108df611c02565b6040516108ec919061338b565b60405180910390f35b34801561090157600080fd5b5061090a611c90565b604051610917919061338b565b60405180910390f35b34801561092c57600080fd5b50610947600480360381019061094291906133e3565b611d1e565b604051610954919061338b565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613a61565b611dc8565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613670565b611de3565b6040516109ba9190613599565b60405180910390f35b3480156109cf57600080fd5b506109ea60048036038101906109e59190613670565b611df5565b005b3480156109f857600080fd5b50610a136004803603810190610a0e9190613aaa565b611f05565b604051610a2091906132e0565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613670565b611f99565b005b348015610a5e57600080fd5b50610a796004803603810190610a7491906133e3565b61201c565b005b348015610a8757600080fd5b50610a9061202e565b604051610a9d91906132e0565b60405180910390f35b6000610ab182612041565b80610ac15750610ac0826120d3565b5b9050919050565b606060028054610ad790613b19565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390613b19565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b6000610b658261214d565b610b9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601160009054906101000a900460ff168015610c385769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610c32573d6000803e3d6000fd5b6000603a525b610c4284846121ac565b50505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610d01576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d096122f0565b600060108054610d1890613b19565b905014610d51576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610d62929190613d01565b505050565b6000610d7161236e565b6001546000540303905090565b82601160009054906101000a900460ff168015610de557338260601b60601c14610de45769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610dde573d6000803e3d6000fd5b6000603a525b5b610df0858585612377565b5050505050565b610dff6122f0565b80600e8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610f9e5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fa8612699565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610fd49190613e00565b610fde9190613e71565b90508160000151819350935050509250929050565b61019081565b6110016122f0565b600160126000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6110766122f0565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161109c90613ed3565b60006040518083038185875af1925050503d80600081146110d9576040519150601f19603f3d011682016040523d82523d6000602084013e6110de565b606091505b5050905080611119576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60156020528060005260406000206000915054906101000a900460ff1681565b60011515601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613f34565b60405180910390fd5b600e54821115611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90613fa0565b60405180910390fd5b60011515601360009054906101000a900460ff1615151461126a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112619061400c565b60405180910390fd5b610190826112766126a3565b611280919061402c565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906140ac565b60405180910390fd5b6000600f54836112d19190613e00565b905080341015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614118565b60405180910390fd5b61132084846126b6565b82600e60008282546113329190614138565b9250508190555081601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550803411156113eb573373ffffffffffffffffffffffffffffffffffffffff166108fc82346113be9190614138565b9081150290604051600060405180830381858888f193505050501580156113e9573d6000803e3d6000fd5b505b50505050565b82601160009054906101000a900460ff16801561145857338260601b60601c146114575769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611451573d6000803e3d6000fd5b6000603a525b5b611463858585612871565b5050505050565b6114726122f0565b80600d8190555050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611535576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153d6122f0565b8181600b918261154e929190613d01565b505050565b600d5481565b600061156482612891565b9050919050565b600f5481565b6115796122f0565b60011515601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146115d657600080fd5b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611698576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116f16122f0565b6116fb600061295d565b565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156117b6576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117be6122f0565b610190600d546117cc6126a3565b6117d6919061402c565b1115611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906140ac565b60405180910390fd5b61182182826126b6565b5050565b61182d6122f0565b80601360006101000a81548160ff02191690831515021790555050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461188990613b19565b80601f01602080910402602001604051908101604052809291908181526020018280546118b590613b19565b80156119025780601f106118d757610100808354040283529160200191611902565b820191906000526020600020905b8154815290600101906020018083116118e557829003601f168201915b5050505050905090565b81601160009054906101000a900460ff16801561196b5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611965573d6000803e3d6000fd5b6000603a525b6119758484612a23565b50505050565b600481565b6119886122f0565b60001515601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146119e557600080fd5b6001601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60146020528060005260406000206000915054906101000a900460ff1681565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611b19576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b216122f0565b80601160006101000a81548160ff02191690831515021790555050565b83601160009054906101000a900460ff168015611ba557338260601b60601c14611ba45769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611b9e573d6000803e3d6000fd5b6000603a525b5b611bb186868686612b2e565b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900460ff1681565b611bf46122f0565b611bfe8282612ba1565b5050565b600c8054611c0f90613b19565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3b90613b19565b8015611c885780601f10611c5d57610100808354040283529160200191611c88565b820191906000526020600020905b815481529060010190602001808311611c6b57829003601f168201915b505050505081565b60108054611c9d90613b19565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc990613b19565b8015611d165780601f10611ceb57610100808354040283529160200191611d16565b820191906000526020600020905b815481529060010190602001808311611cf957829003601f168201915b505050505081565b6060611d298261214d565b611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f906141de565b60405180910390fd5b6000611d72612d36565b90506000815111611d925760405180602001604052806000815250611dc0565b80611d9c84612dc8565b600c604051602001611db0939291906142bd565b6040516020818303038152906040525b915050919050565b611dd06122f0565b80600c9081611ddf91906142ee565b5050565b6000611dee82612f28565b9050919050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611eae576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb66122f0565b6004611ec06126a3565b10611ef7576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f028160046126b6565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa16122f0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200790614432565b60405180910390fd5b6120198161295d565b50565b6120246122f0565b80600f8190555050565b601160009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120cc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612146575061214582612f7f565b5b9050919050565b60008161215861236e565b11158015612167575060005482105b80156121a5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006121b782611559565b90508073ffffffffffffffffffffffffffffffffffffffff166121d8612fe9565b73ffffffffffffffffffffffffffffffffffffffff161461223b57612204816121ff612fe9565b611f05565b61223a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6122f8612ff1565b73ffffffffffffffffffffffffffffffffffffffff16612316611850565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123639061449e565b60405180910390fd5b565b60006001905090565b600061238282612891565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123e9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806123f584612ff9565b9150915061240b8187612406612fe9565b613020565b612457576124208661241b612fe9565b611f05565b612456576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124bd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ca8686866001613064565b80156124d557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506125a38561257f88888761306a565b7c020000000000000000000000000000000000000000000000000000000017613092565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036126295760006001850190506000600460008381526020019081526020016000205403612627576000548114612626578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461269186868660016130bd565b505050505050565b6000612710905090565b60006126ad61236e565b60005403905090565b600080549050600082036126f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127036000848385613064565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061277a8361276b600086600061306a565b612774856130c3565b17613092565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461281b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127e0565b5060008203612856576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061286c60008483856130bd565b505050565b61288c83838360405180602001604052806000815250611b3e565b505050565b600080829050806128a061236e565b11612926576000548110156129255760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612923575b600081036129195760046000836001900393508381526020019081526020016000205490506128ef565b8092505050612958565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612a30612fe9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612add612fe9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b2291906132e0565b60405180910390a35050565b612b39848484610d7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b9b57612b64848484846130d3565b612b9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612ba9612699565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe90614530565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6d9061459c565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612d4590613b19565b80601f0160208091040260200160405190810160405280929190818152602001828054612d7190613b19565b8015612dbe5780601f10612d9357610100808354040283529160200191612dbe565b820191906000526020600020905b815481529060010190602001808311612da157829003601f168201915b5050505050905090565b606060008203612e0f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f23565b600082905060005b60008214612e41578080612e2a906145bc565b915050600a82612e3a9190613e71565b9150612e17565b60008167ffffffffffffffff811115612e5d57612e5c61378e565b5b6040519080825280601f01601f191660200182016040528015612e8f5781602001600182028036833780820191505090505b5090505b60008514612f1c57600182612ea89190614138565b9150600a85612eb79190614604565b6030612ec3919061402c565b60f81b818381518110612ed957612ed8614635565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f159190613e71565b9450612e93565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613081868684613223565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f9612fe9565b8786866040518563ffffffff1660e01b815260040161311b94939291906146b9565b6020604051808303816000875af192505050801561315757506040513d601f19601f82011682018060405250810190613154919061471a565b60015b6131d0573d8060008114613187576040519150601f19603f3d011682016040523d82523d6000602084013e61318c565b606091505b5060008151036131c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61327581613240565b811461328057600080fd5b50565b6000813590506132928161326c565b92915050565b6000602082840312156132ae576132ad613236565b5b60006132bc84828501613283565b91505092915050565b60008115159050919050565b6132da816132c5565b82525050565b60006020820190506132f560008301846132d1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561333557808201518184015260208101905061331a565b60008484015250505050565b6000601f19601f8301169050919050565b600061335d826132fb565b6133678185613306565b9350613377818560208601613317565b61338081613341565b840191505092915050565b600060208201905081810360008301526133a58184613352565b905092915050565b6000819050919050565b6133c0816133ad565b81146133cb57600080fd5b50565b6000813590506133dd816133b7565b92915050565b6000602082840312156133f9576133f8613236565b5b6000613407848285016133ce565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343b82613410565b9050919050565b61344b81613430565b82525050565b60006020820190506134666000830184613442565b92915050565b61347581613430565b811461348057600080fd5b50565b6000813590506134928161346c565b92915050565b600080604083850312156134af576134ae613236565b5b60006134bd85828601613483565b92505060206134ce858286016133ce565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126134fd576134fc6134d8565b5b8235905067ffffffffffffffff81111561351a576135196134dd565b5b602083019150836001820283011115613536576135356134e2565b5b9250929050565b6000806020838503121561355457613553613236565b5b600083013567ffffffffffffffff8111156135725761357161323b565b5b61357e858286016134e7565b92509250509250929050565b613593816133ad565b82525050565b60006020820190506135ae600083018461358a565b92915050565b6000806000606084860312156135cd576135cc613236565b5b60006135db86828701613483565b93505060206135ec86828701613483565b92505060406135fd868287016133ce565b9150509250925092565b6000806040838503121561361e5761361d613236565b5b600061362c858286016133ce565b925050602061363d858286016133ce565b9150509250929050565b600060408201905061365c6000830185613442565b613669602083018461358a565b9392505050565b60006020828403121561368657613685613236565b5b600061369484828501613483565b91505092915050565b6136a6816132c5565b81146136b157600080fd5b50565b6000813590506136c38161369d565b92915050565b6000806000606084860312156136e2576136e1613236565b5b60006136f086828701613483565b9350506020613701868287016133ce565b9250506040613712868287016136b4565b9150509250925092565b60006020828403121561373257613731613236565b5b6000613740848285016136b4565b91505092915050565b600080604083850312156137605761375f613236565b5b600061376e85828601613483565b925050602061377f858286016136b4565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137c682613341565b810181811067ffffffffffffffff821117156137e5576137e461378e565b5b80604052505050565b60006137f861322c565b905061380482826137bd565b919050565b600067ffffffffffffffff8211156138245761382361378e565b5b61382d82613341565b9050602081019050919050565b82818337600083830152505050565b600061385c61385784613809565b6137ee565b90508281526020810184848401111561387857613877613789565b5b61388384828561383a565b509392505050565b600082601f8301126138a05761389f6134d8565b5b81356138b0848260208601613849565b91505092915050565b600080600080608085870312156138d3576138d2613236565b5b60006138e187828801613483565b94505060206138f287828801613483565b9350506040613903878288016133ce565b925050606085013567ffffffffffffffff8111156139245761392361323b565b5b6139308782880161388b565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b61395d8161393c565b811461396857600080fd5b50565b60008135905061397a81613954565b92915050565b6000806040838503121561399757613996613236565b5b60006139a585828601613483565b92505060206139b68582860161396b565b9150509250929050565b600067ffffffffffffffff8211156139db576139da61378e565b5b6139e482613341565b9050602081019050919050565b6000613a046139ff846139c0565b6137ee565b905082815260208101848484011115613a2057613a1f613789565b5b613a2b84828561383a565b509392505050565b600082601f830112613a4857613a476134d8565b5b8135613a588482602086016139f1565b91505092915050565b600060208284031215613a7757613a76613236565b5b600082013567ffffffffffffffff811115613a9557613a9461323b565b5b613aa184828501613a33565b91505092915050565b60008060408385031215613ac157613ac0613236565b5b6000613acf85828601613483565b9250506020613ae085828601613483565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b3157607f821691505b602082108103613b4457613b43613aea565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613bb77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613b7a565b613bc18683613b7a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613bfe613bf9613bf4846133ad565b613bd9565b6133ad565b9050919050565b6000819050919050565b613c1883613be3565b613c2c613c2482613c05565b848454613b87565b825550505050565b600090565b613c41613c34565b613c4c818484613c0f565b505050565b5b81811015613c7057613c65600082613c39565b600181019050613c52565b5050565b601f821115613cb557613c8681613b55565b613c8f84613b6a565b81016020851015613c9e578190505b613cb2613caa85613b6a565b830182613c51565b50505b505050565b600082821c905092915050565b6000613cd860001984600802613cba565b1980831691505092915050565b6000613cf18383613cc7565b9150826002028217905092915050565b613d0b8383613b4a565b67ffffffffffffffff811115613d2457613d2361378e565b5b613d2e8254613b19565b613d39828285613c74565b6000601f831160018114613d685760008415613d56578287013590505b613d608582613ce5565b865550613dc8565b601f198416613d7686613b55565b60005b82811015613d9e57848901358255600182019150602085019450602081019050613d79565b86831015613dbb5784890135613db7601f891682613cc7565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e0b826133ad565b9150613e16836133ad565b9250828202613e24816133ad565b91508282048414831517613e3b57613e3a613dd1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e7c826133ad565b9150613e87836133ad565b925082613e9757613e96613e42565b5b828204905092915050565b600081905092915050565b50565b6000613ebd600083613ea2565b9150613ec882613ead565b600082019050919050565b6000613ede82613eb0565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b6000613f1e601383613306565b9150613f2982613ee8565b602082019050919050565b60006020820190508181036000830152613f4d81613f11565b9050919050565b7f4e465420616d6f756e7420657863656564730000000000000000000000000000600082015250565b6000613f8a601283613306565b9150613f9582613f54565b602082019050919050565b60006020820190508181036000830152613fb981613f7d565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b6000613ff6601883613306565b915061400182613fc0565b602082019050919050565b6000602082019050818103600083015261402581613fe9565b9050919050565b6000614037826133ad565b9150614042836133ad565b925082820190508082111561405a57614059613dd1565b5b92915050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b6000614096601683613306565b91506140a182614060565b602082019050919050565b600060208201905081810360008301526140c581614089565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000614102601a83613306565b915061410d826140cc565b602082019050919050565b60006020820190508181036000830152614131816140f5565b9050919050565b6000614143826133ad565b915061414e836133ad565b925082820390508181111561416657614165613dd1565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006141c8602f83613306565b91506141d38261416c565b604082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b600081905092915050565b6000614214826132fb565b61421e81856141fe565b935061422e818560208601613317565b80840191505092915050565b6000815461424781613b19565b61425181866141fe565b9450600182166000811461426c5760018114614281576142b4565b60ff19831686528115158202860193506142b4565b61428a85613b55565b60005b838110156142ac5781548189015260018201915060208101905061428d565b838801955050505b50505092915050565b60006142c98286614209565b91506142d58285614209565b91506142e1828461423a565b9150819050949350505050565b6142f7826132fb565b67ffffffffffffffff8111156143105761430f61378e565b5b61431a8254613b19565b614325828285613c74565b600060209050601f8311600181146143585760008415614346578287015190505b6143508582613ce5565b8655506143b8565b601f19841661436686613b55565b60005b8281101561438e57848901518255600182019150602085019450602081019050614369565b868310156143ab57848901516143a7601f891682613cc7565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061441c602683613306565b9150614427826143c0565b604082019050919050565b6000602082019050818103600083015261444b8161440f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614488602083613306565b915061449382614452565b602082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061451a602a83613306565b9150614525826144be565b604082019050919050565b600060208201905081810360008301526145498161450d565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614586601983613306565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c7826133ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145f9576145f8613dd1565b5b600182019050919050565b600061460f826133ad565b915061461a836133ad565b92508261462a57614629613e42565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061468b82614664565b614695818561466f565b93506146a5818560208601613317565b6146ae81613341565b840191505092915050565b60006080820190506146ce6000830187613442565b6146db6020830186613442565b6146e8604083018561358a565b81810360608301526146fa8184614680565b905095945050505050565b6000815190506147148161326c565b92915050565b6000602082840312156147305761472f613236565b5b600061473e84828501614705565b9150509291505056fea2646970667358221220f4aec7cfc66dfa522e4a65b9f17678e3a4d50a8d3272665a5d0ca335f9b1d44764736f6c63430008130033

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

00000000000000000000000010992b3845e9d85281623f06addb37ebaa672f8b00000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0x10992b3845E9d85281623F06aDDb37eBaA672F8B
Arg [1] : _royaltyFraction (uint96): 1000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000010992b3845e9d85281623f06addb37ebaa672f8b
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

80186:8593:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81635:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40974:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47465:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87321:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84647:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36725:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87713:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86179:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15758:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;80481:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83175:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86584:183;;;;;;;;;;;;;:::i;:::-;;80831:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85413:648;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88104:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86298:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84387:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80443:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42367:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80573:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83436:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37909:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21031:103;;;;;;;;;;;;;:::i;:::-;;85192:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86410:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80529:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20383:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41150:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86927:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80400:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83279:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80788:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83777:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88503:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80696:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80751:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84128:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80356:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80618:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82268:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82132:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82882:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85016:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48414:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21289:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86069:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80653:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81635:274;81766:4;81808:38;81834:11;81808:25;:38::i;:::-;:93;;;;81863:38;81889:11;81863:25;:38::i;:::-;81808:93;81788:113;;81635:274;;;:::o;40974:100::-;41028:13;41061:5;41054:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40974:100;:::o;47465:218::-;47541:7;47566:16;47574:7;47566;:16::i;:::-;47561:64;;47591:34;;;;;;;;;;;;;;47561:64;47645:15;:24;47661:7;47645:24;;;;;;;;;;;:30;;;;;;;;;;;;47638:37;;47465:218;;;:::o;87321:232::-;87461:8;87471:24;;;;;;;;;;;78771:7;78768:925;;;78900:22;78894:4;78887:36;79001:9;78995:4;78988:23;79153:8;79149:2;79145:17;79141:2;79137:26;79131:4;79124:40;79340:4;79334;79328;79322;79295:25;79288:5;79277:68;79267:290;;79469:16;79463:4;79457;79442:44;79521:16;79515:4;79508:30;79267:290;79676:1;79670:4;79663:15;78768:925;87513:32:::1;87527:8;87537:7;87513:13;:32::i;:::-;87321:232:::0;;;;:::o;84647:224::-;81394:14;:23;81409:7;;;;81394:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81390:52;;;81426:16;;;;;;;;;;;;;;81390:52;20269:13:::1;:11;:13::i;:::-;84782:1:::2;84756:14;84750:28;;;;;:::i;:::-;;;:33;84746:72;;84792:26;;;;;;;;;;;;;;84746:72;84848:15;;84831:14;:32;;;;;;;:::i;:::-;;84647:224:::0;;:::o;36725:323::-;36786:7;37014:15;:13;:15::i;:::-;36999:12;;36983:13;;:28;:46;36976:53;;36725:323;:::o;87713:231::-;87856:4;87862:24;;;;;;;;;;;76544:7;76541:1643;;;76757:8;76749:4;76745:2;76741:13;76737:2;76733:22;76730:36;76720:1449;;77072:22;77066:4;77059:36;77181:9;77175:4;77168:23;77274:8;77268:4;77261:22;77467:4;77461;77455;77449;77422:25;77415:5;77404:68;77394:306;;77604:16;77598:4;77592;77577:44;77660:16;77654:4;77647:30;77394:306;78148:1;78142:4;78135:15;76720:1449;76541:1643;87899:37:::1;87918:4;87924:2;87928:7;87899:18;:37::i;:::-;87713:231:::0;;;;;:::o;86179:111::-;20269:13;:11;:13::i;:::-;86272:10:::1;86256:13;:26;;;;86179:111:::0;:::o;15758:442::-;15855:7;15864;15884:26;15913:17;:27;15931:8;15913:27;;;;;;;;;;;15884:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15985:1;15957:30;;:7;:16;;;:30;;;15953:92;;16014:19;16004:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15953:92;16057:21;16122:17;:15;:17::i;:::-;16081:58;;16095:7;:23;;;16082:36;;:10;:36;;;;:::i;:::-;16081:58;;;;:::i;:::-;16057:82;;16160:7;:16;;;16178:13;16152:40;;;;;;15758:442;;;;;:::o;80481:40::-;80518:3;80481:40;:::o;83175:96::-;20269:13;:11;:13::i;:::-;83259:4:::1;83238:14;:18;83253:2;83238:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;83175:96:::0;:::o;86584:183::-;20269:13;:11;:13::i;:::-;86635:12:::1;86661:10;86653:24;;86685:21;86653:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86634:77;;;86727:7;86722:37;;86743:16;;;;;;;;;;;;;;86722:37;86623:144;86584:183::o:0;80831:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;85413:648::-;81533:4;81511:26;;:6;:18;81518:10;81511:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;81503:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;85534:13:::1;;85522:8;:25;;85514:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;85603:4;85589:18;;:10;;;;;;;;;;;:18;;;85581:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;80518:3;85672:8;85655:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;85647:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;85734:14;85762:9;;85751:8;:20;;;;:::i;:::-;85734:37;;85804:9;85791;:22;;85782:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;85856:19;85862:2;85866:8;85856:5;:19::i;:::-;85903:8;85886:13;;:25;;;;;;;:::i;:::-;;;;;;;;85933:5;85922:4;:8;85927:2;85922:8;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;85965:9;85953;:21;85949:105;;;85999:10;85991:28;;:51;86032:9;86020;:21;;;;:::i;:::-;85991:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;85949:105;85503:558;85413:648:::0;;;:::o;88104:239::-;88251:4;88257:24;;;;;;;;;;;76544:7;76541:1643;;;76757:8;76749:4;76745:2;76741:13;76737:2;76733:22;76730:36;76720:1449;;77072:22;77066:4;77059:36;77181:9;77175:4;77168:23;77274:8;77268:4;77261:22;77467:4;77461;77455;77449;77422:25;77415:5;77404:68;77394:306;;77604:16;77598:4;77592;77577:44;77660:16;77654:4;77647:30;77394:306;78148:1;78142:4;78135:15;76720:1449;76541:1643;88294:41:::1;88317:4;88323:2;88327:7;88294:22;:41::i;:::-;88104:239:::0;;;;;:::o;86298:106::-;20269:13;:11;:13::i;:::-;86390:6:::1;86375:12;:21;;;;86298:106:::0;:::o;84387:123::-;81394:14;:23;81409:7;;;;81394:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81390:52;;;81426:16;;;;;;;;;;;;;;81390:52;20269:13:::1;:11;:13::i;:::-;84491:11:::2;;84475:13;:27;;;;;;;:::i;:::-;;84387:123:::0;;:::o;80443:31::-;;;;:::o;42367:152::-;42439:7;42482:27;42501:7;42482:18;:27::i;:::-;42459:52;;42367:152;;;:::o;80573:38::-;;;;:::o;83436:149::-;20269:13;:11;:13::i;:::-;83538:4:::1;83519:23;;:6;:15;83526:7;83519:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;83511:32;;;::::0;::::1;;83572:5;83554:6;:15;83561:7;83554:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;83436:149:::0;:::o;37909:233::-;37981:7;38022:1;38005:19;;:5;:19;;;38001:60;;38033:28;;;;;;;;;;;;;;38001:60;32068:13;38079:18;:25;38098:5;38079:25;;;;;;;;;;;;;;;;:55;38072:62;;37909:233;;;:::o;21031:103::-;20269:13;:11;:13::i;:::-;21096:30:::1;21123:1;21096:18;:30::i;:::-;21031:103::o:0;85192:213::-;81394:14;:23;81409:7;;;;81394:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81390:52;;;81426:16;;;;;;;;;;;;;;81390:52;20269:13:::1;:11;:13::i;:::-;80518:3:::2;85312:12;;85295:14;:12;:14::i;:::-;:29;;;;:::i;:::-;:43;;85287:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;85378:19;85384:2;85388:8;85378:5;:19::i;:::-;85192:213:::0;;:::o;86410:94::-;20269:13;:11;:13::i;:::-;86489:7:::1;86476:10;;:20;;;;;;;;;;;;;;;;;;86410:94:::0;:::o;80529:34::-;;;;:::o;20383:87::-;20429:7;20456:6;;;;;;;;;;;20449:13;;20383:87;:::o;41150:104::-;41206:13;41239:7;41232:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41150:104;:::o;86927:234::-;87058:8;87068:24;;;;;;;;;;;78771:7;78768:925;;;78900:22;78894:4;78887:36;79001:9;78995:4;78988:23;79153:8;79149:2;79145:17;79141:2;79137:26;79131:4;79124:40;79340:4;79334;79328;79322;79295:25;79288:5;79277:68;79267:290;;79469:16;79463:4;79457;79442:44;79521:16;79515:4;79508:30;79267:290;79676:1;79670:4;79663:15;78768:925;87110:43:::1;87134:8;87144;87110:23;:43::i;:::-;86927:234:::0;;;;:::o;80400:36::-;80435:1;80400:36;:::o;83279:149::-;20269:13;:11;:13::i;:::-;83381:5:::1;83362:24;;:6;:15;83369:7;83362:15;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;83354:33;;;::::0;::::1;;83416:4;83398:6;:15;83405:7;83398:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;83279:149:::0;:::o;80788:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;83777:128::-;81394:14;:23;81409:7;;;;81394:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81390:52;;;81426:16;;;;;;;;;;;;;;81390:52;20269:13:::1;:11;:13::i;:::-;83892:5:::2;83865:24;;:32;;;;;;;;;;;;;;;;;;83777:128:::0;:::o;88503:273::-;88678:4;88684:24;;;;;;;;;;;76544:7;76541:1643;;;76757:8;76749:4;76745:2;76741:13;76737:2;76733:22;76730:36;76720:1449;;77072:22;77066:4;77059:36;77181:9;77175:4;77168:23;77274:8;77268:4;77261:22;77467:4;77461;77455;77449;77422:25;77415:5;77404:68;77394:306;;77604:16;77598:4;77592;77577:44;77660:16;77654:4;77647:30;77394:306;78148:1;78142:4;78135:15;76720:1449;76541:1643;88721:47:::1;88744:4;88750:2;88754:7;88763:4;88721:22;:47::i;:::-;88503:273:::0;;;;;;:::o;80696:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;80751:30::-;;;;;;;;;;;;;:::o;84128:147::-;20269:13;:11;:13::i;:::-;84222:45:::1;84241:8;84251:15;84222:18;:45::i;:::-;84128:147:::0;;:::o;80356:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80618:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82268:446::-;82366:13;82409:16;82417:7;82409;:16::i;:::-;82393:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;82511:28;82542:10;:8;:10::i;:::-;82511:41;;82597:1;82572:14;82566:28;:32;:140;;;;;;;;;;;;;;;;;82634:14;82650:25;82667:7;82650:16;:25::i;:::-;82677:13;82617:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82566:140;82559:147;;;82268:446;;;:::o;82132:128::-;20269:13;:11;:13::i;:::-;82235:17:::1;82219:13;:33;;;;;;:::i;:::-;;82132:128:::0;:::o;82882:119::-;82944:7;82971:22;82985:7;82971:13;:22::i;:::-;82964:29;;82882:119;;;:::o;85016:168::-;81394:14;:23;81409:7;;;;81394:23;;;;;;;;;;;;;;;;;;;;;;;;;;;81390:52;;;81426:16;;;;;;;;;;;;;;81390:52;20269:13:::1;:11;:13::i;:::-;80435:1:::2;85088:14;:12;:14::i;:::-;:26;85084:62;;85123:23;;;;;;;;;;;;;;85084:62;85157:19;85163:2;80435:1;85157:5;:19::i;:::-;85016:168:::0;:::o;48414:164::-;48511:4;48535:18;:25;48554:5;48535:25;;;;;;;;;;;;;;;:35;48561:8;48535:35;;;;;;;;;;;;;;;;;;;;;;;;;48528:42;;48414:164;;;;:::o;21289:201::-;20269:13;:11;:13::i;:::-;21398:1:::1;21378:22;;:8;:22;;::::0;21370:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21454:28;21473:8;21454:18;:28::i;:::-;21289:201:::0;:::o;86069:102::-;20269:13;:11;:13::i;:::-;86154:9:::1;86142;:21;;;;86069:102:::0;:::o;80653:36::-;;;;;;;;;;;;;:::o;40072:639::-;40157:4;40496:10;40481:25;;:11;:25;;;;:102;;;;40573:10;40558:25;;:11;:25;;;;40481:102;:179;;;;40650:10;40635:25;;:11;:25;;;;40481:179;40461:199;;40072:639;;;:::o;15488:215::-;15590:4;15629:26;15614:41;;;:11;:41;;;;:81;;;;15659:36;15683:11;15659:23;:36::i;:::-;15614:81;15607:88;;15488:215;;;:::o;48836:282::-;48901:4;48957:7;48938:15;:13;:15::i;:::-;:26;;:66;;;;;48991:13;;48981:7;:23;48938:66;:153;;;;;49090:1;32844:8;49042:17;:26;49060:7;49042:26;;;;;;;;;;;;:44;:49;48938:153;48918:173;;48836:282;;;:::o;46898:408::-;46987:13;47003:16;47011:7;47003;:16::i;:::-;46987:32;;47059:5;47036:28;;:19;:17;:19::i;:::-;:28;;;47032:175;;47084:44;47101:5;47108:19;:17;:19::i;:::-;47084:16;:44::i;:::-;47079:128;;47156:35;;;;;;;;;;;;;;47079:128;47032:175;47252:2;47219:15;:24;47235:7;47219:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47290:7;47286:2;47270:28;;47279:5;47270:28;;;;;;;;;;;;46976:330;46898:408;;:::o;20548:132::-;20623:12;:10;:12::i;:::-;20612:23;;:7;:5;:7::i;:::-;:23;;;20604:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20548:132::o;36241:92::-;36297:7;36324:1;36317:8;;36241:92;:::o;51104:2825::-;51246:27;51276;51295:7;51276:18;:27::i;:::-;51246:57;;51361:4;51320:45;;51336:19;51320:45;;;51316:86;;51374:28;;;;;;;;;;;;;;51316:86;51416:27;51445:23;51472:35;51499:7;51472:26;:35::i;:::-;51415:92;;;;51607:68;51632:15;51649:4;51655:19;:17;:19::i;:::-;51607:24;:68::i;:::-;51602:180;;51695:43;51712:4;51718:19;:17;:19::i;:::-;51695:16;:43::i;:::-;51690:92;;51747:35;;;;;;;;;;;;;;51690:92;51602:180;51813:1;51799:16;;:2;:16;;;51795:52;;51824:23;;;;;;;;;;;;;;51795:52;51860:43;51882:4;51888:2;51892:7;51901:1;51860:21;:43::i;:::-;51996:15;51993:160;;;52136:1;52115:19;52108:30;51993:160;52533:18;:24;52552:4;52533:24;;;;;;;;;;;;;;;;52531:26;;;;;;;;;;;;52602:18;:22;52621:2;52602:22;;;;;;;;;;;;;;;;52600:24;;;;;;;;;;;52924:146;52961:2;53010:45;53025:4;53031:2;53035:19;53010:14;:45::i;:::-;33124:8;52982:73;52924:18;:146::i;:::-;52895:17;:26;52913:7;52895:26;;;;;;;;;;;:175;;;;53241:1;33124:8;53190:19;:47;:52;53186:627;;53263:19;53295:1;53285:7;:11;53263:33;;53452:1;53418:17;:30;53436:11;53418:30;;;;;;;;;;;;:35;53414:384;;53556:13;;53541:11;:28;53537:242;;53736:19;53703:17;:30;53721:11;53703:30;;;;;;;;;;;:52;;;;53537:242;53414:384;53244:569;53186:627;53860:7;53856:2;53841:27;;53850:4;53841:27;;;;;;;;;;;;53879:42;53900:4;53906:2;53910:7;53919:1;53879:20;:42::i;:::-;51235:2694;;;51104:2825;;;:::o;16482:97::-;16540:6;16566:5;16559:12;;16482:97;:::o;37146:296::-;37201:7;37408:15;:13;:15::i;:::-;37392:13;;:31;37385:38;;37146:296;:::o;58485:2966::-;58558:20;58581:13;;58558:36;;58621:1;58609:8;:13;58605:44;;58631:18;;;;;;;;;;;;;;58605:44;58662:61;58692:1;58696:2;58700:12;58714:8;58662:21;:61::i;:::-;59206:1;32206:2;59176:1;:26;;59175:32;59163:8;:45;59137:18;:22;59156:2;59137:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;59485:139;59522:2;59576:33;59599:1;59603:2;59607:1;59576:14;:33::i;:::-;59543:30;59564:8;59543:20;:30::i;:::-;:66;59485:18;:139::i;:::-;59451:17;:31;59469:12;59451:31;;;;;;;;;;;:173;;;;59641:16;59672:11;59701:8;59686:12;:23;59672:37;;60222:16;60218:2;60214:25;60202:37;;60594:12;60554:8;60513:1;60451:25;60392:1;60331;60304:335;60965:1;60951:12;60947:20;60905:346;61006:3;60997:7;60994:16;60905:346;;61224:7;61214:8;61211:1;61184:25;61181:1;61178;61173:59;61059:1;61050:7;61046:15;61035:26;;60905:346;;;60909:77;61296:1;61284:8;:13;61280:45;;61306:19;;;;;;;;;;;;;;61280:45;61358:3;61342:13;:19;;;;58911:2462;;61383:60;61412:1;61416:2;61420:12;61434:8;61383:20;:60::i;:::-;58547:2904;58485:2966;;:::o;54025:193::-;54171:39;54188:4;54194:2;54198:7;54171:39;;;;;;;;;;;;:16;:39::i;:::-;54025:193;;;:::o;43522:1275::-;43589:7;43609:12;43624:7;43609:22;;43692:4;43673:15;:13;:15::i;:::-;:23;43669:1061;;43726:13;;43719:4;:20;43715:1015;;;43764:14;43781:17;:23;43799:4;43781:23;;;;;;;;;;;;43764:40;;43898:1;32844:8;43870:6;:24;:29;43866:845;;44535:113;44552:1;44542:6;:11;44535:113;;44595:17;:25;44613:6;;;;;;;44595:25;;;;;;;;;;;;44586:34;;44535:113;;;44681:6;44674:13;;;;;;43866:845;43741:989;43715:1015;43669:1061;44758:31;;;;;;;;;;;;;;43522:1275;;;;:::o;21650:191::-;21724:16;21743:6;;;;;;;;;;;21724:25;;21769:8;21760:6;;:17;;;;;;;;;;;;;;;;;;21824:8;21793:40;;21814:8;21793:40;;;;;;;;;;;;21713:128;21650:191;:::o;48023:234::-;48170:8;48118:18;:39;48137:19;:17;:19::i;:::-;48118:39;;;;;;;;;;;;;;;:49;48158:8;48118:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48230:8;48194:55;;48209:19;:17;:19::i;:::-;48194:55;;;48240:8;48194:55;;;;;;:::i;:::-;;;;;;;;48023:234;;:::o;54816:407::-;54991:31;55004:4;55010:2;55014:7;54991:12;:31::i;:::-;55055:1;55037:2;:14;;;:19;55033:183;;55076:56;55107:4;55113:2;55117:7;55126:5;55076:30;:56::i;:::-;55071:145;;55160:40;;;;;;;;;;;;;;55071:145;55033:183;54816:407;;;;:::o;16850:332::-;16969:17;:15;:17::i;:::-;16953:33;;:12;:33;;;;16945:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;17072:1;17052:22;;:8;:22;;;17044:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;17139:35;;;;;;;;17151:8;17139:35;;;;;;17161:12;17139:35;;;;;17117:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16850:332;;:::o;82010:114::-;82070:13;82103;82096:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82010:114;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;38224:178::-;38285:7;32068:13;32206:2;38313:18;:25;38332:5;38313:25;;;;;;;;;;;;;;;;:50;;38312:82;38305:89;;38224:178;;;:::o;13040:157::-;13125:4;13164:25;13149:40;;;:11;:40;;;;13142:47;;13040:157;;;:::o;71144:105::-;71204:7;71231:10;71224:17;;71144:105;:::o;18934:98::-;18987:7;19014:10;19007:17;;18934:98;:::o;49999:485::-;50101:27;50130:23;50171:38;50212:15;:24;50228:7;50212:24;;;;;;;;;;;50171:65;;50389:18;50366:41;;50446:19;50440:26;50421:45;;50351:126;49999:485;;;:::o;49227:659::-;49376:11;49541:16;49534:5;49530:28;49521:37;;49701:16;49690:9;49686:32;49673:45;;49851:15;49840:9;49837:30;49829:5;49818:9;49815:20;49812:56;49802:66;;49227:659;;;;;:::o;55885:159::-;;;;;:::o;70453:311::-;70588:7;70608:16;33248:3;70634:19;:41;;70608:68;;33248:3;70702:31;70713:4;70719:2;70723:9;70702:10;:31::i;:::-;70694:40;;:62;;70687:69;;;70453:311;;;;;:::o;45345:450::-;45425:14;45593:16;45586:5;45582:28;45573:37;;45770:5;45756:11;45731:23;45727:41;45724:52;45717:5;45714:63;45704:73;;45345:450;;;;:::o;56709:158::-;;;;;:::o;45897:324::-;45967:14;46200:1;46190:8;46187:15;46161:24;46157:46;46147:56;;45897:324;;;:::o;57307:716::-;57470:4;57516:2;57491:45;;;57537:19;:17;:19::i;:::-;57558:4;57564:7;57573:5;57491:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57487:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57791:1;57774:6;:13;:18;57770:235;;57820:40;;;;;;;;;;;;;;57770:235;57963:6;57957:13;57948:6;57944:2;57940:15;57933:38;57487:529;57660:54;;;57650:64;;;:6;:64;;;;57643:71;;;57307:716;;;;;;:::o;70154:147::-;70291:6;70154:147;;;;;:::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:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:117;5245:1;5242;5235:12;5273:553;5331:8;5341:6;5391:3;5384:4;5376:6;5372:17;5368:27;5358:122;;5399:79;;:::i;:::-;5358:122;5512:6;5499:20;5489:30;;5542:18;5534:6;5531:30;5528:117;;;5564:79;;:::i;:::-;5528:117;5678:4;5670:6;5666:17;5654:29;;5732:3;5724:4;5716:6;5712:17;5702:8;5698:32;5695:41;5692:128;;;5739:79;;:::i;:::-;5692:128;5273:553;;;;;:::o;5832:529::-;5903:6;5911;5960:2;5948:9;5939:7;5935:23;5931:32;5928:119;;;5966:79;;:::i;:::-;5928:119;6114:1;6103:9;6099:17;6086:31;6144:18;6136:6;6133:30;6130:117;;;6166:79;;:::i;:::-;6130:117;6279:65;6336:7;6327:6;6316:9;6312:22;6279:65;:::i;:::-;6261:83;;;;6057:297;5832:529;;;;;:::o;6367:118::-;6454:24;6472:5;6454:24;:::i;:::-;6449:3;6442:37;6367:118;;:::o;6491:222::-;6584:4;6622:2;6611:9;6607:18;6599:26;;6635:71;6703:1;6692:9;6688:17;6679:6;6635:71;:::i;:::-;6491:222;;;;:::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:329::-;8221:6;8270:2;8258:9;8249:7;8245:23;8241:32;8238:119;;;8276:79;;:::i;:::-;8238:119;8396:1;8421:53;8466:7;8457:6;8446:9;8442:22;8421:53;:::i;:::-;8411:63;;8367:117;8162:329;;;;:::o;8497:116::-;8567:21;8582:5;8567:21;:::i;:::-;8560:5;8557:32;8547:60;;8603:1;8600;8593:12;8547:60;8497:116;:::o;8619:133::-;8662:5;8700:6;8687:20;8678:29;;8716:30;8740:5;8716:30;:::i;:::-;8619:133;;;;:::o;8758:613::-;8832:6;8840;8848;8897:2;8885:9;8876:7;8872:23;8868:32;8865:119;;;8903:79;;:::i;:::-;8865:119;9023:1;9048:53;9093:7;9084:6;9073:9;9069:22;9048:53;:::i;:::-;9038:63;;8994:117;9150:2;9176:53;9221:7;9212:6;9201:9;9197:22;9176:53;:::i;:::-;9166:63;;9121:118;9278:2;9304:50;9346:7;9337:6;9326:9;9322:22;9304:50;:::i;:::-;9294:60;;9249:115;8758:613;;;;;:::o;9377:323::-;9433:6;9482:2;9470:9;9461:7;9457:23;9453:32;9450:119;;;9488:79;;:::i;:::-;9450:119;9608:1;9633:50;9675:7;9666:6;9655:9;9651:22;9633:50;:::i;:::-;9623:60;;9579:114;9377:323;;;;:::o;9706:468::-;9771:6;9779;9828:2;9816:9;9807:7;9803:23;9799:32;9796:119;;;9834:79;;:::i;:::-;9796:119;9954:1;9979:53;10024:7;10015:6;10004:9;10000:22;9979:53;:::i;:::-;9969:63;;9925:117;10081:2;10107:50;10149:7;10140:6;10129:9;10125:22;10107:50;:::i;:::-;10097:60;;10052:115;9706:468;;;;;:::o;10180:117::-;10289:1;10286;10279:12;10303:180;10351:77;10348:1;10341:88;10448:4;10445:1;10438:15;10472:4;10469:1;10462:15;10489:281;10572:27;10594:4;10572:27;:::i;:::-;10564:6;10560:40;10702:6;10690:10;10687:22;10666:18;10654:10;10651:34;10648:62;10645:88;;;10713:18;;:::i;:::-;10645:88;10753:10;10749:2;10742:22;10532:238;10489:281;;:::o;10776:129::-;10810:6;10837:20;;:::i;:::-;10827:30;;10866:33;10894:4;10886:6;10866:33;:::i;:::-;10776:129;;;:::o;10911:307::-;10972:4;11062:18;11054:6;11051:30;11048:56;;;11084:18;;:::i;:::-;11048:56;11122:29;11144:6;11122:29;:::i;:::-;11114:37;;11206:4;11200;11196:15;11188:23;;10911:307;;;:::o;11224:146::-;11321:6;11316:3;11311;11298:30;11362:1;11353:6;11348:3;11344:16;11337:27;11224:146;;;:::o;11376:423::-;11453:5;11478:65;11494:48;11535:6;11494:48;:::i;:::-;11478:65;:::i;:::-;11469:74;;11566:6;11559:5;11552:21;11604:4;11597:5;11593:16;11642:3;11633:6;11628:3;11624:16;11621:25;11618:112;;;11649:79;;:::i;:::-;11618:112;11739:54;11786:6;11781:3;11776;11739:54;:::i;:::-;11459:340;11376:423;;;;;:::o;11818:338::-;11873:5;11922:3;11915:4;11907:6;11903:17;11899:27;11889:122;;11930:79;;:::i;:::-;11889:122;12047:6;12034:20;12072:78;12146:3;12138:6;12131:4;12123:6;12119:17;12072:78;:::i;:::-;12063:87;;11879:277;11818:338;;;;:::o;12162:943::-;12257:6;12265;12273;12281;12330:3;12318:9;12309:7;12305:23;12301:33;12298:120;;;12337:79;;:::i;:::-;12298:120;12457:1;12482:53;12527:7;12518:6;12507:9;12503:22;12482:53;:::i;:::-;12472:63;;12428:117;12584:2;12610:53;12655:7;12646:6;12635:9;12631:22;12610:53;:::i;:::-;12600:63;;12555:118;12712:2;12738:53;12783:7;12774:6;12763:9;12759:22;12738:53;:::i;:::-;12728:63;;12683:118;12868:2;12857:9;12853:18;12840:32;12899:18;12891:6;12888:30;12885:117;;;12921:79;;:::i;:::-;12885:117;13026:62;13080:7;13071:6;13060:9;13056:22;13026:62;:::i;:::-;13016:72;;12811:287;12162:943;;;;;;;:::o;13111:109::-;13147:7;13187:26;13180:5;13176:38;13165:49;;13111:109;;;:::o;13226:120::-;13298:23;13315:5;13298:23;:::i;:::-;13291:5;13288:34;13278:62;;13336:1;13333;13326:12;13278:62;13226:120;:::o;13352:137::-;13397:5;13435:6;13422:20;13413:29;;13451:32;13477:5;13451:32;:::i;:::-;13352:137;;;;:::o;13495:472::-;13562:6;13570;13619:2;13607:9;13598:7;13594:23;13590:32;13587:119;;;13625:79;;:::i;:::-;13587:119;13745:1;13770:53;13815:7;13806:6;13795:9;13791:22;13770:53;:::i;:::-;13760:63;;13716:117;13872:2;13898:52;13942:7;13933:6;13922:9;13918:22;13898:52;:::i;:::-;13888:62;;13843:117;13495:472;;;;;:::o;13973:308::-;14035:4;14125:18;14117:6;14114:30;14111:56;;;14147:18;;:::i;:::-;14111:56;14185:29;14207:6;14185:29;:::i;:::-;14177:37;;14269:4;14263;14259:15;14251:23;;13973:308;;;:::o;14287:425::-;14365:5;14390:66;14406:49;14448:6;14406:49;:::i;:::-;14390:66;:::i;:::-;14381:75;;14479:6;14472:5;14465:21;14517:4;14510:5;14506:16;14555:3;14546:6;14541:3;14537:16;14534:25;14531:112;;;14562:79;;:::i;:::-;14531:112;14652:54;14699:6;14694:3;14689;14652:54;:::i;:::-;14371:341;14287:425;;;;;:::o;14732:340::-;14788:5;14837:3;14830:4;14822:6;14818:17;14814:27;14804:122;;14845:79;;:::i;:::-;14804:122;14962:6;14949:20;14987:79;15062:3;15054:6;15047:4;15039:6;15035:17;14987:79;:::i;:::-;14978:88;;14794:278;14732:340;;;;:::o;15078:509::-;15147:6;15196:2;15184:9;15175:7;15171:23;15167:32;15164:119;;;15202:79;;:::i;:::-;15164:119;15350:1;15339:9;15335:17;15322:31;15380:18;15372:6;15369:30;15366:117;;;15402:79;;:::i;:::-;15366:117;15507:63;15562:7;15553:6;15542:9;15538:22;15507:63;:::i;:::-;15497:73;;15293:287;15078:509;;;;:::o;15593:474::-;15661:6;15669;15718:2;15706:9;15697:7;15693:23;15689:32;15686:119;;;15724:79;;:::i;:::-;15686:119;15844:1;15869:53;15914:7;15905:6;15894:9;15890:22;15869:53;:::i;:::-;15859:63;;15815:117;15971:2;15997:53;16042:7;16033:6;16022:9;16018:22;15997:53;:::i;:::-;15987:63;;15942:118;15593:474;;;;;:::o;16073:180::-;16121:77;16118:1;16111:88;16218:4;16215:1;16208:15;16242:4;16239:1;16232:15;16259:320;16303:6;16340:1;16334:4;16330:12;16320:22;;16387:1;16381:4;16377:12;16408:18;16398:81;;16464:4;16456:6;16452:17;16442:27;;16398:81;16526:2;16518:6;16515:14;16495:18;16492:38;16489:84;;16545:18;;:::i;:::-;16489:84;16310:269;16259:320;;;:::o;16585:97::-;16644:6;16672:3;16662:13;;16585:97;;;;:::o;16688:141::-;16737:4;16760:3;16752:11;;16783:3;16780:1;16773:14;16817:4;16814:1;16804:18;16796:26;;16688:141;;;:::o;16835:93::-;16872:6;16919:2;16914;16907:5;16903:14;16899:23;16889:33;;16835:93;;;:::o;16934:107::-;16978:8;17028:5;17022:4;17018:16;16997:37;;16934:107;;;;:::o;17047:393::-;17116:6;17166:1;17154:10;17150:18;17189:97;17219:66;17208:9;17189:97;:::i;:::-;17307:39;17337:8;17326:9;17307:39;:::i;:::-;17295:51;;17379:4;17375:9;17368:5;17364:21;17355:30;;17428:4;17418:8;17414:19;17407:5;17404:30;17394:40;;17123:317;;17047:393;;;;;:::o;17446:60::-;17474:3;17495:5;17488:12;;17446:60;;;:::o;17512:142::-;17562:9;17595:53;17613:34;17622:24;17640:5;17622:24;:::i;:::-;17613:34;:::i;:::-;17595:53;:::i;:::-;17582:66;;17512:142;;;:::o;17660:75::-;17703:3;17724:5;17717:12;;17660:75;;;:::o;17741:269::-;17851:39;17882:7;17851:39;:::i;:::-;17912:91;17961:41;17985:16;17961:41;:::i;:::-;17953:6;17946:4;17940:11;17912:91;:::i;:::-;17906:4;17899:105;17817:193;17741:269;;;:::o;18016:73::-;18061:3;18016:73;:::o;18095:189::-;18172:32;;:::i;:::-;18213:65;18271:6;18263;18257:4;18213:65;:::i;:::-;18148:136;18095:189;;:::o;18290:186::-;18350:120;18367:3;18360:5;18357:14;18350:120;;;18421:39;18458:1;18451:5;18421:39;:::i;:::-;18394:1;18387:5;18383:13;18374:22;;18350:120;;;18290:186;;:::o;18482:543::-;18583:2;18578:3;18575:11;18572:446;;;18617:38;18649:5;18617:38;:::i;:::-;18701:29;18719:10;18701:29;:::i;:::-;18691:8;18687:44;18884:2;18872:10;18869:18;18866:49;;;18905:8;18890:23;;18866:49;18928:80;18984:22;19002:3;18984:22;:::i;:::-;18974:8;18970:37;18957:11;18928:80;:::i;:::-;18587:431;;18572:446;18482:543;;;:::o;19031:117::-;19085:8;19135:5;19129:4;19125:16;19104:37;;19031:117;;;;:::o;19154:169::-;19198:6;19231:51;19279:1;19275:6;19267:5;19264:1;19260:13;19231:51;:::i;:::-;19227:56;19312:4;19306;19302:15;19292:25;;19205:118;19154:169;;;;:::o;19328:295::-;19404:4;19550:29;19575:3;19569:4;19550:29;:::i;:::-;19542:37;;19612:3;19609:1;19605:11;19599:4;19596:21;19588:29;;19328:295;;;;:::o;19628:1403::-;19752:44;19792:3;19787;19752:44;:::i;:::-;19861:18;19853:6;19850:30;19847:56;;;19883:18;;:::i;:::-;19847:56;19927:38;19959:4;19953:11;19927:38;:::i;:::-;20012:67;20072:6;20064;20058:4;20012:67;:::i;:::-;20106:1;20135:2;20127:6;20124:14;20152:1;20147:632;;;;20823:1;20840:6;20837:84;;;20896:9;20891:3;20887:19;20874:33;20865:42;;20837:84;20947:67;21007:6;21000:5;20947:67;:::i;:::-;20941:4;20934:81;20796:229;20117:908;;20147:632;20199:4;20195:9;20187:6;20183:22;20233:37;20265:4;20233:37;:::i;:::-;20292:1;20306:215;20320:7;20317:1;20314:14;20306:215;;;20406:9;20401:3;20397:19;20384:33;20376:6;20369:49;20457:1;20449:6;20445:14;20435:24;;20504:2;20493:9;20489:18;20476:31;;20343:4;20340:1;20336:12;20331:17;;20306:215;;;20549:6;20540:7;20537:19;20534:186;;;20614:9;20609:3;20605:19;20592:33;20657:48;20699:4;20691:6;20687:17;20676:9;20657:48;:::i;:::-;20649:6;20642:64;20557:163;20534:186;20766:1;20762;20754:6;20750:14;20746:22;20740:4;20733:36;20154:625;;;20117:908;;19727:1304;;;19628:1403;;;:::o;21037:180::-;21085:77;21082:1;21075:88;21182:4;21179:1;21172:15;21206:4;21203:1;21196:15;21223:410;21263:7;21286:20;21304:1;21286:20;:::i;:::-;21281:25;;21320:20;21338:1;21320:20;:::i;:::-;21315:25;;21375:1;21372;21368:9;21397:30;21415:11;21397:30;:::i;:::-;21386:41;;21576:1;21567:7;21563:15;21560:1;21557:22;21537:1;21530:9;21510:83;21487:139;;21606:18;;:::i;:::-;21487:139;21271:362;21223:410;;;;:::o;21639:180::-;21687:77;21684:1;21677:88;21784:4;21781:1;21774:15;21808:4;21805:1;21798:15;21825:185;21865:1;21882:20;21900:1;21882:20;:::i;:::-;21877:25;;21916:20;21934:1;21916:20;:::i;:::-;21911:25;;21955:1;21945:35;;21960:18;;:::i;:::-;21945:35;22002:1;21999;21995:9;21990:14;;21825:185;;;;:::o;22016:147::-;22117:11;22154:3;22139:18;;22016:147;;;;:::o;22169:114::-;;:::o;22289:398::-;22448:3;22469:83;22550:1;22545:3;22469:83;:::i;:::-;22462:90;;22561:93;22650:3;22561:93;:::i;:::-;22679:1;22674:3;22670:11;22663:18;;22289:398;;;:::o;22693:379::-;22877:3;22899:147;23042:3;22899:147;:::i;:::-;22892:154;;23063:3;23056:10;;22693:379;;;:::o;23078:169::-;23218:21;23214:1;23206:6;23202:14;23195:45;23078:169;:::o;23253:366::-;23395:3;23416:67;23480:2;23475:3;23416:67;:::i;:::-;23409:74;;23492:93;23581:3;23492:93;:::i;:::-;23610:2;23605:3;23601:12;23594:19;;23253:366;;;:::o;23625:419::-;23791:4;23829:2;23818:9;23814:18;23806:26;;23878:9;23872:4;23868:20;23864:1;23853:9;23849:17;23842:47;23906:131;24032:4;23906:131;:::i;:::-;23898:139;;23625:419;;;:::o;24050:168::-;24190:20;24186:1;24178:6;24174:14;24167:44;24050:168;:::o;24224:366::-;24366:3;24387:67;24451:2;24446:3;24387:67;:::i;:::-;24380:74;;24463:93;24552:3;24463:93;:::i;:::-;24581:2;24576:3;24572:12;24565:19;;24224:366;;;:::o;24596:419::-;24762:4;24800:2;24789:9;24785:18;24777:26;;24849:9;24843:4;24839:20;24835:1;24824:9;24820:17;24813:47;24877:131;25003:4;24877:131;:::i;:::-;24869:139;;24596:419;;;:::o;25021:174::-;25161:26;25157:1;25149:6;25145:14;25138:50;25021:174;:::o;25201:366::-;25343:3;25364:67;25428:2;25423:3;25364:67;:::i;:::-;25357:74;;25440:93;25529:3;25440:93;:::i;:::-;25558:2;25553:3;25549:12;25542:19;;25201:366;;;:::o;25573:419::-;25739:4;25777:2;25766:9;25762:18;25754:26;;25826:9;25820:4;25816:20;25812:1;25801:9;25797:17;25790:47;25854:131;25980:4;25854:131;:::i;:::-;25846:139;;25573:419;;;:::o;25998:191::-;26038:3;26057:20;26075:1;26057:20;:::i;:::-;26052:25;;26091:20;26109:1;26091:20;:::i;:::-;26086:25;;26134:1;26131;26127:9;26120:16;;26155:3;26152:1;26149:10;26146:36;;;26162:18;;:::i;:::-;26146:36;25998:191;;;;:::o;26195:172::-;26335:24;26331:1;26323:6;26319:14;26312:48;26195:172;:::o;26373:366::-;26515:3;26536:67;26600:2;26595:3;26536:67;:::i;:::-;26529:74;;26612:93;26701:3;26612:93;:::i;:::-;26730:2;26725:3;26721:12;26714:19;;26373:366;;;:::o;26745:419::-;26911:4;26949:2;26938:9;26934:18;26926:26;;26998:9;26992:4;26988:20;26984:1;26973:9;26969:17;26962:47;27026:131;27152:4;27026:131;:::i;:::-;27018:139;;26745:419;;;:::o;27170:176::-;27310:28;27306:1;27298:6;27294:14;27287:52;27170:176;:::o;27352:366::-;27494:3;27515:67;27579:2;27574:3;27515:67;:::i;:::-;27508:74;;27591:93;27680:3;27591:93;:::i;:::-;27709:2;27704:3;27700:12;27693:19;;27352:366;;;:::o;27724:419::-;27890:4;27928:2;27917:9;27913:18;27905:26;;27977:9;27971:4;27967:20;27963:1;27952:9;27948:17;27941:47;28005:131;28131:4;28005:131;:::i;:::-;27997:139;;27724:419;;;:::o;28149:194::-;28189:4;28209:20;28227:1;28209:20;:::i;:::-;28204:25;;28243:20;28261:1;28243:20;:::i;:::-;28238:25;;28287:1;28284;28280:9;28272:17;;28311:1;28305:4;28302:11;28299:37;;;28316:18;;:::i;:::-;28299:37;28149:194;;;;:::o;28349:234::-;28489:34;28485:1;28477:6;28473:14;28466:58;28558:17;28553:2;28545:6;28541:15;28534:42;28349:234;:::o;28589:366::-;28731:3;28752:67;28816:2;28811:3;28752:67;:::i;:::-;28745:74;;28828:93;28917:3;28828:93;:::i;:::-;28946:2;28941:3;28937:12;28930:19;;28589:366;;;:::o;28961:419::-;29127:4;29165:2;29154:9;29150:18;29142:26;;29214:9;29208:4;29204:20;29200:1;29189:9;29185:17;29178:47;29242:131;29368:4;29242:131;:::i;:::-;29234:139;;28961:419;;;:::o;29386:148::-;29488:11;29525:3;29510:18;;29386:148;;;;:::o;29540:390::-;29646:3;29674:39;29707:5;29674:39;:::i;:::-;29729:89;29811:6;29806:3;29729:89;:::i;:::-;29722:96;;29827:65;29885:6;29880:3;29873:4;29866:5;29862:16;29827:65;:::i;:::-;29917:6;29912:3;29908:16;29901:23;;29650:280;29540:390;;;;:::o;29960:874::-;30063:3;30100:5;30094:12;30129:36;30155:9;30129:36;:::i;:::-;30181:89;30263:6;30258:3;30181:89;:::i;:::-;30174:96;;30301:1;30290:9;30286:17;30317:1;30312:166;;;;30492:1;30487:341;;;;30279:549;;30312:166;30396:4;30392:9;30381;30377:25;30372:3;30365:38;30458:6;30451:14;30444:22;30436:6;30432:35;30427:3;30423:45;30416:52;;30312:166;;30487:341;30554:38;30586:5;30554:38;:::i;:::-;30614:1;30628:154;30642:6;30639:1;30636:13;30628:154;;;30716:7;30710:14;30706:1;30701:3;30697:11;30690:35;30766:1;30757:7;30753:15;30742:26;;30664:4;30661:1;30657:12;30652:17;;30628:154;;;30811:6;30806:3;30802:16;30795:23;;30494:334;;30279:549;;30067:767;;29960:874;;;;:::o;30840:589::-;31065:3;31087:95;31178:3;31169:6;31087:95;:::i;:::-;31080:102;;31199:95;31290:3;31281:6;31199:95;:::i;:::-;31192:102;;31311:92;31399:3;31390:6;31311:92;:::i;:::-;31304:99;;31420:3;31413:10;;30840:589;;;;;;:::o;31435:1395::-;31552:37;31585:3;31552:37;:::i;:::-;31654:18;31646:6;31643:30;31640:56;;;31676:18;;:::i;:::-;31640:56;31720:38;31752:4;31746:11;31720:38;:::i;:::-;31805:67;31865:6;31857;31851:4;31805:67;:::i;:::-;31899:1;31923:4;31910:17;;31955:2;31947:6;31944:14;31972:1;31967:618;;;;32629:1;32646:6;32643:77;;;32695:9;32690:3;32686:19;32680:26;32671:35;;32643:77;32746:67;32806:6;32799:5;32746:67;:::i;:::-;32740:4;32733:81;32602:222;31937:887;;31967:618;32019:4;32015:9;32007:6;32003:22;32053:37;32085:4;32053:37;:::i;:::-;32112:1;32126:208;32140:7;32137:1;32134:14;32126:208;;;32219:9;32214:3;32210:19;32204:26;32196:6;32189:42;32270:1;32262:6;32258:14;32248:24;;32317:2;32306:9;32302:18;32289:31;;32163:4;32160:1;32156:12;32151:17;;32126:208;;;32362:6;32353:7;32350:19;32347:179;;;32420:9;32415:3;32411:19;32405:26;32463:48;32505:4;32497:6;32493:17;32482:9;32463:48;:::i;:::-;32455:6;32448:64;32370:156;32347:179;32572:1;32568;32560:6;32556:14;32552:22;32546:4;32539:36;31974:611;;;31937:887;;31527:1303;;;31435:1395;;:::o;32836:225::-;32976:34;32972:1;32964:6;32960:14;32953:58;33045:8;33040:2;33032:6;33028:15;33021:33;32836:225;:::o;33067:366::-;33209:3;33230:67;33294:2;33289:3;33230:67;:::i;:::-;33223:74;;33306:93;33395:3;33306:93;:::i;:::-;33424:2;33419:3;33415:12;33408:19;;33067:366;;;:::o;33439:419::-;33605:4;33643:2;33632:9;33628:18;33620:26;;33692:9;33686:4;33682:20;33678:1;33667:9;33663:17;33656:47;33720:131;33846:4;33720:131;:::i;:::-;33712:139;;33439:419;;;:::o;33864:182::-;34004:34;34000:1;33992:6;33988:14;33981:58;33864:182;:::o;34052:366::-;34194:3;34215:67;34279:2;34274:3;34215:67;:::i;:::-;34208:74;;34291:93;34380:3;34291:93;:::i;:::-;34409:2;34404:3;34400:12;34393:19;;34052:366;;;:::o;34424:419::-;34590:4;34628:2;34617:9;34613:18;34605:26;;34677:9;34671:4;34667:20;34663:1;34652:9;34648:17;34641:47;34705:131;34831:4;34705:131;:::i;:::-;34697:139;;34424:419;;;:::o;34849:229::-;34989:34;34985:1;34977:6;34973:14;34966:58;35058:12;35053:2;35045:6;35041:15;35034:37;34849:229;:::o;35084:366::-;35226:3;35247:67;35311:2;35306:3;35247:67;:::i;:::-;35240:74;;35323:93;35412:3;35323:93;:::i;:::-;35441:2;35436:3;35432:12;35425:19;;35084:366;;;:::o;35456:419::-;35622:4;35660:2;35649:9;35645:18;35637:26;;35709:9;35703:4;35699:20;35695:1;35684:9;35680:17;35673:47;35737:131;35863:4;35737:131;:::i;:::-;35729:139;;35456:419;;;:::o;35881:175::-;36021:27;36017:1;36009:6;36005:14;35998:51;35881:175;:::o;36062:366::-;36204:3;36225:67;36289:2;36284:3;36225:67;:::i;:::-;36218:74;;36301:93;36390:3;36301:93;:::i;:::-;36419:2;36414:3;36410:12;36403:19;;36062:366;;;:::o;36434:419::-;36600:4;36638:2;36627:9;36623:18;36615:26;;36687:9;36681:4;36677:20;36673:1;36662:9;36658:17;36651:47;36715:131;36841:4;36715:131;:::i;:::-;36707:139;;36434:419;;;:::o;36859:233::-;36898:3;36921:24;36939:5;36921:24;:::i;:::-;36912:33;;36967:66;36960:5;36957:77;36954:103;;37037:18;;:::i;:::-;36954:103;37084:1;37077:5;37073:13;37066:20;;36859:233;;;:::o;37098:176::-;37130:1;37147:20;37165:1;37147:20;:::i;:::-;37142:25;;37181:20;37199:1;37181:20;:::i;:::-;37176:25;;37220:1;37210:35;;37225:18;;:::i;:::-;37210:35;37266:1;37263;37259:9;37254:14;;37098:176;;;;:::o;37280:180::-;37328:77;37325:1;37318:88;37425:4;37422:1;37415:15;37449:4;37446:1;37439:15;37466:98;37517:6;37551:5;37545:12;37535:22;;37466:98;;;:::o;37570:168::-;37653:11;37687:6;37682:3;37675:19;37727:4;37722:3;37718:14;37703:29;;37570:168;;;;:::o;37744:373::-;37830:3;37858:38;37890:5;37858:38;:::i;:::-;37912:70;37975:6;37970:3;37912:70;:::i;:::-;37905:77;;37991:65;38049:6;38044:3;38037:4;38030:5;38026:16;37991:65;:::i;:::-;38081:29;38103:6;38081:29;:::i;:::-;38076:3;38072:39;38065:46;;37834:283;37744:373;;;;:::o;38123:640::-;38318:4;38356:3;38345:9;38341:19;38333:27;;38370:71;38438:1;38427:9;38423:17;38414:6;38370:71;:::i;:::-;38451:72;38519:2;38508:9;38504:18;38495:6;38451:72;:::i;:::-;38533;38601:2;38590:9;38586:18;38577:6;38533:72;:::i;:::-;38652:9;38646:4;38642:20;38637:2;38626:9;38622:18;38615:48;38680:76;38751:4;38742:6;38680:76;:::i;:::-;38672:84;;38123:640;;;;;;;:::o;38769:141::-;38825:5;38856:6;38850:13;38841:22;;38872:32;38898:5;38872:32;:::i;:::-;38769:141;;;;:::o;38916:349::-;38985:6;39034:2;39022:9;39013:7;39009:23;39005:32;39002:119;;;39040:79;;:::i;:::-;39002:119;39160:1;39185:63;39240:7;39231:6;39220:9;39216:22;39185:63;:::i;:::-;39175:73;;39131:127;38916:349;;;;:::o

Swarm Source

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