ETH Price: $3,457.27 (+6.47%)
Gas: 6 Gwei

Token

NYDz (NYDz)
 

Overview

Max Total Supply

2,150 NYDz

Holders

1,295

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NYDz
0x73F1c836aa6EeeEa0F1b7ec9cF437cc95Cb13c1C
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:
NYDz

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _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}
     *
     * _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: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.4;











error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // 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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);

         return tokenIdsIdx; // or simply return 0;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// 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: contract.sol



pragma solidity ^0.8.4;

/* 
\ gas optimized mint
*/





error CannotSetZeroAddress();

contract NYDz is ERC721A, ERC2981, ReentrancyGuard, Ownable {

    address private treasuryAddress;
    address wallet1 = 0x446C23066B2B15bD1728F2bADd2Ba72c1C717906;
    
    bool public publicSale = false;
    bool public whitelistSale = false;
    bool public revealed = false;

    uint256 private countPay;
    uint256 private countFree;
    uint256 private countowner;

    uint256 private maxPerTx = 5;
    uint256 private maxPerAddress = 5;
    uint256 public maxToken = 7777;
    uint256 public price = 0.005 ether;
    uint256 private FREE_maxToken = 2000;
    uint256 private maxFreePerAddress = 1;
    uint256 private reserved = 777;
    
    string private _baseTokenURI;
    string private notRevealedUri = "ipfs://QmTbPNerfgShtCV2Pw5ajQ6eZzEyTFFDiZk86D7kjkiKzo/notreveal.json";

    bytes32 root;

    mapping (address => bool) public freeMinted;

    address defaultTreasury = 0x9A7f7dF4B038C77249c29ad24465098c37aE8067;
    
    constructor() ERC721A("NYDz", "NYDz") {
        setTreasuryAddress(payable(defaultTreasury));
        setRoyaltyInfo(750);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function verify(bytes32[] memory proof) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, root, leaf);
    }

    function mint(uint256 quantity) external payable callerIsUser {
        require(publicSale, "SALE_HAS_NOT_STARTED_YET");
        require(numberMinted(msg.sender) + quantity <= maxPerAddress, "PER_WALLET_LIMIT_REACHED");
        require(quantity > 0, "INVALID_QUANTITY");

        address _caller = _msgSender();
        require(maxToken >= quantity + totalSupply() + reserved, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
      
        if(freeMinted[msg.sender] == false && quantity * price == msg.value){
            require(maxPerTx >= quantity , "Excess max per tx");
            require(quantity * price == msg.value, "Invalid funds provided for tx"); 
            countPay = countPay + quantity;
        }else if(freeMinted[msg.sender] == false && FREE_maxToken + countowner > totalSupply() - countPay){
            require(maxPerTx >= quantity , "Excess max per tx");
            require((quantity - 1) * price == msg.value, "Invalid funds provided"); 
            countPay = countPay + (quantity - 1);
            countFree++;
		    freeMinted[msg.sender] = true;
        }else{
		    require(maxPerTx >= quantity , "Excess max per tx");
            require(quantity * price == msg.value, "Invalid funds provided");
			countPay = countPay + quantity;
		}

        _safeMint(_caller, quantity);
    }

    function WhitelistMint(uint256 quantity) external payable callerIsUser {
        require(whitelistSale, "SALE_HAS_NOT_STARTED_YET");
        require(numberMinted(msg.sender) + quantity <= maxPerAddress, "PER_WALLET_LIMIT_REACHED");
        require(quantity > 0, "INVALID_QUANTITY");

        address _caller = _msgSender();
        require(maxToken >= quantity + totalSupply() + reserved, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
                
        if(freeMinted[msg.sender] == false && quantity * price == msg.value){
            require(maxPerTx >= quantity , "Excess max per tx");
            require(quantity * price == msg.value, "Invalid funds provided for tx"); 
            countPay = countPay + quantity;
        }else if(freeMinted[msg.sender] == false && FREE_maxToken + countowner > totalSupply() - countPay){
            require(maxPerTx >= quantity , "Excess max per tx");
            require((quantity - 1) * price == msg.value, "Invalid funds provided"); 
            countPay = countPay + (quantity - 1);
            countFree++;
		    freeMinted[msg.sender] = true;
        }else{
		    require(maxPerTx >= quantity , "Excess max per tx");
            require(quantity * price == msg.value, "Invalid funds provided");
			countPay = countPay + quantity;
		}

        _safeMint(_caller, quantity);
    }

    function ownerMint(address _address, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= maxToken, "NOT_ENOUGH_SUPPLY_TO_GIVEAWAY_DESIRED_AMOUNT");
        _safeMint(_address, quantity);
        reserved = reserved - quantity;
        countowner = countowner + quantity;
    }


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

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory _tokenURI = super.tokenURI(tokenId);
        return
            bytes(_tokenURI).length > 0
                ? string(abi.encodePacked(_tokenURI, ".json"))
                : "";
    }

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

    function setPrice(uint256 _PriceInWEI) external onlyOwner {
        price = _PriceInWEI;
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    function flipPublicSaleState() external onlyOwner {
        publicSale = !publicSale;
    }

    function flipWhitelistState() external onlyOwner {
        whitelistSale = !whitelistSale;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setNotRevealedURI(string memory _notRevealedURI) external onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function reveal() external onlyOwner {
        revealed = !revealed;
    }

        /**
     * @dev Update the royalty percentage (750 = 7,5%)
     */
    function setRoyaltyInfo(uint96 newRoyaltyPercentage) public onlyOwner {
        _setDefaultRoyalty(treasuryAddress, newRoyaltyPercentage);
    }

      /**
     * @dev Update the royalty wallet address
     */
    function setTreasuryAddress(address payable newAddress) public onlyOwner {
        if (newAddress == address(0)) revert CannotSetZeroAddress();
        treasuryAddress = newAddress;
    }

        /**
     * @dev Withdraw funds to treasuryAddress
     */    
     function withdrawAll() external onlyOwner {
        uint256 currentBalance = address(this).balance;
        uint256 twentyfivePercent = (currentBalance/100)*25;

        require(payable(wallet1).send(twentyfivePercent));
        Address.sendValue(payable(treasuryAddress), address(this).balance);
    }

        /**
     * @dev {ERC165-supportsInterface} Adding IERC2981
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC2981.supportsInterface(interfaceId) ||
            super.supportsInterface(interfaceId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CannotSetZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"WhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PriceInWEI","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"newRoyaltyPercentage","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"setTreasuryAddress","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600c80546001600160b81b03191673446c23066b2b15bd1728f2badd2ba72c1c71790617905560056010819055601155611e616012556611c37937e080006013556107d06014556001601555610309601655610100604052604460808181529062002d1360a03960189062000075908262000405565b50601b80546001600160a01b031916739a7f7df4b038c77249c29ad24465098c37ae8067179055348015620000a957600080fd5b50604080518082018252600480825263272ca23d60e11b6020808401829052845180860190955291845290830152906001620000e6838262000405565b506002620000f5828262000405565b5050600160095550620001083362000132565b601b546200011f906001600160a01b031662000184565b6200012c6102ee620001d8565b620004d1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200018e620001fd565b6001600160a01b038116620001b657604051632969679960e11b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b620001e2620001fd565b600b54620001fa906001600160a01b0316826200025f565b50565b600a546001600160a01b031633146200025d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b6127106001600160601b0382161115620002cf5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000254565b6001600160a01b038216620003275760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000254565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200038b57607f821691505b602082108103620003ac57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040057600081815260208120601f850160051c81016020861015620003db5750805b601f850160051c820191505b81811015620003fc57828155600101620003e7565b5050505b505050565b81516001600160401b0381111562000421576200042162000360565b620004398162000432845462000376565b84620003b2565b602080601f831160018114620004715760008415620004585750858301515b600019600386901b1c1916600185901b178555620003fc565b600085815260208120601f198616915b82811015620004a25788860151825594840194600190910190840162000481565b5085821015620004c15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61283280620004e16000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063dab5f3401161007a578063dab5f340146106d3578063dc33e681146106f3578063e985e9c514610713578063f2c4ce1e1461075c578063f2fde38b1461077c578063f6fa26ab1461079c57600080fd5b8063a22cb46514610648578063a475b5dd14610668578063b88d4fde1461067d578063c87b56dd1461069d578063ca69e323146106bd57600080fd5b80639231ab2a116100fd5780639231ab2a146105a857806395d89b41146105f5578063a035b1fe1461060a578063a0712d6814610620578063a10866ef1461063357600080fd5b806370a0823114610520578063715018a614610540578063853828b6146105555780638da5cb5b1461056a57806391b7f5ed1461058857600080fd5b806333bc1c5c116101c75780634f6ccce71161018b5780634f6ccce71461047f578063518302271461049f57806355f804b3146104c05780636352211e146104e05780636605bfda1461050057600080fd5b806333bc1c5c146103ce578063389fcf06146103ef57806342842e0e1461041f578063484b973c1461043f5780634af9345e1461045f57600080fd5b8063205ee7b81161020e578063205ee7b81461031b57806323b872dd1461032e5780632a55205a1461034e5780632f745c591461038d57806331ffd6f1146103ad57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004612078565b6107b1565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107d1565b60405161027791906120ed565b3480156102ae57600080fd5b506102c26102bd366004612100565b610863565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f536600461212e565b6108a9565b005b34801561030857600080fd5b506000545b604051908152602001610277565b6102fa610329366004612100565b610936565b34801561033a57600080fd5b506102fa61034936600461215a565b610d9f565b34801561035a57600080fd5b5061036e61036936600461219b565b610daa565b604080516001600160a01b039093168352602083019190915201610277565b34801561039957600080fd5b5061030d6103a836600461212e565b610e56565b3480156103b957600080fd5b50600c5461026b90600160a81b900460ff1681565b3480156103da57600080fd5b50600c5461026b90600160a01b900460ff1681565b3480156103fb57600080fd5b5061026b61040a3660046121bd565b601a6020526000908152604090205460ff1681565b34801561042b57600080fd5b506102fa61043a36600461215a565b610f28565b34801561044b57600080fd5b506102fa61045a36600461212e565b610f43565b34801561046b57600080fd5b506102fa61047a3660046121da565b610ff5565b34801561048b57600080fd5b5061030d61049a366004612100565b611016565b3480156104ab57600080fd5b50600c5461026b90600160b01b900460ff1681565b3480156104cc57600080fd5b506102fa6104db366004612203565b61103d565b3480156104ec57600080fd5b506102c26104fb366004612100565b611052565b34801561050c57600080fd5b506102fa61051b3660046121bd565b611064565b34801561052c57600080fd5b5061030d61053b3660046121bd565b6110b5565b34801561054c57600080fd5b506102fa611103565b34801561056157600080fd5b506102fa611117565b34801561057657600080fd5b50600a546001600160a01b03166102c2565b34801561059457600080fd5b506102fa6105a3366004612100565b611181565b3480156105b457600080fd5b506105c86105c3366004612100565b61118e565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610277565b34801561060157600080fd5b506102956111ab565b34801561061657600080fd5b5061030d60135481565b6102fa61062e366004612100565b6111ba565b34801561063f57600080fd5b506102fa61125d565b34801561065457600080fd5b506102fa610663366004612274565b611286565b34801561067457600080fd5b506102fa61131b565b34801561068957600080fd5b506102fa61069836600461233d565b611344565b3480156106a957600080fd5b506102956106b8366004612100565b61137e565b3480156106c957600080fd5b5061030d60125481565b3480156106df57600080fd5b506102fa6106ee366004612100565b6114ea565b3480156106ff57600080fd5b5061030d61070e3660046121bd565b6114f7565b34801561071f57600080fd5b5061026b61072e3660046123bc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076857600080fd5b506102fa6107773660046123ea565b611502565b34801561078857600080fd5b506102fa6107973660046121bd565b611516565b3480156107a857600080fd5b506102fa61158c565b60006107bc826115b5565b806107cb57506107cb826115b5565b92915050565b6060600180546107e090612432565b80601f016020809104026020016040519081016040528092919081815260200182805461080c90612432565b80156108595780601f1061082e57610100808354040283529160200191610859565b820191906000526020600020905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b6000610870826000541190565b61088d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b482611052565b9050806001600160a01b0316836001600160a01b0316036108e85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109085750610906813361072e565b155b15610926576040516367d9dca160e11b815260040160405180910390fd5b6109318383836115da565b505050565b32331461098a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b600c54600160a81b900460ff166109de5760405162461bcd60e51b815260206004820152601860248201527714d0531157d21054d7d393d517d4d5105495115117d6515560421b6044820152606401610981565b601154816109eb336114f7565b6109f59190612482565b1115610a435760405162461bcd60e51b815260206004820152601860248201527f5045525f57414c4c45545f4c494d49545f5245414348454400000000000000006044820152606401610981565b60008111610a865760405162461bcd60e51b815260206004820152601060248201526f494e56414c49445f5155414e5449545960801b6044820152606401610981565b601654600054339190610a999084612482565b610aa39190612482565b6012541015610ae95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610981565b326001600160a01b03821614610b305760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610981565b336000908152601a602052604090205460ff16158015610b5c57503460135483610b5a919061249a565b145b15610bf557816010541015610b835760405162461bcd60e51b8152600401610981906124b9565b3460135483610b92919061249a565b14610bdf5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c69642066756e64732070726f766964656420666f722074780000006044820152606401610981565b81600d54610bed9190612482565b600d55610d91565b336000908152601a602052604090205460ff16158015610c325750600d54600054610c2091906124e4565b600f54601454610c309190612482565b115b15610d0857816010541015610c595760405162461bcd60e51b8152600401610981906124b9565b6013543490610c696001856124e4565b610c73919061249a565b14610cb95760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610981565b610cc46001836124e4565b600d54610cd19190612482565b600d55600e8054906000610ce4836124fb565b9091555050336000908152601a60205260409020805460ff19166001179055610d91565b816010541015610d2a5760405162461bcd60e51b8152600401610981906124b9565b3460135483610d39919061249a565b14610d7f5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610981565b81600d54610d8d9190612482565b600d555b610d9b8183611636565b5050565b610931838383611650565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610e1f5750604080518082019091526007546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610e3e906001600160601b03168761249a565b610e48919061252a565b915196919550909350505050565b6000610e61836110b5565b8210610e80576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610f16576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610eda57805192505b876001600160a01b0316836001600160a01b031603610f0d57868403610f06575093506107cb92505050565b6001909301925b50600101610e88565b50610f1f61253e565b50949350505050565b61093183838360405180602001604052806000815250611344565b610f4b61186d565b60125481610f5860005490565b610f629190612482565b1115610fc55760405162461bcd60e51b815260206004820152602c60248201527f4e4f545f454e4f5547485f535550504c595f544f5f47495645415741595f444560448201526b14d254915117d05353d5539560a21b6064820152608401610981565b610fcf8282611636565b80601654610fdd91906124e4565b601655600f54610fee908290612482565b600f555050565b610ffd61186d565b600b54611013906001600160a01b0316826118c7565b50565b600080548210611039576040516329c8c00760e21b815260040160405180910390fd5b5090565b61104561186d565b60176109318284836125a2565b600061105d826119c4565b5192915050565b61106c61186d565b6001600160a01b03811661109357604051632969679960e11b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166110de576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61110b61186d565b6111156000611a58565b565b61111f61186d565b47600061112d60648361252a565b61113890601961249a565b600c546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061116b57600080fd5b600b54610d9b906001600160a01b031647611aaa565b61118961186d565b601355565b60408051808201909152600080825260208201526107cb826119c4565b6060600280546107e090612432565b3233146112095760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610981565b600c54600160a01b900460ff166109de5760405162461bcd60e51b815260206004820152601860248201527714d0531157d21054d7d393d517d4d5105495115117d6515560421b6044820152606401610981565b61126561186d565b600c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b336001600160a01b038316036112af5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61132361186d565b600c805460ff60b01b198116600160b01b9182900460ff1615909102179055565b61134f848484611650565b61135b84848484611bc3565b611378576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061138b826000541190565b6113ef5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610981565b600c54600160b01b900460ff161515600003611497576018805461141290612432565b80601f016020809104026020016040519081016040528092919081815260200182805461143e90612432565b801561148b5780601f106114605761010080835404028352916020019161148b565b820191906000526020600020905b81548152906001019060200180831161146e57829003601f168201915b50505050509050919050565b60006114a283611cc6565b905060008151116114c257604051806020016040528060008152506114e3565b806040516020016114d39190612661565b6040516020818303038152906040525b9392505050565b6114f261186d565b601955565b60006107cb82611d35565b61150a61186d565b6018610d9b828261268a565b61151e61186d565b6001600160a01b0381166115835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b61101381611a58565b61159461186d565b600c805460ff60a81b198116600160a81b9182900460ff1615909102179055565b60006001600160e01b0319821663152a902d60e11b14806107cb57506107cb82611d8a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610d9b828260405180602001604052806000815250611df5565b600061165b826119c4565b80519091506000906001600160a01b0316336001600160a01b0316148061169257503361168784610863565b6001600160a01b0316145b806116a4575081516116a4903361072e565b9050806116c457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116f95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661172057604051633a954ecd60e21b815260040160405180910390fd5b61173060008484600001516115da565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611823576117d7816000541190565b1561182357825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600a546001600160a01b031633146111155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610981565b6127106001600160601b03821611156119355760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610981565b6001600160a01b03821661198b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610981565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b60408051808201909152600080825260208201526119e3826000541190565b611a0057604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611a4e579392505050565b5060001901611a02565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80471015611afa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610981565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b47576040519150601f19603f3d011682016040523d82523d6000602084013e611b4c565b606091505b50509050806109315760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610981565b60006001600160a01b0384163b15611cba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c07903390899088908890600401612749565b6020604051808303816000875af1925050508015611c42575060408051601f3d908101601f19168201909252611c3f91810190612786565b60015b611ca0573d808015611c70576040519150601f19603f3d011682016040523d82523d6000602084013e611c75565b606091505b508051600003611c98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cbe565b5060015b949350505050565b6060611cd3826000541190565b611cf057604051630a14c4b560e41b815260040160405180910390fd5b6000611cfa611e02565b90508051600003611d1a57604051806020016040528060008152506114e3565b80611d2484611e11565b6040516020016114d39291906127a3565b60006001600160a01b038216611d5e576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b60006001600160e01b031982166380ac58cd60e01b1480611dbb57506001600160e01b03198216635b5e139f60e01b145b80611dd657506001600160e01b0319821663780e9d6360e01b145b806107cb57506301ffc9a760e01b6001600160e01b03198316146107cb565b6109318383836001611f11565b6060601780546107e090612432565b606081600003611e385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e625780611e4c816124fb565b9150611e5b9050600a8361252a565b9150611e3c565b6000816001600160401b03811115611e7c57611e7c6122b2565b6040519080825280601f01601f191660200182016040528015611ea6576020820181803683370190505b5090505b8415611cbe57611ebb6001836124e4565b9150611ec8600a866127d2565b611ed3906030612482565b60f81b818381518110611ee857611ee86127e6565b60200101906001600160f81b031916908160001a905350611f0a600a8661252a565b9450611eaa565b6000546001600160a01b038516611f3a57604051622e076360e81b815260040160405180910390fd5b83600003611f5b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156120595760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561202f575061202d6000888488611bc3565b155b1561204d576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611fd8565b50600055611866565b6001600160e01b03198116811461101357600080fd5b60006020828403121561208a57600080fd5b81356114e381612062565b60005b838110156120b0578181015183820152602001612098565b838111156113785750506000910152565b600081518084526120d9816020860160208601612095565b601f01601f19169290920160200192915050565b6020815260006114e360208301846120c1565b60006020828403121561211257600080fd5b5035919050565b6001600160a01b038116811461101357600080fd5b6000806040838503121561214157600080fd5b823561214c81612119565b946020939093013593505050565b60008060006060848603121561216f57600080fd5b833561217a81612119565b9250602084013561218a81612119565b929592945050506040919091013590565b600080604083850312156121ae57600080fd5b50508035926020909101359150565b6000602082840312156121cf57600080fd5b81356114e381612119565b6000602082840312156121ec57600080fd5b81356001600160601b03811681146114e357600080fd5b6000806020838503121561221657600080fd5b82356001600160401b038082111561222d57600080fd5b818501915085601f83011261224157600080fd5b81358181111561225057600080fd5b86602082850101111561226257600080fd5b60209290920196919550909350505050565b6000806040838503121561228757600080fd5b823561229281612119565b9150602083013580151581146122a757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156122e2576122e26122b2565b604051601f8501601f19908116603f0116810190828211818310171561230a5761230a6122b2565b8160405280935085815286868601111561232357600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561235357600080fd5b843561235e81612119565b9350602085013561236e81612119565b92506040850135915060608501356001600160401b0381111561239057600080fd5b8501601f810187136123a157600080fd5b6123b0878235602084016122c8565b91505092959194509250565b600080604083850312156123cf57600080fd5b82356123da81612119565b915060208301356122a781612119565b6000602082840312156123fc57600080fd5b81356001600160401b0381111561241257600080fd5b8201601f8101841361242357600080fd5b611cbe848235602084016122c8565b600181811c9082168061244657607f821691505b60208210810361246657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156124955761249561246c565b500190565b60008160001904831182151516156124b4576124b461246c565b500290565b60208082526011908201527008af0c6cae6e640dac2f040e0cae440e8f607b1b604082015260600190565b6000828210156124f6576124f661246c565b500390565b60006001820161250d5761250d61246c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261253957612539612514565b500490565b634e487b7160e01b600052600160045260246000fd5b601f82111561093157600081815260208120601f850160051c8101602086101561257b5750805b601f850160051c820191505b8181101561259a57828155600101612587565b505050505050565b6001600160401b038311156125b9576125b96122b2565b6125cd836125c78354612432565b83612554565b6000601f84116001811461260157600085156125e95750838201355b600019600387901b1c1916600186901b178355611866565b600083815260209020601f19861690835b828110156126325786850135825560209485019460019092019101612612565b508682101561264f5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008251612673818460208701612095565b64173539b7b760d91b920191825250600501919050565b81516001600160401b038111156126a3576126a36122b2565b6126b7816126b18454612432565b84612554565b602080601f8311600181146126ec57600084156126d45750858301515b600019600386901b1c1916600185901b17855561259a565b600085815260208120601f198616915b8281101561271b578886015182559484019460019091019084016126fc565b50858210156127395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277c908301846120c1565b9695505050505050565b60006020828403121561279857600080fd5b81516114e381612062565b600083516127b5818460208801612095565b8351908301906127c9818360208801612095565b01949350505050565b6000826127e1576127e1612514565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205c94fa465cac6e6a8448642044756aea621482c2e3db4dadceaef9fa8368b48a64736f6c634300080f0033697066733a2f2f516d5462504e65726667536874435632507735616a5136655a7a457954464644695a6b383644376b6a6b694b7a6f2f6e6f7472657665616c2e6a736f6e

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063dab5f3401161007a578063dab5f340146106d3578063dc33e681146106f3578063e985e9c514610713578063f2c4ce1e1461075c578063f2fde38b1461077c578063f6fa26ab1461079c57600080fd5b8063a22cb46514610648578063a475b5dd14610668578063b88d4fde1461067d578063c87b56dd1461069d578063ca69e323146106bd57600080fd5b80639231ab2a116100fd5780639231ab2a146105a857806395d89b41146105f5578063a035b1fe1461060a578063a0712d6814610620578063a10866ef1461063357600080fd5b806370a0823114610520578063715018a614610540578063853828b6146105555780638da5cb5b1461056a57806391b7f5ed1461058857600080fd5b806333bc1c5c116101c75780634f6ccce71161018b5780634f6ccce71461047f578063518302271461049f57806355f804b3146104c05780636352211e146104e05780636605bfda1461050057600080fd5b806333bc1c5c146103ce578063389fcf06146103ef57806342842e0e1461041f578063484b973c1461043f5780634af9345e1461045f57600080fd5b8063205ee7b81161020e578063205ee7b81461031b57806323b872dd1461032e5780632a55205a1461034e5780632f745c591461038d57806331ffd6f1146103ad57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004612078565b6107b1565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107d1565b60405161027791906120ed565b3480156102ae57600080fd5b506102c26102bd366004612100565b610863565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f536600461212e565b6108a9565b005b34801561030857600080fd5b506000545b604051908152602001610277565b6102fa610329366004612100565b610936565b34801561033a57600080fd5b506102fa61034936600461215a565b610d9f565b34801561035a57600080fd5b5061036e61036936600461219b565b610daa565b604080516001600160a01b039093168352602083019190915201610277565b34801561039957600080fd5b5061030d6103a836600461212e565b610e56565b3480156103b957600080fd5b50600c5461026b90600160a81b900460ff1681565b3480156103da57600080fd5b50600c5461026b90600160a01b900460ff1681565b3480156103fb57600080fd5b5061026b61040a3660046121bd565b601a6020526000908152604090205460ff1681565b34801561042b57600080fd5b506102fa61043a36600461215a565b610f28565b34801561044b57600080fd5b506102fa61045a36600461212e565b610f43565b34801561046b57600080fd5b506102fa61047a3660046121da565b610ff5565b34801561048b57600080fd5b5061030d61049a366004612100565b611016565b3480156104ab57600080fd5b50600c5461026b90600160b01b900460ff1681565b3480156104cc57600080fd5b506102fa6104db366004612203565b61103d565b3480156104ec57600080fd5b506102c26104fb366004612100565b611052565b34801561050c57600080fd5b506102fa61051b3660046121bd565b611064565b34801561052c57600080fd5b5061030d61053b3660046121bd565b6110b5565b34801561054c57600080fd5b506102fa611103565b34801561056157600080fd5b506102fa611117565b34801561057657600080fd5b50600a546001600160a01b03166102c2565b34801561059457600080fd5b506102fa6105a3366004612100565b611181565b3480156105b457600080fd5b506105c86105c3366004612100565b61118e565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610277565b34801561060157600080fd5b506102956111ab565b34801561061657600080fd5b5061030d60135481565b6102fa61062e366004612100565b6111ba565b34801561063f57600080fd5b506102fa61125d565b34801561065457600080fd5b506102fa610663366004612274565b611286565b34801561067457600080fd5b506102fa61131b565b34801561068957600080fd5b506102fa61069836600461233d565b611344565b3480156106a957600080fd5b506102956106b8366004612100565b61137e565b3480156106c957600080fd5b5061030d60125481565b3480156106df57600080fd5b506102fa6106ee366004612100565b6114ea565b3480156106ff57600080fd5b5061030d61070e3660046121bd565b6114f7565b34801561071f57600080fd5b5061026b61072e3660046123bc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076857600080fd5b506102fa6107773660046123ea565b611502565b34801561078857600080fd5b506102fa6107973660046121bd565b611516565b3480156107a857600080fd5b506102fa61158c565b60006107bc826115b5565b806107cb57506107cb826115b5565b92915050565b6060600180546107e090612432565b80601f016020809104026020016040519081016040528092919081815260200182805461080c90612432565b80156108595780601f1061082e57610100808354040283529160200191610859565b820191906000526020600020905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b6000610870826000541190565b61088d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b482611052565b9050806001600160a01b0316836001600160a01b0316036108e85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109085750610906813361072e565b155b15610926576040516367d9dca160e11b815260040160405180910390fd5b6109318383836115da565b505050565b32331461098a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b600c54600160a81b900460ff166109de5760405162461bcd60e51b815260206004820152601860248201527714d0531157d21054d7d393d517d4d5105495115117d6515560421b6044820152606401610981565b601154816109eb336114f7565b6109f59190612482565b1115610a435760405162461bcd60e51b815260206004820152601860248201527f5045525f57414c4c45545f4c494d49545f5245414348454400000000000000006044820152606401610981565b60008111610a865760405162461bcd60e51b815260206004820152601060248201526f494e56414c49445f5155414e5449545960801b6044820152606401610981565b601654600054339190610a999084612482565b610aa39190612482565b6012541015610ae95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610981565b326001600160a01b03821614610b305760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610981565b336000908152601a602052604090205460ff16158015610b5c57503460135483610b5a919061249a565b145b15610bf557816010541015610b835760405162461bcd60e51b8152600401610981906124b9565b3460135483610b92919061249a565b14610bdf5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c69642066756e64732070726f766964656420666f722074780000006044820152606401610981565b81600d54610bed9190612482565b600d55610d91565b336000908152601a602052604090205460ff16158015610c325750600d54600054610c2091906124e4565b600f54601454610c309190612482565b115b15610d0857816010541015610c595760405162461bcd60e51b8152600401610981906124b9565b6013543490610c696001856124e4565b610c73919061249a565b14610cb95760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610981565b610cc46001836124e4565b600d54610cd19190612482565b600d55600e8054906000610ce4836124fb565b9091555050336000908152601a60205260409020805460ff19166001179055610d91565b816010541015610d2a5760405162461bcd60e51b8152600401610981906124b9565b3460135483610d39919061249a565b14610d7f5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610981565b81600d54610d8d9190612482565b600d555b610d9b8183611636565b5050565b610931838383611650565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610e1f5750604080518082019091526007546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610e3e906001600160601b03168761249a565b610e48919061252a565b915196919550909350505050565b6000610e61836110b5565b8210610e80576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610f16576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610eda57805192505b876001600160a01b0316836001600160a01b031603610f0d57868403610f06575093506107cb92505050565b6001909301925b50600101610e88565b50610f1f61253e565b50949350505050565b61093183838360405180602001604052806000815250611344565b610f4b61186d565b60125481610f5860005490565b610f629190612482565b1115610fc55760405162461bcd60e51b815260206004820152602c60248201527f4e4f545f454e4f5547485f535550504c595f544f5f47495645415741595f444560448201526b14d254915117d05353d5539560a21b6064820152608401610981565b610fcf8282611636565b80601654610fdd91906124e4565b601655600f54610fee908290612482565b600f555050565b610ffd61186d565b600b54611013906001600160a01b0316826118c7565b50565b600080548210611039576040516329c8c00760e21b815260040160405180910390fd5b5090565b61104561186d565b60176109318284836125a2565b600061105d826119c4565b5192915050565b61106c61186d565b6001600160a01b03811661109357604051632969679960e11b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166110de576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61110b61186d565b6111156000611a58565b565b61111f61186d565b47600061112d60648361252a565b61113890601961249a565b600c546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061116b57600080fd5b600b54610d9b906001600160a01b031647611aaa565b61118961186d565b601355565b60408051808201909152600080825260208201526107cb826119c4565b6060600280546107e090612432565b3233146112095760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610981565b600c54600160a01b900460ff166109de5760405162461bcd60e51b815260206004820152601860248201527714d0531157d21054d7d393d517d4d5105495115117d6515560421b6044820152606401610981565b61126561186d565b600c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b336001600160a01b038316036112af5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61132361186d565b600c805460ff60b01b198116600160b01b9182900460ff1615909102179055565b61134f848484611650565b61135b84848484611bc3565b611378576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061138b826000541190565b6113ef5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610981565b600c54600160b01b900460ff161515600003611497576018805461141290612432565b80601f016020809104026020016040519081016040528092919081815260200182805461143e90612432565b801561148b5780601f106114605761010080835404028352916020019161148b565b820191906000526020600020905b81548152906001019060200180831161146e57829003601f168201915b50505050509050919050565b60006114a283611cc6565b905060008151116114c257604051806020016040528060008152506114e3565b806040516020016114d39190612661565b6040516020818303038152906040525b9392505050565b6114f261186d565b601955565b60006107cb82611d35565b61150a61186d565b6018610d9b828261268a565b61151e61186d565b6001600160a01b0381166115835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b61101381611a58565b61159461186d565b600c805460ff60a81b198116600160a81b9182900460ff1615909102179055565b60006001600160e01b0319821663152a902d60e11b14806107cb57506107cb82611d8a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610d9b828260405180602001604052806000815250611df5565b600061165b826119c4565b80519091506000906001600160a01b0316336001600160a01b0316148061169257503361168784610863565b6001600160a01b0316145b806116a4575081516116a4903361072e565b9050806116c457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116f95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661172057604051633a954ecd60e21b815260040160405180910390fd5b61173060008484600001516115da565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611823576117d7816000541190565b1561182357825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600a546001600160a01b031633146111155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610981565b6127106001600160601b03821611156119355760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610981565b6001600160a01b03821661198b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610981565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b60408051808201909152600080825260208201526119e3826000541190565b611a0057604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611a4e579392505050565b5060001901611a02565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80471015611afa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610981565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b47576040519150601f19603f3d011682016040523d82523d6000602084013e611b4c565b606091505b50509050806109315760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610981565b60006001600160a01b0384163b15611cba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c07903390899088908890600401612749565b6020604051808303816000875af1925050508015611c42575060408051601f3d908101601f19168201909252611c3f91810190612786565b60015b611ca0573d808015611c70576040519150601f19603f3d011682016040523d82523d6000602084013e611c75565b606091505b508051600003611c98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cbe565b5060015b949350505050565b6060611cd3826000541190565b611cf057604051630a14c4b560e41b815260040160405180910390fd5b6000611cfa611e02565b90508051600003611d1a57604051806020016040528060008152506114e3565b80611d2484611e11565b6040516020016114d39291906127a3565b60006001600160a01b038216611d5e576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b60006001600160e01b031982166380ac58cd60e01b1480611dbb57506001600160e01b03198216635b5e139f60e01b145b80611dd657506001600160e01b0319821663780e9d6360e01b145b806107cb57506301ffc9a760e01b6001600160e01b03198316146107cb565b6109318383836001611f11565b6060601780546107e090612432565b606081600003611e385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e625780611e4c816124fb565b9150611e5b9050600a8361252a565b9150611e3c565b6000816001600160401b03811115611e7c57611e7c6122b2565b6040519080825280601f01601f191660200182016040528015611ea6576020820181803683370190505b5090505b8415611cbe57611ebb6001836124e4565b9150611ec8600a866127d2565b611ed3906030612482565b60f81b818381518110611ee857611ee86127e6565b60200101906001600160f81b031916908160001a905350611f0a600a8661252a565b9450611eaa565b6000546001600160a01b038516611f3a57604051622e076360e81b815260040160405180910390fd5b83600003611f5b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156120595760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561202f575061202d6000888488611bc3565b155b1561204d576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611fd8565b50600055611866565b6001600160e01b03198116811461101357600080fd5b60006020828403121561208a57600080fd5b81356114e381612062565b60005b838110156120b0578181015183820152602001612098565b838111156113785750506000910152565b600081518084526120d9816020860160208601612095565b601f01601f19169290920160200192915050565b6020815260006114e360208301846120c1565b60006020828403121561211257600080fd5b5035919050565b6001600160a01b038116811461101357600080fd5b6000806040838503121561214157600080fd5b823561214c81612119565b946020939093013593505050565b60008060006060848603121561216f57600080fd5b833561217a81612119565b9250602084013561218a81612119565b929592945050506040919091013590565b600080604083850312156121ae57600080fd5b50508035926020909101359150565b6000602082840312156121cf57600080fd5b81356114e381612119565b6000602082840312156121ec57600080fd5b81356001600160601b03811681146114e357600080fd5b6000806020838503121561221657600080fd5b82356001600160401b038082111561222d57600080fd5b818501915085601f83011261224157600080fd5b81358181111561225057600080fd5b86602082850101111561226257600080fd5b60209290920196919550909350505050565b6000806040838503121561228757600080fd5b823561229281612119565b9150602083013580151581146122a757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156122e2576122e26122b2565b604051601f8501601f19908116603f0116810190828211818310171561230a5761230a6122b2565b8160405280935085815286868601111561232357600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561235357600080fd5b843561235e81612119565b9350602085013561236e81612119565b92506040850135915060608501356001600160401b0381111561239057600080fd5b8501601f810187136123a157600080fd5b6123b0878235602084016122c8565b91505092959194509250565b600080604083850312156123cf57600080fd5b82356123da81612119565b915060208301356122a781612119565b6000602082840312156123fc57600080fd5b81356001600160401b0381111561241257600080fd5b8201601f8101841361242357600080fd5b611cbe848235602084016122c8565b600181811c9082168061244657607f821691505b60208210810361246657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156124955761249561246c565b500190565b60008160001904831182151516156124b4576124b461246c565b500290565b60208082526011908201527008af0c6cae6e640dac2f040e0cae440e8f607b1b604082015260600190565b6000828210156124f6576124f661246c565b500390565b60006001820161250d5761250d61246c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261253957612539612514565b500490565b634e487b7160e01b600052600160045260246000fd5b601f82111561093157600081815260208120601f850160051c8101602086101561257b5750805b601f850160051c820191505b8181101561259a57828155600101612587565b505050505050565b6001600160401b038311156125b9576125b96122b2565b6125cd836125c78354612432565b83612554565b6000601f84116001811461260157600085156125e95750838201355b600019600387901b1c1916600186901b178355611866565b600083815260209020601f19861690835b828110156126325786850135825560209485019460019092019101612612565b508682101561264f5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008251612673818460208701612095565b64173539b7b760d91b920191825250600501919050565b81516001600160401b038111156126a3576126a36122b2565b6126b7816126b18454612432565b84612554565b602080601f8311600181146126ec57600084156126d45750858301515b600019600386901b1c1916600185901b17855561259a565b600085815260208120601f198616915b8281101561271b578886015182559484019460019091019084016126fc565b50858210156127395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277c908301846120c1565b9695505050505050565b60006020828403121561279857600080fd5b81516114e381612062565b600083516127b5818460208801612095565b8351908301906127c9818360208801612095565b01949350505050565b6000826127e1576127e1612514565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205c94fa465cac6e6a8448642044756aea621482c2e3db4dadceaef9fa8368b48a64736f6c634300080f0033

Deployed Bytecode Sourcemap

58037:7502:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65262:272;;;;;;;;;;-1:-1:-1;65262:272:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;65262:272:0;;;;;;;;44302:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45779:204::-;;;;;;;;;;-1:-1:-1;45779:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;45779:204:0;1528:203:1;45368:345:0;;;;;;;;;;-1:-1:-1;45368:345:0;;;;;:::i;:::-;;:::i;:::-;;40698:101;;;;;;;;;;-1:-1:-1;40751:7:0;40778:13;40698:101;;;2338:25:1;;;2326:2;2311:18;40698:101:0;2192:177:1;61155:1388:0;;;;;;:::i;:::-;;:::i;46636:170::-;;;;;;;;;;-1:-1:-1;46636:170:0;;;;;:::i;:::-;;:::i;16604:442::-;;;;;;;;;;-1:-1:-1;16604:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3280:32:1;;;3262:51;;3344:2;3329:18;;3322:34;;;;3235:18;16604:442:0;3088:274:1;41352:1062:0;;;;;;;;;;-1:-1:-1;41352:1062:0;;;;;:::i;:::-;;:::i;58254:33::-;;;;;;;;;;-1:-1:-1;58254:33:0;;;;-1:-1:-1;;;58254:33:0;;;;;;58217:30;;;;;;;;;;-1:-1:-1;58217:30:0;;;;-1:-1:-1;;;58217:30:0;;;;;;58879:43;;;;;;;;;;-1:-1:-1;58879:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46877:185;;;;;;;;;;-1:-1:-1;46877:185:0;;;;;:::i;:::-;;:::i;62551:312::-;;;;;;;;;;-1:-1:-1;62551:312:0;;;;;:::i;:::-;;:::i;64375:146::-;;;;;;;;;;-1:-1:-1;64375:146:0;;;;;:::i;:::-;;:::i;40876:176::-;;;;;;;;;;-1:-1:-1;40876:176:0;;;;;:::i;:::-;;:::i;58294:28::-;;;;;;;;;;-1:-1:-1;58294:28:0;;;;-1:-1:-1;;;58294:28:0;;;;;;63963:106;;;;;;;;;;-1:-1:-1;63963:106:0;;;;;:::i;:::-;;:::i;44111:124::-;;;;;;;;;;-1:-1:-1;44111:124:0;;;;;:::i;:::-;;:::i;64596:190::-;;;;;;;;;;-1:-1:-1;64596:190:0;;;;;:::i;:::-;;:::i;42922:206::-;;;;;;;;;;-1:-1:-1;42922:206:0;;;;;:::i;:::-;;:::i;57090:103::-;;;;;;;;;;;;;:::i;64868:308::-;;;;;;;;;;;;;:::i;56442:87::-;;;;;;;;;;-1:-1:-1;56515:6:0;;-1:-1:-1;;;;;56515:6:0;56442:87;;63562:96;;;;;;;;;;-1:-1:-1;63562:96:0;;;;;:::i;:::-;;:::i;59401:167::-;;;;;;;;;;-1:-1:-1;59401:167:0;;;;;:::i;:::-;;:::i;:::-;;;;5005:13:1;;-1:-1:-1;;;;;5001:39:1;4983:58;;5101:4;5089:17;;;5083:24;-1:-1:-1;;;;;5079:49:1;5057:20;;;5050:79;;;;4956:18;59401:167:0;4773:362:1;44471:104:0;;;;;;;;;;;;;:::i;58541:34::-;;;;;;;;;;;;;;;;59781:1366;;;;;;:::i;:::-;;:::i;63756:93::-;;;;;;;;;;;;;:::i;46055:279::-;;;;;;;;;;-1:-1:-1;46055:279:0;;;;;:::i;:::-;;:::i;64213:76::-;;;;;;;;;;;;;:::i;47133:308::-;;;;;;;;;;-1:-1:-1;47133:308:0;;;;;:::i;:::-;;:::i;62873:559::-;;;;;;;;;;-1:-1:-1;62873:559:0;;;;;:::i;:::-;;:::i;58504:30::-;;;;;;;;;;;;;;;;63666:82;;;;;;;;;;-1:-1:-1;63666:82:0;;;;;:::i;:::-;;:::i;59280:113::-;;;;;;;;;;-1:-1:-1;59280:113:0;;;;;:::i;:::-;;:::i;46405:164::-;;;;;;;;;;-1:-1:-1;46405:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46526:25:0;;;46502:4;46526:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46405:164;64077:128;;;;;;;;;;-1:-1:-1;64077:128:0;;;;;:::i;:::-;;:::i;57348:201::-;;;;;;;;;;-1:-1:-1;57348:201:0;;;;;:::i;:::-;;:::i;63857:98::-;;;;;;;;;;;;;:::i;65262:272::-;65393:4;65435:38;65461:11;65435:25;:38::i;:::-;:91;;;;65490:36;65514:11;65490:23;:36::i;:::-;65415:111;65262:272;-1:-1:-1;;65262:272:0:o;44302:100::-;44356:13;44389:5;44382:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44302:100;:::o;45779:204::-;45847:7;45872:16;45880:7;47753:4;47787:13;-1:-1:-1;47777:23:0;47696:112;45872:16;45867:64;;45897:34;;-1:-1:-1;;;45897:34:0;;;;;;;;;;;45867:64;-1:-1:-1;45951:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45951:24:0;;45779:204::o;45368:345::-;45441:13;45457:24;45473:7;45457:15;:24::i;:::-;45441:40;;45502:5;-1:-1:-1;;;;;45496:11:0;:2;-1:-1:-1;;;;;45496:11:0;;45492:48;;45516:24;;-1:-1:-1;;;45516:24:0;;;;;;;;;;;45492:48;38111:10;-1:-1:-1;;;;;45557:21:0;;;;;;:63;;-1:-1:-1;45583:37:0;45600:5;38111:10;46405:164;:::i;45583:37::-;45582:38;45557:63;45553:111;;;45629:35;;-1:-1:-1;;;45629:35:0;;;;;;;;;;;45553:111;45677:28;45686:2;45690:7;45699:5;45677:8;:28::i;:::-;45430:283;45368:345;;:::o;61155:1388::-;59194:9;59207:10;59194:23;59186:66;;;;-1:-1:-1;;;59186:66:0;;8748:2:1;59186:66:0;;;8730:21:1;8787:2;8767:18;;;8760:30;8826:32;8806:18;;;8799:60;8876:18;;59186:66:0;;;;;;;;;61245:13:::1;::::0;-1:-1:-1;;;61245:13:0;::::1;;;61237:50;;;::::0;-1:-1:-1;;;61237:50:0;;9107:2:1;61237:50:0::1;::::0;::::1;9089:21:1::0;9146:2;9126:18;;;9119:30;-1:-1:-1;;;9165:18:1;;;9158:54;9229:18;;61237:50:0::1;8905:348:1::0;61237:50:0::1;61345:13;;61333:8;61306:24;61319:10;61306:12;:24::i;:::-;:35;;;;:::i;:::-;:52;;61298:89;;;::::0;-1:-1:-1;;;61298:89:0;;9725:2:1;61298:89:0::1;::::0;::::1;9707:21:1::0;9764:2;9744:18;;;9737:30;9803:26;9783:18;;;9776:54;9847:18;;61298:89:0::1;9523:348:1::0;61298:89:0::1;61417:1;61406:8;:12;61398:41;;;::::0;-1:-1:-1;;;61398:41:0;;10078:2:1;61398:41:0::1;::::0;::::1;10060:21:1::0;10117:2;10097:18;;;10090:30;-1:-1:-1;;;10136:18:1;;;10129:46;10192:18;;61398:41:0::1;9876:340:1::0;61398:41:0::1;61540:8;::::0;61452:15:::1;40778:13:::0;38111:10;;61540:8;61513:24:::1;::::0;:8;:24:::1;:::i;:::-;:35;;;;:::i;:::-;61501:8;;:47;;61493:78;;;::::0;-1:-1:-1;;;61493:78:0;;10423:2:1;61493:78:0::1;::::0;::::1;10405:21:1::0;10462:2;10442:18;;;10435:30;-1:-1:-1;;;10481:18:1;;;10474:48;10539:18;;61493:78:0::1;10221:342:1::0;61493:78:0::1;61590:9;-1:-1:-1::0;;;;;61590:20:0;::::1;;61582:45;;;::::0;-1:-1:-1;;;61582:45:0;;10770:2:1;61582:45:0::1;::::0;::::1;10752:21:1::0;10809:2;10789:18;;;10782:30;-1:-1:-1;;;10828:18:1;;;10821:42;10880:18;;61582:45:0::1;10568:336:1::0;61582:45:0::1;61670:10;61659:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;:31;::::0;::::1;:64;;;61714:9;61705:5;;61694:8;:16;;;;:::i;:::-;:29;61659:64;61656:839;;;61759:8;61747;;:20;;61739:51;;;;-1:-1:-1::0;;;61739:51:0::1;;;;;;;:::i;:::-;61833:9;61824:5;;61813:8;:16;;;;:::i;:::-;:29;61805:71;;;::::0;-1:-1:-1;;;61805:71:0;;11630:2:1;61805:71:0::1;::::0;::::1;11612:21:1::0;11669:2;11649:18;;;11642:30;11708:31;11688:18;;;11681:59;11757:18;;61805:71:0::1;11428:353:1::0;61805:71:0::1;61914:8;61903;;:19;;;;:::i;:::-;61892:8;:30:::0;61656:839:::1;;;61953:10;61942:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;:31;::::0;::::1;:88;;-1:-1:-1::0;62022:8:0::1;::::0;40751:7;40778:13;62006:24:::1;;;;:::i;:::-;61993:10;;61977:13;;:26;;;;:::i;:::-;:53;61942:88;61939:556;;;62066:8;62054;;:20;;62046:51;;;;-1:-1:-1::0;;;62046:51:0::1;;;;;;;:::i;:::-;62137:5;::::0;62146:9:::1;::::0;62121:12:::1;62132:1;62121:8:::0;:12:::1;:::i;:::-;62120:22;;;;:::i;:::-;:35;62112:70;;;::::0;-1:-1:-1;;;62112:70:0;;12118:2:1;62112:70:0::1;::::0;::::1;12100:21:1::0;12157:2;12137:18;;;12130:30;-1:-1:-1;;;12176:18:1;;;12169:52;12238:18;;62112:70:0::1;11916:346:1::0;62112:70:0::1;62221:12;62232:1;62221:8:::0;:12:::1;:::i;:::-;62209:8;;:25;;;;:::i;:::-;62198:8;:36:::0;62249:9:::1;:11:::0;;;:9:::1;:11;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;62280:10:0::1;62269:22;::::0;;;:10:::1;:22;::::0;;;;:29;;-1:-1:-1;;62269:29:0::1;62294:4;62269:29;::::0;;61939:556:::1;;;62343:8;62331;;:20;;62323:51;;;;-1:-1:-1::0;;;62323:51:0::1;;;;;;;:::i;:::-;62417:9;62408:5;;62397:8;:16;;;;:::i;:::-;:29;62389:64;;;::::0;-1:-1:-1;;;62389:64:0;;12118:2:1;62389:64:0::1;::::0;::::1;12100:21:1::0;12157:2;12137:18;;;12130:30;-1:-1:-1;;;12176:18:1;;;12169:52;12238:18;;62389:64:0::1;11916:346:1::0;62389:64:0::1;62481:8;62470;;:19;;;;:::i;:::-;62459:8;:30:::0;61939:556:::1;62507:28;62517:7;62526:8;62507:9;:28::i;:::-;61226:1317;61155:1388:::0;:::o;46636:170::-;46770:28;46780:4;46786:2;46790:7;46770:9;:28::i;16604:442::-;16701:7;16759:27;;;:17;:27;;;;;;;;16730:56;;;;;;;;;-1:-1:-1;;;;;16730:56:0;;;;;-1:-1:-1;;;16730:56:0;;;-1:-1:-1;;;;;16730:56:0;;;;;;;;16701:7;;16799:92;;-1:-1:-1;16850:29:0;;;;;;;;;16860:19;16850:29;-1:-1:-1;;;;;16850:29:0;;;;-1:-1:-1;;;16850:29:0;;-1:-1:-1;;;;;16850:29:0;;;;;16799:92;16941:23;;;;16903:21;;17412:5;;16928:36;;-1:-1:-1;;;;;16928:36:0;:10;:36;:::i;:::-;16927:58;;;;:::i;:::-;17006:16;;;;;-1:-1:-1;16604:442:0;;-1:-1:-1;;;;16604:442:0:o;41352:1062::-;41441:7;41474:16;41484:5;41474:9;:16::i;:::-;41465:5;:25;41461:61;;41499:23;;-1:-1:-1;;;41499:23:0;;;;;;;;;;;41461:61;41533:22;40778:13;;;41533:22;;41796:466;41816:14;41812:1;:18;41796:466;;;41856:31;41890:14;;;:11;:14;;;;;;;;;41856:48;;;;;;;;;-1:-1:-1;;;;;41856:48:0;;;;;-1:-1:-1;;;41856:48:0;;;-1:-1:-1;;;;;41856:48:0;;;;;;;;41927:28;41923:111;;42000:14;;;-1:-1:-1;41923:111:0;42077:5;-1:-1:-1;;;;;42056:26:0;:17;-1:-1:-1;;;;;42056:26:0;;42052:195;;42126:5;42111:11;:20;42107:85;;-1:-1:-1;42167:1:0;-1:-1:-1;42160:8:0;;-1:-1:-1;;;42160:8:0;42107:85;42214:13;;;;;42052:195;-1:-1:-1;41832:3:0;;41796:466;;;-1:-1:-1;42338:13:0;;:::i;:::-;-1:-1:-1;42372:11:0;41352:1062;-1:-1:-1;;;;41352:1062:0:o;46877:185::-;47015:39;47032:4;47038:2;47042:7;47015:39;;;;;;;;;;;;:16;:39::i;62551:312::-;56328:13;:11;:13::i;:::-;62672:8:::1;;62660;62644:13;40751:7:::0;40778:13;;40698:101;62644:13:::1;:24;;;;:::i;:::-;:36;;62636:93;;;::::0;-1:-1:-1;;;62636:93:0;;12998:2:1;62636:93:0::1;::::0;::::1;12980:21:1::0;13037:2;13017:18;;;13010:30;13076:34;13056:18;;;13049:62;-1:-1:-1;;;13127:18:1;;;13120:42;13179:19;;62636:93:0::1;12796:408:1::0;62636:93:0::1;62740:29;62750:8;62760;62740:9;:29::i;:::-;62802:8;62791;;:19;;;;:::i;:::-;62780:8;:30:::0;62834:10:::1;::::0;:21:::1;::::0;62847:8;;62834:21:::1;:::i;:::-;62821:10;:34:::0;-1:-1:-1;;62551:312:0:o;64375:146::-;56328:13;:11;:13::i;:::-;64475:15:::1;::::0;64456:57:::1;::::0;-1:-1:-1;;;;;64475:15:0::1;64492:20:::0;64456:18:::1;:57::i;:::-;64375:146:::0;:::o;40876:176::-;40943:7;40778:13;;40967:5;:22;40963:58;;40998:23;;-1:-1:-1;;;40998:23:0;;;;;;;;;;;40963:58;-1:-1:-1;41039:5:0;40876:176::o;63963:106::-;56328:13;:11;:13::i;:::-;64038::::1;:23;64054:7:::0;;64038:13;:23:::1;:::i;44111:124::-:0;44175:7;44202:20;44214:7;44202:11;:20::i;:::-;:25;;44111:124;-1:-1:-1;;44111:124:0:o;64596:190::-;56328:13;:11;:13::i;:::-;-1:-1:-1;;;;;64684:24:0;::::1;64680:59;;64717:22;;-1:-1:-1::0;;;64717:22:0::1;;;;;;;;;;;64680:59;64750:15;:28:::0;;-1:-1:-1;;;;;;64750:28:0::1;-1:-1:-1::0;;;;;64750:28:0;;;::::1;::::0;;;::::1;::::0;;64596:190::o;42922:206::-;42986:7;-1:-1:-1;;;;;43010:19:0;;43006:60;;43038:28;;-1:-1:-1;;;43038:28:0;;;;;;;;;;;43006:60;-1:-1:-1;;;;;;43092:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43092:27:0;;42922:206::o;57090:103::-;56328:13;:11;:13::i;:::-;57155:30:::1;57182:1;57155:18;:30::i;:::-;57090:103::o:0;64868:308::-;56328:13;:11;:13::i;:::-;64946:21:::1;64921:22;65007:18;65022:3;64946:21:::0;65007:18:::1;:::i;:::-;65006:23;::::0;65027:2:::1;65006:23;:::i;:::-;65058:7;::::0;65050:40:::1;::::0;64978:51;;-1:-1:-1;;;;;;65058:7:0::1;::::0;65050:40;::::1;;;::::0;64978:51;;65058:7:::1;65050:40:::0;65058:7;65050:40;64978:51;65058:7;65050:40;::::1;;;;;;65042:49;;;::::0;::::1;;65128:15;::::0;65102:66:::1;::::0;-1:-1:-1;;;;;65128:15:0::1;65146:21;65102:17;:66::i;63562:96::-:0;56328:13;:11;:13::i;:::-;63631:5:::1;:19:::0;63562:96::o;59401:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;59540:20:0;59552:7;59540:11;:20::i;44471:104::-;44527:13;44560:7;44553:14;;;;;:::i;59781:1366::-;59194:9;59207:10;59194:23;59186:66;;;;-1:-1:-1;;;59186:66:0;;8748:2:1;59186:66:0;;;8730:21:1;8787:2;8767:18;;;8760:30;8826:32;8806:18;;;8799:60;8876:18;;59186:66:0;8546:354:1;59186:66:0;59862:10:::1;::::0;-1:-1:-1;;;59862:10:0;::::1;;;59854:47;;;::::0;-1:-1:-1;;;59854:47:0;;9107:2:1;59854:47:0::1;::::0;::::1;9089:21:1::0;9146:2;9126:18;;;9119:30;-1:-1:-1;;;9165:18:1;;;9158:54;9229:18;;59854:47:0::1;8905:348:1::0;63756:93:0;56328:13;:11;:13::i;:::-;63831:10:::1;::::0;;-1:-1:-1;;;;63817:24:0;::::1;-1:-1:-1::0;;;63831:10:0;;;::::1;;;63830:11;63817:24:::0;;::::1;;::::0;;63756:93::o;46055:279::-;38111:10;-1:-1:-1;;;;;46146:24:0;;;46142:54;;46179:17;;-1:-1:-1;;;46179:17:0;;;;;;;;;;;46142:54;38111:10;46209:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46209:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46209:53:0;;;;;;;;;;46278:48;;540:41:1;;;46209:42:0;;38111:10;46278:48;;513:18:1;46278:48:0;;;;;;;46055:279;;:::o;64213:76::-;56328:13;:11;:13::i;:::-;64273:8:::1;::::0;;-1:-1:-1;;;;64261:20:0;::::1;-1:-1:-1::0;;;64273:8:0;;;::::1;;;64272:9;64261:20:::0;;::::1;;::::0;;64213:76::o;47133:308::-;47292:28;47302:4;47308:2;47312:7;47292:9;:28::i;:::-;47336:48;47359:4;47365:2;47369:7;47378:5;47336:22;:48::i;:::-;47331:102;;47393:40;;-1:-1:-1;;;47393:40:0;;;;;;;;;;;47331:102;47133:308;;;;:::o;62873:559::-;62991:13;63044:16;63052:7;47753:4;47787:13;-1:-1:-1;47777:23:0;47696:112;63044:16;63022:113;;;;-1:-1:-1;;;63022:113:0;;15469:2:1;63022:113:0;;;15451:21:1;15508:2;15488:18;;;15481:30;15547:34;15527:18;;;15520:62;-1:-1:-1;;;15598:18:1;;;15591:45;15653:19;;63022:113:0;15267:411:1;63022:113:0;63152:8;;-1:-1:-1;;;63152:8:0;;;;:17;;63164:5;63152:17;63148:71;;63193:14;63186:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62873:559;;;:::o;63148:71::-;63231:23;63257;63272:7;63257:14;:23::i;:::-;63231:49;;63337:1;63317:9;63311:23;:27;:113;;;;;;;;;;;;;;;;;63382:9;63365:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;63311:113;63291:133;62873:559;-1:-1:-1;;;62873:559:0:o;63666:82::-;56328:13;:11;:13::i;:::-;63728:4:::1;:12:::0;63666:82::o;59280:113::-;59338:7;59365:20;59379:5;59365:13;:20::i;64077:128::-;56328:13;:11;:13::i;:::-;64165:14:::1;:32;64182:15:::0;64165:14;:32:::1;:::i;57348:201::-:0;56328:13;:11;:13::i;:::-;-1:-1:-1;;;;;57437:22:0;::::1;57429:73;;;::::0;-1:-1:-1;;;57429:73:0;;17690:2:1;57429:73:0::1;::::0;::::1;17672:21:1::0;17729:2;17709:18;;;17702:30;17768:34;17748:18;;;17741:62;-1:-1:-1;;;17819:18:1;;;17812:36;17865:19;;57429:73:0::1;17488:402:1::0;57429:73:0::1;57513:28;57532:8;57513:18;:28::i;63857:98::-:0;56328:13;:11;:13::i;:::-;63934::::1;::::0;;-1:-1:-1;;;;63917:30:0;::::1;-1:-1:-1::0;;;63934:13:0;;;::::1;;;63933:14;63917:30:::0;;::::1;;::::0;;63857:98::o;16334:215::-;16436:4;-1:-1:-1;;;;;;16460:41:0;;-1:-1:-1;;;16460:41:0;;:81;;;16505:36;16529:11;16505:23;:36::i;52459:196::-;52574:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52574:29:0;-1:-1:-1;;;;;52574:29:0;;;;;;;;;52619:28;;52574:24;;52619:28;;;;;;;52459:196;;;:::o;47816:104::-;47885:27;47895:2;47899:8;47885:27;;;;;;;;;;;;:9;:27::i;50379:1962::-;50494:35;50532:20;50544:7;50532:11;:20::i;:::-;50607:18;;50494:58;;-1:-1:-1;50565:22:0;;-1:-1:-1;;;;;50591:34:0;38111:10;-1:-1:-1;;;;;50591:34:0;;:87;;;-1:-1:-1;38111:10:0;50642:20;50654:7;50642:11;:20::i;:::-;-1:-1:-1;;;;;50642:36:0;;50591:87;:154;;;-1:-1:-1;50712:18:0;;50695:50;;38111:10;46405:164;:::i;50695:50::-;50565:181;;50764:17;50759:66;;50790:35;;-1:-1:-1;;;50790:35:0;;;;;;;;;;;50759:66;50862:4;-1:-1:-1;;;;;50840:26:0;:13;:18;;;-1:-1:-1;;;;;50840:26:0;;50836:67;;50875:28;;-1:-1:-1;;;50875:28:0;;;;;;;;;;;50836:67;-1:-1:-1;;;;;50918:16:0;;50914:52;;50943:23;;-1:-1:-1;;;50943:23:0;;;;;;;;;;;50914:52;51087:49;51104:1;51108:7;51117:13;:18;;;51087:8;:49::i;:::-;-1:-1:-1;;;;;51432:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;51432:31:0;;;-1:-1:-1;;;;;51432:31:0;;;-1:-1:-1;;51432:31:0;;;;;;;51478:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51478:29:0;;;;;;;;;;;;;51524:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;51569:61:0;;;;-1:-1:-1;;;51614:15:0;-1:-1:-1;;;;;51569:61:0;;;;;51904:11;;;51934:24;;;;;:29;51904:11;;51934:29;51930:295;;52002:20;52010:11;47753:4;47787:13;-1:-1:-1;47777:23:0;47696:112;52002:20;51998:212;;;52079:18;;;52047:24;;;:11;:24;;;;;;;;:50;;52162:28;;;;-1:-1:-1;;;;;52120:70:0;-1:-1:-1;;;52120:70:0;-1:-1:-1;;;;;;52120:70:0;;;-1:-1:-1;;;;;52047:50:0;;;52120:70;;;;;;;51998:212;51407:829;52272:7;52268:2;-1:-1:-1;;;;;52253:27:0;52262:4;-1:-1:-1;;;;;52253:27:0;;;;;;;;;;;52291:42;50483:1858;;50379:1962;;;:::o;56607:132::-;56515:6;;-1:-1:-1;;;;;56515:6:0;38111:10;56671:23;56663:68;;;;-1:-1:-1;;;56663:68:0;;18097:2:1;56663:68:0;;;18079:21:1;;;18116:18;;;18109:30;18175:34;18155:18;;;18148:62;18227:18;;56663:68:0;17895:356:1;17696:332:0;17412:5;-1:-1:-1;;;;;17799:33:0;;;;17791:88;;;;-1:-1:-1;;;17791:88:0;;18458:2:1;17791:88:0;;;18440:21:1;18497:2;18477:18;;;18470:30;18536:34;18516:18;;;18509:62;-1:-1:-1;;;18587:18:1;;;18580:40;18637:19;;17791:88:0;18256:406:1;17791:88:0;-1:-1:-1;;;;;17898:22:0;;17890:60;;;;-1:-1:-1;;;17890:60:0;;18869:2:1;17890:60:0;;;18851:21:1;18908:2;18888:18;;;18881:30;18947:27;18927:18;;;18920:55;18992:18;;17890:60:0;18667:349:1;17890:60:0;17985:35;;;;;;;;;-1:-1:-1;;;;;17985:35:0;;;;;;-1:-1:-1;;;;;17985:35:0;;;;;;;;;;-1:-1:-1;;;17963:57:0;;;;:19;:57;17696:332::o;43545:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;43645:16:0;43653:7;47753:4;47787:13;-1:-1:-1;47777:23:0;47696:112;43645:16;43640:61;;43670:31;;-1:-1:-1;;;43670:31:0;;;;;;;;;;;43640:61;43759:7;43739:245;43806:31;43840:17;;;:11;:17;;;;;;;;;43806:51;;;;;;;;;-1:-1:-1;;;;;43806:51:0;;;;;-1:-1:-1;;;43806:51:0;;;-1:-1:-1;;;;;43806:51:0;;;;;;;;43880:28;43876:93;;43940:9;43545:504;-1:-1:-1;;;43545:504:0:o;43876:93::-;-1:-1:-1;;;43779:6:0;43739:245;;57709:191;57802:6;;;-1:-1:-1;;;;;57819:17:0;;;-1:-1:-1;;;;;;57819:17:0;;;;;;;57852:40;;57802:6;;;57819:17;57802:6;;57852:40;;57783:16;;57852:40;57772:128;57709:191;:::o;4991:317::-;5106:6;5081:21;:31;;5073:73;;;;-1:-1:-1;;;5073:73:0;;19223:2:1;5073:73:0;;;19205:21:1;19262:2;19242:18;;;19235:30;19301:31;19281:18;;;19274:59;19350:18;;5073:73:0;19021:353:1;5073:73:0;5160:12;5178:9;-1:-1:-1;;;;;5178:14:0;5200:6;5178:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5159:52;;;5230:7;5222:78;;;;-1:-1:-1;;;5222:78:0;;19791:2:1;5222:78:0;;;19773:21:1;19830:2;19810:18;;;19803:30;19869:34;19849:18;;;19842:62;19940:28;19920:18;;;19913:56;19986:19;;5222:78:0;19589:422:1;53220:765:0;53375:4;-1:-1:-1;;;;;53396:13:0;;4025:19;:23;53392:586;;53432:72;;-1:-1:-1;;;53432:72:0;;-1:-1:-1;;;;;53432:36:0;;;;;:72;;38111:10;;53483:4;;53489:7;;53498:5;;53432:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53432:72:0;;;;;;;;-1:-1:-1;;53432:72:0;;;;;;;;;;;;:::i;:::-;;;53428:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53678:6;:13;53695:1;53678:18;53674:234;;53705:40;;-1:-1:-1;;;53705:40:0;;;;;;;;;;;53674:234;53858:6;53852:13;53843:6;53839:2;53835:15;53828:38;53428:495;-1:-1:-1;;;;;;53555:55:0;-1:-1:-1;;;53555:55:0;;-1:-1:-1;53548:62:0;;53392:586;-1:-1:-1;53962:4:0;53392:586;53220:765;;;;;;:::o;44646:318::-;44719:13;44750:16;44758:7;47753:4;47787:13;-1:-1:-1;47777:23:0;47696:112;44750:16;44745:59;;44775:29;;-1:-1:-1;;;44775:29:0;;;;;;;;;;;44745:59;44817:21;44841:10;:8;:10::i;:::-;44817:34;;44875:7;44869:21;44894:1;44869:26;:87;;;;;;;;;;;;;;;;;44922:7;44931:18;:7;:16;:18::i;:::-;44905:45;;;;;;;;;:::i;43136:207::-;43197:7;-1:-1:-1;;;;;43221:19:0;;43217:59;;43249:27;;-1:-1:-1;;;43249:27:0;;;;;;;;;;;43217:59;-1:-1:-1;;;;;;43302:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;43302:32:0;;-1:-1:-1;;;;;43302:32:0;;43136:207::o;42486:372::-;42588:4;-1:-1:-1;;;;;;42625:40:0;;-1:-1:-1;;;42625:40:0;;:105;;-1:-1:-1;;;;;;;42682:48:0;;-1:-1:-1;;;42682:48:0;42625:105;:172;;;-1:-1:-1;;;;;;;42747:50:0;;-1:-1:-1;;;42747:50:0;42625:172;:225;;;-1:-1:-1;;;;;;;;;;14893:40:0;;;42814:36;14784:157;48283:163;48406:32;48412:2;48416:8;48426:5;48433:4;48406:5;:32::i;63440:114::-;63500:13;63533;63526:20;;;;;:::i;430:723::-;486:13;707:5;716:1;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;-1:-1:-1;;;;;932:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;48705:1420;48844:20;48867:13;-1:-1:-1;;;;;48895:16:0;;48891:48;;48920:19;;-1:-1:-1;;;48920:19:0;;;;;;;;;;;48891:48;48954:8;48966:1;48954:13;48950:44;;48976:18;;-1:-1:-1;;;48976:18:0;;;;;;;;;;;48950:44;-1:-1:-1;;;;;49347:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;49347:45:0;;-1:-1:-1;;;;;49347:45:0;;;;;;;;;;49407:50;;;;;;;;;;;;;;49474:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;49524:66:0;;;;-1:-1:-1;;;49574:15:0;-1:-1:-1;;;;;49524:66:0;;;;;;49474:25;;49659:330;49679:8;49675:1;:12;49659:330;;;49718:38;;49743:12;;-1:-1:-1;;;;;49718:38:0;;;49735:1;;49718:38;;49735:1;;49718:38;49779:4;:68;;;;;49788:59;49819:1;49823:2;49827:12;49841:5;49788:22;:59::i;:::-;49787:60;49779:68;49775:164;;;49879:40;;-1:-1:-1;;;49879:40:0;;;;;;;;;;;49775:164;49959:14;;;;;49689:3;49659:330;;;-1:-1:-1;50005:13:0;:28;50057:60;47133:308;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:248::-;2903:6;2911;2964:2;2952:9;2943:7;2939:23;2935:32;2932:52;;;2980:1;2977;2970:12;2932:52;-1:-1:-1;;3003:23:1;;;3073:2;3058:18;;;3045:32;;-1:-1:-1;2835:248:1:o;3367:247::-;3426:6;3479:2;3467:9;3458:7;3454:23;3450:32;3447:52;;;3495:1;3492;3485:12;3447:52;3534:9;3521:23;3553:31;3578:5;3553:31;:::i;3619:292::-;3677:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:52;;;3746:1;3743;3736:12;3698:52;3785:9;3772:23;-1:-1:-1;;;;;3828:5:1;3824:38;3817:5;3814:49;3804:77;;3877:1;3874;3867:12;3916:592;3987:6;3995;4048:2;4036:9;4027:7;4023:23;4019:32;4016:52;;;4064:1;4061;4054:12;4016:52;4104:9;4091:23;-1:-1:-1;;;;;4174:2:1;4166:6;4163:14;4160:34;;;4190:1;4187;4180:12;4160:34;4228:6;4217:9;4213:22;4203:32;;4273:7;4266:4;4262:2;4258:13;4254:27;4244:55;;4295:1;4292;4285:12;4244:55;4335:2;4322:16;4361:2;4353:6;4350:14;4347:34;;;4377:1;4374;4367:12;4347:34;4422:7;4417:2;4408:6;4404:2;4400:15;4396:24;4393:37;4390:57;;;4443:1;4440;4433:12;4390:57;4474:2;4466:11;;;;;4496:6;;-1:-1:-1;3916:592:1;;-1:-1:-1;;;;3916:592:1:o;5140:416::-;5205:6;5213;5266:2;5254:9;5245:7;5241:23;5237:32;5234:52;;;5282:1;5279;5272:12;5234:52;5321:9;5308:23;5340:31;5365:5;5340:31;:::i;:::-;5390:5;-1:-1:-1;5447:2:1;5432:18;;5419:32;5489:15;;5482:23;5470:36;;5460:64;;5520:1;5517;5510:12;5460:64;5543:7;5533:17;;;5140:416;;;;;:::o;5561:127::-;5622:10;5617:3;5613:20;5610:1;5603:31;5653:4;5650:1;5643:15;5677:4;5674:1;5667:15;5693:631;5757:5;-1:-1:-1;;;;;5828:2:1;5820:6;5817:14;5814:40;;;5834:18;;:::i;:::-;5909:2;5903:9;5877:2;5963:15;;-1:-1:-1;;5959:24:1;;;5985:2;5955:33;5951:42;5939:55;;;6009:18;;;6029:22;;;6006:46;6003:72;;;6055:18;;:::i;:::-;6095:10;6091:2;6084:22;6124:6;6115:15;;6154:6;6146;6139:22;6194:3;6185:6;6180:3;6176:16;6173:25;6170:45;;;6211:1;6208;6201:12;6170:45;6261:6;6256:3;6249:4;6241:6;6237:17;6224:44;6316:1;6309:4;6300:6;6292;6288:19;6284:30;6277:41;;;;5693:631;;;;;:::o;6329:794::-;6424:6;6432;6440;6448;6501:3;6489:9;6480:7;6476:23;6472:33;6469:53;;;6518:1;6515;6508:12;6469:53;6557:9;6544:23;6576:31;6601:5;6576:31;:::i;:::-;6626:5;-1:-1:-1;6683:2:1;6668:18;;6655:32;6696:33;6655:32;6696:33;:::i;:::-;6748:7;-1:-1:-1;6802:2:1;6787:18;;6774:32;;-1:-1:-1;6857:2:1;6842:18;;6829:32;-1:-1:-1;;;;;6873:30:1;;6870:50;;;6916:1;6913;6906:12;6870:50;6939:22;;6992:4;6984:13;;6980:27;-1:-1:-1;6970:55:1;;7021:1;7018;7011:12;6970:55;7044:73;7109:7;7104:2;7091:16;7086:2;7082;7078:11;7044:73;:::i;:::-;7034:83;;;6329:794;;;;;;;:::o;7313:388::-;7381:6;7389;7442:2;7430:9;7421:7;7417:23;7413:32;7410:52;;;7458:1;7455;7448:12;7410:52;7497:9;7484:23;7516:31;7541:5;7516:31;:::i;:::-;7566:5;-1:-1:-1;7623:2:1;7608:18;;7595:32;7636:33;7595:32;7636:33;:::i;7706:450::-;7775:6;7828:2;7816:9;7807:7;7803:23;7799:32;7796:52;;;7844:1;7841;7834:12;7796:52;7884:9;7871:23;-1:-1:-1;;;;;7909:6:1;7906:30;7903:50;;;7949:1;7946;7939:12;7903:50;7972:22;;8025:4;8017:13;;8013:27;-1:-1:-1;8003:55:1;;8054:1;8051;8044:12;8003:55;8077:73;8142:7;8137:2;8124:16;8119:2;8115;8111:11;8077:73;:::i;8161:380::-;8240:1;8236:12;;;;8283;;;8304:61;;8358:4;8350:6;8346:17;8336:27;;8304:61;8411:2;8403:6;8400:14;8380:18;8377:38;8374:161;;8457:10;8452:3;8448:20;8445:1;8438:31;8492:4;8489:1;8482:15;8520:4;8517:1;8510:15;8374:161;;8161:380;;;:::o;9258:127::-;9319:10;9314:3;9310:20;9307:1;9300:31;9350:4;9347:1;9340:15;9374:4;9371:1;9364:15;9390:128;9430:3;9461:1;9457:6;9454:1;9451:13;9448:39;;;9467:18;;:::i;:::-;-1:-1:-1;9503:9:1;;9390:128::o;10909:168::-;10949:7;11015:1;11011;11007:6;11003:14;11000:1;10997:21;10992:1;10985:9;10978:17;10974:45;10971:71;;;11022:18;;:::i;:::-;-1:-1:-1;11062:9:1;;10909:168::o;11082:341::-;11284:2;11266:21;;;11323:2;11303:18;;;11296:30;-1:-1:-1;;;11357:2:1;11342:18;;11335:47;11414:2;11399:18;;11082:341::o;11786:125::-;11826:4;11854:1;11851;11848:8;11845:34;;;11859:18;;:::i;:::-;-1:-1:-1;11896:9:1;;11786:125::o;12267:135::-;12306:3;12327:17;;;12324:43;;12347:18;;:::i;:::-;-1:-1:-1;12394:1:1;12383:13;;12267:135::o;12407:127::-;12468:10;12463:3;12459:20;12456:1;12449:31;12499:4;12496:1;12489:15;12523:4;12520:1;12513:15;12539:120;12579:1;12605;12595:35;;12610:18;;:::i;:::-;-1:-1:-1;12644:9:1;;12539:120::o;12664:127::-;12725:10;12720:3;12716:20;12713:1;12706:31;12756:4;12753:1;12746:15;12780:4;12777:1;12770:15;13335:545;13437:2;13432:3;13429:11;13426:448;;;13473:1;13498:5;13494:2;13487:17;13543:4;13539:2;13529:19;13613:2;13601:10;13597:19;13594:1;13590:27;13584:4;13580:38;13649:4;13637:10;13634:20;13631:47;;;-1:-1:-1;13672:4:1;13631:47;13727:2;13722:3;13718:12;13715:1;13711:20;13705:4;13701:31;13691:41;;13782:82;13800:2;13793:5;13790:13;13782:82;;;13845:17;;;13826:1;13815:13;13782:82;;;13786:3;;;13335:545;;;:::o;14056:1206::-;-1:-1:-1;;;;;14175:3:1;14172:27;14169:53;;;14202:18;;:::i;:::-;14231:94;14321:3;14281:38;14313:4;14307:11;14281:38;:::i;:::-;14275:4;14231:94;:::i;:::-;14351:1;14376:2;14371:3;14368:11;14393:1;14388:616;;;;15048:1;15065:3;15062:93;;;-1:-1:-1;15121:19:1;;;15108:33;15062:93;-1:-1:-1;;14013:1:1;14009:11;;;14005:24;14001:29;13991:40;14037:1;14033:11;;;13988:57;15168:78;;14361:895;;14388:616;13282:1;13275:14;;;13319:4;13306:18;;-1:-1:-1;;14424:17:1;;;14525:9;14547:229;14561:7;14558:1;14555:14;14547:229;;;14650:19;;;14637:33;14622:49;;14757:4;14742:20;;;;14710:1;14698:14;;;;14577:12;14547:229;;;14551:3;14804;14795:7;14792:16;14789:159;;;14928:1;14924:6;14918:3;14912;14909:1;14905:11;14901:21;14897:34;14893:39;14880:9;14875:3;14871:19;14858:33;14854:79;14846:6;14839:95;14789:159;;;14991:1;14985:3;14982:1;14978:11;14974:19;14968:4;14961:33;14361:895;;14056:1206;;;:::o;15683:443::-;15915:3;15953:6;15947:13;15969:53;16015:6;16010:3;16003:4;15995:6;15991:17;15969:53;:::i;:::-;-1:-1:-1;;;16044:16:1;;16069:22;;;-1:-1:-1;16118:1:1;16107:13;;15683:443;-1:-1:-1;15683:443:1:o;16131:1352::-;16257:3;16251:10;-1:-1:-1;;;;;16276:6:1;16273:30;16270:56;;;16306:18;;:::i;:::-;16335:97;16425:6;16385:38;16417:4;16411:11;16385:38;:::i;:::-;16379:4;16335:97;:::i;:::-;16487:4;;16551:2;16540:14;;16568:1;16563:663;;;;17270:1;17287:6;17284:89;;;-1:-1:-1;17339:19:1;;;17333:26;17284:89;-1:-1:-1;;14013:1:1;14009:11;;;14005:24;14001:29;13991:40;14037:1;14033:11;;;13988:57;17386:81;;16533:944;;16563:663;13282:1;13275:14;;;13319:4;13306:18;;-1:-1:-1;;16599:20:1;;;16717:236;16731:7;16728:1;16725:14;16717:236;;;16820:19;;;16814:26;16799:42;;16912:27;;;;16880:1;16868:14;;;;16747:19;;16717:236;;;16721:3;16981:6;16972:7;16969:19;16966:201;;;17042:19;;;17036:26;-1:-1:-1;;17125:1:1;17121:14;;;17137:3;17117:24;17113:37;17109:42;17094:58;17079:74;;16966:201;-1:-1:-1;;;;;17213:1:1;17197:14;;;17193:22;17180:36;;-1:-1:-1;16131:1352:1:o;20016:489::-;-1:-1:-1;;;;;20285:15:1;;;20267:34;;20337:15;;20332:2;20317:18;;20310:43;20384:2;20369:18;;20362:34;;;20432:3;20427:2;20412:18;;20405:31;;;20210:4;;20453:46;;20479:19;;20471:6;20453:46;:::i;:::-;20445:54;20016:489;-1:-1:-1;;;;;;20016:489:1:o;20510:249::-;20579:6;20632:2;20620:9;20611:7;20607:23;20603:32;20600:52;;;20648:1;20645;20638:12;20600:52;20680:9;20674:16;20699:30;20723:5;20699:30;:::i;20764:470::-;20943:3;20981:6;20975:13;20997:53;21043:6;21038:3;21031:4;21023:6;21019:17;20997:53;:::i;:::-;21113:13;;21072:16;;;;21135:57;21113:13;21072:16;21169:4;21157:17;;21135:57;:::i;:::-;21208:20;;20764:470;-1:-1:-1;;;;20764:470:1:o;21239:112::-;21271:1;21297;21287:35;;21302:18;;:::i;:::-;-1:-1:-1;21336:9:1;;21239:112::o;21356:127::-;21417:10;21412:3;21408:20;21405:1;21398:31;21448:4;21445:1;21438:15;21472:4;21469:1;21462:15

Swarm Source

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