ETH Price: $2,951.11 (-3.72%)
Gas: 2 Gwei

Token

EternalJacques (JCQ)
 

Overview

Max Total Supply

1,110 JCQ

Holders

688

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 JCQ
0x69d63952eb1156e92a164a4bf8b822d6d8127b1a
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:
Jacques

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-06
*/

// SPDX-License-Identifier: MIT
// File: operator-filter-registry-main/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry-main/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry-main/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/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: Jacques+royalty.sol















pragma solidity ^0.8.17;



contract Jacques is ERC721A, Ownable, DefaultOperatorFilterer {

    using Strings for uint256;

    string public baseURI;
    string public uriExtension = ".json";
    string public hiddenURI;

    //***************************************************************************************************
    //Pricing
    //***************************************************************************************************
    uint256 public pricePartner = 0.0 ether; //set NFT price
    uint256 public pricePresale = 0.009 ether; //set NFT price
    uint256 public pricePublic = 0.012 ether; //set NFT price

    //***************************************************************************************************
    //Supply and Reserve
    //***************************************************************************************************
    uint256 public maxSupply = 3333; // set max supply according to your need
    uint256 public maxPartnerSupply = 555; // set max supply for partners
    uint256 public reserve = 10; // management tokens

    //***************************************************************************************************
    //Max per Wallets
    //***************************************************************************************************
    uint256 public maxPartnerMint = 1; //set how many NFTs can be minted per wallet for partner
    uint256 public maxPreSaleMint = 2; //set how many NFTs can be minted per wallet in pre sale
    uint256 public maxPublicSaleMint = 2; //set how many NFTs can be minted per wallet in public sale

    //***************************************************************************************************
    //Sale Controls and Allow List
    //***************************************************************************************************
    bool public isPartnerSaleActive = false;
    bool public isPreSaleActive = false;
    bool public isPublicSaleActive = false;
    bool public isRevealed = false;
    bytes32 public merkleRootPartner;
    bytes32 public merkleRootPresale;


    //***************************************************************************************************
    //Developer Settings
    //***************************************************************************************************
    address public immutable devAddress;

    //***************************************************************************************************
    //Constructor
    //***************************************************************************************************
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initHiddenURI
    ) ERC721A(_name, _symbol) {
        baseURI = _initBaseURI;
        hiddenURI = _initHiddenURI;
        devAddress = 0x0d37CB1b16F66EB629cE2e07F5278f3fae8f1e69;
    }

    //***************************************************************************************************
    // Use #1..
    //***************************************************************************************************
    function _startTokenId() internal view virtual override returns (uint256) { return 1; }
    //***************************************************************************************************
    //Mint tokens for management (pulls a reserve amount)
    //***************************************************************************************************
    function mintReserve() external onlyOwner {
        uint256 supply = totalSupply();
        require(supply + reserve <= maxSupply,  'This transaction would exceed max supply.');

        _safeMint(msg.sender, reserve);
    }

    //***************************************************************************************************
    //Partner Mint
    //***************************************************************************************************
    function partnerMint(bytes32[] calldata __proof, uint256 __count) external payable {
        uint256 supply = totalSupply();
        uint256 tokenCount = numberMinted(msg.sender);

        require(isPartnerSaleActive,           'Partner Sale is not active');
        require(__count > 0,                   'Count can not be 0');
        require(__count <= maxPartnerMint,     string(abi.encodePacked('You can only mint ', maxPartnerMint.toString())));
        require(tokenCount + __count <= maxPartnerMint,  string(abi.encodePacked('You can only mint ', maxPartnerMint.toString())));
        require(tokenCount <= maxPartnerMint,  string(abi.encodePacked('You can only mint ', maxPartnerMint.toString())));
        require(supply + __count <= maxPartnerSupply, 'This transaction would exceed max partners supply.');
        require(supply + __count <= maxSupply, 'This transaction would exceed max supply.');
        require(msg.value >= pricePartner * __count,  'Ether value is too low');

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(__proof, merkleRootPartner, leaf), "You are not whitelisted for this stage.");

        _safeMint(msg.sender, __count);
    }

    //***************************************************************************************************
    //Presale Mint
    //***************************************************************************************************
    function preSale(bytes32[] calldata __proof, uint256 __count) external payable {
        uint256 supply = totalSupply();
        uint256 tokenCount = numberMinted(msg.sender);

        require(isPreSaleActive,               'Pre sale is not active');
        require(__count > 0,                   'Count can not be 0');
        require(__count <= maxPreSaleMint,     string(abi.encodePacked('You can only mint ', maxPreSaleMint.toString())));
        require(tokenCount + __count <= maxPreSaleMint,  string(abi.encodePacked('You can only mint ', maxPreSaleMint.toString())));
        require(tokenCount <= maxPreSaleMint,  string(abi.encodePacked('You can only mint ', maxPreSaleMint.toString())));
        require(supply + __count <= maxSupply, 'This transaction would exceed max supply.');
        require(msg.value >= pricePresale * __count,  'Ether value is too low');

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(__proof, merkleRootPresale, leaf), "You are not whitelisted for this stage.");

        _safeMint(msg.sender, __count);
    }

    //***************************************************************************************************
    //Public Mint
    //***************************************************************************************************
    function publicSale(uint256 __count) external payable {
        uint256 supply = totalSupply();
        uint256 tokenCount = numberMinted(msg.sender);

        require(isPublicSaleActive,               'Public sale is not active');
        require(__count > 0,                      'Count can not be 0');
        require(__count <= maxPublicSaleMint,     string(abi.encodePacked('You can only mint ', maxPublicSaleMint.toString())));
        require(tokenCount + __count <= maxPublicSaleMint,  string(abi.encodePacked('You can only mint ', maxPublicSaleMint.toString())));
        require(tokenCount <= maxPublicSaleMint,  string(abi.encodePacked('You can only mint ', maxPublicSaleMint.toString())));
        require(supply + __count <= maxSupply,    'This transaction would exceed max supply.');
        require(msg.value >= pricePublic * __count,     'Ether value is too low');

        _safeMint(msg.sender, __count);
    }

    //***************************************************************************************************
    //Gift
    //***************************************************************************************************
    function gift(address _address, uint256 __count) external onlyOwner {
        uint256 supply = totalSupply();
        require(__count > 0,                      'Count can not be 0');
        require(supply + __count <= maxSupply,    'This transaction would exceed max supply.');

        _safeMint(_address, __count);
    }

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

    //***************************************************************************************************
    // MetaData
    //***************************************************************************************************
    function tokenURI(uint256 tokenId) public view override returns (string memory) {

        // return not revealed URI
        if (!isRevealed) { return hiddenURI; }

        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    //***************************************************************************************************
    //Change baseURI or hiddenURI of collection
    //***************************************************************************************************
    function setBaseURI(string memory __baseURI) public onlyOwner { baseURI = __baseURI; }
    function setHiddenURI(string memory __hiddenURI) public onlyOwner { hiddenURI = __hiddenURI; }

    //***************************************************************************************************
    //Change prices of NFT
    //***************************************************************************************************
    function setPartnerPrice(uint256 __price) public onlyOwner { pricePartner = __price; }
    function setPresalePrice(uint256 __price) public onlyOwner { pricePresale = __price; }
    function setPublicPrice(uint256 __price) public onlyOwner { pricePublic = __price; }

    //***************************************************************************************************
    //Change how many NFTs can be minted per wallets
    //***************************************************************************************************
    function setMaxPartnerSale(uint256 __number) public onlyOwner { maxPartnerMint = __number; }
    function setMaxPreSale(uint256 __number) public onlyOwner { maxPreSaleMint = __number; }
    function setMaxPublicSale(uint256 __number) public onlyOwner { maxPublicSaleMint = __number; }

    //***************************************************************************************************
    //Change merkle roots
    //***************************************************************************************************
    function setPartnerMerkleRoot(bytes32 __merkleRoot) public onlyOwner { merkleRootPartner = __merkleRoot; }
    function setPresaleMerkleRoot(bytes32 __merkleRoot) public onlyOwner { merkleRootPresale = __merkleRoot; }

    //***************************************************************************************************
    //Change revealed state of collection
    //***************************************************************************************************
    function flipRevealed() public onlyOwner { isRevealed = !isRevealed; }

    //***************************************************************************************************
    //Change pre sale state of collection
    //***************************************************************************************************
    function flipPartnerSale() public onlyOwner { isPartnerSaleActive = !isPartnerSaleActive; }
    function flipPreSale() public onlyOwner { isPreSaleActive = !isPreSaleActive; }
    function flipPublicSale() public onlyOwner { isPublicSaleActive = !isPublicSaleActive; }

    //***************************************************************************************************
    //Returns total minted NFTs by specific user
    //***************************************************************************************************
    function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); }

    //***************************************************************************************************
    //Ownership
    //***************************************************************************************************
    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
    {
        return _ownershipOf(tokenId);
    }

    //***************************************************************************************************
    //Withdraw Funds
    //***************************************************************************************************
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        require(balance > 0, "No ether to withdraw");

        payable(devAddress).transfer(balance);
    }


    //***************************************************************************************************
    //Operator
    //***************************************************************************************************
   
   function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        payable
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    //***************************************************************************************************
    //Fallback function for receiving Ether
    //***************************************************************************************************

    receive() external payable {  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initHiddenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPartnerSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"__count","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"isPartnerSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPartnerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPartnerSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPartner","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPresale","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bytes32[]","name":"__proof","type":"bytes32[]"},{"internalType":"uint256","name":"__count","type":"uint256"}],"name":"partnerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"__proof","type":"bytes32[]"},{"internalType":"uint256","name":"__count","type":"uint256"}],"name":"preSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pricePartner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"__count","type":"uint256"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__number","type":"uint256"}],"name":"setMaxPartnerSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__number","type":"uint256"}],"name":"setMaxPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__number","type":"uint256"}],"name":"setMaxPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"__merkleRoot","type":"bytes32"}],"name":"setPartnerMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"setPartnerPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"__merkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"setPublicPrice","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":"uriExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90816200004a919062000758565b506000600c55661ff973cafa8000600d55662aa1efb94e0000600e55610d05600f5561022b601055600a6011556001601255600260135560026014556000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff0219169083151502179055506000601560026101000a81548160ff0219169083151502179055506000601560036101000a81548160ff021916908315150217905550348015620000ff57600080fd5b50604051620058b3380380620058b38339818101604052810190620001259190620009a3565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001858581600290816200014f919062000758565b50806003908162000161919062000758565b50620001726200040760201b60201c565b60008190555050506200019a6200018e6200041060201b60201c565b6200041860201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200038f57801562000255576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200021b92919062000ad6565b600060405180830381600087803b1580156200023657600080fd5b505af11580156200024b573d6000803e3d6000fd5b505050506200038e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200030f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002d592919062000ad6565b600060405180830381600087803b158015620002f057600080fd5b505af115801562000305573d6000803e3d6000fd5b505050506200038d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000358919062000b03565b600060405180830381600087803b1580156200037357600080fd5b505af115801562000388573d6000803e3d6000fd5b505050505b5b5b50508160099081620003a2919062000758565b5080600b9081620003b4919062000758565b50730d37cb1b16f66eb629ce2e07f5278f3fae8f1e6973ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505050505062000b20565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056057607f821691505b60208210810362000576576200057562000518565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a1565b620005ec8683620005a1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000639620006336200062d8462000604565b6200060e565b62000604565b9050919050565b6000819050919050565b620006558362000618565b6200066d620006648262000640565b848454620005ae565b825550505050565b600090565b6200068462000675565b620006918184846200064a565b505050565b5b81811015620006b957620006ad6000826200067a565b60018101905062000697565b5050565b601f8211156200070857620006d2816200057c565b620006dd8462000591565b81016020851015620006ed578190505b62000705620006fc8562000591565b83018262000696565b50505b505050565b600082821c905092915050565b60006200072d600019846008026200070d565b1980831691505092915050565b60006200074883836200071a565b9150826002028217905092915050565b6200076382620004de565b67ffffffffffffffff8111156200077f576200077e620004e9565b5b6200078b825462000547565b62000798828285620006bd565b600060209050601f831160018114620007d05760008415620007bb578287015190505b620007c785826200073a565b86555062000837565b601f198416620007e0866200057c565b60005b828110156200080a57848901518255600182019150602085019450602081019050620007e3565b868310156200082a578489015162000826601f8916826200071a565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000879826200085d565b810181811067ffffffffffffffff821117156200089b576200089a620004e9565b5b80604052505050565b6000620008b06200083f565b9050620008be82826200086e565b919050565b600067ffffffffffffffff821115620008e157620008e0620004e9565b5b620008ec826200085d565b9050602081019050919050565b60005b8381101562000919578082015181840152602081019050620008fc565b60008484015250505050565b60006200093c6200093684620008c3565b620008a4565b9050828152602081018484840111156200095b576200095a62000858565b5b62000968848285620008f9565b509392505050565b600082601f83011262000988576200098762000853565b5b81516200099a84826020860162000925565b91505092915050565b60008060008060808587031215620009c057620009bf62000849565b5b600085015167ffffffffffffffff811115620009e157620009e06200084e565b5b620009ef8782880162000970565b945050602085015167ffffffffffffffff81111562000a135762000a126200084e565b5b62000a218782880162000970565b935050604085015167ffffffffffffffff81111562000a455762000a446200084e565b5b62000a538782880162000970565b925050606085015167ffffffffffffffff81111562000a775762000a766200084e565b5b62000a858782880162000970565b91505092959194509250565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000abe8262000a91565b9050919050565b62000ad08162000ab1565b82525050565b600060408201905062000aed600083018562000ac5565b62000afc602083018462000ac5565b9392505050565b600060208201905062000b1a600083018462000ac5565b92915050565b608051614d7062000b4360003960008181610f73015261101b0152614d706000f3fe6080604052600436106103905760003560e01c806381221c14116101dc578063b6d8f66211610102578063cbce4c97116100a0578063e985e9c51161006f578063e985e9c514610c59578063f2fde38b14610c96578063f37340a514610cbf578063f6cb274214610cdb57610397565b8063cbce4c9714610b9d578063cd3293de14610bc6578063d5abeb0114610bf1578063dc33e68114610c1c57610397565b8063bdc1e434116100dc578063bdc1e43414610ae3578063c37a88e614610b0e578063c627525514610b37578063c87b56dd14610b6057610397565b8063b6d8f66214610a75578063b88d4fde14610a9e578063bbaac02f14610aba57610397565b80639147dd1b1161017a578063a22cb46511610149578063a22cb465146109eb578063a2a4860614610a14578063b287c8ed14610a3d578063b3e31b5014610a5957610397565b80639147dd1b1461092d5780639231ab2a1461095857806395d89b41146109955780639d044ed3146109c057610397565b8063890ac366116101b6578063890ac366146108a95780638b62f533146108c05780638cc54e7f146108d75780638da5cb5b1461090257610397565b806381221c141461083e57806381c797c114610867578063880846051461089257610397565b80633ccfd60b116102c157806357b2e1f71161025f578063704e3d9d1161022e578063704e3d9d1461079657806370a08231146107c1578063715018a6146107fe578063805e0b201461081557610397565b806357b2e1f7146106d85780636352211e1461070357806364c22f13146107405780636c0360eb1461076b57610397565b80634c6d74d01161029b5780634c6d74d01461064257806352ee46961461065957806354214f691461068457806355f804b3146106af57610397565b80633ccfd60b146105e457806341f43434146105fb57806342842e0e1461062657610397565b80631e84c4131161032e578063323e89b511610308578063323e89b51461054e5780633549345e146105795780633ad10ef6146105a25780633b2c3fb6146105cd57610397565b80631e84c413146104de57806323b872dd1461050957806328d7b2761461052557610397565b8063081812fc1161036a578063081812fc1461042f578063095ea7b31461046c578063102e766d1461048857806318160ddd146104b357610397565b806301c124b71461039c57806301ffc9a7146103c757806306fdde031461040457610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610d06565b6040516103be919061371d565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906137a4565b610d0c565b6040516103fb91906137ec565b60405180910390f35b34801561041057600080fd5b50610419610d9e565b6040516104269190613897565b60405180910390f35b34801561043b57600080fd5b50610456600480360381019061045191906138ef565b610e30565b604051610463919061395d565b60405180910390f35b610486600480360381019061048191906139a4565b610eaf565b005b34801561049457600080fd5b5061049d610ec8565b6040516104aa91906139f3565b60405180910390f35b3480156104bf57600080fd5b506104c8610ece565b6040516104d591906139f3565b60405180910390f35b3480156104ea57600080fd5b506104f3610ee5565b60405161050091906137ec565b60405180910390f35b610523600480360381019061051e9190613a0e565b610ef8565b005b34801561053157600080fd5b5061054c60048036038101906105479190613a8d565b610f47565b005b34801561055a57600080fd5b50610563610f59565b60405161057091906139f3565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b91906138ef565b610f5f565b005b3480156105ae57600080fd5b506105b7610f71565b6040516105c4919061395d565b60405180910390f35b3480156105d957600080fd5b506105e2610f95565b005b3480156105f057600080fd5b506105f9610fc9565b005b34801561060757600080fd5b50610610611083565b60405161061d9190613b19565b60405180910390f35b610640600480360381019061063b9190613a0e565b611095565b005b34801561064e57600080fd5b506106576110e4565b005b34801561066557600080fd5b5061066e611118565b60405161067b9190613897565b60405180910390f35b34801561069057600080fd5b506106996111a6565b6040516106a691906137ec565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190613c69565b6111b9565b005b3480156106e457600080fd5b506106ed6111d4565b6040516106fa919061371d565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906138ef565b6111da565b604051610737919061395d565b60405180910390f35b34801561074c57600080fd5b506107556111ec565b60405161076291906139f3565b60405180910390f35b34801561077757600080fd5b506107806111f2565b60405161078d9190613897565b60405180910390f35b3480156107a257600080fd5b506107ab611280565b6040516107b891906139f3565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613cb2565b611286565b6040516107f591906139f3565b60405180910390f35b34801561080a57600080fd5b5061081361133e565b005b34801561082157600080fd5b5061083c600480360381019061083791906138ef565b611352565b005b34801561084a57600080fd5b50610865600480360381019061086091906138ef565b611364565b005b34801561087357600080fd5b5061087c611376565b60405161088991906139f3565b60405180910390f35b34801561089e57600080fd5b506108a761137c565b005b3480156108b557600080fd5b506108be6113b0565b005b3480156108cc57600080fd5b506108d5611425565b005b3480156108e357600080fd5b506108ec611459565b6040516108f99190613897565b60405180910390f35b34801561090e57600080fd5b506109176114e7565b604051610924919061395d565b60405180910390f35b34801561093957600080fd5b50610942611511565b60405161094f91906139f3565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a91906138ef565b611517565b60405161098c9190613d93565b60405180910390f35b3480156109a157600080fd5b506109aa61152f565b6040516109b79190613897565b60405180910390f35b3480156109cc57600080fd5b506109d56115c1565b6040516109e291906137ec565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613dda565b6115d4565b005b348015610a2057600080fd5b50610a3b6004803603810190610a3691906138ef565b6115ed565b005b610a576004803603810190610a5291906138ef565b6115ff565b005b610a736004803603810190610a6e9190613e7a565b6118ba565b005b348015610a8157600080fd5b50610a9c6004803603810190610a979190613a8d565b611c80565b005b610ab86004803603810190610ab39190613f7b565b611c92565b005b348015610ac657600080fd5b50610ae16004803603810190610adc9190613c69565b611ce3565b005b348015610aef57600080fd5b50610af8611cfe565b604051610b0591906139f3565b60405180910390f35b348015610b1a57600080fd5b50610b356004803603810190610b3091906138ef565b611d04565b005b348015610b4357600080fd5b50610b5e6004803603810190610b5991906138ef565b611d16565b005b348015610b6c57600080fd5b50610b876004803603810190610b8291906138ef565b611d28565b604051610b949190613897565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf91906139a4565b611e80565b005b348015610bd257600080fd5b50610bdb611f36565b604051610be891906139f3565b60405180910390f35b348015610bfd57600080fd5b50610c06611f3c565b604051610c1391906139f3565b60405180910390f35b348015610c2857600080fd5b50610c436004803603810190610c3e9190613cb2565b611f42565b604051610c5091906139f3565b60405180910390f35b348015610c6557600080fd5b50610c806004803603810190610c7b9190613ffe565b611f54565b604051610c8d91906137ec565b60405180910390f35b348015610ca257600080fd5b50610cbd6004803603810190610cb89190613cb2565b611fe8565b005b610cd96004803603810190610cd49190613e7a565b61206b565b005b348015610ce757600080fd5b50610cf06123e1565b604051610cfd91906137ec565b60405180910390f35b60175481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d975750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610dad9061406d565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd99061406d565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b5050505050905090565b6000610e3b826123f4565b610e71576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610eb981612453565b610ec38383612550565b505050565b600e5481565b6000610ed8612694565b6001546000540303905090565b601560029054906101000a900460ff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f3657610f3533612453565b5b610f4184848461269d565b50505050565b610f4f6129bf565b8060178190555050565b60105481565b610f676129bf565b80600d8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610f9d6129bf565b601560039054906101000a900460ff1615601560036101000a81548160ff021916908315150217905550565b610fd16129bf565b600047905060008111611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906140ea565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561107f573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110d3576110d233612453565b5b6110de848484612a3d565b50505050565b6110ec6129bf565b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b600a80546111259061406d565b80601f01602080910402602001604051908101604052809291908181526020018280546111519061406d565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b505050505081565b601560039054906101000a900460ff1681565b6111c16129bf565b80600990816111d091906142ac565b5050565b60165481565b60006111e582612a5d565b9050919050565b60135481565b600980546111ff9061406d565b80601f016020809104026020016040519081016040528092919081815260200182805461122b9061406d565b80156112785780601f1061124d57610100808354040283529160200191611278565b820191906000526020600020905b81548152906001019060200180831161125b57829003601f168201915b505050505081565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113466129bf565b6113506000612b29565b565b61135a6129bf565b8060148190555050565b61136c6129bf565b8060138190555050565b60125481565b6113846129bf565b601560029054906101000a900460ff1615601560026101000a81548160ff021916908315150217905550565b6113b86129bf565b60006113c2610ece565b9050600f54601154826113d591906143ad565b1115611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90614453565b60405180910390fd5b61142233601154612bef565b50565b61142d6129bf565b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550565b600b80546114669061406d565b80601f01602080910402602001604051908101604052809291908181526020018280546114929061406d565b80156114df5780601f106114b4576101008083540402835291602001916114df565b820191906000526020600020905b8154815290600101906020018083116114c257829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b61151f6136b5565b61152882612c0d565b9050919050565b60606003805461153e9061406d565b80601f016020809104026020016040519081016040528092919081815260200182805461156a9061406d565b80156115b75780601f1061158c576101008083540402835291602001916115b7565b820191906000526020600020905b81548152906001019060200180831161159a57829003601f168201915b5050505050905090565b601560019054906101000a900460ff1681565b816115de81612453565b6115e88383612c2d565b505050565b6115f56129bf565b80600c8190555050565b6000611609610ece565b9050600061161633611f42565b9050601560029054906101000a900460ff16611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e906144bf565b60405180910390fd5b600083116116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a19061452b565b60405180910390fd5b6014548311156116bb601454612d38565b6040516020016116cb91906145d3565b6040516020818303038152906040529061171b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117129190613897565b60405180910390fd5b50601454838261172b91906143ad565b1115611738601454612d38565b60405160200161174891906145d3565b60405160208183030381529060405290611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9190613897565b60405180910390fd5b506014548111156117aa601454612d38565b6040516020016117ba91906145d3565b6040516020818303038152906040529061180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019190613897565b60405180910390fd5b50600f54838361181a91906143ad565b111561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614453565b60405180910390fd5b82600e5461186991906145f5565b3410156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290614683565b60405180910390fd5b6118b53384612bef565b505050565b60006118c4610ece565b905060006118d133611f42565b9050601560009054906101000a900460ff16611922576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611919906146ef565b60405180910390fd5b60008311611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c9061452b565b60405180910390fd5b601254831115611976601254612d38565b60405160200161198691906145d3565b604051602081830303815290604052906119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9190613897565b60405180910390fd5b5060125483826119e691906143ad565b11156119f3601254612d38565b604051602001611a0391906145d3565b60405160208183030381529060405290611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a9190613897565b60405180910390fd5b50601254811115611a65601254612d38565b604051602001611a7591906145d3565b60405160208183030381529060405290611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc9190613897565b60405180910390fd5b506010548383611ad591906143ad565b1115611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90614781565b60405180910390fd5b600f548383611b2591906143ad565b1115611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90614453565b60405180910390fd5b82600c54611b7491906145f5565b341015611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90614683565b60405180910390fd5b600033604051602001611bc991906147e9565b604051602081830303815290604052805190602001209050611c2f868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060165483612e06565b611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590614876565b60405180910390fd5b611c783385612bef565b505050505050565b611c886129bf565b8060168190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cd057611ccf33612453565b5b611cdc85858585612e1d565b5050505050565b611ceb6129bf565b80600b9081611cfa91906142ac565b5050565b600c5481565b611d0c6129bf565b8060128190555050565b611d1e6129bf565b80600e8190555050565b6060601560039054906101000a900460ff16611dd057600b8054611d4b9061406d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d779061406d565b8015611dc45780601f10611d9957610100808354040283529160200191611dc4565b820191906000526020600020905b815481529060010190602001808311611da757829003601f168201915b50505050509050611e7b565b611dd9826123f4565b611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614908565b60405180910390fd5b600060098054611e279061406d565b905003611e435760405180602001604052806000815250611e78565b611e4b612e90565b611e5483612d38565b600a604051602001611e68939291906149ab565b6040516020818303038152906040525b90505b919050565b611e886129bf565b6000611e92610ece565b905060008211611ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ece9061452b565b60405180910390fd5b600f548282611ee691906143ad565b1115611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614453565b60405180910390fd5b611f318383612bef565b505050565b60115481565b600f5481565b6000611f4d82612f22565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ff06129bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690614a4e565b60405180910390fd5b61206881612b29565b50565b6000612075610ece565b9050600061208233611f42565b9050601560019054906101000a900460ff166120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90614aba565b60405180910390fd5b60008311612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d9061452b565b60405180910390fd5b601354831115612127601354612d38565b60405160200161213791906145d3565b60405160208183030381529060405290612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e9190613897565b60405180910390fd5b50601354838261219791906143ad565b11156121a4601354612d38565b6040516020016121b491906145d3565b60405160208183030381529060405290612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9190613897565b60405180910390fd5b50601354811115612216601354612d38565b60405160200161222691906145d3565b60405160208183030381529060405290612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d9190613897565b60405180910390fd5b50600f54838361228691906143ad565b11156122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614453565b60405180910390fd5b82600d546122d591906145f5565b341015612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90614683565b60405180910390fd5b60003360405160200161232a91906147e9565b604051602081830303815290604052805190602001209050612390868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060175483612e06565b6123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614876565b60405180910390fd5b6123d93385612bef565b505050505050565b601560009054906101000a900460ff1681565b6000816123ff612694565b1115801561240e575060005482105b801561244c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561254d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016124ca929190614ada565b602060405180830381865afa1580156124e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061250b9190614b18565b61254c57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612543919061395d565b60405180910390fd5b5b50565b600061255b826111da565b90508073ffffffffffffffffffffffffffffffffffffffff1661257c612f79565b73ffffffffffffffffffffffffffffffffffffffff16146125df576125a8816125a3612f79565b611f54565b6125de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006126a882612a5d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461270f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061271b84612f81565b91509150612731818761272c612f79565b612fa8565b61277d5761274686612741612f79565b611f54565b61277c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036127e3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f08686866001612fec565b80156127fb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506128c9856128a5888887612ff2565b7c02000000000000000000000000000000000000000000000000000000001761301a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361294f576000600185019050600060046000838152602001908152602001600020540361294d57600054811461294c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129b78686866001613045565b505050505050565b6129c761304b565b73ffffffffffffffffffffffffffffffffffffffff166129e56114e7565b73ffffffffffffffffffffffffffffffffffffffff1614612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290614b91565b60405180910390fd5b565b612a5883838360405180602001604052806000815250611c92565b505050565b60008082905080612a6c612694565b11612af257600054811015612af15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612aef575b60008103612ae5576004600083600190039350838152602001908152602001600020549050612abb565b8092505050612b24565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c09828260405180602001604052806000815250613053565b5050565b612c156136b5565b612c26612c2183612a5d565b6130f0565b9050919050565b8060076000612c3a612f79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612ce7612f79565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d2c91906137ec565b60405180910390a35050565b606060006001612d47846131a6565b01905060008167ffffffffffffffff811115612d6657612d65613b3e565b5b6040519080825280601f01601f191660200182016040528015612d985781602001600182028036833780820191505090505b509050600082602001820190505b600115612dfb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612def57612dee614bb1565b5b04945060008503612da6575b819350505050919050565b600082612e1385846132f9565b1490509392505050565b612e28848484610ef8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e8a57612e538484848461334f565b612e89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054612e9f9061406d565b80601f0160208091040260200160405190810160405280929190818152602001828054612ecb9061406d565b8015612f185780601f10612eed57610100808354040283529160200191612f18565b820191906000526020600020905b815481529060010190602001808311612efb57829003601f168201915b5050505050905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861300986868461349f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61305d83836134a8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146130eb57600080549050600083820390505b61309d600086838060010194508661334f565b6130d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061308a5781600054146130e857600080fd5b50505b505050565b6130f86136b5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613204577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816131fa576131f9614bb1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613241576d04ee2d6d415b85acef8100000000838161323757613236614bb1565b5b0492506020810190505b662386f26fc10000831061327057662386f26fc10000838161326657613265614bb1565b5b0492506010810190505b6305f5e1008310613299576305f5e100838161328f5761328e614bb1565b5b0492506008810190505b61271083106132be5761271083816132b4576132b3614bb1565b5b0492506004810190505b606483106132e157606483816132d7576132d6614bb1565b5b0492506002810190505b600a83106132f0576001810190505b80915050919050565b60008082905060005b84518110156133445761332f8286838151811061332257613321614be0565b5b6020026020010151613663565b9150808061333c90614c0f565b915050613302565b508091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613375612f79565b8786866040518563ffffffff1660e01b81526004016133979493929190614cac565b6020604051808303816000875af19250505080156133d357506040513d601f19601f820116820180604052508101906133d09190614d0d565b60015b61344c573d8060008114613403576040519150601f19603f3d011682016040523d82523d6000602084013e613408565b606091505b506000815103613444576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036134e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134f56000848385612fec565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061356c8361355d6000866000612ff2565b6135668561368e565b1761301a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461360d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506135d2565b5060008203613648576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061365e6000848385613045565b505050565b600081831061367b57613676828461369e565b613686565b613685838361369e565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000819050919050565b61371781613704565b82525050565b6000602082019050613732600083018461370e565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137818161374c565b811461378c57600080fd5b50565b60008135905061379e81613778565b92915050565b6000602082840312156137ba576137b9613742565b5b60006137c88482850161378f565b91505092915050565b60008115159050919050565b6137e6816137d1565b82525050565b600060208201905061380160008301846137dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613841578082015181840152602081019050613826565b60008484015250505050565b6000601f19601f8301169050919050565b600061386982613807565b6138738185613812565b9350613883818560208601613823565b61388c8161384d565b840191505092915050565b600060208201905081810360008301526138b1818461385e565b905092915050565b6000819050919050565b6138cc816138b9565b81146138d757600080fd5b50565b6000813590506138e9816138c3565b92915050565b60006020828403121561390557613904613742565b5b6000613913848285016138da565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139478261391c565b9050919050565b6139578161393c565b82525050565b6000602082019050613972600083018461394e565b92915050565b6139818161393c565b811461398c57600080fd5b50565b60008135905061399e81613978565b92915050565b600080604083850312156139bb576139ba613742565b5b60006139c98582860161398f565b92505060206139da858286016138da565b9150509250929050565b6139ed816138b9565b82525050565b6000602082019050613a0860008301846139e4565b92915050565b600080600060608486031215613a2757613a26613742565b5b6000613a358682870161398f565b9350506020613a468682870161398f565b9250506040613a57868287016138da565b9150509250925092565b613a6a81613704565b8114613a7557600080fd5b50565b600081359050613a8781613a61565b92915050565b600060208284031215613aa357613aa2613742565b5b6000613ab184828501613a78565b91505092915050565b6000819050919050565b6000613adf613ada613ad58461391c565b613aba565b61391c565b9050919050565b6000613af182613ac4565b9050919050565b6000613b0382613ae6565b9050919050565b613b1381613af8565b82525050565b6000602082019050613b2e6000830184613b0a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b768261384d565b810181811067ffffffffffffffff82111715613b9557613b94613b3e565b5b80604052505050565b6000613ba8613738565b9050613bb48282613b6d565b919050565b600067ffffffffffffffff821115613bd457613bd3613b3e565b5b613bdd8261384d565b9050602081019050919050565b82818337600083830152505050565b6000613c0c613c0784613bb9565b613b9e565b905082815260208101848484011115613c2857613c27613b39565b5b613c33848285613bea565b509392505050565b600082601f830112613c5057613c4f613b34565b5b8135613c60848260208601613bf9565b91505092915050565b600060208284031215613c7f57613c7e613742565b5b600082013567ffffffffffffffff811115613c9d57613c9c613747565b5b613ca984828501613c3b565b91505092915050565b600060208284031215613cc857613cc7613742565b5b6000613cd68482850161398f565b91505092915050565b613ce88161393c565b82525050565b600067ffffffffffffffff82169050919050565b613d0b81613cee565b82525050565b613d1a816137d1565b82525050565b600062ffffff82169050919050565b613d3881613d20565b82525050565b608082016000820151613d546000850182613cdf565b506020820151613d676020850182613d02565b506040820151613d7a6040850182613d11565b506060820151613d8d6060850182613d2f565b50505050565b6000608082019050613da86000830184613d3e565b92915050565b613db7816137d1565b8114613dc257600080fd5b50565b600081359050613dd481613dae565b92915050565b60008060408385031215613df157613df0613742565b5b6000613dff8582860161398f565b9250506020613e1085828601613dc5565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613e3a57613e39613b34565b5b8235905067ffffffffffffffff811115613e5757613e56613e1a565b5b602083019150836020820283011115613e7357613e72613e1f565b5b9250929050565b600080600060408486031215613e9357613e92613742565b5b600084013567ffffffffffffffff811115613eb157613eb0613747565b5b613ebd86828701613e24565b93509350506020613ed0868287016138da565b9150509250925092565b600067ffffffffffffffff821115613ef557613ef4613b3e565b5b613efe8261384d565b9050602081019050919050565b6000613f1e613f1984613eda565b613b9e565b905082815260208101848484011115613f3a57613f39613b39565b5b613f45848285613bea565b509392505050565b600082601f830112613f6257613f61613b34565b5b8135613f72848260208601613f0b565b91505092915050565b60008060008060808587031215613f9557613f94613742565b5b6000613fa38782880161398f565b9450506020613fb48782880161398f565b9350506040613fc5878288016138da565b925050606085013567ffffffffffffffff811115613fe657613fe5613747565b5b613ff287828801613f4d565b91505092959194509250565b6000806040838503121561401557614014613742565b5b60006140238582860161398f565b92505060206140348582860161398f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061408557607f821691505b6020821081036140985761409761403e565b5b50919050565b7f4e6f20657468657220746f207769746864726177000000000000000000000000600082015250565b60006140d4601483613812565b91506140df8261409e565b602082019050919050565b60006020820190508181036000830152614103816140c7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261416c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261412f565b614176868361412f565b95508019841693508086168417925050509392505050565b60006141a96141a461419f846138b9565b613aba565b6138b9565b9050919050565b6000819050919050565b6141c38361418e565b6141d76141cf826141b0565b84845461413c565b825550505050565b600090565b6141ec6141df565b6141f78184846141ba565b505050565b5b8181101561421b576142106000826141e4565b6001810190506141fd565b5050565b601f821115614260576142318161410a565b61423a8461411f565b81016020851015614249578190505b61425d6142558561411f565b8301826141fc565b50505b505050565b600082821c905092915050565b600061428360001984600802614265565b1980831691505092915050565b600061429c8383614272565b9150826002028217905092915050565b6142b582613807565b67ffffffffffffffff8111156142ce576142cd613b3e565b5b6142d8825461406d565b6142e382828561421f565b600060209050601f8311600181146143165760008415614304578287015190505b61430e8582614290565b865550614376565b601f1984166143248661410a565b60005b8281101561434c57848901518255600182019150602085019450602081019050614327565b868310156143695784890151614365601f891682614272565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143b8826138b9565b91506143c3836138b9565b92508282019050808211156143db576143da61437e565b5b92915050565b7f54686973207472616e73616374696f6e20776f756c6420657863656564206d6160008201527f7820737570706c792e0000000000000000000000000000000000000000000000602082015250565b600061443d602983613812565b9150614448826143e1565b604082019050919050565b6000602082019050818103600083015261446c81614430565b9050919050565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b60006144a9601983613812565b91506144b482614473565b602082019050919050565b600060208201905081810360008301526144d88161449c565b9050919050565b7f436f756e742063616e206e6f7420626520300000000000000000000000000000600082015250565b6000614515601283613812565b9150614520826144df565b602082019050919050565b6000602082019050818103600083015261454481614508565b9050919050565b600081905092915050565b7f596f752063616e206f6e6c79206d696e74200000000000000000000000000000600082015250565b600061458c60128361454b565b915061459782614556565b601282019050919050565b60006145ad82613807565b6145b7818561454b565b93506145c7818560208601613823565b80840191505092915050565b60006145de8261457f565b91506145ea82846145a2565b915081905092915050565b6000614600826138b9565b915061460b836138b9565b9250828202614619816138b9565b915082820484148315176146305761462f61437e565b5b5092915050565b7f45746865722076616c756520697320746f6f206c6f7700000000000000000000600082015250565b600061466d601683613812565b915061467882614637565b602082019050919050565b6000602082019050818103600083015261469c81614660565b9050919050565b7f506172746e65722053616c65206973206e6f7420616374697665000000000000600082015250565b60006146d9601a83613812565b91506146e4826146a3565b602082019050919050565b60006020820190508181036000830152614708816146cc565b9050919050565b7f54686973207472616e73616374696f6e20776f756c6420657863656564206d6160008201527f7820706172746e65727320737570706c792e0000000000000000000000000000602082015250565b600061476b603283613812565b91506147768261470f565b604082019050919050565b6000602082019050818103600083015261479a8161475e565b9050919050565b60008160601b9050919050565b60006147b9826147a1565b9050919050565b60006147cb826147ae565b9050919050565b6147e36147de8261393c565b6147c0565b82525050565b60006147f582846147d2565b60148201915081905092915050565b7f596f7520617265206e6f742077686974656c697374656420666f72207468697360008201527f2073746167652e00000000000000000000000000000000000000000000000000602082015250565b6000614860602783613812565b915061486b82614804565b604082019050919050565b6000602082019050818103600083015261488f81614853565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148f2602f83613812565b91506148fd82614896565b604082019050919050565b60006020820190508181036000830152614921816148e5565b9050919050565b600081546149358161406d565b61493f818661454b565b9450600182166000811461495a576001811461496f576149a2565b60ff19831686528115158202860193506149a2565b6149788561410a565b60005b8381101561499a5781548189015260018201915060208101905061497b565b838801955050505b50505092915050565b60006149b782866145a2565b91506149c382856145a2565b91506149cf8284614928565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a38602683613812565b9150614a43826149dc565b604082019050919050565b60006020820190508181036000830152614a6781614a2b565b9050919050565b7f5072652073616c65206973206e6f742061637469766500000000000000000000600082015250565b6000614aa4601683613812565b9150614aaf82614a6e565b602082019050919050565b60006020820190508181036000830152614ad381614a97565b9050919050565b6000604082019050614aef600083018561394e565b614afc602083018461394e565b9392505050565b600081519050614b1281613dae565b92915050565b600060208284031215614b2e57614b2d613742565b5b6000614b3c84828501614b03565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b7b602083613812565b9150614b8682614b45565b602082019050919050565b60006020820190508181036000830152614baa81614b6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c1a826138b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c4c57614c4b61437e565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000614c7e82614c57565b614c888185614c62565b9350614c98818560208601613823565b614ca18161384d565b840191505092915050565b6000608082019050614cc1600083018761394e565b614cce602083018661394e565b614cdb60408301856139e4565b8181036060830152614ced8184614c73565b905095945050505050565b600081519050614d0781613778565b92915050565b600060208284031215614d2357614d22613742565b5b6000614d3184828501614cf8565b9150509291505056fea264697066735822122095679ef4f7fc55bc893152ef3ff10fde990c068bbc053dfa452b3acfbfc443bd64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000e457465726e616c4a61637175657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a43510000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f626166796265696677777461366c6f376e6876367364636172347a7635336473776d6f64703766693469777376736e776366616b686f68717566692f48696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f626166796265696677777461366c6f376e6876367364636172347a7635336473776d6f64703766693469777376736e776366616b686f68717566692f48696464656e2e6a736f6e000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103905760003560e01c806381221c14116101dc578063b6d8f66211610102578063cbce4c97116100a0578063e985e9c51161006f578063e985e9c514610c59578063f2fde38b14610c96578063f37340a514610cbf578063f6cb274214610cdb57610397565b8063cbce4c9714610b9d578063cd3293de14610bc6578063d5abeb0114610bf1578063dc33e68114610c1c57610397565b8063bdc1e434116100dc578063bdc1e43414610ae3578063c37a88e614610b0e578063c627525514610b37578063c87b56dd14610b6057610397565b8063b6d8f66214610a75578063b88d4fde14610a9e578063bbaac02f14610aba57610397565b80639147dd1b1161017a578063a22cb46511610149578063a22cb465146109eb578063a2a4860614610a14578063b287c8ed14610a3d578063b3e31b5014610a5957610397565b80639147dd1b1461092d5780639231ab2a1461095857806395d89b41146109955780639d044ed3146109c057610397565b8063890ac366116101b6578063890ac366146108a95780638b62f533146108c05780638cc54e7f146108d75780638da5cb5b1461090257610397565b806381221c141461083e57806381c797c114610867578063880846051461089257610397565b80633ccfd60b116102c157806357b2e1f71161025f578063704e3d9d1161022e578063704e3d9d1461079657806370a08231146107c1578063715018a6146107fe578063805e0b201461081557610397565b806357b2e1f7146106d85780636352211e1461070357806364c22f13146107405780636c0360eb1461076b57610397565b80634c6d74d01161029b5780634c6d74d01461064257806352ee46961461065957806354214f691461068457806355f804b3146106af57610397565b80633ccfd60b146105e457806341f43434146105fb57806342842e0e1461062657610397565b80631e84c4131161032e578063323e89b511610308578063323e89b51461054e5780633549345e146105795780633ad10ef6146105a25780633b2c3fb6146105cd57610397565b80631e84c413146104de57806323b872dd1461050957806328d7b2761461052557610397565b8063081812fc1161036a578063081812fc1461042f578063095ea7b31461046c578063102e766d1461048857806318160ddd146104b357610397565b806301c124b71461039c57806301ffc9a7146103c757806306fdde031461040457610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610d06565b6040516103be919061371d565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906137a4565b610d0c565b6040516103fb91906137ec565b60405180910390f35b34801561041057600080fd5b50610419610d9e565b6040516104269190613897565b60405180910390f35b34801561043b57600080fd5b50610456600480360381019061045191906138ef565b610e30565b604051610463919061395d565b60405180910390f35b610486600480360381019061048191906139a4565b610eaf565b005b34801561049457600080fd5b5061049d610ec8565b6040516104aa91906139f3565b60405180910390f35b3480156104bf57600080fd5b506104c8610ece565b6040516104d591906139f3565b60405180910390f35b3480156104ea57600080fd5b506104f3610ee5565b60405161050091906137ec565b60405180910390f35b610523600480360381019061051e9190613a0e565b610ef8565b005b34801561053157600080fd5b5061054c60048036038101906105479190613a8d565b610f47565b005b34801561055a57600080fd5b50610563610f59565b60405161057091906139f3565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b91906138ef565b610f5f565b005b3480156105ae57600080fd5b506105b7610f71565b6040516105c4919061395d565b60405180910390f35b3480156105d957600080fd5b506105e2610f95565b005b3480156105f057600080fd5b506105f9610fc9565b005b34801561060757600080fd5b50610610611083565b60405161061d9190613b19565b60405180910390f35b610640600480360381019061063b9190613a0e565b611095565b005b34801561064e57600080fd5b506106576110e4565b005b34801561066557600080fd5b5061066e611118565b60405161067b9190613897565b60405180910390f35b34801561069057600080fd5b506106996111a6565b6040516106a691906137ec565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190613c69565b6111b9565b005b3480156106e457600080fd5b506106ed6111d4565b6040516106fa919061371d565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906138ef565b6111da565b604051610737919061395d565b60405180910390f35b34801561074c57600080fd5b506107556111ec565b60405161076291906139f3565b60405180910390f35b34801561077757600080fd5b506107806111f2565b60405161078d9190613897565b60405180910390f35b3480156107a257600080fd5b506107ab611280565b6040516107b891906139f3565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613cb2565b611286565b6040516107f591906139f3565b60405180910390f35b34801561080a57600080fd5b5061081361133e565b005b34801561082157600080fd5b5061083c600480360381019061083791906138ef565b611352565b005b34801561084a57600080fd5b50610865600480360381019061086091906138ef565b611364565b005b34801561087357600080fd5b5061087c611376565b60405161088991906139f3565b60405180910390f35b34801561089e57600080fd5b506108a761137c565b005b3480156108b557600080fd5b506108be6113b0565b005b3480156108cc57600080fd5b506108d5611425565b005b3480156108e357600080fd5b506108ec611459565b6040516108f99190613897565b60405180910390f35b34801561090e57600080fd5b506109176114e7565b604051610924919061395d565b60405180910390f35b34801561093957600080fd5b50610942611511565b60405161094f91906139f3565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a91906138ef565b611517565b60405161098c9190613d93565b60405180910390f35b3480156109a157600080fd5b506109aa61152f565b6040516109b79190613897565b60405180910390f35b3480156109cc57600080fd5b506109d56115c1565b6040516109e291906137ec565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613dda565b6115d4565b005b348015610a2057600080fd5b50610a3b6004803603810190610a3691906138ef565b6115ed565b005b610a576004803603810190610a5291906138ef565b6115ff565b005b610a736004803603810190610a6e9190613e7a565b6118ba565b005b348015610a8157600080fd5b50610a9c6004803603810190610a979190613a8d565b611c80565b005b610ab86004803603810190610ab39190613f7b565b611c92565b005b348015610ac657600080fd5b50610ae16004803603810190610adc9190613c69565b611ce3565b005b348015610aef57600080fd5b50610af8611cfe565b604051610b0591906139f3565b60405180910390f35b348015610b1a57600080fd5b50610b356004803603810190610b3091906138ef565b611d04565b005b348015610b4357600080fd5b50610b5e6004803603810190610b5991906138ef565b611d16565b005b348015610b6c57600080fd5b50610b876004803603810190610b8291906138ef565b611d28565b604051610b949190613897565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf91906139a4565b611e80565b005b348015610bd257600080fd5b50610bdb611f36565b604051610be891906139f3565b60405180910390f35b348015610bfd57600080fd5b50610c06611f3c565b604051610c1391906139f3565b60405180910390f35b348015610c2857600080fd5b50610c436004803603810190610c3e9190613cb2565b611f42565b604051610c5091906139f3565b60405180910390f35b348015610c6557600080fd5b50610c806004803603810190610c7b9190613ffe565b611f54565b604051610c8d91906137ec565b60405180910390f35b348015610ca257600080fd5b50610cbd6004803603810190610cb89190613cb2565b611fe8565b005b610cd96004803603810190610cd49190613e7a565b61206b565b005b348015610ce757600080fd5b50610cf06123e1565b604051610cfd91906137ec565b60405180910390f35b60175481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d975750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610dad9061406d565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd99061406d565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b5050505050905090565b6000610e3b826123f4565b610e71576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610eb981612453565b610ec38383612550565b505050565b600e5481565b6000610ed8612694565b6001546000540303905090565b601560029054906101000a900460ff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f3657610f3533612453565b5b610f4184848461269d565b50505050565b610f4f6129bf565b8060178190555050565b60105481565b610f676129bf565b80600d8190555050565b7f0000000000000000000000000d37cb1b16f66eb629ce2e07f5278f3fae8f1e6981565b610f9d6129bf565b601560039054906101000a900460ff1615601560036101000a81548160ff021916908315150217905550565b610fd16129bf565b600047905060008111611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906140ea565b60405180910390fd5b7f0000000000000000000000000d37cb1b16f66eb629ce2e07f5278f3fae8f1e6973ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561107f573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110d3576110d233612453565b5b6110de848484612a3d565b50505050565b6110ec6129bf565b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b600a80546111259061406d565b80601f01602080910402602001604051908101604052809291908181526020018280546111519061406d565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b505050505081565b601560039054906101000a900460ff1681565b6111c16129bf565b80600990816111d091906142ac565b5050565b60165481565b60006111e582612a5d565b9050919050565b60135481565b600980546111ff9061406d565b80601f016020809104026020016040519081016040528092919081815260200182805461122b9061406d565b80156112785780601f1061124d57610100808354040283529160200191611278565b820191906000526020600020905b81548152906001019060200180831161125b57829003601f168201915b505050505081565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113466129bf565b6113506000612b29565b565b61135a6129bf565b8060148190555050565b61136c6129bf565b8060138190555050565b60125481565b6113846129bf565b601560029054906101000a900460ff1615601560026101000a81548160ff021916908315150217905550565b6113b86129bf565b60006113c2610ece565b9050600f54601154826113d591906143ad565b1115611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90614453565b60405180910390fd5b61142233601154612bef565b50565b61142d6129bf565b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550565b600b80546114669061406d565b80601f01602080910402602001604051908101604052809291908181526020018280546114929061406d565b80156114df5780601f106114b4576101008083540402835291602001916114df565b820191906000526020600020905b8154815290600101906020018083116114c257829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b61151f6136b5565b61152882612c0d565b9050919050565b60606003805461153e9061406d565b80601f016020809104026020016040519081016040528092919081815260200182805461156a9061406d565b80156115b75780601f1061158c576101008083540402835291602001916115b7565b820191906000526020600020905b81548152906001019060200180831161159a57829003601f168201915b5050505050905090565b601560019054906101000a900460ff1681565b816115de81612453565b6115e88383612c2d565b505050565b6115f56129bf565b80600c8190555050565b6000611609610ece565b9050600061161633611f42565b9050601560029054906101000a900460ff16611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e906144bf565b60405180910390fd5b600083116116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a19061452b565b60405180910390fd5b6014548311156116bb601454612d38565b6040516020016116cb91906145d3565b6040516020818303038152906040529061171b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117129190613897565b60405180910390fd5b50601454838261172b91906143ad565b1115611738601454612d38565b60405160200161174891906145d3565b60405160208183030381529060405290611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9190613897565b60405180910390fd5b506014548111156117aa601454612d38565b6040516020016117ba91906145d3565b6040516020818303038152906040529061180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019190613897565b60405180910390fd5b50600f54838361181a91906143ad565b111561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614453565b60405180910390fd5b82600e5461186991906145f5565b3410156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290614683565b60405180910390fd5b6118b53384612bef565b505050565b60006118c4610ece565b905060006118d133611f42565b9050601560009054906101000a900460ff16611922576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611919906146ef565b60405180910390fd5b60008311611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c9061452b565b60405180910390fd5b601254831115611976601254612d38565b60405160200161198691906145d3565b604051602081830303815290604052906119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9190613897565b60405180910390fd5b5060125483826119e691906143ad565b11156119f3601254612d38565b604051602001611a0391906145d3565b60405160208183030381529060405290611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a9190613897565b60405180910390fd5b50601254811115611a65601254612d38565b604051602001611a7591906145d3565b60405160208183030381529060405290611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc9190613897565b60405180910390fd5b506010548383611ad591906143ad565b1115611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90614781565b60405180910390fd5b600f548383611b2591906143ad565b1115611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90614453565b60405180910390fd5b82600c54611b7491906145f5565b341015611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90614683565b60405180910390fd5b600033604051602001611bc991906147e9565b604051602081830303815290604052805190602001209050611c2f868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060165483612e06565b611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590614876565b60405180910390fd5b611c783385612bef565b505050505050565b611c886129bf565b8060168190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cd057611ccf33612453565b5b611cdc85858585612e1d565b5050505050565b611ceb6129bf565b80600b9081611cfa91906142ac565b5050565b600c5481565b611d0c6129bf565b8060128190555050565b611d1e6129bf565b80600e8190555050565b6060601560039054906101000a900460ff16611dd057600b8054611d4b9061406d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d779061406d565b8015611dc45780601f10611d9957610100808354040283529160200191611dc4565b820191906000526020600020905b815481529060010190602001808311611da757829003601f168201915b50505050509050611e7b565b611dd9826123f4565b611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614908565b60405180910390fd5b600060098054611e279061406d565b905003611e435760405180602001604052806000815250611e78565b611e4b612e90565b611e5483612d38565b600a604051602001611e68939291906149ab565b6040516020818303038152906040525b90505b919050565b611e886129bf565b6000611e92610ece565b905060008211611ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ece9061452b565b60405180910390fd5b600f548282611ee691906143ad565b1115611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614453565b60405180910390fd5b611f318383612bef565b505050565b60115481565b600f5481565b6000611f4d82612f22565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ff06129bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690614a4e565b60405180910390fd5b61206881612b29565b50565b6000612075610ece565b9050600061208233611f42565b9050601560019054906101000a900460ff166120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90614aba565b60405180910390fd5b60008311612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d9061452b565b60405180910390fd5b601354831115612127601354612d38565b60405160200161213791906145d3565b60405160208183030381529060405290612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e9190613897565b60405180910390fd5b50601354838261219791906143ad565b11156121a4601354612d38565b6040516020016121b491906145d3565b60405160208183030381529060405290612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9190613897565b60405180910390fd5b50601354811115612216601354612d38565b60405160200161222691906145d3565b60405160208183030381529060405290612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d9190613897565b60405180910390fd5b50600f54838361228691906143ad565b11156122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614453565b60405180910390fd5b82600d546122d591906145f5565b341015612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90614683565b60405180910390fd5b60003360405160200161232a91906147e9565b604051602081830303815290604052805190602001209050612390868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060175483612e06565b6123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614876565b60405180910390fd5b6123d93385612bef565b505050505050565b601560009054906101000a900460ff1681565b6000816123ff612694565b1115801561240e575060005482105b801561244c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561254d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016124ca929190614ada565b602060405180830381865afa1580156124e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061250b9190614b18565b61254c57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612543919061395d565b60405180910390fd5b5b50565b600061255b826111da565b90508073ffffffffffffffffffffffffffffffffffffffff1661257c612f79565b73ffffffffffffffffffffffffffffffffffffffff16146125df576125a8816125a3612f79565b611f54565b6125de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006126a882612a5d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461270f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061271b84612f81565b91509150612731818761272c612f79565b612fa8565b61277d5761274686612741612f79565b611f54565b61277c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036127e3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f08686866001612fec565b80156127fb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506128c9856128a5888887612ff2565b7c02000000000000000000000000000000000000000000000000000000001761301a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361294f576000600185019050600060046000838152602001908152602001600020540361294d57600054811461294c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129b78686866001613045565b505050505050565b6129c761304b565b73ffffffffffffffffffffffffffffffffffffffff166129e56114e7565b73ffffffffffffffffffffffffffffffffffffffff1614612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290614b91565b60405180910390fd5b565b612a5883838360405180602001604052806000815250611c92565b505050565b60008082905080612a6c612694565b11612af257600054811015612af15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612aef575b60008103612ae5576004600083600190039350838152602001908152602001600020549050612abb565b8092505050612b24565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c09828260405180602001604052806000815250613053565b5050565b612c156136b5565b612c26612c2183612a5d565b6130f0565b9050919050565b8060076000612c3a612f79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612ce7612f79565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d2c91906137ec565b60405180910390a35050565b606060006001612d47846131a6565b01905060008167ffffffffffffffff811115612d6657612d65613b3e565b5b6040519080825280601f01601f191660200182016040528015612d985781602001600182028036833780820191505090505b509050600082602001820190505b600115612dfb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612def57612dee614bb1565b5b04945060008503612da6575b819350505050919050565b600082612e1385846132f9565b1490509392505050565b612e28848484610ef8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e8a57612e538484848461334f565b612e89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054612e9f9061406d565b80601f0160208091040260200160405190810160405280929190818152602001828054612ecb9061406d565b8015612f185780601f10612eed57610100808354040283529160200191612f18565b820191906000526020600020905b815481529060010190602001808311612efb57829003601f168201915b5050505050905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861300986868461349f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61305d83836134a8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146130eb57600080549050600083820390505b61309d600086838060010194508661334f565b6130d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061308a5781600054146130e857600080fd5b50505b505050565b6130f86136b5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613204577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816131fa576131f9614bb1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613241576d04ee2d6d415b85acef8100000000838161323757613236614bb1565b5b0492506020810190505b662386f26fc10000831061327057662386f26fc10000838161326657613265614bb1565b5b0492506010810190505b6305f5e1008310613299576305f5e100838161328f5761328e614bb1565b5b0492506008810190505b61271083106132be5761271083816132b4576132b3614bb1565b5b0492506004810190505b606483106132e157606483816132d7576132d6614bb1565b5b0492506002810190505b600a83106132f0576001810190505b80915050919050565b60008082905060005b84518110156133445761332f8286838151811061332257613321614be0565b5b6020026020010151613663565b9150808061333c90614c0f565b915050613302565b508091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613375612f79565b8786866040518563ffffffff1660e01b81526004016133979493929190614cac565b6020604051808303816000875af19250505080156133d357506040513d601f19601f820116820180604052508101906133d09190614d0d565b60015b61344c573d8060008114613403576040519150601f19603f3d011682016040523d82523d6000602084013e613408565b606091505b506000815103613444576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036134e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134f56000848385612fec565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061356c8361355d6000866000612ff2565b6135668561368e565b1761301a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461360d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506135d2565b5060008203613648576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061365e6000848385613045565b505050565b600081831061367b57613676828461369e565b613686565b613685838361369e565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000819050919050565b61371781613704565b82525050565b6000602082019050613732600083018461370e565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137818161374c565b811461378c57600080fd5b50565b60008135905061379e81613778565b92915050565b6000602082840312156137ba576137b9613742565b5b60006137c88482850161378f565b91505092915050565b60008115159050919050565b6137e6816137d1565b82525050565b600060208201905061380160008301846137dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613841578082015181840152602081019050613826565b60008484015250505050565b6000601f19601f8301169050919050565b600061386982613807565b6138738185613812565b9350613883818560208601613823565b61388c8161384d565b840191505092915050565b600060208201905081810360008301526138b1818461385e565b905092915050565b6000819050919050565b6138cc816138b9565b81146138d757600080fd5b50565b6000813590506138e9816138c3565b92915050565b60006020828403121561390557613904613742565b5b6000613913848285016138da565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139478261391c565b9050919050565b6139578161393c565b82525050565b6000602082019050613972600083018461394e565b92915050565b6139818161393c565b811461398c57600080fd5b50565b60008135905061399e81613978565b92915050565b600080604083850312156139bb576139ba613742565b5b60006139c98582860161398f565b92505060206139da858286016138da565b9150509250929050565b6139ed816138b9565b82525050565b6000602082019050613a0860008301846139e4565b92915050565b600080600060608486031215613a2757613a26613742565b5b6000613a358682870161398f565b9350506020613a468682870161398f565b9250506040613a57868287016138da565b9150509250925092565b613a6a81613704565b8114613a7557600080fd5b50565b600081359050613a8781613a61565b92915050565b600060208284031215613aa357613aa2613742565b5b6000613ab184828501613a78565b91505092915050565b6000819050919050565b6000613adf613ada613ad58461391c565b613aba565b61391c565b9050919050565b6000613af182613ac4565b9050919050565b6000613b0382613ae6565b9050919050565b613b1381613af8565b82525050565b6000602082019050613b2e6000830184613b0a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b768261384d565b810181811067ffffffffffffffff82111715613b9557613b94613b3e565b5b80604052505050565b6000613ba8613738565b9050613bb48282613b6d565b919050565b600067ffffffffffffffff821115613bd457613bd3613b3e565b5b613bdd8261384d565b9050602081019050919050565b82818337600083830152505050565b6000613c0c613c0784613bb9565b613b9e565b905082815260208101848484011115613c2857613c27613b39565b5b613c33848285613bea565b509392505050565b600082601f830112613c5057613c4f613b34565b5b8135613c60848260208601613bf9565b91505092915050565b600060208284031215613c7f57613c7e613742565b5b600082013567ffffffffffffffff811115613c9d57613c9c613747565b5b613ca984828501613c3b565b91505092915050565b600060208284031215613cc857613cc7613742565b5b6000613cd68482850161398f565b91505092915050565b613ce88161393c565b82525050565b600067ffffffffffffffff82169050919050565b613d0b81613cee565b82525050565b613d1a816137d1565b82525050565b600062ffffff82169050919050565b613d3881613d20565b82525050565b608082016000820151613d546000850182613cdf565b506020820151613d676020850182613d02565b506040820151613d7a6040850182613d11565b506060820151613d8d6060850182613d2f565b50505050565b6000608082019050613da86000830184613d3e565b92915050565b613db7816137d1565b8114613dc257600080fd5b50565b600081359050613dd481613dae565b92915050565b60008060408385031215613df157613df0613742565b5b6000613dff8582860161398f565b9250506020613e1085828601613dc5565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613e3a57613e39613b34565b5b8235905067ffffffffffffffff811115613e5757613e56613e1a565b5b602083019150836020820283011115613e7357613e72613e1f565b5b9250929050565b600080600060408486031215613e9357613e92613742565b5b600084013567ffffffffffffffff811115613eb157613eb0613747565b5b613ebd86828701613e24565b93509350506020613ed0868287016138da565b9150509250925092565b600067ffffffffffffffff821115613ef557613ef4613b3e565b5b613efe8261384d565b9050602081019050919050565b6000613f1e613f1984613eda565b613b9e565b905082815260208101848484011115613f3a57613f39613b39565b5b613f45848285613bea565b509392505050565b600082601f830112613f6257613f61613b34565b5b8135613f72848260208601613f0b565b91505092915050565b60008060008060808587031215613f9557613f94613742565b5b6000613fa38782880161398f565b9450506020613fb48782880161398f565b9350506040613fc5878288016138da565b925050606085013567ffffffffffffffff811115613fe657613fe5613747565b5b613ff287828801613f4d565b91505092959194509250565b6000806040838503121561401557614014613742565b5b60006140238582860161398f565b92505060206140348582860161398f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061408557607f821691505b6020821081036140985761409761403e565b5b50919050565b7f4e6f20657468657220746f207769746864726177000000000000000000000000600082015250565b60006140d4601483613812565b91506140df8261409e565b602082019050919050565b60006020820190508181036000830152614103816140c7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261416c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261412f565b614176868361412f565b95508019841693508086168417925050509392505050565b60006141a96141a461419f846138b9565b613aba565b6138b9565b9050919050565b6000819050919050565b6141c38361418e565b6141d76141cf826141b0565b84845461413c565b825550505050565b600090565b6141ec6141df565b6141f78184846141ba565b505050565b5b8181101561421b576142106000826141e4565b6001810190506141fd565b5050565b601f821115614260576142318161410a565b61423a8461411f565b81016020851015614249578190505b61425d6142558561411f565b8301826141fc565b50505b505050565b600082821c905092915050565b600061428360001984600802614265565b1980831691505092915050565b600061429c8383614272565b9150826002028217905092915050565b6142b582613807565b67ffffffffffffffff8111156142ce576142cd613b3e565b5b6142d8825461406d565b6142e382828561421f565b600060209050601f8311600181146143165760008415614304578287015190505b61430e8582614290565b865550614376565b601f1984166143248661410a565b60005b8281101561434c57848901518255600182019150602085019450602081019050614327565b868310156143695784890151614365601f891682614272565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143b8826138b9565b91506143c3836138b9565b92508282019050808211156143db576143da61437e565b5b92915050565b7f54686973207472616e73616374696f6e20776f756c6420657863656564206d6160008201527f7820737570706c792e0000000000000000000000000000000000000000000000602082015250565b600061443d602983613812565b9150614448826143e1565b604082019050919050565b6000602082019050818103600083015261446c81614430565b9050919050565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b60006144a9601983613812565b91506144b482614473565b602082019050919050565b600060208201905081810360008301526144d88161449c565b9050919050565b7f436f756e742063616e206e6f7420626520300000000000000000000000000000600082015250565b6000614515601283613812565b9150614520826144df565b602082019050919050565b6000602082019050818103600083015261454481614508565b9050919050565b600081905092915050565b7f596f752063616e206f6e6c79206d696e74200000000000000000000000000000600082015250565b600061458c60128361454b565b915061459782614556565b601282019050919050565b60006145ad82613807565b6145b7818561454b565b93506145c7818560208601613823565b80840191505092915050565b60006145de8261457f565b91506145ea82846145a2565b915081905092915050565b6000614600826138b9565b915061460b836138b9565b9250828202614619816138b9565b915082820484148315176146305761462f61437e565b5b5092915050565b7f45746865722076616c756520697320746f6f206c6f7700000000000000000000600082015250565b600061466d601683613812565b915061467882614637565b602082019050919050565b6000602082019050818103600083015261469c81614660565b9050919050565b7f506172746e65722053616c65206973206e6f7420616374697665000000000000600082015250565b60006146d9601a83613812565b91506146e4826146a3565b602082019050919050565b60006020820190508181036000830152614708816146cc565b9050919050565b7f54686973207472616e73616374696f6e20776f756c6420657863656564206d6160008201527f7820706172746e65727320737570706c792e0000000000000000000000000000602082015250565b600061476b603283613812565b91506147768261470f565b604082019050919050565b6000602082019050818103600083015261479a8161475e565b9050919050565b60008160601b9050919050565b60006147b9826147a1565b9050919050565b60006147cb826147ae565b9050919050565b6147e36147de8261393c565b6147c0565b82525050565b60006147f582846147d2565b60148201915081905092915050565b7f596f7520617265206e6f742077686974656c697374656420666f72207468697360008201527f2073746167652e00000000000000000000000000000000000000000000000000602082015250565b6000614860602783613812565b915061486b82614804565b604082019050919050565b6000602082019050818103600083015261488f81614853565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148f2602f83613812565b91506148fd82614896565b604082019050919050565b60006020820190508181036000830152614921816148e5565b9050919050565b600081546149358161406d565b61493f818661454b565b9450600182166000811461495a576001811461496f576149a2565b60ff19831686528115158202860193506149a2565b6149788561410a565b60005b8381101561499a5781548189015260018201915060208101905061497b565b838801955050505b50505092915050565b60006149b782866145a2565b91506149c382856145a2565b91506149cf8284614928565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a38602683613812565b9150614a43826149dc565b604082019050919050565b60006020820190508181036000830152614a6781614a2b565b9050919050565b7f5072652073616c65206973206e6f742061637469766500000000000000000000600082015250565b6000614aa4601683613812565b9150614aaf82614a6e565b602082019050919050565b60006020820190508181036000830152614ad381614a97565b9050919050565b6000604082019050614aef600083018561394e565b614afc602083018461394e565b9392505050565b600081519050614b1281613dae565b92915050565b600060208284031215614b2e57614b2d613742565b5b6000614b3c84828501614b03565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b7b602083613812565b9150614b8682614b45565b602082019050919050565b60006020820190508181036000830152614baa81614b6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c1a826138b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c4c57614c4b61437e565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000614c7e82614c57565b614c888185614c62565b9350614c98818560208601613823565b614ca18161384d565b840191505092915050565b6000608082019050614cc1600083018761394e565b614cce602083018661394e565b614cdb60408301856139e4565b8181036060830152614ced8184614c73565b905095945050505050565b600081519050614d0781613778565b92915050565b600060208284031215614d2357614d22613742565b5b6000614d3184828501614cf8565b9150509291505056fea264697066735822122095679ef4f7fc55bc893152ef3ff10fde990c068bbc053dfa452b3acfbfc443bd64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000e457465726e616c4a61637175657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a43510000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f626166796265696677777461366c6f376e6876367364636172347a7635336473776d6f64703766693469777376736e776366616b686f68717566692f48696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f626166796265696677777461366c6f376e6876367364636172347a7635336473776d6f64703766693469777376736e776366616b686f68717566692f48696464656e2e6a736f6e000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): EternalJacques
Arg [1] : _symbol (string): JCQ
Arg [2] : _initBaseURI (string): ipfs://bafybeifwwta6lo7nhv6sdcar4zv53dswmodp7fi4iwsvsnwcfakhohqufi/Hidden.json
Arg [3] : _initHiddenURI (string): ipfs://bafybeifwwta6lo7nhv6sdcar4zv53dswmodp7fi4iwsvsnwcfakhohqufi/Hidden.json

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 457465726e616c4a616371756573000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4a43510000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [9] : 697066733a2f2f626166796265696677777461366c6f376e6876367364636172
Arg [10] : 347a7635336473776d6f64703766693469777376736e776366616b686f687175
Arg [11] : 66692f48696464656e2e6a736f6e000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [13] : 697066733a2f2f626166796265696677777461366c6f376e6876367364636172
Arg [14] : 347a7635336473776d6f64703766693469777376736e776366616b686f687175
Arg [15] : 66692f48696464656e2e6a736f6e000000000000000000000000000000000000


Deployed Bytecode Sourcemap

102657:14938:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104731:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33426:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34328:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40819:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116506:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103220:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30079:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104610:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116679:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113903:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103604:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112804:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;105014:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114274:70;;;;;;;;;;;;;:::i;:::-;;115874:204;;;;;;;;;;;;;:::i;:::-;;2962:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116858:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;114609:91;;;;;;;;;;;;;:::i;:::-;;102790:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104655:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112276:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;104692:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35721:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104070:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102762:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104167:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31263:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101748:103;;;;;;;;;;;;;:::i;:::-;;113448:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113354:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103973:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114791:88;;;;;;;;;;;;;:::i;:::-;;106221:229;;;;;;;;;;;;;:::i;:::-;;114706:79;;;;;;;;;;;;;:::i;:::-;;102833:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101100:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103156:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115489:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34504:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104568:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116322:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112712:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109523:940;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106692:1233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113791:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117045:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112368:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103094:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;113256:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112896:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111618:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110697:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103679:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103525:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115151:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41768:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102006:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108167:1115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;104522:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104731:32;;;;:::o;33426:639::-;33511:4;33850:10;33835:25;;:11;:25;;;;:102;;;;33927:10;33912:25;;:11;:25;;;;33835:102;:179;;;;34004:10;33989:25;;:11;:25;;;;33835:179;33815:199;;33426:639;;;:::o;34328:100::-;34382:13;34415:5;34408:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34328:100;:::o;40819:218::-;40895:7;40920:16;40928:7;40920;:16::i;:::-;40915:64;;40945:34;;;;;;;;;;;;;;40915:64;40999:15;:24;41015:7;40999:24;;;;;;;;;;;:30;;;;;;;;;;;;40992:37;;40819:218;;;:::o;116506:165::-;116610:8;4483:30;4504:8;4483:20;:30::i;:::-;116631:32:::1;116645:8;116655:7;116631:13;:32::i;:::-;116506:165:::0;;;:::o;103220:40::-;;;;:::o;30079:323::-;30140:7;30368:15;:13;:15::i;:::-;30353:12;;30337:13;;:28;:46;30330:53;;30079:323;:::o;104610:38::-;;;;;;;;;;;;;:::o;116679:171::-;116788:4;4311:10;4303:18;;:4;:18;;;4299:83;;4338:32;4359:10;4338:20;:32::i;:::-;4299:83;116805:37:::1;116824:4;116830:2;116834:7;116805:18;:37::i;:::-;116679:171:::0;;;;:::o;113903:106::-;100986:13;:11;:13::i;:::-;113994:12:::1;113974:17;:32;;;;113903:106:::0;:::o;103604:37::-;;;;:::o;112804:86::-;100986:13;:11;:13::i;:::-;112880:7:::1;112865:12;:22;;;;112804:86:::0;:::o;105014:35::-;;;:::o;114274:70::-;100986:13;:11;:13::i;:::-;114331:10:::1;;;;;;;;;;;114330:11;114317:10;;:24;;;;;;;;;;;;;;;;;;114274:70::o:0;115874:204::-;100986:13;:11;:13::i;:::-;115924:15:::1;115942:21;115924:39;;115994:1;115984:7;:11;115976:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;116041:10;116033:28;;:37;116062:7;116033:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;115913:165;115874:204::o:0;2962:143::-;3062:42;2962:143;:::o;116858:179::-;116971:4;4311:10;4303:18;;:4;:18;;;4299:83;;4338:32;4359:10;4338:20;:32::i;:::-;4299:83;116988:41:::1;117011:4;117017:2;117021:7;116988:22;:41::i;:::-;116858:179:::0;;;;:::o;114609:91::-;100986:13;:11;:13::i;:::-;114678:19:::1;;;;;;;;;;;114677:20;114655:19;;:42;;;;;;;;;;;;;;;;;;114609:91::o:0;102790:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;104655:30::-;;;;;;;;;;;;;:::o;112276:86::-;100986:13;:11;:13::i;:::-;112350:9:::1;112340:7;:19;;;;;;:::i;:::-;;112276:86:::0;:::o;104692:32::-;;;;:::o;35721:152::-;35793:7;35836:27;35855:7;35836:18;:27::i;:::-;35813:52;;35721:152;;;:::o;104070:33::-;;;;:::o;102762:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;104167:36::-;;;;:::o;31263:233::-;31335:7;31376:1;31359:19;;:5;:19;;;31355:60;;31387:28;;;;;;;;;;;;;;31355:60;25422:13;31433:18;:25;31452:5;31433:25;;;;;;;;;;;;;;;;:55;31426:62;;31263:233;;;:::o;101748:103::-;100986:13;:11;:13::i;:::-;101813:30:::1;101840:1;101813:18;:30::i;:::-;101748:103::o:0;113448:94::-;100986:13;:11;:13::i;:::-;113531:8:::1;113511:17;:28;;;;113448:94:::0;:::o;113354:88::-;100986:13;:11;:13::i;:::-;113431:8:::1;113414:14;:25;;;;113354:88:::0;:::o;103973:33::-;;;;:::o;114791:88::-;100986:13;:11;:13::i;:::-;114858:18:::1;;;;;;;;;;;114857:19;114836:18;;:40;;;;;;;;;;;;;;;;;;114791:88::o:0;106221:229::-;100986:13;:11;:13::i;:::-;106274:14:::1;106291:13;:11;:13::i;:::-;106274:30;;106343:9;;106332:7;;106323:6;:16;;;;:::i;:::-;:29;;106315:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;106412:30;106422:10;106434:7;;106412:9;:30::i;:::-;106263:187;106221:229::o:0;114706:79::-;100986:13;:11;:13::i;:::-;114767:15:::1;;;;;;;;;;;114766:16;114748:15;;:34;;;;;;;;;;;;;;;;;;114706:79::o:0;102833:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;101100:87::-;101146:7;101173:6;;;;;;;;;;;101166:13;;101100:87;:::o;103156:41::-;;;;:::o;115489:141::-;115555:21;;:::i;:::-;115601;115614:7;115601:12;:21::i;:::-;115594:28;;115489:141;;;:::o;34504:104::-;34560:13;34593:7;34586:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34504:104;:::o;104568:35::-;;;;;;;;;;;;;:::o;116322:176::-;116426:8;4483:30;4504:8;4483:20;:30::i;:::-;116447:43:::1;116471:8;116481;116447:23;:43::i;:::-;116322:176:::0;;;:::o;112712:86::-;100986:13;:11;:13::i;:::-;112788:7:::1;112773:12;:22;;;;112712:86:::0;:::o;109523:940::-;109588:14;109605:13;:11;:13::i;:::-;109588:30;;109629:18;109650:24;109663:10;109650:12;:24::i;:::-;109629:45;;109695:18;;;;;;;;;;;109687:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;109786:1;109776:7;:11;109768:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;109861:17;;109850:7;:28;;109930;:17;;:26;:28::i;:::-;109891:68;;;;;;;;:::i;:::-;;;;;;;;;;;;;109842:119;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;110004:17;;109993:7;109980:10;:20;;;;:::i;:::-;:41;;110070:28;:17;;:26;:28::i;:::-;110031:68;;;;;;;;:::i;:::-;;;;;;;;;;;;;109972:129;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;110134:17;;110120:10;:31;;110200:28;:17;;:26;:28::i;:::-;110161:68;;;;;;;;:::i;:::-;;;;;;;;;;;;;110112:119;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;110270:9;;110259:7;110250:6;:16;;;;:::i;:::-;:29;;110242:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;110374:7;110360:11;;:21;;;;:::i;:::-;110347:9;:34;;110339:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;110425:30;110435:10;110447:7;110425:9;:30::i;:::-;109577:886;;109523:940;:::o;106692:1233::-;106786:14;106803:13;:11;:13::i;:::-;106786:30;;106827:18;106848:24;106861:10;106848:12;:24::i;:::-;106827:45;;106893:19;;;;;;;;;;;106885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;106982:1;106972:7;:11;106964:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;107054:14;;107043:7;:25;;107120;:14;;:23;:25::i;:::-;107081:65;;;;;;;;:::i;:::-;;;;;;;;;;;;;107035:113;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;107191:14;;107180:7;107167:10;:20;;;;:::i;:::-;:38;;107254:25;:14;;:23;:25::i;:::-;107215:65;;;;;;;;:::i;:::-;;;;;;;;;;;;;107159:123;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;107315:14;;107301:10;:28;;107378:25;:14;;:23;:25::i;:::-;107339:65;;;;;;;;:::i;:::-;;;;;;;;;;;;;107293:113;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;107445:16;;107434:7;107425:6;:16;;;;:::i;:::-;:36;;107417:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;107555:9;;107544:7;107535:6;:16;;;;:::i;:::-;:29;;107527:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;107657:7;107642:12;;:22;;;;:::i;:::-;107629:9;:35;;107621:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;107705:12;107747:10;107730:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;107720:39;;;;;;107705:54;;107778:52;107797:7;;107778:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107806:17;;107825:4;107778:18;:52::i;:::-;107770:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;107887:30;107897:10;107909:7;107887:9;:30::i;:::-;106775:1150;;;106692:1233;;;:::o;113791:106::-;100986:13;:11;:13::i;:::-;113882:12:::1;113862:17;:32;;;;113791:106:::0;:::o;117045:245::-;117213:4;4311:10;4303:18;;:4;:18;;;4299:83;;4338:32;4359:10;4338:20;:32::i;:::-;4299:83;117235:47:::1;117258:4;117264:2;117268:7;117277:4;117235:22;:47::i;:::-;117045:245:::0;;;;;:::o;112368:94::-;100986:13;:11;:13::i;:::-;112448:11:::1;112436:9;:23;;;;;;:::i;:::-;;112368:94:::0;:::o;103094:39::-;;;;:::o;113256:92::-;100986:13;:11;:13::i;:::-;113337:8:::1;113320:14;:25;;;;113256:92:::0;:::o;112896:84::-;100986:13;:11;:13::i;:::-;112970:7:::1;112956:11;:21;;;;112896:84:::0;:::o;111618:387::-;111683:13;111752:10;;;;;;;;;;;111747:38;;111773:9;111766:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111747:38;111805:16;111813:7;111805;:16::i;:::-;111797:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;111918:1;111899:7;111893:21;;;;;:::i;:::-;;;:26;:104;;;;;;;;;;;;;;;;;111946:10;:8;:10::i;:::-;111958:18;:7;:16;:18::i;:::-;111978:12;111929:62;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;111893:104;111886:111;;111618:387;;;;:::o;110697:329::-;100986:13;:11;:13::i;:::-;110776:14:::1;110793:13;:11;:13::i;:::-;110776:30;;110835:1;110825:7;:11;110817:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;110919:9;;110908:7;110899:6;:16;;;;:::i;:::-;:29;;110891:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;110990:28;111000:8;111010:7;110990:9;:28::i;:::-;110765:261;110697:329:::0;;:::o;103679:27::-;;;;:::o;103525:31::-;;;;:::o;115151:99::-;115209:7;115227:20;115241:5;115227:13;:20::i;:::-;115220:27;;115151:99;;;:::o;41768:164::-;41865:4;41889:18;:25;41908:5;41889:25;;;;;;;;;;;;;;;:35;41915:8;41889:35;;;;;;;;;;;;;;;;;;;;;;;;;41882:42;;41768:164;;;;:::o;102006:201::-;100986:13;:11;:13::i;:::-;102115:1:::1;102095:22;;:8;:22;;::::0;102087:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;102171:28;102190:8;102171:18;:28::i;:::-;102006:201:::0;:::o;108167:1115::-;108257:14;108274:13;:11;:13::i;:::-;108257:30;;108298:18;108319:24;108332:10;108319:12;:24::i;:::-;108298:45;;108364:15;;;;;;;;;;;108356:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;108449:1;108439:7;:11;108431:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;108521:14;;108510:7;:25;;108587;:14;;:23;:25::i;:::-;108548:65;;;;;;;;:::i;:::-;;;;;;;;;;;;;108502:113;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;108658:14;;108647:7;108634:10;:20;;;;:::i;:::-;:38;;108721:25;:14;;:23;:25::i;:::-;108682:65;;;;;;;;:::i;:::-;;;;;;;;;;;;;108626:123;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;108782:14;;108768:10;:28;;108845:25;:14;;:23;:25::i;:::-;108806:65;;;;;;;;:::i;:::-;;;;;;;;;;;;;108760:113;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;108912:9;;108901:7;108892:6;:16;;;;:::i;:::-;:29;;108884:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;109014:7;108999:12;;:22;;;;:::i;:::-;108986:9;:35;;108978:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;109062:12;109104:10;109087:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;109077:39;;;;;;109062:54;;109135:52;109154:7;;109135:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109163:17;;109182:4;109135:18;:52::i;:::-;109127:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;109244:30;109254:10;109266:7;109244:9;:30::i;:::-;108246:1036;;;108167:1115;;;:::o;104522:39::-;;;;;;;;;;;;;:::o;42190:282::-;42255:4;42311:7;42292:15;:13;:15::i;:::-;:26;;:66;;;;;42345:13;;42335:7;:23;42292:66;:153;;;;;42444:1;26198:8;42396:17;:26;42414:7;42396:26;;;;;;;;;;;;:44;:49;42292:153;42272:173;;42190:282;;;:::o;4541:419::-;4780:1;3062:42;4732:45;;;:49;4728:225;;;3062:42;4803;;;4854:4;4861:8;4803:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4798:144;;4917:8;4898:28;;;;;;;;;;;:::i;:::-;;;;;;;;4798:144;4728:225;4541:419;:::o;40252:408::-;40341:13;40357:16;40365:7;40357;:16::i;:::-;40341:32;;40413:5;40390:28;;:19;:17;:19::i;:::-;:28;;;40386:175;;40438:44;40455:5;40462:19;:17;:19::i;:::-;40438:16;:44::i;:::-;40433:128;;40510:35;;;;;;;;;;;;;;40433:128;40386:175;40606:2;40573:15;:24;40589:7;40573:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40644:7;40640:2;40624:28;;40633:5;40624:28;;;;;;;;;;;;40330:330;40252:408;;:::o;105855:87::-;105920:7;105938:1;105931:8;;105855:87;:::o;44458:2825::-;44600:27;44630;44649:7;44630:18;:27::i;:::-;44600:57;;44715:4;44674:45;;44690:19;44674:45;;;44670:86;;44728:28;;;;;;;;;;;;;;44670:86;44770:27;44799:23;44826:35;44853:7;44826:26;:35::i;:::-;44769:92;;;;44961:68;44986:15;45003:4;45009:19;:17;:19::i;:::-;44961:24;:68::i;:::-;44956:180;;45049:43;45066:4;45072:19;:17;:19::i;:::-;45049:16;:43::i;:::-;45044:92;;45101:35;;;;;;;;;;;;;;45044:92;44956:180;45167:1;45153:16;;:2;:16;;;45149:52;;45178:23;;;;;;;;;;;;;;45149:52;45214:43;45236:4;45242:2;45246:7;45255:1;45214:21;:43::i;:::-;45350:15;45347:160;;;45490:1;45469:19;45462:30;45347:160;45887:18;:24;45906:4;45887:24;;;;;;;;;;;;;;;;45885:26;;;;;;;;;;;;45956:18;:22;45975:2;45956:22;;;;;;;;;;;;;;;;45954:24;;;;;;;;;;;46278:146;46315:2;46364:45;46379:4;46385:2;46389:19;46364:14;:45::i;:::-;26478:8;46336:73;46278:18;:146::i;:::-;46249:17;:26;46267:7;46249:26;;;;;;;;;;;:175;;;;46595:1;26478:8;46544:19;:47;:52;46540:627;;46617:19;46649:1;46639:7;:11;46617:33;;46806:1;46772:17;:30;46790:11;46772:30;;;;;;;;;;;;:35;46768:384;;46910:13;;46895:11;:28;46891:242;;47090:19;47057:17;:30;47075:11;47057:30;;;;;;;;;;;:52;;;;46891:242;46768:384;46598:569;46540:627;47214:7;47210:2;47195:27;;47204:4;47195:27;;;;;;;;;;;;47233:42;47254:4;47260:2;47264:7;47273:1;47233:20;:42::i;:::-;44589:2694;;;44458:2825;;;:::o;101265:132::-;101340:12;:10;:12::i;:::-;101329:23;;:7;:5;:7::i;:::-;:23;;;101321:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;101265:132::o;47379:193::-;47525:39;47542:4;47548:2;47552:7;47525:39;;;;;;;;;;;;:16;:39::i;:::-;47379:193;;;:::o;36876:1275::-;36943:7;36963:12;36978:7;36963:22;;37046:4;37027:15;:13;:15::i;:::-;:23;37023:1061;;37080:13;;37073:4;:20;37069:1015;;;37118:14;37135:17;:23;37153:4;37135:23;;;;;;;;;;;;37118:40;;37252:1;26198:8;37224:6;:24;:29;37220:845;;37889:113;37906:1;37896:6;:11;37889:113;;37949:17;:25;37967:6;;;;;;;37949:25;;;;;;;;;;;;37940:34;;37889:113;;;38035:6;38028:13;;;;;;37220:845;37095:989;37069:1015;37023:1061;38112:31;;;;;;;;;;;;;;36876:1275;;;;:::o;102367:191::-;102441:16;102460:6;;;;;;;;;;;102441:25;;102486:8;102477:6;;:17;;;;;;;;;;;;;;;;;;102541:8;102510:40;;102531:8;102510:40;;;;;;;;;;;;102430:128;102367:191;:::o;58330:112::-;58407:27;58417:2;58421:8;58407:27;;;;;;;;;;;;:9;:27::i;:::-;58330:112;;:::o;36062:166::-;36132:21;;:::i;:::-;36173:47;36192:27;36211:7;36192:18;:27::i;:::-;36173:18;:47::i;:::-;36166:54;;36062:166;;;:::o;41377:234::-;41524:8;41472:18;:39;41491:19;:17;:19::i;:::-;41472:39;;;;;;;;;;;;;;;:49;41512:8;41472:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41584:8;41548:55;;41563:19;:17;:19::i;:::-;41548:55;;;41594:8;41548:55;;;;;;:::i;:::-;;;;;;;;41377:234;;:::o;79762:716::-;79818:13;79869:14;79906:1;79886:17;79897:5;79886:10;:17::i;:::-;:21;79869:38;;79922:20;79956:6;79945:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79922:41;;79978:11;80107:6;80103:2;80099:15;80091:6;80087:28;80080:35;;80144:288;80151:4;80144:288;;;80176:5;;;;;;;;80318:8;80313:2;80306:5;80302:14;80297:30;80292:3;80284:44;80374:2;80365:11;;;;;;:::i;:::-;;;;;80408:1;80399:5;:10;80144:288;80395:21;80144:288;80453:6;80446:13;;;;;79762:716;;;:::o;6683:190::-;6808:4;6861;6832:25;6845:5;6852:4;6832:12;:25::i;:::-;:33;6825:40;;6683:190;;;;;:::o;48170:407::-;48345:31;48358:4;48364:2;48368:7;48345:12;:31::i;:::-;48409:1;48391:2;:14;;;:19;48387:183;;48430:56;48461:4;48467:2;48471:7;48480:5;48430:30;:56::i;:::-;48425:145;;48514:40;;;;;;;;;;;;;;48425:145;48387:183;48170:407;;;;:::o;111285:94::-;111345:13;111369:7;111362:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111285:94;:::o;31578:178::-;31639:7;25422:13;25560:2;31667:18;:25;31686:5;31667:25;;;;;;;;;;;;;;;;:50;;31666:82;31659:89;;31578:178;;;:::o;64498:105::-;64558:7;64585:10;64578:17;;64498:105;:::o;43353:485::-;43455:27;43484:23;43525:38;43566:15;:24;43582:7;43566:24;;;;;;;;;;;43525:65;;43743:18;43720:41;;43800:19;43794:26;43775:45;;43705:126;43353:485;;;:::o;42581:659::-;42730:11;42895:16;42888:5;42884:28;42875:37;;43055:16;43044:9;43040:32;43027:45;;43205:15;43194:9;43191:30;43183:5;43172:9;43169:20;43166:56;43156:66;;42581:659;;;;;:::o;49239:159::-;;;;;:::o;63807:311::-;63942:7;63962:16;26602:3;63988:19;:41;;63962:68;;26602:3;64056:31;64067:4;64073:2;64077:9;64056:10;:31::i;:::-;64048:40;;:62;;64041:69;;;63807:311;;;;;:::o;38699:450::-;38779:14;38947:16;38940:5;38936:28;38927:37;;39124:5;39110:11;39085:23;39081:41;39078:52;39071:5;39068:63;39058:73;;38699:450;;;;:::o;50063:158::-;;;;;:::o;99651:98::-;99704:7;99731:10;99724:17;;99651:98;:::o;57557:689::-;57688:19;57694:2;57698:8;57688:5;:19::i;:::-;57767:1;57749:2;:14;;;:19;57745:483;;57789:11;57803:13;;57789:27;;57835:13;57857:8;57851:3;:14;57835:30;;57884:233;57915:62;57954:1;57958:2;57962:7;;;;;;57971:5;57915:30;:62::i;:::-;57910:167;;58013:40;;;;;;;;;;;;;;57910:167;58112:3;58104:5;:11;57884:233;;58199:3;58182:13;;:20;58178:34;;58204:8;;;58178:34;57770:458;;57745:483;57557:689;;;:::o;38250:366::-;38316:31;;:::i;:::-;38393:6;38360:9;:14;;:41;;;;;;;;;;;26081:3;38446:6;:33;;38412:9;:24;;:68;;;;;;;;;;;38538:1;26198:8;38510:6;:24;:29;;38491:9;:16;;:48;;;;;;;;;;;26602:3;38579:6;:28;;38550:9;:19;;:58;;;;;;;;;;;38250:366;;;:::o;76628:922::-;76681:7;76701:14;76718:1;76701:18;;76768:6;76759:5;:15;76755:102;;76804:6;76795:15;;;;;;:::i;:::-;;;;;76839:2;76829:12;;;;76755:102;76884:6;76875:5;:15;76871:102;;76920:6;76911:15;;;;;;:::i;:::-;;;;;76955:2;76945:12;;;;76871:102;77000:6;76991:5;:15;76987:102;;77036:6;77027:15;;;;;;:::i;:::-;;;;;77071:2;77061:12;;;;76987:102;77116:5;77107;:14;77103:99;;77151:5;77142:14;;;;;;:::i;:::-;;;;;77185:1;77175:11;;;;77103:99;77229:5;77220;:14;77216:99;;77264:5;77255:14;;;;;;:::i;:::-;;;;;77298:1;77288:11;;;;77216:99;77342:5;77333;:14;77329:99;;77377:5;77368:14;;;;;;:::i;:::-;;;;;77411:1;77401:11;;;;77329:99;77455:5;77446;:14;77442:66;;77491:1;77481:11;;;;77442:66;77536:6;77529:13;;;76628:922;;;:::o;7550:296::-;7633:7;7653:20;7676:4;7653:27;;7696:9;7691:118;7715:5;:12;7711:1;:16;7691:118;;;7764:33;7774:12;7788:5;7794:1;7788:8;;;;;;;;:::i;:::-;;;;;;;;7764:9;:33::i;:::-;7749:48;;7729:3;;;;;:::i;:::-;;;;7691:118;;;;7826:12;7819:19;;;7550:296;;;;:::o;50661:716::-;50824:4;50870:2;50845:45;;;50891:19;:17;:19::i;:::-;50912:4;50918:7;50927:5;50845:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50841:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51145:1;51128:6;:13;:18;51124:235;;51174:40;;;;;;;;;;;;;;51124:235;51317:6;51311:13;51302:6;51298:2;51294:15;51287:38;50841:529;51014:54;;;51004:64;;;:6;:64;;;;50997:71;;;50661:716;;;;;;:::o;63508:147::-;63645:6;63508:147;;;;;:::o;51839:2966::-;51912:20;51935:13;;51912:36;;51975:1;51963:8;:13;51959:44;;51985:18;;;;;;;;;;;;;;51959:44;52016:61;52046:1;52050:2;52054:12;52068:8;52016:21;:61::i;:::-;52560:1;25560:2;52530:1;:26;;52529:32;52517:8;:45;52491:18;:22;52510:2;52491:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52839:139;52876:2;52930:33;52953:1;52957:2;52961:1;52930:14;:33::i;:::-;52897:30;52918:8;52897:20;:30::i;:::-;:66;52839:18;:139::i;:::-;52805:17;:31;52823:12;52805:31;;;;;;;;;;;:173;;;;52995:16;53026:11;53055:8;53040:12;:23;53026:37;;53576:16;53572:2;53568:25;53556:37;;53948:12;53908:8;53867:1;53805:25;53746:1;53685;53658:335;54319:1;54305:12;54301:20;54259:346;54360:3;54351:7;54348:16;54259:346;;54578:7;54568:8;54565:1;54538:25;54535:1;54532;54527:59;54413:1;54404:7;54400:15;54389:26;;54259:346;;;54263:77;54650:1;54638:8;:13;54634:45;;54660:19;;;;;;;;;;;;;;54634:45;54712:3;54696:13;:19;;;;52265:2462;;54737:60;54766:1;54770:2;54774:12;54788:8;54737:20;:60::i;:::-;51901:2904;51839:2966;;:::o;14590:149::-;14653:7;14684:1;14680;:5;:51;;14711:20;14726:1;14729;14711:14;:20::i;:::-;14680:51;;;14688:20;14703:1;14706;14688:14;:20::i;:::-;14680:51;14673:58;;14590:149;;;;:::o;39251:324::-;39321:14;39554:1;39544:8;39541:15;39515:24;39511:46;39501:56;;39251:324;;;:::o;14747:268::-;14815:13;14922:1;14916:4;14909:15;14951:1;14945:4;14938:15;14992:4;14986;14976:21;14967:30;;14747:268;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:77::-;3332:7;3361:5;3350:16;;3295:77;;;:::o;3378:122::-;3451:24;3469:5;3451:24;:::i;:::-;3444:5;3441:35;3431:63;;3490:1;3487;3480:12;3431:63;3378:122;:::o;3506:139::-;3552:5;3590:6;3577:20;3568:29;;3606:33;3633:5;3606:33;:::i;:::-;3506:139;;;;:::o;3651:329::-;3710:6;3759:2;3747:9;3738:7;3734:23;3730:32;3727:119;;;3765:79;;:::i;:::-;3727:119;3885:1;3910:53;3955:7;3946:6;3935:9;3931:22;3910:53;:::i;:::-;3900:63;;3856:117;3651:329;;;;:::o;3986:126::-;4023:7;4063:42;4056:5;4052:54;4041:65;;3986:126;;;:::o;4118:96::-;4155:7;4184:24;4202:5;4184:24;:::i;:::-;4173:35;;4118:96;;;:::o;4220:118::-;4307:24;4325:5;4307:24;:::i;:::-;4302:3;4295:37;4220:118;;:::o;4344:222::-;4437:4;4475:2;4464:9;4460:18;4452:26;;4488:71;4556:1;4545:9;4541:17;4532:6;4488:71;:::i;:::-;4344:222;;;;:::o;4572:122::-;4645:24;4663:5;4645:24;:::i;:::-;4638:5;4635:35;4625:63;;4684:1;4681;4674:12;4625:63;4572:122;:::o;4700:139::-;4746:5;4784:6;4771:20;4762:29;;4800:33;4827:5;4800:33;:::i;:::-;4700:139;;;;:::o;4845:474::-;4913:6;4921;4970:2;4958:9;4949:7;4945:23;4941:32;4938:119;;;4976:79;;:::i;:::-;4938:119;5096:1;5121:53;5166:7;5157:6;5146:9;5142:22;5121:53;:::i;:::-;5111:63;;5067:117;5223:2;5249:53;5294:7;5285:6;5274:9;5270:22;5249:53;:::i;:::-;5239:63;;5194:118;4845:474;;;;;:::o;5325:118::-;5412:24;5430:5;5412:24;:::i;:::-;5407:3;5400:37;5325:118;;:::o;5449:222::-;5542:4;5580:2;5569:9;5565:18;5557:26;;5593:71;5661:1;5650:9;5646:17;5637:6;5593:71;:::i;:::-;5449:222;;;;:::o;5677:619::-;5754:6;5762;5770;5819:2;5807:9;5798:7;5794:23;5790:32;5787:119;;;5825:79;;:::i;:::-;5787:119;5945:1;5970:53;6015:7;6006:6;5995:9;5991:22;5970:53;:::i;:::-;5960:63;;5916:117;6072:2;6098:53;6143:7;6134:6;6123:9;6119:22;6098:53;:::i;:::-;6088:63;;6043:118;6200:2;6226:53;6271:7;6262:6;6251:9;6247:22;6226:53;:::i;:::-;6216:63;;6171:118;5677:619;;;;;:::o;6302:122::-;6375:24;6393:5;6375:24;:::i;:::-;6368:5;6365:35;6355:63;;6414:1;6411;6404:12;6355:63;6302:122;:::o;6430:139::-;6476:5;6514:6;6501:20;6492:29;;6530:33;6557:5;6530:33;:::i;:::-;6430:139;;;;:::o;6575:329::-;6634:6;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6575:329;;;;:::o;6910:60::-;6938:3;6959:5;6952:12;;6910:60;;;:::o;6976:142::-;7026:9;7059:53;7077:34;7086:24;7104:5;7086:24;:::i;:::-;7077:34;:::i;:::-;7059:53;:::i;:::-;7046:66;;6976:142;;;:::o;7124:126::-;7174:9;7207:37;7238:5;7207:37;:::i;:::-;7194:50;;7124:126;;;:::o;7256:157::-;7337:9;7370:37;7401:5;7370:37;:::i;:::-;7357:50;;7256:157;;;:::o;7419:193::-;7537:68;7599:5;7537:68;:::i;:::-;7532:3;7525:81;7419:193;;:::o;7618:284::-;7742:4;7780:2;7769:9;7765:18;7757:26;;7793:102;7892:1;7881:9;7877:17;7868:6;7793:102;:::i;:::-;7618:284;;;;:::o;7908:117::-;8017:1;8014;8007:12;8031:117;8140:1;8137;8130:12;8154:180;8202:77;8199:1;8192:88;8299:4;8296:1;8289:15;8323:4;8320:1;8313:15;8340:281;8423:27;8445:4;8423:27;:::i;:::-;8415:6;8411:40;8553:6;8541:10;8538:22;8517:18;8505:10;8502:34;8499:62;8496:88;;;8564:18;;:::i;:::-;8496:88;8604:10;8600:2;8593:22;8383:238;8340:281;;:::o;8627:129::-;8661:6;8688:20;;:::i;:::-;8678:30;;8717:33;8745:4;8737:6;8717:33;:::i;:::-;8627:129;;;:::o;8762:308::-;8824:4;8914:18;8906:6;8903:30;8900:56;;;8936:18;;:::i;:::-;8900:56;8974:29;8996:6;8974:29;:::i;:::-;8966:37;;9058:4;9052;9048:15;9040:23;;8762:308;;;:::o;9076:146::-;9173:6;9168:3;9163;9150:30;9214:1;9205:6;9200:3;9196:16;9189:27;9076:146;;;:::o;9228:425::-;9306:5;9331:66;9347:49;9389:6;9347:49;:::i;:::-;9331:66;:::i;:::-;9322:75;;9420:6;9413:5;9406:21;9458:4;9451:5;9447:16;9496:3;9487:6;9482:3;9478:16;9475:25;9472:112;;;9503:79;;:::i;:::-;9472:112;9593:54;9640:6;9635:3;9630;9593:54;:::i;:::-;9312:341;9228:425;;;;;:::o;9673:340::-;9729:5;9778:3;9771:4;9763:6;9759:17;9755:27;9745:122;;9786:79;;:::i;:::-;9745:122;9903:6;9890:20;9928:79;10003:3;9995:6;9988:4;9980:6;9976:17;9928:79;:::i;:::-;9919:88;;9735:278;9673:340;;;;:::o;10019:509::-;10088:6;10137:2;10125:9;10116:7;10112:23;10108:32;10105:119;;;10143:79;;:::i;:::-;10105:119;10291:1;10280:9;10276:17;10263:31;10321:18;10313:6;10310:30;10307:117;;;10343:79;;:::i;:::-;10307:117;10448:63;10503:7;10494:6;10483:9;10479:22;10448:63;:::i;:::-;10438:73;;10234:287;10019:509;;;;:::o;10534:329::-;10593:6;10642:2;10630:9;10621:7;10617:23;10613:32;10610:119;;;10648:79;;:::i;:::-;10610:119;10768:1;10793:53;10838:7;10829:6;10818:9;10814:22;10793:53;:::i;:::-;10783:63;;10739:117;10534:329;;;;:::o;10869:108::-;10946:24;10964:5;10946:24;:::i;:::-;10941:3;10934:37;10869:108;;:::o;10983:101::-;11019:7;11059:18;11052:5;11048:30;11037:41;;10983:101;;;:::o;11090:105::-;11165:23;11182:5;11165:23;:::i;:::-;11160:3;11153:36;11090:105;;:::o;11201:99::-;11272:21;11287:5;11272:21;:::i;:::-;11267:3;11260:34;11201:99;;:::o;11306:91::-;11342:7;11382:8;11375:5;11371:20;11360:31;;11306:91;;;:::o;11403:105::-;11478:23;11495:5;11478:23;:::i;:::-;11473:3;11466:36;11403:105;;:::o;11586:874::-;11745:4;11740:3;11736:14;11832:4;11825:5;11821:16;11815:23;11851:63;11908:4;11903:3;11899:14;11885:12;11851:63;:::i;:::-;11760:164;12016:4;12009:5;12005:16;11999:23;12035:61;12090:4;12085:3;12081:14;12067:12;12035:61;:::i;:::-;11934:172;12190:4;12183:5;12179:16;12173:23;12209:57;12260:4;12255:3;12251:14;12237:12;12209:57;:::i;:::-;12116:160;12363:4;12356:5;12352:16;12346:23;12382:61;12437:4;12432:3;12428:14;12414:12;12382:61;:::i;:::-;12286:167;11714:746;11586:874;;:::o;12466:347::-;12621:4;12659:3;12648:9;12644:19;12636:27;;12673:133;12803:1;12792:9;12788:17;12779:6;12673:133;:::i;:::-;12466:347;;;;:::o;12819:116::-;12889:21;12904:5;12889:21;:::i;:::-;12882:5;12879:32;12869:60;;12925:1;12922;12915:12;12869:60;12819:116;:::o;12941:133::-;12984:5;13022:6;13009:20;13000:29;;13038:30;13062:5;13038:30;:::i;:::-;12941:133;;;;:::o;13080:468::-;13145:6;13153;13202:2;13190:9;13181:7;13177:23;13173:32;13170:119;;;13208:79;;:::i;:::-;13170:119;13328:1;13353:53;13398:7;13389:6;13378:9;13374:22;13353:53;:::i;:::-;13343:63;;13299:117;13455:2;13481:50;13523:7;13514:6;13503:9;13499:22;13481:50;:::i;:::-;13471:60;;13426:115;13080:468;;;;;:::o;13554:117::-;13663:1;13660;13653:12;13677:117;13786:1;13783;13776:12;13817:568;13890:8;13900:6;13950:3;13943:4;13935:6;13931:17;13927:27;13917:122;;13958:79;;:::i;:::-;13917:122;14071:6;14058:20;14048:30;;14101:18;14093:6;14090:30;14087:117;;;14123:79;;:::i;:::-;14087:117;14237:4;14229:6;14225:17;14213:29;;14291:3;14283:4;14275:6;14271:17;14261:8;14257:32;14254:41;14251:128;;;14298:79;;:::i;:::-;14251:128;13817:568;;;;;:::o;14391:704::-;14486:6;14494;14502;14551:2;14539:9;14530:7;14526:23;14522:32;14519:119;;;14557:79;;:::i;:::-;14519:119;14705:1;14694:9;14690:17;14677:31;14735:18;14727:6;14724:30;14721:117;;;14757:79;;:::i;:::-;14721:117;14870:80;14942:7;14933:6;14922:9;14918:22;14870:80;:::i;:::-;14852:98;;;;14648:312;14999:2;15025:53;15070:7;15061:6;15050:9;15046:22;15025:53;:::i;:::-;15015:63;;14970:118;14391:704;;;;;:::o;15101:307::-;15162:4;15252:18;15244:6;15241:30;15238:56;;;15274:18;;:::i;:::-;15238:56;15312:29;15334:6;15312:29;:::i;:::-;15304:37;;15396:4;15390;15386:15;15378:23;;15101:307;;;:::o;15414:423::-;15491:5;15516:65;15532:48;15573:6;15532:48;:::i;:::-;15516:65;:::i;:::-;15507:74;;15604:6;15597:5;15590:21;15642:4;15635:5;15631:16;15680:3;15671:6;15666:3;15662:16;15659:25;15656:112;;;15687:79;;:::i;:::-;15656:112;15777:54;15824:6;15819:3;15814;15777:54;:::i;:::-;15497:340;15414:423;;;;;:::o;15856:338::-;15911:5;15960:3;15953:4;15945:6;15941:17;15937:27;15927:122;;15968:79;;:::i;:::-;15927:122;16085:6;16072:20;16110:78;16184:3;16176:6;16169:4;16161:6;16157:17;16110:78;:::i;:::-;16101:87;;15917:277;15856:338;;;;:::o;16200:943::-;16295:6;16303;16311;16319;16368:3;16356:9;16347:7;16343:23;16339:33;16336:120;;;16375:79;;:::i;:::-;16336:120;16495:1;16520:53;16565:7;16556:6;16545:9;16541:22;16520:53;:::i;:::-;16510:63;;16466:117;16622:2;16648:53;16693:7;16684:6;16673:9;16669:22;16648:53;:::i;:::-;16638:63;;16593:118;16750:2;16776:53;16821:7;16812:6;16801:9;16797:22;16776:53;:::i;:::-;16766:63;;16721:118;16906:2;16895:9;16891:18;16878:32;16937:18;16929:6;16926:30;16923:117;;;16959:79;;:::i;:::-;16923:117;17064:62;17118:7;17109:6;17098:9;17094:22;17064:62;:::i;:::-;17054:72;;16849:287;16200:943;;;;;;;:::o;17149:474::-;17217:6;17225;17274:2;17262:9;17253:7;17249:23;17245:32;17242:119;;;17280:79;;:::i;:::-;17242:119;17400:1;17425:53;17470:7;17461:6;17450:9;17446:22;17425:53;:::i;:::-;17415:63;;17371:117;17527:2;17553:53;17598:7;17589:6;17578:9;17574:22;17553:53;:::i;:::-;17543:63;;17498:118;17149:474;;;;;:::o;17629:180::-;17677:77;17674:1;17667:88;17774:4;17771:1;17764:15;17798:4;17795:1;17788:15;17815:320;17859:6;17896:1;17890:4;17886:12;17876:22;;17943:1;17937:4;17933:12;17964:18;17954:81;;18020:4;18012:6;18008:17;17998:27;;17954:81;18082:2;18074:6;18071:14;18051:18;18048:38;18045:84;;18101:18;;:::i;:::-;18045:84;17866:269;17815:320;;;:::o;18141:170::-;18281:22;18277:1;18269:6;18265:14;18258:46;18141:170;:::o;18317:366::-;18459:3;18480:67;18544:2;18539:3;18480:67;:::i;:::-;18473:74;;18556:93;18645:3;18556:93;:::i;:::-;18674:2;18669:3;18665:12;18658:19;;18317:366;;;:::o;18689:419::-;18855:4;18893:2;18882:9;18878:18;18870:26;;18942:9;18936:4;18932:20;18928:1;18917:9;18913:17;18906:47;18970:131;19096:4;18970:131;:::i;:::-;18962:139;;18689:419;;;:::o;19114:141::-;19163:4;19186:3;19178:11;;19209:3;19206:1;19199:14;19243:4;19240:1;19230:18;19222:26;;19114:141;;;:::o;19261:93::-;19298:6;19345:2;19340;19333:5;19329:14;19325:23;19315:33;;19261:93;;;:::o;19360:107::-;19404:8;19454:5;19448:4;19444:16;19423:37;;19360:107;;;;:::o;19473:393::-;19542:6;19592:1;19580:10;19576:18;19615:97;19645:66;19634:9;19615:97;:::i;:::-;19733:39;19763:8;19752:9;19733:39;:::i;:::-;19721:51;;19805:4;19801:9;19794:5;19790:21;19781:30;;19854:4;19844:8;19840:19;19833:5;19830:30;19820:40;;19549:317;;19473:393;;;;;:::o;19872:142::-;19922:9;19955:53;19973:34;19982:24;20000:5;19982:24;:::i;:::-;19973:34;:::i;:::-;19955:53;:::i;:::-;19942:66;;19872:142;;;:::o;20020:75::-;20063:3;20084:5;20077:12;;20020:75;;;:::o;20101:269::-;20211:39;20242:7;20211:39;:::i;:::-;20272:91;20321:41;20345:16;20321:41;:::i;:::-;20313:6;20306:4;20300:11;20272:91;:::i;:::-;20266:4;20259:105;20177:193;20101:269;;;:::o;20376:73::-;20421:3;20376:73;:::o;20455:189::-;20532:32;;:::i;:::-;20573:65;20631:6;20623;20617:4;20573:65;:::i;:::-;20508:136;20455:189;;:::o;20650:186::-;20710:120;20727:3;20720:5;20717:14;20710:120;;;20781:39;20818:1;20811:5;20781:39;:::i;:::-;20754:1;20747:5;20743:13;20734:22;;20710:120;;;20650:186;;:::o;20842:543::-;20943:2;20938:3;20935:11;20932:446;;;20977:38;21009:5;20977:38;:::i;:::-;21061:29;21079:10;21061:29;:::i;:::-;21051:8;21047:44;21244:2;21232:10;21229:18;21226:49;;;21265:8;21250:23;;21226:49;21288:80;21344:22;21362:3;21344:22;:::i;:::-;21334:8;21330:37;21317:11;21288:80;:::i;:::-;20947:431;;20932:446;20842:543;;;:::o;21391:117::-;21445:8;21495:5;21489:4;21485:16;21464:37;;21391:117;;;;:::o;21514:169::-;21558:6;21591:51;21639:1;21635:6;21627:5;21624:1;21620:13;21591:51;:::i;:::-;21587:56;21672:4;21666;21662:15;21652:25;;21565:118;21514:169;;;;:::o;21688:295::-;21764:4;21910:29;21935:3;21929:4;21910:29;:::i;:::-;21902:37;;21972:3;21969:1;21965:11;21959:4;21956:21;21948:29;;21688:295;;;;:::o;21988:1395::-;22105:37;22138:3;22105:37;:::i;:::-;22207:18;22199:6;22196:30;22193:56;;;22229:18;;:::i;:::-;22193:56;22273:38;22305:4;22299:11;22273:38;:::i;:::-;22358:67;22418:6;22410;22404:4;22358:67;:::i;:::-;22452:1;22476:4;22463:17;;22508:2;22500:6;22497:14;22525:1;22520:618;;;;23182:1;23199:6;23196:77;;;23248:9;23243:3;23239:19;23233:26;23224:35;;23196:77;23299:67;23359:6;23352:5;23299:67;:::i;:::-;23293:4;23286:81;23155:222;22490:887;;22520:618;22572:4;22568:9;22560:6;22556:22;22606:37;22638:4;22606:37;:::i;:::-;22665:1;22679:208;22693:7;22690:1;22687:14;22679:208;;;22772:9;22767:3;22763:19;22757:26;22749:6;22742:42;22823:1;22815:6;22811:14;22801:24;;22870:2;22859:9;22855:18;22842:31;;22716:4;22713:1;22709:12;22704:17;;22679:208;;;22915:6;22906:7;22903:19;22900:179;;;22973:9;22968:3;22964:19;22958:26;23016:48;23058:4;23050:6;23046:17;23035:9;23016:48;:::i;:::-;23008:6;23001:64;22923:156;22900:179;23125:1;23121;23113:6;23109:14;23105:22;23099:4;23092:36;22527:611;;;22490:887;;22080:1303;;;21988:1395;;:::o;23389:180::-;23437:77;23434:1;23427:88;23534:4;23531:1;23524:15;23558:4;23555:1;23548:15;23575:191;23615:3;23634:20;23652:1;23634:20;:::i;:::-;23629:25;;23668:20;23686:1;23668:20;:::i;:::-;23663:25;;23711:1;23708;23704:9;23697:16;;23732:3;23729:1;23726:10;23723:36;;;23739:18;;:::i;:::-;23723:36;23575:191;;;;:::o;23772:228::-;23912:34;23908:1;23900:6;23896:14;23889:58;23981:11;23976:2;23968:6;23964:15;23957:36;23772:228;:::o;24006:366::-;24148:3;24169:67;24233:2;24228:3;24169:67;:::i;:::-;24162:74;;24245:93;24334:3;24245:93;:::i;:::-;24363:2;24358:3;24354:12;24347:19;;24006:366;;;:::o;24378:419::-;24544:4;24582:2;24571:9;24567:18;24559:26;;24631:9;24625:4;24621:20;24617:1;24606:9;24602:17;24595:47;24659:131;24785:4;24659:131;:::i;:::-;24651:139;;24378:419;;;:::o;24803:175::-;24943:27;24939:1;24931:6;24927:14;24920:51;24803:175;:::o;24984:366::-;25126:3;25147:67;25211:2;25206:3;25147:67;:::i;:::-;25140:74;;25223:93;25312:3;25223:93;:::i;:::-;25341:2;25336:3;25332:12;25325:19;;24984:366;;;:::o;25356:419::-;25522:4;25560:2;25549:9;25545:18;25537:26;;25609:9;25603:4;25599:20;25595:1;25584:9;25580:17;25573:47;25637:131;25763:4;25637:131;:::i;:::-;25629:139;;25356:419;;;:::o;25781:168::-;25921:20;25917:1;25909:6;25905:14;25898:44;25781:168;:::o;25955:366::-;26097:3;26118:67;26182:2;26177:3;26118:67;:::i;:::-;26111:74;;26194:93;26283:3;26194:93;:::i;:::-;26312:2;26307:3;26303:12;26296:19;;25955:366;;;:::o;26327:419::-;26493:4;26531:2;26520:9;26516:18;26508:26;;26580:9;26574:4;26570:20;26566:1;26555:9;26551:17;26544:47;26608:131;26734:4;26608:131;:::i;:::-;26600:139;;26327:419;;;:::o;26752:148::-;26854:11;26891:3;26876:18;;26752:148;;;;:::o;26906:168::-;27046:20;27042:1;27034:6;27030:14;27023:44;26906:168;:::o;27080:402::-;27240:3;27261:85;27343:2;27338:3;27261:85;:::i;:::-;27254:92;;27355:93;27444:3;27355:93;:::i;:::-;27473:2;27468:3;27464:12;27457:19;;27080:402;;;:::o;27488:390::-;27594:3;27622:39;27655:5;27622:39;:::i;:::-;27677:89;27759:6;27754:3;27677:89;:::i;:::-;27670:96;;27775:65;27833:6;27828:3;27821:4;27814:5;27810:16;27775:65;:::i;:::-;27865:6;27860:3;27856:16;27849:23;;27598:280;27488:390;;;;:::o;27884:541::-;28117:3;28139:148;28283:3;28139:148;:::i;:::-;28132:155;;28304:95;28395:3;28386:6;28304:95;:::i;:::-;28297:102;;28416:3;28409:10;;27884:541;;;;:::o;28431:410::-;28471:7;28494:20;28512:1;28494:20;:::i;:::-;28489:25;;28528:20;28546:1;28528:20;:::i;:::-;28523:25;;28583:1;28580;28576:9;28605:30;28623:11;28605:30;:::i;:::-;28594:41;;28784:1;28775:7;28771:15;28768:1;28765:22;28745:1;28738:9;28718:83;28695:139;;28814:18;;:::i;:::-;28695:139;28479:362;28431:410;;;;:::o;28847:172::-;28987:24;28983:1;28975:6;28971:14;28964:48;28847:172;:::o;29025:366::-;29167:3;29188:67;29252:2;29247:3;29188:67;:::i;:::-;29181:74;;29264:93;29353:3;29264:93;:::i;:::-;29382:2;29377:3;29373:12;29366:19;;29025:366;;;:::o;29397:419::-;29563:4;29601:2;29590:9;29586:18;29578:26;;29650:9;29644:4;29640:20;29636:1;29625:9;29621:17;29614:47;29678:131;29804:4;29678:131;:::i;:::-;29670:139;;29397:419;;;:::o;29822:176::-;29962:28;29958:1;29950:6;29946:14;29939:52;29822:176;:::o;30004:366::-;30146:3;30167:67;30231:2;30226:3;30167:67;:::i;:::-;30160:74;;30243:93;30332:3;30243:93;:::i;:::-;30361:2;30356:3;30352:12;30345:19;;30004:366;;;:::o;30376:419::-;30542:4;30580:2;30569:9;30565:18;30557:26;;30629:9;30623:4;30619:20;30615:1;30604:9;30600:17;30593:47;30657:131;30783:4;30657:131;:::i;:::-;30649:139;;30376:419;;;:::o;30801:237::-;30941:34;30937:1;30929:6;30925:14;30918:58;31010:20;31005:2;30997:6;30993:15;30986:45;30801:237;:::o;31044:366::-;31186:3;31207:67;31271:2;31266:3;31207:67;:::i;:::-;31200:74;;31283:93;31372:3;31283:93;:::i;:::-;31401:2;31396:3;31392:12;31385:19;;31044:366;;;:::o;31416:419::-;31582:4;31620:2;31609:9;31605:18;31597:26;;31669:9;31663:4;31659:20;31655:1;31644:9;31640:17;31633:47;31697:131;31823:4;31697:131;:::i;:::-;31689:139;;31416:419;;;:::o;31841:94::-;31874:8;31922:5;31918:2;31914:14;31893:35;;31841:94;;;:::o;31941:::-;31980:7;32009:20;32023:5;32009:20;:::i;:::-;31998:31;;31941:94;;;:::o;32041:100::-;32080:7;32109:26;32129:5;32109:26;:::i;:::-;32098:37;;32041:100;;;:::o;32147:157::-;32252:45;32272:24;32290:5;32272:24;:::i;:::-;32252:45;:::i;:::-;32247:3;32240:58;32147:157;;:::o;32310:256::-;32422:3;32437:75;32508:3;32499:6;32437:75;:::i;:::-;32537:2;32532:3;32528:12;32521:19;;32557:3;32550:10;;32310:256;;;;:::o;32572:226::-;32712:34;32708:1;32700:6;32696:14;32689:58;32781:9;32776:2;32768:6;32764:15;32757:34;32572:226;:::o;32804:366::-;32946:3;32967:67;33031:2;33026:3;32967:67;:::i;:::-;32960:74;;33043:93;33132:3;33043:93;:::i;:::-;33161:2;33156:3;33152:12;33145:19;;32804:366;;;:::o;33176:419::-;33342:4;33380:2;33369:9;33365:18;33357:26;;33429:9;33423:4;33419:20;33415:1;33404:9;33400:17;33393:47;33457:131;33583:4;33457:131;:::i;:::-;33449:139;;33176:419;;;:::o;33601:234::-;33741:34;33737:1;33729:6;33725:14;33718:58;33810:17;33805:2;33797:6;33793:15;33786:42;33601:234;:::o;33841:366::-;33983:3;34004:67;34068:2;34063:3;34004:67;:::i;:::-;33997:74;;34080:93;34169:3;34080:93;:::i;:::-;34198:2;34193:3;34189:12;34182:19;;33841:366;;;:::o;34213:419::-;34379:4;34417:2;34406:9;34402:18;34394:26;;34466:9;34460:4;34456:20;34452:1;34441:9;34437:17;34430:47;34494:131;34620:4;34494:131;:::i;:::-;34486:139;;34213:419;;;:::o;34662:874::-;34765:3;34802:5;34796:12;34831:36;34857:9;34831:36;:::i;:::-;34883:89;34965:6;34960:3;34883:89;:::i;:::-;34876:96;;35003:1;34992:9;34988:17;35019:1;35014:166;;;;35194:1;35189:341;;;;34981:549;;35014:166;35098:4;35094:9;35083;35079:25;35074:3;35067:38;35160:6;35153:14;35146:22;35138:6;35134:35;35129:3;35125:45;35118:52;;35014:166;;35189:341;35256:38;35288:5;35256:38;:::i;:::-;35316:1;35330:154;35344:6;35341:1;35338:13;35330:154;;;35418:7;35412:14;35408:1;35403:3;35399:11;35392:35;35468:1;35459:7;35455:15;35444:26;;35366:4;35363:1;35359:12;35354:17;;35330:154;;;35513:6;35508:3;35504:16;35497:23;;35196:334;;34981:549;;34769:767;;34662:874;;;;:::o;35542:589::-;35767:3;35789:95;35880:3;35871:6;35789:95;:::i;:::-;35782:102;;35901:95;35992:3;35983:6;35901:95;:::i;:::-;35894:102;;36013:92;36101:3;36092:6;36013:92;:::i;:::-;36006:99;;36122:3;36115:10;;35542:589;;;;;;:::o;36137:225::-;36277:34;36273:1;36265:6;36261:14;36254:58;36346:8;36341:2;36333:6;36329:15;36322:33;36137:225;:::o;36368:366::-;36510:3;36531:67;36595:2;36590:3;36531:67;:::i;:::-;36524:74;;36607:93;36696:3;36607:93;:::i;:::-;36725:2;36720:3;36716:12;36709:19;;36368:366;;;:::o;36740:419::-;36906:4;36944:2;36933:9;36929:18;36921:26;;36993:9;36987:4;36983:20;36979:1;36968:9;36964:17;36957:47;37021:131;37147:4;37021:131;:::i;:::-;37013:139;;36740:419;;;:::o;37165:172::-;37305:24;37301:1;37293:6;37289:14;37282:48;37165:172;:::o;37343:366::-;37485:3;37506:67;37570:2;37565:3;37506:67;:::i;:::-;37499:74;;37582:93;37671:3;37582:93;:::i;:::-;37700:2;37695:3;37691:12;37684:19;;37343:366;;;:::o;37715:419::-;37881:4;37919:2;37908:9;37904:18;37896:26;;37968:9;37962:4;37958:20;37954:1;37943:9;37939:17;37932:47;37996:131;38122:4;37996:131;:::i;:::-;37988:139;;37715:419;;;:::o;38140:332::-;38261:4;38299:2;38288:9;38284:18;38276:26;;38312:71;38380:1;38369:9;38365:17;38356:6;38312:71;:::i;:::-;38393:72;38461:2;38450:9;38446:18;38437:6;38393:72;:::i;:::-;38140:332;;;;;:::o;38478:137::-;38532:5;38563:6;38557:13;38548:22;;38579:30;38603:5;38579:30;:::i;:::-;38478:137;;;;:::o;38621:345::-;38688:6;38737:2;38725:9;38716:7;38712:23;38708:32;38705:119;;;38743:79;;:::i;:::-;38705:119;38863:1;38888:61;38941:7;38932:6;38921:9;38917:22;38888:61;:::i;:::-;38878:71;;38834:125;38621:345;;;;:::o;38972:182::-;39112:34;39108:1;39100:6;39096:14;39089:58;38972:182;:::o;39160:366::-;39302:3;39323:67;39387:2;39382:3;39323:67;:::i;:::-;39316:74;;39399:93;39488:3;39399:93;:::i;:::-;39517:2;39512:3;39508:12;39501:19;;39160:366;;;:::o;39532:419::-;39698:4;39736:2;39725:9;39721:18;39713:26;;39785:9;39779:4;39775:20;39771:1;39760:9;39756:17;39749:47;39813:131;39939:4;39813:131;:::i;:::-;39805:139;;39532:419;;;:::o;39957:180::-;40005:77;40002:1;39995:88;40102:4;40099:1;40092:15;40126:4;40123:1;40116:15;40143:180;40191:77;40188:1;40181:88;40288:4;40285:1;40278:15;40312:4;40309:1;40302:15;40329:233;40368:3;40391:24;40409:5;40391:24;:::i;:::-;40382:33;;40437:66;40430:5;40427:77;40424:103;;40507:18;;:::i;:::-;40424:103;40554:1;40547:5;40543:13;40536:20;;40329:233;;;:::o;40568:98::-;40619:6;40653:5;40647:12;40637:22;;40568:98;;;:::o;40672:168::-;40755:11;40789:6;40784:3;40777:19;40829:4;40824:3;40820:14;40805:29;;40672:168;;;;:::o;40846:373::-;40932:3;40960:38;40992:5;40960:38;:::i;:::-;41014:70;41077:6;41072:3;41014:70;:::i;:::-;41007:77;;41093:65;41151:6;41146:3;41139:4;41132:5;41128:16;41093:65;:::i;:::-;41183:29;41205:6;41183:29;:::i;:::-;41178:3;41174:39;41167:46;;40936:283;40846:373;;;;:::o;41225:640::-;41420:4;41458:3;41447:9;41443:19;41435:27;;41472:71;41540:1;41529:9;41525:17;41516:6;41472:71;:::i;:::-;41553:72;41621:2;41610:9;41606:18;41597:6;41553:72;:::i;:::-;41635;41703:2;41692:9;41688:18;41679:6;41635:72;:::i;:::-;41754:9;41748:4;41744:20;41739:2;41728:9;41724:18;41717:48;41782:76;41853:4;41844:6;41782:76;:::i;:::-;41774:84;;41225:640;;;;;;;:::o;41871:141::-;41927:5;41958:6;41952:13;41943:22;;41974:32;42000:5;41974:32;:::i;:::-;41871:141;;;;:::o;42018:349::-;42087:6;42136:2;42124:9;42115:7;42111:23;42107:32;42104:119;;;42142:79;;:::i;:::-;42104:119;42262:1;42287:63;42342:7;42333:6;42322:9;42318:22;42287:63;:::i;:::-;42277:73;;42233:127;42018:349;;;;:::o

Swarm Source

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