Token Dolcelatte

Overview ERC721

Total Supply:
570 DOLCE

Holders:
31 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Dolcelatte

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-26
*/

// SPDX-License-Identifier: MIT
// contract developed by xrpant

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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: cheese/dolce.sol


// wAvaxApes by xrpant

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// File: @openzeppelin/contracts/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 tokenId);

    /**
     * @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/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/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/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/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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



interface IMilk {
	function burn(address account, uint amount) external;
    function balanceOf(address owner) external view returns(uint);
}

contract Dolcelatte is ERC721Enumerable, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using Counters for Counters.Counter;

  address public MILK_CONTRACT = 0x7FEF4c1b027a0eC266C57DCd1E30d5E6CA044711;
  address public KGOLD_CONTRACT;

  uint public MILK_RATIO = 6;
  uint public DOLCE_PRODUCE_TIME = 172800;
  uint public LEVEL_REQ = 5;
  uint public MODIFIER = 7200;
  uint public MAX_SUPPLY = 5000;

  mapping(address => uint) public isFromaging;
  mapping(address => uint) public makingCheeseFrom;
  mapping(address => uint) public fromagerLevel;

  Counters.Counter private supply;

  string private baseURI = "https://cheesyverse.s3.filebase.com/dolce-json/";
  string private uriSuffix = ".json";

  event MakingDolcelatte(
      uint256 amount,
      address indexed caller
  );

  constructor() ERC721("Dolcelatte", "DOLCE") {
    
  }

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

  function mint(address to, uint amount) internal {

    for (uint256 i = 0; i < amount; i++) {
			supply.increment();

			_safeMint(to, supply.current());
	    }

  }

    function claimCheese() public nonReentrant {
        uint claimable = claimableView(msg.sender);
        require(claimable > 0, "Nothing to claim!");
        require(supply.current() < 5000, "All the Dolcelatte has been minted!");

        if (supply.current() + claimable > 5000) {
            claimable = 5000 - supply.current();
        }

        isFromaging[msg.sender] = 0;
        mint(msg.sender, claimable);
        
    }

  function claimableView(address account) public view returns(uint) {
        require(isFromaging[account] > 0, "You aren't fromaging!");

        if (makingCheeseFrom[account] + cheeseTime(account) < block.timestamp) {
            return isFromaging[account];
        }

        return 0;
    }

    function cheeseTime(address account) public view returns(uint) {
        if (fromagerLevel[account] >= LEVEL_REQ) {
            uint timeModifier = fromagerLevel[account] / LEVEL_REQ;

            if (timeModifier > 10) {
                timeModifier = 10;
            }

            return DOLCE_PRODUCE_TIME - (timeModifier * MODIFIER);
        }
        
        return DOLCE_PRODUCE_TIME;

    }

  function makeCheese(uint _amount) public nonReentrant {
        require(isFromaging[msg.sender] == 0, "You are already fromaging!");
        require(_amount <= 10, "You can only make up to 10 cheese at a time!");
        burnMilk(msg.sender, _amount);

        isFromaging[msg.sender] = _amount;

        makingCheeseFrom[msg.sender] = block.timestamp;
        emit MakingDolcelatte(_amount, msg.sender);
    }

  function burnMilk(address account, uint _amount) internal {
        IMilk m = IMilk(MILK_CONTRACT);
        require(m.balanceOf(account) >= (_amount * MILK_RATIO * 10**18), "You don't have enough cMILK!");
        
        m.burn(account,(_amount * MILK_RATIO * 10**18));
  }

  function burnCheese(uint tokenID) external {
        require(msg.sender == KGOLD_CONTRACT, "Only King Pyro can call this function!");
        _burn(tokenID);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked(currentBaseURI, tokenID.toString(), uriSuffix) ) : "";
  }

  function checkFromagerLevel(address fromager) public view returns(uint) {
      return fromagerLevel[fromager];
  }

  function increaseFromagerLevel(address fromager) external {
        require(msg.sender == KGOLD_CONTRACT, "Only King Pyro can call this function!");
        fromagerLevel[fromager] += 1;
  }

  function airdropCheese(address to, uint amount) public onlyOwner {
      mint(to, amount);
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
      baseURI = _newBaseURI;
  }

  function setMilkAddress(address _milkAddr) public onlyOwner {
      MILK_CONTRACT = _milkAddr;
  }

  function setKingAddress(address _kAddr) public onlyOwner {
      KGOLD_CONTRACT = _kAddr;
  }

  function setMilkRatio(uint _newValue) public onlyOwner {
      MILK_RATIO = _newValue;
  }

  function setMilkTime(uint _newValue) public onlyOwner {
      DOLCE_PRODUCE_TIME = _newValue;
  }

  function setLevelReq(uint _newValue) public onlyOwner {
      LEVEL_REQ = _newValue;
  }

  function setModifier(uint _newValue) public onlyOwner {
      MODIFIER = _newValue;
  }

  function setMaxSupply(uint _newValue) public onlyOwner {
      MAX_SUPPLY = _newValue;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"caller","type":"address"}],"name":"MakingDolcelatte","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOLCE_PRODUCE_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KGOLD_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LEVEL_REQ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MILK_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MILK_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODIFIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropCheese","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"burnCheese","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"fromager","type":"address"}],"name":"checkFromagerLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"cheeseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimCheese","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"claimableView","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"fromagerLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"fromager","type":"address"}],"name":"increaseFromagerLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFromaging","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"makeCheese","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"makingCheeseFrom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_kAddr","type":"address"}],"name":"setKingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setLevelReq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_milkAddr","type":"address"}],"name":"setMilkAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setMilkRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setMilkTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setModifier","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

600c80546001600160a01b031916737fef4c1b027a0ec266c57dcd1e30d5e6ca0447111790556006600e556202a300600f556005601055611c2060115561138860125560e0604052602f60808181529062002bd460a03980516200006c916017916020909101906200018d565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200009b916018916200018d565b50348015620000a957600080fd5b50604080518082018252600a815269446f6c63656c6174746560b01b602080830191825283518085019094526005845264444f4c434560d81b908401528151919291620000f9916000916200018d565b5080516200010f9060019060208401906200018d565b5050506200012c620001266200013760201b60201c565b6200013b565b6001600b5562000270565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019b9062000233565b90600052602060002090601f016020900481019282620001bf57600085556200020a565b82601f10620001da57805160ff19168380011785556200020a565b828001600101855582156200020a579182015b828111156200020a578251825591602001919060010190620001ed565b50620002189291506200021c565b5090565b5b808211156200021857600081556001016200021d565b6002810460018216806200024857607f821691505b602082108114156200026a57634e487b7160e01b600052602260045260246000fd5b50919050565b61295480620002806000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c8063605fba671161015c578063a22cb465116100ce578063c87b56dd11610087578063c87b56dd146105c0578063d942d45d146105d3578063dcc5ad0a146105e6578063def4d64d146105ef578063e985e9c5146105f8578063f2fde38b146106345761028a565b8063a22cb46514610536578063b49fa4bf14610549578063b4f8bb821461055c578063b88d4fde14610585578063ba8e5c4214610598578063be262eda146105b85761028a565b8063715018a611610120578063715018a6146104d957806379e79ba0146104e15780638da5cb5b146104ea5780638e3b677a146104fb5780638eedd24e1461050e57806395d89b411461052e5761028a565b8063605fba671461047a5780636352211e1461048d5780636bf00f2a146104a05780636f8b44b0146104b357806370a08231146104c65761028a565b806323b872dd1161020057806342842e0e116101b957806342842e0e146103ee578063438b6300146104015780634b3f9626146104215780634f6ccce71461044157806351320b5c1461045457806355f804b3146104675761028a565b806323b872dd14610390578063273ddf35146103a357806327852c8d146103ac5780632f745c59146103bf57806332cb6b0c146103d257806336d6e2dc146103db5761028a565b80630e8fc228116102525780630e8fc2281461031f57806312c122481461033257806318160ddd1461034557806319d36353146103575780631c1a1a171461036a57806320f468e81461037d5761028a565b806301017a0c1461028f57806301ffc9a7146102a457806306fdde03146102cc578063081812fc146102e1578063095ea7b31461030c575b600080fd5b6102a261029d36600461231d565b610647565b005b6102b76102b2366004612480565b6106ab565b60405190151581526020015b60405180910390f35b6102d46106d8565b6040516102c3919061269d565b6102f46102ef3660046124fe565b61076a565b6040516001600160a01b0390911681526020016102c3565b6102a261031a366004612457565b6107ff565b6102a261032d36600461231d565b610915565b600d546102f4906001600160a01b031681565b6008545b6040519081526020016102c3565b6102a2610365366004612457565b610961565b600c546102f4906001600160a01b031681565b61034961038b36600461231d565b610999565b6102a261039e366004612369565b610a1c565b610349600e5481565b6102a26103ba3660046124fe565b610a4d565b6103496103cd366004612457565b610a7c565b61034960125481565b6102a26103e93660046124fe565b610b12565b6102a26103fc366004612369565b610c8f565b61041461040f36600461231d565b610caa565b6040516102c39190612659565b61034961042f36600461231d565b60146020526000908152604090205481565b61034961044f3660046124fe565b610d68565b6102a26104623660046124fe565b610e09565b6102a26104753660046124b8565b610e38565b61034961048836600461231d565b610e75565b6102f461049b3660046124fe565b610f2c565b6102a26104ae3660046124fe565b610fa3565b6102a26104c13660046124fe565b610fd2565b6103496104d436600461231d565b611001565b6102a2611088565b61034960115481565b600a546001600160a01b03166102f4565b6102a261050936600461231d565b6110be565b61034961051c36600461231d565b60156020526000908152604090205481565b6102d461110a565b6102a261054436600461241d565b611119565b6102a26105573660046124fe565b6111eb565b61034961056a36600461231d565b6001600160a01b031660009081526015602052604090205490565b6102a26105933660046123a4565b611221565b6103496105a636600461231d565b60136020526000908152604090205481565b6102a2611259565b6102d46105ce3660046124fe565b6113b8565b6102a26105e13660046124fe565b611496565b610349600f5481565b61034960105481565b6102b7610606366004612337565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102a261064236600461231d565b6114c5565b600d546001600160a01b0316331461067a5760405162461bcd60e51b815260040161067190612702565b60405180910390fd5b6001600160a01b03811660009081526015602052604081208054600192906106a39084906127ce565b909155505050565b60006001600160e01b0319821663780e9d6360e01b14806106d057506106d08261155d565b90505b919050565b6060600080546106e79061285c565b80601f01602080910402602001604051908101604052809291908181526020018280546107139061285c565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610671565b506000908152600460205260409020546001600160a01b031690565b600061080a82610f2c565b9050806001600160a01b0316836001600160a01b031614156108785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610671565b336001600160a01b038216148061089457506108948133610606565b6109065760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610671565b61091083836115ad565b505050565b600a546001600160a01b0316331461093f5760405162461bcd60e51b815260040161067190612748565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461098b5760405162461bcd60e51b815260040161067190612748565b610995828261161b565b5050565b6010546001600160a01b038216600090815260156020526040812054909111610a14576010546001600160a01b03831660009081526015602052604081205490916109e3916127e6565b9050600a8111156109f25750600a5b6011546109ff90826127fa565b600f54610a0c9190612819565b9150506106d3565b5050600f5490565b610a263382611658565b610a425760405162461bcd60e51b81526004016106719061277d565b61091083838361174f565b600a546001600160a01b03163314610a775760405162461bcd60e51b815260040161067190612748565b601155565b6000610a8783611001565b8210610ae95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610671565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600b541415610b655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610671565b6002600b553360009081526013602052604090205415610bc75760405162461bcd60e51b815260206004820152601a60248201527f596f752061726520616c72656164792066726f6d6167696e67210000000000006044820152606401610671565b600a811115610c2d5760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e206f6e6c79206d616b6520757020746f20313020636865657360448201526b6520617420612074696d652160a01b6064820152608401610671565b610c3733826118fa565b336000818152601360209081526040808320859055601482529182902042905590518381527f0dbe177f431b409f277c69872aa85a5284871c37d84f3be0ae722a281e578efd910160405180910390a2506001600b55565b61091083838360405180602001604052806000815250611221565b60606000610cb783611001565b905060008167ffffffffffffffff811115610ce257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d0b578160200160208202803683370190505b50905060005b82811015610d6057610d238582610a7c565b828281518110610d4357634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d5881612897565b915050610d11565b509392505050565b6000610d7360085490565b8210610dd65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610671565b60088281548110610df757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e335760405162461bcd60e51b815260040161067190612748565b600e55565b600a546001600160a01b03163314610e625760405162461bcd60e51b815260040161067190612748565b80516109959060179060208401906121f7565b6001600160a01b038116600090815260136020526040812054610ed25760405162461bcd60e51b8152602060048201526015602482015274596f75206172656e27742066726f6d6167696e672160581b6044820152606401610671565b42610edc83610999565b6001600160a01b038416600090815260146020526040902054610eff91906127ce565b1015610f2457506001600160a01b0381166000908152601360205260409020546106d3565b506000919050565b6000818152600260205260408120546001600160a01b0316806106d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610671565b600a546001600160a01b03163314610fcd5760405162461bcd60e51b815260040161067190612748565b600f55565b600a546001600160a01b03163314610ffc5760405162461bcd60e51b815260040161067190612748565b601255565b60006001600160a01b03821661106c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610671565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110b25760405162461bcd60e51b815260040161067190612748565b6110bc6000611a82565b565b600a546001600160a01b031633146110e85760405162461bcd60e51b815260040161067190612748565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546106e79061285c565b6001600160a01b0382163314156111725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610671565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111df911515815260200190565b60405180910390a35050565b600d546001600160a01b031633146112155760405162461bcd60e51b815260040161067190612702565b61121e81611ad4565b50565b61122b3383611658565b6112475760405162461bcd60e51b81526004016106719061277d565b61125384848484611b7b565b50505050565b6002600b5414156112ac5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610671565b6002600b5560006112bc33610e75565b9050600081116113025760405162461bcd60e51b81526020600482015260116024820152704e6f7468696e6720746f20636c61696d2160781b6044820152606401610671565b61138861130e60165490565b106113675760405162461bcd60e51b815260206004820152602360248201527f416c6c2074686520446f6c63656c6174746520686173206265656e206d696e7460448201526265642160e81b6064820152608401610671565b6113888161137460165490565b61137e91906127ce565b11156113965760165461139390611388612819565b90505b336000818152601360205260408120556113b0908261161b565b506001600b55565b6000818152600260205260409020546060906001600160a01b03166114375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610671565b6000611441611bae565b90506000815111611461576040518060200160405280600081525061148f565b8061146b84611bbd565b601860405160200161147f9392919061255a565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114c05760405162461bcd60e51b815260040161067190612748565b601055565b600a546001600160a01b031633146114ef5760405162461bcd60e51b815260040161067190612748565b6001600160a01b0381166115545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610671565b61121e81611a82565b60006001600160e01b031982166380ac58cd60e01b148061158e57506001600160e01b03198216635b5e139f60e01b145b806106d057506301ffc9a760e01b6001600160e01b03198316146106d0565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115e282610f2c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b8181101561091057611634601680546001019055565b6116468361164160165490565b611cd8565b8061165081612897565b91505061161e565b6000818152600260205260408120546001600160a01b03166116d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610671565b60006116dc83610f2c565b9050806001600160a01b0316846001600160a01b031614806117175750836001600160a01b031661170c8461076a565b6001600160a01b0316145b8061174757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176282610f2c565b6001600160a01b0316146117ca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610671565b6001600160a01b03821661182c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610671565b611837838383611cf2565b6118426000826115ad565b6001600160a01b038316600090815260036020526040812080546001929061186b908490612819565b90915550506001600160a01b03821660009081526003602052604081208054600192906118999084906127ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c54600e546001600160a01b039091169061191690836127fa565b61192890670de0b6b3a76400006127fa565b6040516370a0823160e01b81526001600160a01b0385811660048301528316906370a082319060240160206040518083038186803b15801561196957600080fd5b505afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a19190612516565b10156119ef5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f6e2774206861766520656e6f75676820634d494c4b21000000006044820152606401610671565b806001600160a01b0316639dc29fac84600e5485611a0d91906127fa565b611a1f90670de0b6b3a76400006127fa565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611a6557600080fd5b505af1158015611a79573d6000803e3d6000fd5b50505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611adf82610f2c565b9050611aed81600084611cf2565b611af86000836115ad565b6001600160a01b0381166000908152600360205260408120805460019290611b21908490612819565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611b8684848461174f565b611b9284848484611daf565b6112535760405162461bcd60e51b8152600401610671906126b0565b6060601780546106e79061285c565b606081611be257506040805180820190915260018152600360fc1b60208201526106d3565b8160005b8115611c0c5780611bf681612897565b9150611c059050600a836127e6565b9150611be6565b60008167ffffffffffffffff811115611c3557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c5f576020820181803683370190505b5090505b841561174757611c74600183612819565b9150611c81600a866128b2565b611c8c9060306127ce565b60f81b818381518110611caf57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cd1600a866127e6565b9450611c63565b610995828260405180602001604052806000815250611ebc565b6001600160a01b038316611d4d57611d4881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d70565b816001600160a01b0316836001600160a01b031614611d7057611d708382611eef565b6001600160a01b038216611d8c57611d8781611f8c565b610910565b826001600160a01b0316826001600160a01b031614610910576109108282612065565b60006001600160a01b0384163b15611eb157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611df390339089908890889060040161261c565b602060405180830381600087803b158015611e0d57600080fd5b505af1925050508015611e3d575060408051601f3d908101601f19168201909252611e3a9181019061249c565b60015b611e97573d808015611e6b576040519150601f19603f3d011682016040523d82523d6000602084013e611e70565b606091505b508051611e8f5760405162461bcd60e51b8152600401610671906126b0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611747565b506001949350505050565b611ec683836120a9565b611ed36000848484611daf565b6109105760405162461bcd60e51b8152600401610671906126b0565b60006001611efc84611001565b611f069190612819565b600083815260076020526040902054909150808214611f59576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f9e90600190612819565b60008381526009602052604081205460088054939450909284908110611fd457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061200357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061204957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061207083611001565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120ff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610671565b6000818152600260205260409020546001600160a01b0316156121645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610671565b61217060008383611cf2565b6001600160a01b03821660009081526003602052604081208054600192906121999084906127ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122039061285c565b90600052602060002090601f016020900481019282612225576000855561226b565b82601f1061223e57805160ff191683800117855561226b565b8280016001018555821561226b579182015b8281111561226b578251825591602001919060010190612250565b5061227792915061227b565b5090565b5b80821115612277576000815560010161227c565b600067ffffffffffffffff808411156122ab576122ab6128f2565b604051601f8501601f19908116603f011681019082821181831017156122d3576122d36128f2565b816040528093508581528686860111156122ec57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146106d357600080fd5b60006020828403121561232e578081fd5b61148f82612306565b60008060408385031215612349578081fd5b61235283612306565b915061236060208401612306565b90509250929050565b60008060006060848603121561237d578081fd5b61238684612306565b925061239460208501612306565b9150604084013590509250925092565b600080600080608085870312156123b9578081fd5b6123c285612306565b93506123d060208601612306565b925060408501359150606085013567ffffffffffffffff8111156123f2578182fd5b8501601f81018713612402578182fd5b61241187823560208401612290565b91505092959194509250565b6000806040838503121561242f578182fd5b61243883612306565b91506020830135801515811461244c578182fd5b809150509250929050565b60008060408385031215612469578182fd5b61247283612306565b946020939093013593505050565b600060208284031215612491578081fd5b813561148f81612908565b6000602082840312156124ad578081fd5b815161148f81612908565b6000602082840312156124c9578081fd5b813567ffffffffffffffff8111156124df578182fd5b8201601f810184136124ef578182fd5b61174784823560208401612290565b60006020828403121561250f578081fd5b5035919050565b600060208284031215612527578081fd5b5051919050565b60008151808452612546816020860160208601612830565b601f01601f19169290920160200192915050565b60008451602061256d8285838a01612830565b8551918401916125808184848a01612830565b855492019183906002810460018083168061259c57607f831692505b8583108114156125ba57634e487b7160e01b88526022600452602488fd5b8080156125ce57600181146125df5761260b565b60ff1985168852838801955061260b565b60008b815260209020895b858110156126035781548a8201529084019088016125ea565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264f9083018461252e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561269157835183529284019291840191600101612675565b50909695505050505050565b60006020825261148f602083018461252e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f6e6c79204b696e67205079726f2063616e2063616c6c20746869732066756e6040820152656374696f6e2160d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127e1576127e16128c6565b500190565b6000826127f5576127f56128dc565b500490565b6000816000190483118215151615612814576128146128c6565b500290565b60008282101561282b5761282b6128c6565b500390565b60005b8381101561284b578181015183820152602001612833565b838111156112535750506000910152565b60028104600182168061287057607f821691505b6020821081141561289157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128ab576128ab6128c6565b5060010190565b6000826128c1576128c16128dc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121e57600080fdfea2646970667358221220a6d18cfd82226d20abe0276e39c4f1f114192b1f3dd8f9986b2326bfa23fce5e64736f6c6343000802003368747470733a2f2f63686565737976657273652e73332e66696c65626173652e636f6d2f646f6c63652d6a736f6e2f

Deployed ByteCode Sourcemap

47544:5184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51623:193;;;;;;:::i;:::-;;:::i;:::-;;38974:224;;;;;;:::i;:::-;;:::i;:::-;;;7974:14:1;;7967:22;7949:41;;7937:2;7922:18;38974:224:0;;;;;;;;26866:100;;;:::i;:::-;;;;;;;:::i;28425:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6353:32:1;;;6335:51;;6323:2;6308:18;28425:221:0;6290:102:1;27948:411:0;;;;;;:::i;:::-;;:::i;52136:95::-;;;;;;:::i;:::-;;:::i;47765:29::-;;;;;-1:-1:-1;;;;;47765:29:0;;;39614:113;39702:10;:17;39614:113;;;18570:25:1;;;18558:2;18543:18;39614:113:0;18525:76:1;51822:96:0;;;;;;:::i;:::-;;:::i;47687:73::-;;;;;-1:-1:-1;;;;;47687:73:0;;;49482:412;;;;;;:::i;:::-;;:::i;29315:339::-;;;;;;:::i;:::-;;:::i;47801:26::-;;;;;;52536:89;;;;;;:::i;:::-;;:::i;39282:256::-;;;;;;:::i;:::-;;:::i;47938:29::-;;;;;;49900:419;;;;;;:::i;:::-;;:::i;29725:185::-;;;;;;:::i;:::-;;:::i;50781:348::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48022:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;39804:233;;;;;;:::i;:::-;;:::i;52237:92::-;;;;;;:::i;:::-;;:::i;51924:100::-;;;;;;:::i;:::-;;:::i;49173:301::-;;;;;;:::i;:::-;;:::i;26560:239::-;;;;;;:::i;:::-;;:::i;52335:99::-;;;;;;:::i;:::-;;:::i;52631:92::-;;;;;;:::i;:::-;;:::i;26290:208::-;;;;;;:::i;:::-;;:::i;46763:94::-;;;:::i;47906:27::-;;;;;;46112:87;46185:6;;-1:-1:-1;;;;;46185:6:0;46112:87;;52030:100;;;;;;:::i;:::-;;:::i;48075:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;27035:104;;;:::i;28718:295::-;;;;;;:::i;:::-;;:::i;50611:164::-;;;;;;:::i;:::-;;:::i;51500:117::-;;;;;;:::i;:::-;-1:-1:-1;;;;;51588:23:0;51566:4;51588:23;;;:13;:23;;;;;;;51500:117;29981:328;;;;;;:::i;:::-;;:::i;47974:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;48724:443;;;:::i;51135:359::-;;;;;;:::i;:::-;;:::i;52440:90::-;;;;;;:::i;:::-;;:::i;47832:39::-;;;;;;47876:25;;;;;;29084:164;;;;;;:::i;:::-;-1:-1:-1;;;;;29205:25:0;;;29181:4;29205:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29084:164;47012:192;;;;;;:::i;:::-;;:::i;51623:193::-;51714:14;;-1:-1:-1;;;;;51714:14:0;51700:10;:28;51692:79;;;;-1:-1:-1;;;51692:79:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;51782:23:0;;;;;;:13;:23;;;;;:28;;51809:1;;51782:23;:28;;51809:1;;51782:28;:::i;:::-;;;;-1:-1:-1;;;51623:193:0:o;38974:224::-;39076:4;-1:-1:-1;;;;;;39100:50:0;;-1:-1:-1;;;39100:50:0;;:90;;;39154:36;39178:11;39154:23;:36::i;:::-;39093:97;;38974:224;;;;:::o;26866:100::-;26920:13;26953:5;26946:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26866:100;:::o;28425:221::-;28501:7;31908:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31908:16:0;28521:73;;;;-1:-1:-1;;;28521:73:0;;13563:2:1;28521:73:0;;;13545:21:1;13602:2;13582:18;;;13575:30;13641:34;13621:18;;;13614:62;-1:-1:-1;;;13692:18:1;;;13685:42;13744:19;;28521:73:0;13535:234:1;28521:73:0;-1:-1:-1;28614:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28614:24:0;;28425:221::o;27948:411::-;28029:13;28045:23;28060:7;28045:14;:23::i;:::-;28029:39;;28093:5;-1:-1:-1;;;;;28087:11:0;:2;-1:-1:-1;;;;;28087:11:0;;;28079:57;;;;-1:-1:-1;;;28079:57:0;;15163:2:1;28079:57:0;;;15145:21:1;15202:2;15182:18;;;15175:30;15241:34;15221:18;;;15214:62;-1:-1:-1;;;15292:18:1;;;15285:31;15333:19;;28079:57:0;15135:223:1;28079:57:0;24475:10;-1:-1:-1;;;;;28171:21:0;;;;:62;;-1:-1:-1;28196:37:0;28213:5;24475:10;28220:12;24395:98;28196:37;28149:168;;;;-1:-1:-1;;;28149:168:0;;11956:2:1;28149:168:0;;;11938:21:1;11995:2;11975:18;;;11968:30;12034:34;12014:18;;;12007:62;12105:26;12085:18;;;12078:54;12149:19;;28149:168:0;11928:246:1;28149:168:0;28330:21;28339:2;28343:7;28330:8;:21::i;:::-;27948:411;;;:::o;52136:95::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;52202:14:::1;:23:::0;;-1:-1:-1;;;;;;52202:23:0::1;-1:-1:-1::0;;;;;52202:23:0;;;::::1;::::0;;;::::1;::::0;;52136:95::o;51822:96::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;51896:16:::1;51901:2;51905:6;51896:4;:16::i;:::-;51822:96:::0;;:::o;49482:412::-;49586:9;;-1:-1:-1;;;;;49560:22:0;;49539:4;49560:22;;;:13;:22;;;;;;49539:4;;-1:-1:-1;49556:283:0;;49657:9;;-1:-1:-1;;;;;49632:22:0;;49612:17;49632:22;;;:13;:22;;;;;;49612:17;;49632:34;;;:::i;:::-;49612:54;;49702:2;49687:12;:17;49683:75;;;-1:-1:-1;49740:2:0;49683:75;49818:8;;49803:23;;:12;:23;:::i;:::-;49781:18;;:46;;;;:::i;:::-;49774:53;;;;;49556:283;-1:-1:-1;;49866:18:0;;;49482:412::o;29315:339::-;29510:41;24475:10;29543:7;29510:18;:41::i;:::-;29502:103;;;;-1:-1:-1;;;29502:103:0;;;;;;;:::i;:::-;29618:28;29628:4;29634:2;29638:7;29618:9;:28::i;52536:89::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;52599:8:::1;:20:::0;52536:89::o;39282:256::-;39379:7;39415:23;39432:5;39415:16;:23::i;:::-;39407:5;:31;39399:87;;;;-1:-1:-1;;;39399:87:0;;8427:2:1;39399:87:0;;;8409:21:1;8466:2;8446:18;;;8439:30;8505:34;8485:18;;;8478:62;-1:-1:-1;;;8556:18:1;;;8549:41;8607:19;;39399:87:0;8399:233:1;39399:87:0;-1:-1:-1;;;;;;39504:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39282:256::o;49900:419::-;3343:1;3941:7;;:19;;3933:63;;;;-1:-1:-1;;;3933:63:0;;17563:2:1;3933:63:0;;;17545:21:1;17602:2;17582:18;;;17575:30;17641:33;17621:18;;;17614:61;17692:18;;3933:63:0;17535:181:1;3933:63:0;3343:1;4074:7;:18;49985:10:::1;49973:23;::::0;;;:11:::1;:23;::::0;;;;;:28;49965:67:::1;;;::::0;-1:-1:-1;;;49965:67:0;;10022:2:1;49965:67:0::1;::::0;::::1;10004:21:1::0;10061:2;10041:18;;;10034:30;10100:28;10080:18;;;10073:56;10146:18;;49965:67:0::1;9994:176:1::0;49965:67:0::1;50062:2;50051:7;:13;;50043:70;;;::::0;-1:-1:-1;;;50043:70:0;;15565:2:1;50043:70:0::1;::::0;::::1;15547:21:1::0;15604:2;15584:18;;;15577:30;15643:34;15623:18;;;15616:62;-1:-1:-1;;;15694:18:1;;;15687:42;15746:19;;50043:70:0::1;15537:234:1::0;50043:70:0::1;50124:29;50133:10;50145:7;50124:8;:29::i;:::-;50178:10;50166:23;::::0;;;:11:::1;:23;::::0;;;;;;;:33;;;50212:16:::1;:28:::0;;;;;;50243:15:::1;50212:46:::0;;50274:37;;18570:25:1;;;50274:37:0::1;::::0;18543:18:1;50274:37:0::1;;;;;;;-1:-1:-1::0;3299:1:0;4253:7;:22;49900:419::o;29725:185::-;29863:39;29880:4;29886:2;29890:7;29863:39;;;;;;;;;;;;:16;:39::i;50781:348::-;50856:16;50884:23;50910:17;50920:6;50910:9;:17::i;:::-;50884:43;;50934:25;50976:15;50962:30;;;;;;-1:-1:-1;;;50962:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50962:30:0;;50934:58;;51004:9;50999:103;51019:15;51015:1;:19;50999:103;;;51064:30;51084:6;51092:1;51064:19;:30::i;:::-;51050:8;51059:1;51050:11;;;;;;-1:-1:-1;;;51050:11:0;;;;;;;;;;;;;;;;;;:44;51036:3;;;;:::i;:::-;;;;50999:103;;;-1:-1:-1;51115:8:0;50781:348;-1:-1:-1;;;50781:348:0:o;39804:233::-;39879:7;39915:30;39702:10;:17;39614:113;;39915:30;39907:5;:38;39899:95;;;;-1:-1:-1;;;39899:95:0;;16800:2:1;39899:95:0;;;16782:21:1;16839:2;16819:18;;;16812:30;16878:34;16858:18;;;16851:62;-1:-1:-1;;;16929:18:1;;;16922:42;16981:19;;39899:95:0;16772:234:1;39899:95:0;40012:10;40023:5;40012:17;;;;;;-1:-1:-1;;;40012:17:0;;;;;;;;;;;;;;;;;40005:24;;39804:233;;;:::o;52237:92::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;52301:10:::1;:22:::0;52237:92::o;51924:100::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;51997:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;49173:301::-:0;-1:-1:-1;;;;;49258:20:0;;49233:4;49258:20;;;:11;:20;;;;;;49250:58;;;;-1:-1:-1;;;49250:58:0;;17213:2:1;49250:58:0;;;17195:21:1;17252:2;17232:18;;;17225:30;-1:-1:-1;;;17271:18:1;;;17264:51;17332:18;;49250:58:0;17185:171:1;49250:58:0;49375:15;49353:19;49364:7;49353:10;:19::i;:::-;-1:-1:-1;;;;;49325:25:0;;;;;;:16;:25;;;;;;:47;;;;:::i;:::-;:65;49321:125;;;-1:-1:-1;;;;;;49414:20:0;;;;;;:11;:20;;;;;;49407:27;;49321:125;-1:-1:-1;49465:1:0;49173:301;;;:::o;26560:239::-;26632:7;26668:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26668:16:0;26703:19;26695:73;;;;-1:-1:-1;;;26695:73:0;;12792:2:1;26695:73:0;;;12774:21:1;12831:2;12811:18;;;12804:30;12870:34;12850:18;;;12843:62;-1:-1:-1;;;12921:18:1;;;12914:39;12970:19;;26695:73:0;12764:231:1;52335:99:0;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;52398:18:::1;:30:::0;52335:99::o;52631:92::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;52695:10:::1;:22:::0;52631:92::o;26290:208::-;26362:7;-1:-1:-1;;;;;26390:19:0;;26382:74;;;;-1:-1:-1;;;26382:74:0;;12381:2:1;26382:74:0;;;12363:21:1;12420:2;12400:18;;;12393:30;12459:34;12439:18;;;12432:62;-1:-1:-1;;;12510:18:1;;;12503:40;12560:19;;26382:74:0;12353:232:1;26382:74:0;-1:-1:-1;;;;;;26474:16:0;;;;;:9;:16;;;;;;;26290:208::o;46763:94::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;46828:21:::1;46846:1;46828:9;:21::i;:::-;46763:94::o:0;52030:100::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;52099:13:::1;:25:::0;;-1:-1:-1;;;;;;52099:25:0::1;-1:-1:-1::0;;;;;52099:25:0;;;::::1;::::0;;;::::1;::::0;;52030:100::o;27035:104::-;27091:13;27124:7;27117:14;;;;;:::i;28718:295::-;-1:-1:-1;;;;;28821:24:0;;24475:10;28821:24;;28813:62;;;;-1:-1:-1;;;28813:62:0;;10782:2:1;28813:62:0;;;10764:21:1;10821:2;10801:18;;;10794:30;10860:27;10840:18;;;10833:55;10905:18;;28813:62:0;10754:175:1;28813:62:0;24475:10;28888:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28888:42:0;;;;;;;;;;:53;;-1:-1:-1;;28888:53:0;;;;;;;:42;-1:-1:-1;;;;;28957:48:0;;28996:8;28957:48;;;;7974:14:1;7967:22;7949:41;;7937:2;7922:18;;7904:92;28957:48:0;;;;;;;;28718:295;;:::o;50611:164::-;50687:14;;-1:-1:-1;;;;;50687:14:0;50673:10;:28;50665:79;;;;-1:-1:-1;;;50665:79:0;;;;;;;:::i;:::-;50755:14;50761:7;50755:5;:14::i;:::-;50611:164;:::o;29981:328::-;30156:41;24475:10;30189:7;30156:18;:41::i;:::-;30148:103;;;;-1:-1:-1;;;30148:103:0;;;;;;;:::i;:::-;30262:39;30276:4;30282:2;30286:7;30295:5;30262:13;:39::i;:::-;29981:328;;;;:::o;48724:443::-;3343:1;3941:7;;:19;;3933:63;;;;-1:-1:-1;;;3933:63:0;;17563:2:1;3933:63:0;;;17545:21:1;17602:2;17582:18;;;17575:30;17641:33;17621:18;;;17614:61;17692:18;;3933:63:0;17535:181:1;3933:63:0;3343:1;4074:7;:18;48778:14:::1;48795:25;48809:10;48795:13;:25::i;:::-;48778:42;;48851:1;48839:9;:13;48831:43;;;::::0;-1:-1:-1;;;48831:43:0;;18280:2:1;48831:43:0::1;::::0;::::1;18262:21:1::0;18319:2;18299:18;;;18292:30;-1:-1:-1;;;18338:18:1;;;18331:47;18395:18;;48831:43:0::1;18252:167:1::0;48831:43:0::1;48912:4;48893:16;:6;1030:14:::0;;938:114;48893:16:::1;:23;48885:71;;;::::0;-1:-1:-1;;;48885:71:0;;16396:2:1;48885:71:0::1;::::0;::::1;16378:21:1::0;16435:2;16415:18;;;16408:30;16474:34;16454:18;;;16447:62;-1:-1:-1;;;16525:18:1;;;16518:33;16568:19;;48885:71:0::1;16368:225:1::0;48885:71:0::1;49004:4;48992:9;48973:16;:6;1030:14:::0;;938:114;48973:16:::1;:28;;;;:::i;:::-;:35;48969:103;;;49044:6;1030:14:::0;49037:23:::1;::::0;:4:::1;:23;:::i;:::-;49025:35;;48969:103;49096:10;49110:1;49084:23:::0;;;:11:::1;:23;::::0;;;;:27;49122::::1;::::0;49139:9;49122:4:::1;:27::i;:::-;-1:-1:-1::0;3299:1:0;4253:7;:22;48724:443::o;51135:359::-;31884:4;31908:16;;;:7;:16;;;;;;51199:13;;-1:-1:-1;;;;;31908:16:0;51225:76;;;;-1:-1:-1;;;51225:76:0;;14747:2:1;51225:76:0;;;14729:21:1;14786:2;14766:18;;;14759:30;14825:34;14805:18;;;14798:62;-1:-1:-1;;;14876:18:1;;;14869:45;14931:19;;51225:76:0;14719:237:1;51225:76:0;51314:28;51345:10;:8;:10::i;:::-;51314:41;;51406:1;51381:14;51375:28;:32;:113;;;;;;;;;;;;;;;;;51435:14;51451:18;:7;:16;:18::i;:::-;51471:9;51418:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51375:113;51368:120;51135:359;-1:-1:-1;;;51135:359:0:o;52440:90::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;52503:9:::1;:21:::0;52440:90::o;47012:192::-;46185:6;;-1:-1:-1;;;;;46185:6:0;24475:10;46332:23;46324:68;;;;-1:-1:-1;;;46324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47101:22:0;::::1;47093:73;;;::::0;-1:-1:-1;;;47093:73:0;;9258:2:1;47093:73:0::1;::::0;::::1;9240:21:1::0;9297:2;9277:18;;;9270:30;9336:34;9316:18;;;9309:62;-1:-1:-1;;;9387:18:1;;;9380:36;9433:19;;47093:73:0::1;9230:228:1::0;47093:73:0::1;47177:19;47187:8;47177:9;:19::i;25921:305::-:0;26023:4;-1:-1:-1;;;;;;26060:40:0;;-1:-1:-1;;;26060:40:0;;:105;;-1:-1:-1;;;;;;;26117:48:0;;-1:-1:-1;;;26117:48:0;26060:105;:158;;;-1:-1:-1;;;;;;;;;;11861:40:0;;;26182:36;11752:157;35801:174;35876:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35876:29:0;-1:-1:-1;;;;;35876:29:0;;;;;;;;:24;;35930:23;35876:24;35930:14;:23::i;:::-;-1:-1:-1;;;;;35921:46:0;;;;;;;;;;;35801:174;;:::o;48543:173::-;48605:9;48600:109;48624:6;48620:1;:10;48600:109;;;48643:18;:6;1149:19;;1167:1;1149:19;;;1060:127;48643:18;48669:31;48679:2;48683:16;:6;1030:14;;938:114;48683:16;48669:9;:31::i;:::-;48632:3;;;;:::i;:::-;;;;48600:109;;32113:348;32206:4;31908:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31908:16:0;32223:73;;;;-1:-1:-1;;;32223:73:0;;11543:2:1;32223:73:0;;;11525:21:1;11582:2;11562:18;;;11555:30;11621:34;11601:18;;;11594:62;-1:-1:-1;;;11672:18:1;;;11665:42;11724:19;;32223:73:0;11515:234:1;32223:73:0;32307:13;32323:23;32338:7;32323:14;:23::i;:::-;32307:39;;32376:5;-1:-1:-1;;;;;32365:16:0;:7;-1:-1:-1;;;;;32365:16:0;;:51;;;;32409:7;-1:-1:-1;;;;;32385:31:0;:20;32397:7;32385:11;:20::i;:::-;-1:-1:-1;;;;;32385:31:0;;32365:51;:87;;;-1:-1:-1;;;;;;29205:25:0;;;29181:4;29205:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32420:32;32357:96;32113:348;-1:-1:-1;;;;32113:348:0:o;35105:578::-;35264:4;-1:-1:-1;;;;;35237:31:0;:23;35252:7;35237:14;:23::i;:::-;-1:-1:-1;;;;;35237:31:0;;35229:85;;;;-1:-1:-1;;;35229:85:0;;14337:2:1;35229:85:0;;;14319:21:1;14376:2;14356:18;;;14349:30;14415:34;14395:18;;;14388:62;-1:-1:-1;;;14466:18:1;;;14459:39;14515:19;;35229:85:0;14309:231:1;35229:85:0;-1:-1:-1;;;;;35333:16:0;;35325:65;;;;-1:-1:-1;;;35325:65:0;;10377:2:1;35325:65:0;;;10359:21:1;10416:2;10396:18;;;10389:30;10455:34;10435:18;;;10428:62;-1:-1:-1;;;10506:18:1;;;10499:34;10550:19;;35325:65:0;10349:226:1;35325:65:0;35403:39;35424:4;35430:2;35434:7;35403:20;:39::i;:::-;35507:29;35524:1;35528:7;35507:8;:29::i;:::-;-1:-1:-1;;;;;35549:15:0;;;;;;:9;:15;;;;;:20;;35568:1;;35549:15;:20;;35568:1;;35549:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35580:13:0;;;;;;:9;:13;;;;;:18;;35597:1;;35580:13;:18;;35597:1;;35580:18;:::i;:::-;;;;-1:-1:-1;;35609:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35609:21:0;-1:-1:-1;;;;;35609:21:0;;;;;;;;;35648:27;;35609:16;;35648:27;;;;;;;35105:578;;;:::o;50325:280::-;50410:13;;50478:10;;-1:-1:-1;;;;;50410:13:0;;;;50468:20;;:7;:20;:::i;:::-;:29;;50491:6;50468:29;:::i;:::-;50443:20;;-1:-1:-1;;;50443:20:0;;-1:-1:-1;;;;;6353:32:1;;;50443:20:0;;;6335:51:1;50443:11:0;;;;;6308:18:1;;50443:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;50435:96;;;;-1:-1:-1;;;50435:96:0;;17923:2:1;50435:96:0;;;17905:21:1;17962:2;17942:18;;;17935:30;18001;17981:18;;;17974:58;18049:18;;50435:96:0;17895:178:1;50435:96:0;50552:1;-1:-1:-1;;;;;50552:6:0;;50559:7;50578:10;;50568:7;:20;;;;:::i;:::-;:29;;50591:6;50568:29;:::i;:::-;50552:47;;-1:-1:-1;;;;;;50552:47:0;;;;;;;-1:-1:-1;;;;;7082:32:1;;;50552:47:0;;;7064:51:1;7131:18;;;7124:34;7037:18;;50552:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50325:280;;;:::o;47212:173::-;47287:6;;;-1:-1:-1;;;;;47304:17:0;;;-1:-1:-1;;;;;;47304:17:0;;;;;;;47337:40;;47287:6;;;47304:17;47287:6;;47337:40;;47268:16;;47337:40;47212:173;;:::o;34408:360::-;34468:13;34484:23;34499:7;34484:14;:23::i;:::-;34468:39;;34520:48;34541:5;34556:1;34560:7;34520:20;:48::i;:::-;34609:29;34626:1;34630:7;34609:8;:29::i;:::-;-1:-1:-1;;;;;34651:16:0;;;;;;:9;:16;;;;;:21;;34671:1;;34651:16;:21;;34671:1;;34651:21;:::i;:::-;;;;-1:-1:-1;;34690:16:0;;;;:7;:16;;;;;;34683:23;;-1:-1:-1;;;;;;34683:23:0;;;34724:36;34698:7;;34690:16;-1:-1:-1;;;;;34724:36:0;;;;;34690:16;;34724:36;34408:360;;:::o;31191:315::-;31348:28;31358:4;31364:2;31368:7;31348:9;:28::i;:::-;31395:48;31418:4;31424:2;31428:7;31437:5;31395:22;:48::i;:::-;31387:111;;;;-1:-1:-1;;;31387:111:0;;;;;;;:::i;48435:102::-;48495:13;48524:7;48517:14;;;;;:::i;12227:723::-;12283:13;12504:10;12500:53;;-1:-1:-1;12531:10:0;;;;;;;;;;;;-1:-1:-1;;;12531:10:0;;;;;;12500:53;12578:5;12563:12;12619:78;12626:9;;12619:78;;12652:8;;;;:::i;:::-;;-1:-1:-1;12675:10:0;;-1:-1:-1;12683:2:0;12675:10;;:::i;:::-;;;12619:78;;;12707:19;12739:6;12729:17;;;;;;-1:-1:-1;;;12729:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12729:17:0;;12707:39;;12757:154;12764:10;;12757:154;;12791:11;12801:1;12791:11;;:::i;:::-;;-1:-1:-1;12860:10:0;12868:2;12860:5;:10;:::i;:::-;12847:24;;:2;:24;:::i;:::-;12834:39;;12817:6;12824;12817:14;;;;;;-1:-1:-1;;;12817:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;12817:56:0;;;;;;;;-1:-1:-1;12888:11:0;12897:2;12888:11;;:::i;:::-;;;12757:154;;32803:110;32879:26;32889:2;32893:7;32879:26;;;;;;;;;;;;:9;:26::i;40650:589::-;-1:-1:-1;;;;;40856:18:0;;40852:187;;40891:40;40923:7;42066:10;:17;;42039:24;;;;:15;:24;;;;;:44;;;42094:24;;;;;;;;;;;;41962:164;40891:40;40852:187;;;40961:2;-1:-1:-1;;;;;40953:10:0;:4;-1:-1:-1;;;;;40953:10:0;;40949:90;;40980:47;41013:4;41019:7;40980:32;:47::i;:::-;-1:-1:-1;;;;;41053:16:0;;41049:183;;41086:45;41123:7;41086:36;:45::i;:::-;41049:183;;;41159:4;-1:-1:-1;;;;;41153:10:0;:2;-1:-1:-1;;;;;41153:10:0;;41149:83;;41180:40;41208:2;41212:7;41180:27;:40::i;36540:799::-;36695:4;-1:-1:-1;;;;;36716:13:0;;15075:20;15123:8;36712:620;;36752:72;;-1:-1:-1;;;36752:72:0;;-1:-1:-1;;;;;36752:36:0;;;;;:72;;24475:10;;36803:4;;36809:7;;36818:5;;36752:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36752:72:0;;;;;;;;-1:-1:-1;;36752:72:0;;;;;;;;;;;;:::i;:::-;;;36748:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36994:13:0;;36990:272;;37037:60;;-1:-1:-1;;;37037:60:0;;;;;;;:::i;36990:272::-;37212:6;37206:13;37197:6;37193:2;37189:15;37182:38;36748:529;-1:-1:-1;;;;;;36875:51:0;-1:-1:-1;;;36875:51:0;;-1:-1:-1;36868:58:0;;36712:620;-1:-1:-1;37316:4:0;36540:799;;;;;;:::o;33140:321::-;33270:18;33276:2;33280:7;33270:5;:18::i;:::-;33321:54;33352:1;33356:2;33360:7;33369:5;33321:22;:54::i;:::-;33299:154;;;;-1:-1:-1;;;33299:154:0;;;;;;;:::i;42753:988::-;43019:22;43069:1;43044:22;43061:4;43044:16;:22::i;:::-;:26;;;;:::i;:::-;43081:18;43102:26;;;:17;:26;;;;;;43019:51;;-1:-1:-1;43235:28:0;;;43231:328;;-1:-1:-1;;;;;43302:18:0;;43280:19;43302:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43353:30;;;;;;:44;;;43470:30;;:17;:30;;;;;:43;;;43231:328;-1:-1:-1;43655:26:0;;;;:17;:26;;;;;;;;43648:33;;;-1:-1:-1;;;;;43699:18:0;;;;;:12;:18;;;;;:34;;;;;;;43692:41;42753:988::o;44036:1079::-;44314:10;:17;44289:22;;44314:21;;44334:1;;44314:21;:::i;:::-;44346:18;44367:24;;;:15;:24;;;;;;44740:10;:26;;44289:46;;-1:-1:-1;44367:24:0;;44289:46;;44740:26;;;;-1:-1:-1;;;44740:26:0;;;;;;;;;;;;;;;;;44718:48;;44804:11;44779:10;44790;44779:22;;;;;;-1:-1:-1;;;44779:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44884:28;;;:15;:28;;;;;;;:41;;;45056:24;;;;;45049:31;45091:10;:16;;;;;-1:-1:-1;;;45091:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;44036:1079;;;;:::o;41540:221::-;41625:14;41642:20;41659:2;41642:16;:20::i;:::-;-1:-1:-1;;;;;41673:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41718:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41540:221:0:o;33797:382::-;-1:-1:-1;;;;;33877:16:0;;33869:61;;;;-1:-1:-1;;;33869:61:0;;13202:2:1;33869:61:0;;;13184:21:1;;;13221:18;;;13214:30;13280:34;13260:18;;;13253:62;13332:18;;33869:61:0;13174:182:1;33869:61:0;31884:4;31908:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31908:16:0;:30;33941:58;;;;-1:-1:-1;;;33941:58:0;;9665:2:1;33941:58:0;;;9647:21:1;9704:2;9684:18;;;9677:30;9743;9723:18;;;9716:58;9791:18;;33941:58:0;9637:178:1;33941:58:0;34012:45;34041:1;34045:2;34049:7;34012:20;:45::i;:::-;-1:-1:-1;;;;;34070:13:0;;;;;;:9;:13;;;;;:18;;34087:1;;34070:13;:18;;34087:1;;34070:18;:::i;:::-;;;;-1:-1:-1;;34099:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34099:21:0;-1:-1:-1;;;;;34099:21:0;;;;;;;;34138:33;;34099:16;;;34138:33;;34099:16;;34138:33;33797:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;;;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;;;;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;;;;;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;;;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;;;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:194::-;;4316:2;4304:9;4295:7;4291:23;4287:32;4284:2;;;4337:6;4329;4322:22;4284:2;-1:-1:-1;4365:16:1;;4274:113;-1:-1:-1;4274:113:1:o;4392:257::-;;4471:5;4465:12;4498:6;4493:3;4486:19;4514:63;4570:6;4563:4;4558:3;4554:14;4547:4;4540:5;4536:16;4514:63;:::i;:::-;4631:2;4610:15;-1:-1:-1;;4606:29:1;4597:39;;;;4638:4;4593:50;;4441:208;-1:-1:-1;;4441:208:1:o;4654:1530::-;;4916:6;4910:13;4942:4;4955:51;4999:6;4994:3;4989:2;4981:6;4977:15;4955:51;:::i;:::-;5069:13;;5028:16;;;;5091:55;5069:13;5028:16;5113:15;;;5091:55;:::i;:::-;5237:13;;5168:20;;;5208:3;;5314:1;5299:17;;5335:1;5371:18;;;;5398:2;;5476:4;5466:8;5462:19;5450:31;;5398:2;5539;5529:8;5526:16;5506:18;5503:40;5500:2;;;-1:-1:-1;;;5566:33:1;;5622:4;5619:1;5612:15;5652:4;5573:3;5640:17;5500:2;5683:18;5710:110;;;;5834:1;5829:330;;;;5676:483;;5710:110;-1:-1:-1;;5745:24:1;;5731:39;;5790:20;;;;-1:-1:-1;5710:110:1;;5829:330;18606:127;18672:17;;;18722:4;18706:21;;5924:3;5940:169;5954:8;5951:1;5948:15;5940:169;;;6036:14;;6021:13;;;6014:37;6079:16;;;;5971:10;;5940:169;;;5944:3;;6140:8;6133:5;6129:20;6122:27;;5676:483;-1:-1:-1;6175:3:1;;4886:1298;-1:-1:-1;;;;;;;;;;;4886:1298:1:o;6397:488::-;-1:-1:-1;;;;;6666:15:1;;;6648:34;;6718:15;;6713:2;6698:18;;6691:43;6765:2;6750:18;;6743:34;;;6813:3;6808:2;6793:18;;6786:31;;;6397:488;;6834:45;;6859:19;;6851:6;6834:45;:::i;:::-;6826:53;6600:285;-1:-1:-1;;;;;;6600:285:1:o;7169:635::-;7340:2;7392:21;;;7462:13;;7365:18;;;7484:22;;;7169:635;;7340:2;7563:15;;;;7537:2;7522:18;;;7169:635;7609:169;7623:6;7620:1;7617:13;7609:169;;;7684:13;;7672:26;;7753:15;;;;7718:12;;;;7645:1;7638:9;7609:169;;;-1:-1:-1;7795:3:1;;7320:484;-1:-1:-1;;;;;;7320:484:1:o;8001:219::-;;8150:2;8139:9;8132:21;8170:44;8210:2;8199:9;8195:18;8187:6;8170:44;:::i;8637:414::-;8839:2;8821:21;;;8878:2;8858:18;;;8851:30;8917:34;8912:2;8897:18;;8890:62;-1:-1:-1;;;8983:2:1;8968:18;;8961:48;9041:3;9026:19;;8811:240::o;10934:402::-;11136:2;11118:21;;;11175:2;11155:18;;;11148:30;11214:34;11209:2;11194:18;;11187:62;-1:-1:-1;;;11280:2:1;11265:18;;11258:36;11326:3;11311:19;;11108:228::o;13774:356::-;13976:2;13958:21;;;13995:18;;;13988:30;14054:34;14049:2;14034:18;;14027:62;14121:2;14106:18;;13948:182::o;15776:413::-;15978:2;15960:21;;;16017:2;15997:18;;;15990:30;16056:34;16051:2;16036:18;;16029:62;-1:-1:-1;;;16122:2:1;16107:18;;16100:47;16179:3;16164:19;;15950:239::o;18738:128::-;;18809:1;18805:6;18802:1;18799:13;18796:2;;;18815:18;;:::i;:::-;-1:-1:-1;18851:9:1;;18786:80::o;18871:120::-;;18937:1;18927:2;;18942:18;;:::i;:::-;-1:-1:-1;18976:9:1;;18917:74::o;18996:168::-;;19102:1;19098;19094:6;19090:14;19087:1;19084:21;19079:1;19072:9;19065:17;19061:45;19058:2;;;19109:18;;:::i;:::-;-1:-1:-1;19149:9:1;;19048:116::o;19169:125::-;;19237:1;19234;19231:8;19228:2;;;19242:18;;:::i;:::-;-1:-1:-1;19279:9:1;;19218:76::o;19299:258::-;19371:1;19381:113;19395:6;19392:1;19389:13;19381:113;;;19471:11;;;19465:18;19452:11;;;19445:39;19417:2;19410:10;19381:113;;;19512:6;19509:1;19506:13;19503:2;;;-1:-1:-1;;19547:1:1;19529:16;;19522:27;19352:205::o;19562:380::-;19647:1;19637:12;;19694:1;19684:12;;;19705:2;;19759:4;19751:6;19747:17;19737:27;;19705:2;19812;19804:6;19801:14;19781:18;19778:38;19775:2;;;19858:10;19853:3;19849:20;19846:1;19839:31;19893:4;19890:1;19883:15;19921:4;19918:1;19911:15;19775:2;;19617:325;;;:::o;19947:135::-;;-1:-1:-1;;20007:17:1;;20004:2;;;20027:18;;:::i;:::-;-1:-1:-1;20074:1:1;20063:13;;19994:88::o;20087:112::-;;20145:1;20135:2;;20150:18;;:::i;:::-;-1:-1:-1;20184:9:1;;20125:74::o;20204:127::-;20265:10;20260:3;20256:20;20253:1;20246:31;20296:4;20293:1;20286:15;20320:4;20317:1;20310:15;20336:127;20397:10;20392:3;20388:20;20385:1;20378:31;20428:4;20425:1;20418:15;20452:4;20449:1;20442:15;20468:127;20529:10;20524:3;20520:20;20517:1;20510:31;20560:4;20557:1;20550:15;20584:4;20581:1;20574:15;20600:131;-1:-1:-1;;;;;;20674:32:1;;20664:43;;20654:2;;20721:1;20718;20711:12

Swarm Source

ipfs://a6d18cfd82226d20abe0276e39c4f1f114192b1f3dd8f9986b2326bfa23fce5e
Loading