ETH Price: $2,888.52 (-1.75%)

Token

Overview

Max Total Supply

559

Holders

534

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
LYNEXSUP

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at lineascan.build/ on 2024-11-19
*/

// created by cryptodo.app

// SPDX-License-Identifier: MIT

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

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

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

	function _msgData() internal view virtual returns (bytes calldata) {
		return msg.data;
	}
}
/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
/**
 * @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(msg.sender);
	}

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
	/**
	 * @dev See {IERC165-supportsInterface}.
	 */
	function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
		return interfaceId == type(IERC165).interfaceId;
	}
}
/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}
/**
 * @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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 => address) private _owners;

    mapping(address => uint256) private _balances;

    mapping(uint256 => address) private _tokenApprovals;

    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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        _beforeTokenTransfer(address(0), to, tokenId);
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address owner = ERC721.ownerOf(tokenId);
        _beforeTokenTransfer(owner, address(0), tokenId);
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        _beforeTokenTransfer(from, to, tokenId);
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
    /**
	 * @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 {}
}

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        _update(address(0), tokenId, _msgSender());
    }
}

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract pause mechanism of the contract unreachable, and thus unusable.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_update}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _update(
        address to,
        uint256 tokenId,
        address auth
    ) internal virtual override whenNotPaused returns (address) {
        return super._update(to, tokenId, auth);
    }
}
/**
 * @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();
	}
}

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

contract LYNEXSUP is ERC721Enumerable, Ownable, ReentrancyGuard, ERC721Pausable , ERC721Burnable  {
    using ECDSA for bytes32;

	uint256 public PRICE;
	uint256 public TIME_FOR_REVEAL;
	uint256 public mintStartTime;
	uint256 public mintEndTime;
	address public founder = 0xaebF22D90E6E0948E0F4ecDA5612aea4d34c1c8a;

	mapping(address => bool) private _blacklist;
    mapping(address => uint256) private whitelist;
	mapping(uint256 => uint256) private _entityBirthdays;
	mapping(uint256 => string) private _ipfsHash;
	string private _simpleIpfsHash;

	bool private _isPublicSaleActive = false;
	bool private _isSimpleIpfsHash = false;

	string public tokenURIPrefix = "ipfs://";
	string public tokenURISuffix = "/metadata.json";

	string private _name;
	string private _symbol;
	string private _baseTokenURI;
    bool public isBlacklistEnabled = true;
	bool public isWhitelistEnabled = false;
	uint256 public burnedTokens;

	event SendETH(address indexed to, uint256 amount);
	event SetNewPercent(address indexed to, uint256 percent);
	event SetNewValue(string nameValue, uint256 oldValue, uint256 newValue);
	event MintPeriodChanged(uint256 newMintStartTime, uint256 newMintEndTime);
	event Blacklisted(address indexed account);
    event Unblacklisted(address indexed account);
	event WhitelistStatusChanged(bool newStatus);

	constructor () ERC721(_name, _symbol) {	
        PRICE = 0.001 ether;
        TIME_FOR_REVEAL = 0;
        mintStartTime = block.timestamp;
        mintEndTime = 1732647600;
        _name = "Lynex Supporter";
	    _symbol = "LYNEXSUP";
	    _baseTokenURI = "https://media.alphamind.co/nft/lynex/api/";

		if (block.timestamp >= mintStartTime && block.timestamp <= mintEndTime) {
			_isPublicSaleActive = true;
		}
	}

	modifier updateSaleStatus() {
		if (block.timestamp >= mintStartTime && block.timestamp <= mintEndTime && _isPublicSaleActive) {
			_isPublicSaleActive = true;
		} else {
			_isPublicSaleActive = false;
		}
		_;
	}

    function burn(uint256 tokenId) public virtual override {
        address owner = _ownerOf(tokenId);
        require(owner == msg.sender, "You are not owner of this token");

        ERC721._burn(tokenId);

		burnedTokens += 1;
    }

	function setWhitelistStatus() external onlyOwner {
        isWhitelistEnabled = !isWhitelistEnabled;
        emit WhitelistStatusChanged(isWhitelistEnabled);
    }

    function setWhitelist(address[] memory _addresses, uint256[] memory _amounts) external onlyOwner {
        require(_addresses.length == _amounts.length, "The number of addresses and amounts do not match");
        for (uint i = 0; i < _addresses.length; i++) {
			require(_addresses[i] != address(0), "one or few members is the zero address");
            whitelist[_addresses[i]] = _amounts[i];
			_blacklist[_addresses[i]] = false;
        }
    }

	function isEligibleForWhitelist() public view returns (bool) {
    	return whitelist[msg.sender] > 0;
	}

	function mint() external payable nonReentrant updateSaleStatus whenNotPaused () {
        uint256 amount = msg.value / PRICE;

        require(amount >= 1, "Can't mint less then 1 token");

        require(!_blacklist[msg.sender], "Blacklisted: minting not allowed");
        if (isWhitelistEnabled) {
            require(whitelist[msg.sender] > 0, "You are not eligible for mint");
            require(whitelist[msg.sender] >= amount, "Your whitelist amount less than you try to mint");
        }

        require(_isPublicSaleActive, "Public sale is not active");

		_mintMultiple(msg.sender, amount);
	}

	function _mintMultiple(address owner, uint256 amount) private {
        require(!_blacklist[owner], "Blacklisted: minting not allowed");
        if (isWhitelistEnabled) {
            require(whitelist[msg.sender] > 0, "You are not eligible for mint");
            require(whitelist[msg.sender] >= amount, "Your whitelist amount less than you try to mint");
        }

        if (isWhitelistEnabled) {
			whitelist[msg.sender] -= amount;
		}

		for (uint256 i = 0; i < amount; i++) {
			uint256 tokenId = totalSupply() + burnedTokens;
			_entityBirthdays[tokenId] = block.timestamp;
			_safeMint(owner, tokenId);
		}
	}

	function setIpfsHash(string[] memory ipfsHashs, uint256[] memory idTokens) external onlyOwner {
		require(ipfsHashs.length == idTokens.length, "miscellaneous number of elements");
		if(_isSimpleIpfsHash) {
			_simpleIpfsHash = ipfsHashs[0];
			return;
		}
		for (uint256 i = 0; i < idTokens.length; i++) {
			bytes memory tempHash = bytes(_ipfsHash[idTokens[i]]);
			require(tempHash.length == 0, "IPFS hash can be set only once");
			_ipfsHash[idTokens[i]] = ipfsHashs[i];
		}
	}
	function addToBlacklist(address account) public onlyOwner {
        _blacklist[account] = true;
        emit Blacklisted(account);
    }

    function removeFromBlacklist(address account) public onlyOwner {
        _blacklist[account] = false;
        emit Unblacklisted(account);
    }

    function isBlacklisted(address account) public view returns (bool) {
        return _blacklist[account];
    }

	function setMintPeriod(uint256 _newMintStartTime, uint256 _newMintEndTime) 
	external 
	onlyOwner 
	{
        require(
        	_newMintStartTime < _newMintEndTime,
        	"End time must be greater than start time"
        );
        mintStartTime = _newMintStartTime;
        mintEndTime = _newMintEndTime;
        emit MintPeriodChanged(_newMintStartTime, _newMintEndTime);
    }

	function setBaseTokenURI(string memory baseTokenURI) public onlyOwner {
		_baseTokenURI = baseTokenURI;
	}

	function setNewPrice(uint256 newPrice) public onlyOwner {
		emit SetNewValue("PRICE", PRICE, newPrice);
		PRICE = newPrice;
	}

    function setFounder(address _newFounder) external onlyOwner {
        require(_newFounder != address(0), "Zero address can't be founder");
        require(_newFounder != founder, "New founder is equal prev founder");
        founder = _newFounder;
    }

	function claimFunds() external {
		require(owner() == _msgSender() || founder == _msgSender(), "You have no right to it");
		sendETH(payable(founder), getContractBalance());
	}

	function sendETH(address payable to, uint256 amount) private nonReentrant() {
		uint256 balance = getContractBalance();
		amount = amount > balance ? balance : amount;
		(bool sent, ) = to.call{value: amount}("");
		require(sent, "Failed to send ETH");
		emit SendETH(to, amount);
	}

	function getContractBalance() public view returns (uint256) {
		return address(this).balance;
	}

	function tokensOfOwner(address user) external view returns (uint256[] memory ownerTokens) {
		uint256 tokenCount = balanceOf(user);
		if (tokenCount == 0) {
			return new uint256[](0);
		} else {
			uint256[] memory output = new uint256[](tokenCount);
			for (uint256 index = 0; index < tokenCount; index++) {
				output[index] = tokenOfOwnerByIndex(user, index);
			}
			return output;
		}
	}

	function getBirthday(uint256 tokenId) public view returns (uint256) {
		require(tokenId < totalSupply(), "That entity has not been make yet");
		return _entityBirthdays[tokenId];
	}

	function getIpfsTokenUri(uint256 tokenId) external view returns (string memory) {
		require(tokenId < totalSupply(), "That entity has not been make yet");
		require(getBirthday(tokenId) < block.timestamp + TIME_FOR_REVEAL, "That entity has not grown yet");
		return string(abi.encodePacked(tokenURIPrefix, _ipfsHash[tokenId], tokenURISuffix));
	}

	function getIpfsHash(uint256 tokenId) external onlyOwner view returns (string memory) {
		require(tokenId < totalSupply(), "That entity has not been make yet");
		if(_isSimpleIpfsHash) {
			return _simpleIpfsHash;
		} else {
			return _ipfsHash[tokenId];
		}
	}

	function togglePublicSale() external onlyOwner {
		_isPublicSaleActive = !_isPublicSaleActive;
	}

	function isPublicSaleActive() external view returns (bool status) {
		return _isPublicSaleActive;
	}

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

	function _setTokenURIPrefix(string memory _tokenURIPrefix) external onlyOwner {
		tokenURIPrefix = _tokenURIPrefix;
	}

	function _setTokenURISuffix(string memory _tokenURISuffix) external onlyOwner {
		tokenURISuffix = _tokenURISuffix;
	}
	 /**
     * @dev Pauses the NFT, preventing any transfers. Only callable by the contract owner.
     */
    function pause() external onlyOwner {
        _pause();
    }

    /**
     * @dev Unpauses the NFT, allowing transfers to occur again. Only callable by the contract owner.
     */
    function unpause() external onlyOwner {
        _unpause();
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) 
	internal 
	virtual 
	override(ERC721, ERC721Enumerable)
        whenNotPaused
	{
        super._beforeTokenTransfer(from, to, tokenId);
        require(!_blacklist[from] && !_blacklist[to], "Blacklisted: token transfer prohibited");
    }

    function _update(
        address to,
        uint256 tokenId,
        address auth
    ) 
	internal 
	virtual 
	override(ERC721 ,ERC721Pausable) returns (address) {
        return super._update(to, tokenId, auth);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMintStartTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMintEndTime","type":"uint256"}],"name":"MintPeriodChanged","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"percent","type":"uint256"}],"name":"SetNewPercent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"nameValue","type":"string"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"SetNewValue","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Unblacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"WhitelistStatusChanged","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIME_FOR_REVEAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURIPrefix","type":"string"}],"name":"_setTokenURIPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURISuffix","type":"string"}],"name":"_setTokenURISuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"founder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBirthday","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getIpfsHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getIpfsTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBlacklistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEligibleForWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStartTime","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","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":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFounder","type":"address"}],"name":"setFounder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"ipfsHashs","type":"string[]"},{"internalType":"uint256[]","name":"idTokens","type":"uint256[]"}],"name":"setIpfsHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintStartTime","type":"uint256"},{"internalType":"uint256","name":"_newMintEndTime","type":"uint256"}],"name":"setMintPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistStatus","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":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"tokenURIPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenURISuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

601180546001600160a01b03191673aebf22d90e6e0948e0f4ecda5612aea4d34c1c8a1790556017805461ffff1916905560c06040526007608090815266697066733a2f2f60c81b60a052601890620000599082620003e6565b5060408051808201909152600e81526d17b6b2ba30b230ba30973539b7b760911b60208201526019906200008e9082620003e6565b50601d805461ffff19166001179055348015620000aa57600080fd5b50601a8054620000ba9062000357565b80601f0160208091040260200160405190810160405280929190818152602001828054620000e89062000357565b8015620001395780601f106200010d5761010080835404028352916020019162000139565b820191906000526020600020905b8154815290600101906020018083116200011b57829003601f168201915b5050505050601b80546200014d9062000357565b80601f01602080910402602001604051908101604052809291908181526020018280546200017b9062000357565b8015620001cc5780601f10620001a057610100808354040283529160200191620001cc565b820191906000526020600020905b815481529060010190602001808311620001ae57829003601f168201915b50505050508160009081620001e29190620003e6565b506001620001f18282620003e6565b5050506200020533620002ef60201b60201c565b6001600b55600c805460ff1916905566038d7ea4c68000600d556000600e5542600f9081556367461ab0601055604080518082019091529081526e263cb732bc1029bab83837b93a32b960891b6020820152601a90620002669082620003e6565b5060408051808201909152600881526704c594e45585355560c41b6020820152601b90620002959082620003e6565b5060405180606001604052806029815260200162003b6c60299139601c90620002bf9082620003e6565b50600f544210158015620002d557506010544211155b15620002e9576017805460ff191660011790555b620004b2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200036c57607f821691505b6020821081036200038d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003e157600081815260208120601f850160051c81016020861015620003bc5750805b601f850160051c820191505b81811015620003dd57828155600101620003c8565b5050505b505050565b81516001600160401b0381111562000402576200040262000341565b6200041a8162000413845462000357565b8462000393565b602080601f831160018114620004525760008415620004395750858301515b600019600386901b1c1916600185901b178555620003dd565b600085815260208120601f198616915b82811015620004835788860151825594840194600190910190840162000462565b5085821015620004a25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6136aa80620004c26000396000f3fe6080604052600436106103505760003560e01c8063717a002b116101c6578063c0ac9983116100f7578063de49e4db11610095578063ee8cdd4e1161006f578063ee8cdd4e14610923578063f013e0e114610943578063f2fde38b14610963578063fe575a871461098357600080fd5b8063de49e4db146108ce578063e222c7f9146108ee578063e985e9c51461090357600080fd5b8063cb645ccb116100d1578063cb645ccb1461085f578063d450fbc914610875578063d522364814610895578063dbbc853b146108b957600080fd5b8063c0ac99831461080a578063c87b56dd1461081f578063c8d2524c1461083f57600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb465146107a0578063a8d43bd8146107c0578063ac307773146107d5578063b88d4fde146107ea57600080fd5b80638da5cb5b14610757578063931e2e491461077557806395d89b411461078b57600080fd5b80638456cb59116101a05780638456cb59146106e55780638462151c146106fa578063878dd332146107275780638d859f3e1461074157600080fd5b8063717a002b1461068f57806377325d7a146106a55780637a341bc7146106c557600080fd5b806342842e0e116102a05780635c975abb1161023e5780636f9fb98a116102185780636f9fb98a14610627578063704150331461063a57806370a082311461065a578063715018a61461067a57600080fd5b80635c975abb146105cf5780636352211e146105e7578063657fc38d1461060757600080fd5b806347b5dd541161027a57806347b5dd54146105595780634d853ee51461056f5780634f6ccce71461058f578063537df3b6146105af57600080fd5b806342842e0e146104f957806342966c681461051957806344337ea11461053957600080fd5b8063184d69ab1161030d5780632f745c59116102e75780632f745c591461048457806330176e13146104a45780633f4ba83a146104c45780633f564508146104d957600080fd5b8063184d69ab1461042d5780631e84c4131461044c57806323b872dd1461046457600080fd5b806301ffc9a71461035557806306fdde031461038a578063081812fc146103ac578063095ea7b3146103e45780631249c58b1461040657806318160ddd1461040e575b600080fd5b34801561036157600080fd5b50610375610370366004612cf8565b6109bc565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b5061039f6109cd565b6040516103819190612d6d565b3480156103b857600080fd5b506103cc6103c7366004612d80565b610a5f565b6040516001600160a01b039091168152602001610381565b3480156103f057600080fd5b506104046103ff366004612db0565b610a88565b005b610404610a97565b34801561041a57600080fd5b506008545b604051908152602001610381565b34801561043957600080fd5b50601d5461037590610100900460ff1681565b34801561045857600080fd5b5060175460ff16610375565b34801561047057600080fd5b5061040461047f366004612dda565b610d01565b34801561049057600080fd5b5061041f61049f366004612db0565b610d8c565b3480156104b057600080fd5b506104046104bf366004612ed5565b610e22565b3480156104d057600080fd5b50610404610e58565b3480156104e557600080fd5b506104046104f4366004612ed5565b610e8c565b34801561050557600080fd5b50610404610514366004612dda565b610ec2565b34801561052557600080fd5b50610404610534366004612d80565b610ee2565b34801561054557600080fd5b50610404610554366004612f0a565b610f6e565b34801561056557600080fd5b5061041f601e5481565b34801561057b57600080fd5b506011546103cc906001600160a01b031681565b34801561059b57600080fd5b5061041f6105aa366004612d80565b610fe4565b3480156105bb57600080fd5b506104046105ca366004612f0a565b611077565b3480156105db57600080fd5b50600c5460ff16610375565b3480156105f357600080fd5b506103cc610602366004612d80565b6110ea565b34801561061357600080fd5b50610404610622366004612ed5565b6110f5565b34801561063357600080fd5b504761041f565b34801561064657600080fd5b5061039f610655366004612d80565b61112b565b34801561066657600080fd5b5061041f610675366004612f0a565b6111f6565b34801561068657600080fd5b5061040461123e565b34801561069b57600080fd5b5061041f60105481565b3480156106b157600080fd5b506104046106c0366004612f25565b611272565b3480156106d157600080fd5b506104046106e0366004612f0a565b611343565b3480156106f157600080fd5b5061040461144d565b34801561070657600080fd5b5061071a610715366004612f0a565b61147f565b6040516103819190612f47565b34801561073357600080fd5b50601d546103759060ff1681565b34801561074d57600080fd5b5061041f600d5481565b34801561076357600080fd5b50600a546001600160a01b03166103cc565b34801561078157600080fd5b5061041f600f5481565b34801561079757600080fd5b5061039f611541565b3480156107ac57600080fd5b506104046107bb366004612f8b565b611550565b3480156107cc57600080fd5b5061040461155b565b3480156107e157600080fd5b506104046115e7565b3480156107f657600080fd5b50610404610805366004612fc7565b61166c565b34801561081657600080fd5b5061039f611683565b34801561082b57600080fd5b5061039f61083a366004612d80565b611711565b34801561084b57600080fd5b5061041f61085a366004612d80565b611779565b34801561086b57600080fd5b5061041f600e5481565b34801561088157600080fd5b5061039f610890366004612d80565b6117b5565b3480156108a157600080fd5b50336000908152601360205260409020541515610375565b3480156108c557600080fd5b5061039f6118c3565b3480156108da57600080fd5b506104046108e93660046130d2565b6118d0565b3480156108fa57600080fd5b50610404611b01565b34801561090f57600080fd5b5061037561091e3660046131a6565b611b3f565b34801561092f57600080fd5b5061040461093e366004612d80565b611b6d565b34801561094f57600080fd5b5061040461095e3660046131d9565b611bf6565b34801561096f57600080fd5b5061040461097e366004612f0a565b611dd8565b34801561098f57600080fd5b5061037561099e366004612f0a565b6001600160a01b031660009081526012602052604090205460ff1690565b60006109c782611e73565b92915050565b6060600080546109dc90613282565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890613282565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6000610a6a82611e98565b506000828152600460205260409020546001600160a01b03166109c7565b610a93828233611ed1565b5050565b6002600b5403610aee5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600b55600f544210801590610b0757506010544211155b8015610b15575060175460ff165b15610b2c576017805460ff19166001179055610b37565b6017805460ff191690555b610b3f611ede565b6000600d5434610b4f91906132e2565b90506001811015610ba25760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e74206c657373207468656e203120746f6b656e000000006044820152606401610ae5565b3360009081526012602052604090205460ff1615610c025760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737465643a206d696e74696e67206e6f7420616c6c6f7765646044820152606401610ae5565b601d54610100900460ff1615610c9d5733600090815260136020526040902054610c6e5760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420656c696769626c6520666f72206d696e740000006044820152606401610ae5565b33600090815260136020526040902054811115610c9d5760405162461bcd60e51b8152600401610ae5906132f6565b60175460ff16610cef5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610ae5565b610cf93382611f02565b506001600b55565b6001600160a01b038216610d2b57604051633250574960e11b815260006004820152602401610ae5565b6000610d3883833361208e565b9050836001600160a01b0316816001600160a01b031614610d86576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610ae5565b50505050565b6000610d97836111f6565b8210610df95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e4c5760405162461bcd60e51b8152600401610ae590613345565b601c610a9382826133c8565b600a546001600160a01b03163314610e825760405162461bcd60e51b8152600401610ae590613345565b610e8a6120a3565b565b600a546001600160a01b03163314610eb65760405162461bcd60e51b8152600401610ae590613345565b6018610a9382826133c8565b610edd8383836040518060200160405280600081525061166c565b505050565b6000818152600260205260409020546001600160a01b0316338114610f495760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206f776e6572206f66207468697320746f6b656e006044820152606401610ae5565b610f52826120f0565b6001601e6000828254610f659190613488565b90915550505050565b600a546001600160a01b03163314610f985760405162461bcd60e51b8152600401610ae590613345565b6001600160a01b038116600081815260126020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6000610fef60085490565b82106110525760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ae5565b60088281548110611065576110656134a0565b90600052602060002001549050919050565b600a546001600160a01b031633146110a15760405162461bcd60e51b8152600401610ae590613345565b6001600160a01b038116600081815260126020526040808220805460ff19169055517f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b9190a250565b60006109c782611e98565b600a546001600160a01b0316331461111f5760405162461bcd60e51b8152600401610ae590613345565b6019610a9382826133c8565b606061113660085490565b82106111545760405162461bcd60e51b8152600401610ae5906134b6565b600e546111619042613488565b61116a83611779565b106111b75760405162461bcd60e51b815260206004820152601d60248201527f5468617420656e7469747920686173206e6f742067726f776e207965740000006044820152606401610ae5565b60186015600084815260200190815260200160002060196040516020016111e09392919061356a565b6040516020818303038152906040529050919050565b60006001600160a01b038216611222576040516322718ad960e21b815260006004820152602401610ae5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112685760405162461bcd60e51b8152600401610ae590613345565b610e8a6000612144565b600a546001600160a01b0316331461129c5760405162461bcd60e51b8152600401610ae590613345565b8082106112fc5760405162461bcd60e51b815260206004820152602860248201527f456e642074696d65206d7573742062652067726561746572207468616e2073746044820152676172742074696d6560c01b6064820152608401610ae5565b600f829055601081905560408051838152602081018390527f8da114a60c42a34374a4db1437a7105ff2904ff5f6873c5aaa1eb33c030f0961910160405180910390a15050565b600a546001600160a01b0316331461136d5760405162461bcd60e51b8152600401610ae590613345565b6001600160a01b0381166113c35760405162461bcd60e51b815260206004820152601d60248201527f5a65726f20616464726573732063616e277420626520666f756e6465720000006044820152606401610ae5565b6011546001600160a01b039081169082160361142b5760405162461bcd60e51b815260206004820152602160248201527f4e657720666f756e64657220697320657175616c207072657620666f756e64656044820152603960f91b6064820152608401610ae5565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146114775760405162461bcd60e51b8152600401610ae590613345565b610e8a612196565b6060600061148c836111f6565b9050806000036114b05760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156114cb576114cb612e16565b6040519080825280602002602001820160405280156114f4578160200160208202803683370190505b50905060005b828110156114a85761150c8582610d8c565b82828151811061151e5761151e6134a0565b60209081029190910101528061153381613591565b9150506114fa565b50919050565b6060600180546109dc90613282565b610a933383836121d3565b600a546001600160a01b031633146115855760405162461bcd60e51b8152600401610ae590613345565b601d805460ff610100808304821615810261ff001990931692909217928390556040517f1cf28b997975c7be355bcef74f2f5019aa48253bc1e54b3c8b002471865fdba8936115dd9390049091161515815260200190565b60405180910390a1565b600a546001600160a01b031633148061160a57506011546001600160a01b031633145b6116565760405162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20726967687420746f2069740000000000000000006044820152606401610ae5565b601154610e8a906001600160a01b031647612272565b611677848484610d01565b610d86848484846123c1565b6018805461169090613282565b80601f01602080910402602001604051908101604052809291908181526020018280546116bc90613282565b80156117095780601f106116de57610100808354040283529160200191611709565b820191906000526020600020905b8154815290600101906020018083116116ec57829003601f168201915b505050505081565b606061171c82611e98565b5060006117276124ea565b905060008151116117475760405180602001604052806000815250611772565b80611751846124f9565b6040516020016117629291906135aa565b6040516020818303038152906040525b9392505050565b600061178460085490565b82106117a25760405162461bcd60e51b8152600401610ae5906134b6565b5060009081526014602052604090205490565b600a546060906001600160a01b031633146117e25760405162461bcd60e51b8152600401610ae590613345565b60085482106118035760405162461bcd60e51b8152600401610ae5906134b6565b601754610100900460ff16156118a5576016805461182090613282565b80601f016020809104026020016040519081016040528092919081815260200182805461184c90613282565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b50505050509050919050565b6000828152601560205260409020805461182090613282565b919050565b6019805461169090613282565b600a546001600160a01b031633146118fa5760405162461bcd60e51b8152600401610ae590613345565b805182511461194b5760405162461bcd60e51b815260206004820181905260248201527f6d697363656c6c616e656f7573206e756d626572206f6620656c656d656e74736044820152606401610ae5565b601754610100900460ff1615611984578160008151811061196e5761196e6134a0565b602002602001015160169081610edd91906133c8565b60005b8151811015610edd576000601560008484815181106119a8576119a86134a0565b6020026020010151815260200190815260200160002080546119c990613282565b80601f01602080910402602001604051908101604052809291908181526020018280546119f590613282565b8015611a425780601f10611a1757610100808354040283529160200191611a42565b820191906000526020600020905b815481529060010190602001808311611a2557829003601f168201915b505050505090508051600014611a9a5760405162461bcd60e51b815260206004820152601e60248201527f4950465320686173682063616e20626520736574206f6e6c79206f6e636500006044820152606401610ae5565b838281518110611aac57611aac6134a0565b602002602001015160156000858581518110611aca57611aca6134a0565b602002602001015181526020019081526020016000209081611aec91906133c8565b50508080611af990613591565b915050611987565b600a546001600160a01b03163314611b2b5760405162461bcd60e51b8152600401610ae590613345565b6017805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b03163314611b975760405162461bcd60e51b8152600401610ae590613345565b600d5460408051606080825260059082015264505249434560d81b6080820152602081019290925281018290527f0d072220716df8d505ad38ae8dbfe77b968e2c80bb73f08c38a08d5fe4f9911a9060a00160405180910390a1600d55565b600a546001600160a01b03163314611c205760405162461bcd60e51b8152600401610ae590613345565b8051825114611c8a5760405162461bcd60e51b815260206004820152603060248201527f546865206e756d626572206f662061646472657373657320616e6420616d6f7560448201526f0dce8e640c8de40dcdee840dac2e8c6d60831b6064820152608401610ae5565b60005b8251811015610edd5760006001600160a01b0316838281518110611cb357611cb36134a0565b60200260200101516001600160a01b031603611d205760405162461bcd60e51b815260206004820152602660248201527f6f6e65206f7220666577206d656d6265727320697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae5565b818181518110611d3257611d326134a0565b602002602001015160136000858481518110611d5057611d506134a0565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550600060126000858481518110611d9457611d946134a0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611dd081613591565b915050611c8d565b600a546001600160a01b03163314611e025760405162461bcd60e51b8152600401610ae590613345565b6001600160a01b038116611e675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae5565b611e7081612144565b50565b60006001600160e01b0319821663780e9d6360e01b14806109c757506109c7826125fa565b6000818152600260205260408120546001600160a01b0316806109c757604051637e27328960e01b815260048101849052602401610ae5565b610edd838383600161264a565b600c5460ff1615610e8a5760405163d93c066560e01b815260040160405180910390fd5b6001600160a01b03821660009081526012602052604090205460ff1615611f6b5760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737465643a206d696e74696e67206e6f7420616c6c6f7765646044820152606401610ae5565b601d54610100900460ff16156120065733600090815260136020526040902054611fd75760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420656c696769626c6520666f72206d696e740000006044820152606401610ae5565b336000908152601360205260409020548111156120065760405162461bcd60e51b8152600401610ae5906132f6565b601d54610100900460ff161561203b5733600090815260136020526040812080548392906120359084906135d9565b90915550505b60005b81811015610edd576000601e5461205460085490565b61205e9190613488565b6000818152601460205260409020429055905061207b8482612750565b508061208681613591565b91505061203e565b600061209b84848461276a565b949350505050565b6120ab61277f565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b0390911681526020016115dd565b60006120fb826110ea565b9050612109816000846127a2565b6000612118600084600061208e565b90506001600160a01b038116610edd57604051637e27328960e01b815260048101849052602401610ae5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61219e611ede565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120d83390565b6001600160a01b03821661220557604051630b61174360e31b81526001600160a01b0383166004820152602401610ae5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6002600b54036122c45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae5565b6002600b55478082116122d757816122d9565b805b91506000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114612328576040519150601f19603f3d011682016040523d82523d6000602084013e61232d565b606091505b50509050806123735760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610ae5565b836001600160a01b03167f2d7972e635b540e3a7d69ab075a726bac4112e45f631bde1b551cb069dcad6df846040516123ae91815260200190565b60405180910390a250506001600b555050565b6001600160a01b0383163b15610d8657604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906124039033908890879087906004016135f0565b6020604051808303816000875af192505050801561243e575060408051601f3d908101601f1916820190925261243b9181019061362d565b60015b6124a7573d80801561246c576040519150601f19603f3d011682016040523d82523d6000602084013e612471565b606091505b50805160000361249f57604051633250574960e11b81526001600160a01b0385166004820152602401610ae5565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b146124e357604051633250574960e11b81526001600160a01b0385166004820152602401610ae5565b5050505050565b6060601c80546109dc90613282565b6060816000036125205750506040805180820190915260018152600360fc1b602082015290565b8160005b811561254a578061253481613591565b91506125439050600a836132e2565b9150612524565b60008167ffffffffffffffff81111561256557612565612e16565b6040519080825280601f01601f19166020018201604052801561258f576020820181803683370190505b5090505b841561209b576125a46001836135d9565b91506125b1600a8661364a565b6125bc906030613488565b60f81b8183815181106125d1576125d16134a0565b60200101906001600160f81b031916908160001a9053506125f3600a866132e2565b9450612593565b60006001600160e01b031982166380ac58cd60e01b148061262b57506001600160e01b03198216635b5e139f60e01b145b806109c757506301ffc9a760e01b6001600160e01b03198316146109c7565b808061265e57506001600160a01b03821615155b1561272057600061266e84611e98565b90506001600160a01b0383161580159061269a5750826001600160a01b0316816001600160a01b031614155b80156126ad57506126ab8184611b3f565b155b156126d65760405163a9fbf51f60e01b81526001600160a01b0384166004820152602401610ae5565b811561271e5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b610a93828260405180602001604052806000815250612852565b6000612774611ede565b61209b848484612869565b600c5460ff16610e8a57604051638dfc202b60e01b815260040160405180910390fd5b6127aa611ede565b6127b5838383612962565b6001600160a01b03831660009081526012602052604090205460ff161580156127f757506001600160a01b03821660009081526012602052604090205460ff16155b610edd5760405162461bcd60e51b815260206004820152602660248201527f426c61636b6c69737465643a20746f6b656e207472616e736665722070726f686044820152651a589a5d195960d21b6064820152608401610ae5565b61285c8383612a1a565b610edd60008484846123c1565b6000828152600260205260408120546001600160a01b039081169083161561289657612896818486612a8b565b6001600160a01b038116156128d4576128b360008560008061264a565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615612903576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b6001600160a01b0383166129bd576129b881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6129e0565b816001600160a01b0316836001600160a01b0316146129e0576129e08382612aef565b6001600160a01b0382166129f757610edd81612b8c565b826001600160a01b0316826001600160a01b031614610edd57610edd8282612c3b565b6001600160a01b038216612a4457604051633250574960e11b815260006004820152602401610ae5565b612a50600083836127a2565b6000612a5e8383600061208e565b90506001600160a01b03811615610edd576040516339e3563760e11b815260006004820152602401610ae5565b612a96838383612c7f565b610edd576001600160a01b038316612ac457604051637e27328960e01b815260048101829052602401610ae5565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610ae5565b60006001612afc846111f6565b612b0691906135d9565b600083815260076020526040902054909150808214612b59576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b9e906001906135d9565b60008381526009602052604081205460088054939450909284908110612bc657612bc66134a0565b906000526020600020015490508060088381548110612be757612be76134a0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c1f57612c1f61365e565b6001900381819060005260206000200160009055905550505050565b6000612c46836111f6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b0383161580159061209b5750826001600160a01b0316846001600160a01b03161480612cb95750612cb98484611b3f565b8061209b5750506000908152600460205260409020546001600160a01b03908116911614919050565b6001600160e01b031981168114611e7057600080fd5b600060208284031215612d0a57600080fd5b813561177281612ce2565b60005b83811015612d30578181015183820152602001612d18565b83811115610d865750506000910152565b60008151808452612d59816020860160208601612d15565b601f01601f19169290920160200192915050565b6020815260006117726020830184612d41565b600060208284031215612d9257600080fd5b5035919050565b80356001600160a01b03811681146118be57600080fd5b60008060408385031215612dc357600080fd5b612dcc83612d99565b946020939093013593505050565b600080600060608486031215612def57600080fd5b612df884612d99565b9250612e0660208501612d99565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e5557612e55612e16565b604052919050565b600067ffffffffffffffff831115612e7757612e77612e16565b612e8a601f8401601f1916602001612e2c565b9050828152838383011115612e9e57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612ec657600080fd5b61177283833560208501612e5d565b600060208284031215612ee757600080fd5b813567ffffffffffffffff811115612efe57600080fd5b61209b84828501612eb5565b600060208284031215612f1c57600080fd5b61177282612d99565b60008060408385031215612f3857600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b81811015612f7f57835183529284019291840191600101612f63565b50909695505050505050565b60008060408385031215612f9e57600080fd5b612fa783612d99565b915060208301358015158114612fbc57600080fd5b809150509250929050565b60008060008060808587031215612fdd57600080fd5b612fe685612d99565b9350612ff460208601612d99565b925060408501359150606085013567ffffffffffffffff81111561301757600080fd5b8501601f8101871361302857600080fd5b61303787823560208401612e5d565b91505092959194509250565b600067ffffffffffffffff82111561305d5761305d612e16565b5060051b60200190565b600082601f83011261307857600080fd5b8135602061308d61308883613043565b612e2c565b82815260059290921b840181019181810190868411156130ac57600080fd5b8286015b848110156130c757803583529183019183016130b0565b509695505050505050565b600080604083850312156130e557600080fd5b823567ffffffffffffffff808211156130fd57600080fd5b818501915085601f83011261311157600080fd5b8135602061312161308883613043565b82815260059290921b8401810191818101908984111561314057600080fd5b8286015b848110156131785780358681111561315c5760008081fd5b61316a8c86838b0101612eb5565b845250918301918301613144565b509650508601359250508082111561318f57600080fd5b5061319c85828601613067565b9150509250929050565b600080604083850312156131b957600080fd5b6131c283612d99565b91506131d060208401612d99565b90509250929050565b600080604083850312156131ec57600080fd5b823567ffffffffffffffff8082111561320457600080fd5b818501915085601f83011261321857600080fd5b8135602061322861308883613043565b82815260059290921b8401810191818101908984111561324757600080fd5b948201945b8386101561326c5761325d86612d99565b8252948201949082019061324c565b9650508601359250508082111561318f57600080fd5b600181811c9082168061329657607f821691505b60208210810361153b57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826132f1576132f16132b6565b500490565b6020808252602f908201527f596f75722077686974656c69737420616d6f756e74206c657373207468616e2060408201526e1e5bdd481d1c9e481d1bc81b5a5b9d608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610edd57600081815260208120601f850160051c810160208610156133a15750805b601f850160051c820191505b818110156133c0578281556001016133ad565b505050505050565b815167ffffffffffffffff8111156133e2576133e2612e16565b6133f6816133f08454613282565b8461337a565b602080601f83116001811461342b57600084156134135750858301515b600019600386901b1c1916600185901b1785556133c0565b600085815260208120601f198616915b8281101561345a5788860151825594840194600190910190840161343b565b50858210156134785787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000821982111561349b5761349b6132cc565b500190565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f5468617420656e7469747920686173206e6f74206265656e206d616b652079656040820152601d60fa1b606082015260800190565b6000815461350481613282565b6001828116801561351c576001811461353157613560565b60ff1984168752821515830287019450613560565b8560005260208060002060005b858110156135575781548a82015290840190820161353e565b50505082870194505b5050505092915050565b600061358861358261357c84886134f7565b866134f7565b846134f7565b95945050505050565b6000600182016135a3576135a36132cc565b5060010190565b600083516135bc818460208801612d15565b8351908301906135d0818360208801612d15565b01949350505050565b6000828210156135eb576135eb6132cc565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061362390830184612d41565b9695505050505050565b60006020828403121561363f57600080fd5b815161177281612ce2565b600082613659576136596132b6565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f425d48ea9381dc25337c9407b7439a47bbe59598855f2c72e199e20c48319a664736f6c634300080f003368747470733a2f2f6d656469612e616c7068616d696e642e636f2f6e66742f6c796e65782f6170692f

Deployed Bytecode

0x6080604052600436106103505760003560e01c8063717a002b116101c6578063c0ac9983116100f7578063de49e4db11610095578063ee8cdd4e1161006f578063ee8cdd4e14610923578063f013e0e114610943578063f2fde38b14610963578063fe575a871461098357600080fd5b8063de49e4db146108ce578063e222c7f9146108ee578063e985e9c51461090357600080fd5b8063cb645ccb116100d1578063cb645ccb1461085f578063d450fbc914610875578063d522364814610895578063dbbc853b146108b957600080fd5b8063c0ac99831461080a578063c87b56dd1461081f578063c8d2524c1461083f57600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb465146107a0578063a8d43bd8146107c0578063ac307773146107d5578063b88d4fde146107ea57600080fd5b80638da5cb5b14610757578063931e2e491461077557806395d89b411461078b57600080fd5b80638456cb59116101a05780638456cb59146106e55780638462151c146106fa578063878dd332146107275780638d859f3e1461074157600080fd5b8063717a002b1461068f57806377325d7a146106a55780637a341bc7146106c557600080fd5b806342842e0e116102a05780635c975abb1161023e5780636f9fb98a116102185780636f9fb98a14610627578063704150331461063a57806370a082311461065a578063715018a61461067a57600080fd5b80635c975abb146105cf5780636352211e146105e7578063657fc38d1461060757600080fd5b806347b5dd541161027a57806347b5dd54146105595780634d853ee51461056f5780634f6ccce71461058f578063537df3b6146105af57600080fd5b806342842e0e146104f957806342966c681461051957806344337ea11461053957600080fd5b8063184d69ab1161030d5780632f745c59116102e75780632f745c591461048457806330176e13146104a45780633f4ba83a146104c45780633f564508146104d957600080fd5b8063184d69ab1461042d5780631e84c4131461044c57806323b872dd1461046457600080fd5b806301ffc9a71461035557806306fdde031461038a578063081812fc146103ac578063095ea7b3146103e45780631249c58b1461040657806318160ddd1461040e575b600080fd5b34801561036157600080fd5b50610375610370366004612cf8565b6109bc565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b5061039f6109cd565b6040516103819190612d6d565b3480156103b857600080fd5b506103cc6103c7366004612d80565b610a5f565b6040516001600160a01b039091168152602001610381565b3480156103f057600080fd5b506104046103ff366004612db0565b610a88565b005b610404610a97565b34801561041a57600080fd5b506008545b604051908152602001610381565b34801561043957600080fd5b50601d5461037590610100900460ff1681565b34801561045857600080fd5b5060175460ff16610375565b34801561047057600080fd5b5061040461047f366004612dda565b610d01565b34801561049057600080fd5b5061041f61049f366004612db0565b610d8c565b3480156104b057600080fd5b506104046104bf366004612ed5565b610e22565b3480156104d057600080fd5b50610404610e58565b3480156104e557600080fd5b506104046104f4366004612ed5565b610e8c565b34801561050557600080fd5b50610404610514366004612dda565b610ec2565b34801561052557600080fd5b50610404610534366004612d80565b610ee2565b34801561054557600080fd5b50610404610554366004612f0a565b610f6e565b34801561056557600080fd5b5061041f601e5481565b34801561057b57600080fd5b506011546103cc906001600160a01b031681565b34801561059b57600080fd5b5061041f6105aa366004612d80565b610fe4565b3480156105bb57600080fd5b506104046105ca366004612f0a565b611077565b3480156105db57600080fd5b50600c5460ff16610375565b3480156105f357600080fd5b506103cc610602366004612d80565b6110ea565b34801561061357600080fd5b50610404610622366004612ed5565b6110f5565b34801561063357600080fd5b504761041f565b34801561064657600080fd5b5061039f610655366004612d80565b61112b565b34801561066657600080fd5b5061041f610675366004612f0a565b6111f6565b34801561068657600080fd5b5061040461123e565b34801561069b57600080fd5b5061041f60105481565b3480156106b157600080fd5b506104046106c0366004612f25565b611272565b3480156106d157600080fd5b506104046106e0366004612f0a565b611343565b3480156106f157600080fd5b5061040461144d565b34801561070657600080fd5b5061071a610715366004612f0a565b61147f565b6040516103819190612f47565b34801561073357600080fd5b50601d546103759060ff1681565b34801561074d57600080fd5b5061041f600d5481565b34801561076357600080fd5b50600a546001600160a01b03166103cc565b34801561078157600080fd5b5061041f600f5481565b34801561079757600080fd5b5061039f611541565b3480156107ac57600080fd5b506104046107bb366004612f8b565b611550565b3480156107cc57600080fd5b5061040461155b565b3480156107e157600080fd5b506104046115e7565b3480156107f657600080fd5b50610404610805366004612fc7565b61166c565b34801561081657600080fd5b5061039f611683565b34801561082b57600080fd5b5061039f61083a366004612d80565b611711565b34801561084b57600080fd5b5061041f61085a366004612d80565b611779565b34801561086b57600080fd5b5061041f600e5481565b34801561088157600080fd5b5061039f610890366004612d80565b6117b5565b3480156108a157600080fd5b50336000908152601360205260409020541515610375565b3480156108c557600080fd5b5061039f6118c3565b3480156108da57600080fd5b506104046108e93660046130d2565b6118d0565b3480156108fa57600080fd5b50610404611b01565b34801561090f57600080fd5b5061037561091e3660046131a6565b611b3f565b34801561092f57600080fd5b5061040461093e366004612d80565b611b6d565b34801561094f57600080fd5b5061040461095e3660046131d9565b611bf6565b34801561096f57600080fd5b5061040461097e366004612f0a565b611dd8565b34801561098f57600080fd5b5061037561099e366004612f0a565b6001600160a01b031660009081526012602052604090205460ff1690565b60006109c782611e73565b92915050565b6060600080546109dc90613282565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890613282565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6000610a6a82611e98565b506000828152600460205260409020546001600160a01b03166109c7565b610a93828233611ed1565b5050565b6002600b5403610aee5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600b55600f544210801590610b0757506010544211155b8015610b15575060175460ff165b15610b2c576017805460ff19166001179055610b37565b6017805460ff191690555b610b3f611ede565b6000600d5434610b4f91906132e2565b90506001811015610ba25760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e74206c657373207468656e203120746f6b656e000000006044820152606401610ae5565b3360009081526012602052604090205460ff1615610c025760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737465643a206d696e74696e67206e6f7420616c6c6f7765646044820152606401610ae5565b601d54610100900460ff1615610c9d5733600090815260136020526040902054610c6e5760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420656c696769626c6520666f72206d696e740000006044820152606401610ae5565b33600090815260136020526040902054811115610c9d5760405162461bcd60e51b8152600401610ae5906132f6565b60175460ff16610cef5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610ae5565b610cf93382611f02565b506001600b55565b6001600160a01b038216610d2b57604051633250574960e11b815260006004820152602401610ae5565b6000610d3883833361208e565b9050836001600160a01b0316816001600160a01b031614610d86576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610ae5565b50505050565b6000610d97836111f6565b8210610df95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e4c5760405162461bcd60e51b8152600401610ae590613345565b601c610a9382826133c8565b600a546001600160a01b03163314610e825760405162461bcd60e51b8152600401610ae590613345565b610e8a6120a3565b565b600a546001600160a01b03163314610eb65760405162461bcd60e51b8152600401610ae590613345565b6018610a9382826133c8565b610edd8383836040518060200160405280600081525061166c565b505050565b6000818152600260205260409020546001600160a01b0316338114610f495760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206f776e6572206f66207468697320746f6b656e006044820152606401610ae5565b610f52826120f0565b6001601e6000828254610f659190613488565b90915550505050565b600a546001600160a01b03163314610f985760405162461bcd60e51b8152600401610ae590613345565b6001600160a01b038116600081815260126020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6000610fef60085490565b82106110525760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ae5565b60088281548110611065576110656134a0565b90600052602060002001549050919050565b600a546001600160a01b031633146110a15760405162461bcd60e51b8152600401610ae590613345565b6001600160a01b038116600081815260126020526040808220805460ff19169055517f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b9190a250565b60006109c782611e98565b600a546001600160a01b0316331461111f5760405162461bcd60e51b8152600401610ae590613345565b6019610a9382826133c8565b606061113660085490565b82106111545760405162461bcd60e51b8152600401610ae5906134b6565b600e546111619042613488565b61116a83611779565b106111b75760405162461bcd60e51b815260206004820152601d60248201527f5468617420656e7469747920686173206e6f742067726f776e207965740000006044820152606401610ae5565b60186015600084815260200190815260200160002060196040516020016111e09392919061356a565b6040516020818303038152906040529050919050565b60006001600160a01b038216611222576040516322718ad960e21b815260006004820152602401610ae5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112685760405162461bcd60e51b8152600401610ae590613345565b610e8a6000612144565b600a546001600160a01b0316331461129c5760405162461bcd60e51b8152600401610ae590613345565b8082106112fc5760405162461bcd60e51b815260206004820152602860248201527f456e642074696d65206d7573742062652067726561746572207468616e2073746044820152676172742074696d6560c01b6064820152608401610ae5565b600f829055601081905560408051838152602081018390527f8da114a60c42a34374a4db1437a7105ff2904ff5f6873c5aaa1eb33c030f0961910160405180910390a15050565b600a546001600160a01b0316331461136d5760405162461bcd60e51b8152600401610ae590613345565b6001600160a01b0381166113c35760405162461bcd60e51b815260206004820152601d60248201527f5a65726f20616464726573732063616e277420626520666f756e6465720000006044820152606401610ae5565b6011546001600160a01b039081169082160361142b5760405162461bcd60e51b815260206004820152602160248201527f4e657720666f756e64657220697320657175616c207072657620666f756e64656044820152603960f91b6064820152608401610ae5565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146114775760405162461bcd60e51b8152600401610ae590613345565b610e8a612196565b6060600061148c836111f6565b9050806000036114b05760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156114cb576114cb612e16565b6040519080825280602002602001820160405280156114f4578160200160208202803683370190505b50905060005b828110156114a85761150c8582610d8c565b82828151811061151e5761151e6134a0565b60209081029190910101528061153381613591565b9150506114fa565b50919050565b6060600180546109dc90613282565b610a933383836121d3565b600a546001600160a01b031633146115855760405162461bcd60e51b8152600401610ae590613345565b601d805460ff610100808304821615810261ff001990931692909217928390556040517f1cf28b997975c7be355bcef74f2f5019aa48253bc1e54b3c8b002471865fdba8936115dd9390049091161515815260200190565b60405180910390a1565b600a546001600160a01b031633148061160a57506011546001600160a01b031633145b6116565760405162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20726967687420746f2069740000000000000000006044820152606401610ae5565b601154610e8a906001600160a01b031647612272565b611677848484610d01565b610d86848484846123c1565b6018805461169090613282565b80601f01602080910402602001604051908101604052809291908181526020018280546116bc90613282565b80156117095780601f106116de57610100808354040283529160200191611709565b820191906000526020600020905b8154815290600101906020018083116116ec57829003601f168201915b505050505081565b606061171c82611e98565b5060006117276124ea565b905060008151116117475760405180602001604052806000815250611772565b80611751846124f9565b6040516020016117629291906135aa565b6040516020818303038152906040525b9392505050565b600061178460085490565b82106117a25760405162461bcd60e51b8152600401610ae5906134b6565b5060009081526014602052604090205490565b600a546060906001600160a01b031633146117e25760405162461bcd60e51b8152600401610ae590613345565b60085482106118035760405162461bcd60e51b8152600401610ae5906134b6565b601754610100900460ff16156118a5576016805461182090613282565b80601f016020809104026020016040519081016040528092919081815260200182805461184c90613282565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b50505050509050919050565b6000828152601560205260409020805461182090613282565b919050565b6019805461169090613282565b600a546001600160a01b031633146118fa5760405162461bcd60e51b8152600401610ae590613345565b805182511461194b5760405162461bcd60e51b815260206004820181905260248201527f6d697363656c6c616e656f7573206e756d626572206f6620656c656d656e74736044820152606401610ae5565b601754610100900460ff1615611984578160008151811061196e5761196e6134a0565b602002602001015160169081610edd91906133c8565b60005b8151811015610edd576000601560008484815181106119a8576119a86134a0565b6020026020010151815260200190815260200160002080546119c990613282565b80601f01602080910402602001604051908101604052809291908181526020018280546119f590613282565b8015611a425780601f10611a1757610100808354040283529160200191611a42565b820191906000526020600020905b815481529060010190602001808311611a2557829003601f168201915b505050505090508051600014611a9a5760405162461bcd60e51b815260206004820152601e60248201527f4950465320686173682063616e20626520736574206f6e6c79206f6e636500006044820152606401610ae5565b838281518110611aac57611aac6134a0565b602002602001015160156000858581518110611aca57611aca6134a0565b602002602001015181526020019081526020016000209081611aec91906133c8565b50508080611af990613591565b915050611987565b600a546001600160a01b03163314611b2b5760405162461bcd60e51b8152600401610ae590613345565b6017805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b03163314611b975760405162461bcd60e51b8152600401610ae590613345565b600d5460408051606080825260059082015264505249434560d81b6080820152602081019290925281018290527f0d072220716df8d505ad38ae8dbfe77b968e2c80bb73f08c38a08d5fe4f9911a9060a00160405180910390a1600d55565b600a546001600160a01b03163314611c205760405162461bcd60e51b8152600401610ae590613345565b8051825114611c8a5760405162461bcd60e51b815260206004820152603060248201527f546865206e756d626572206f662061646472657373657320616e6420616d6f7560448201526f0dce8e640c8de40dcdee840dac2e8c6d60831b6064820152608401610ae5565b60005b8251811015610edd5760006001600160a01b0316838281518110611cb357611cb36134a0565b60200260200101516001600160a01b031603611d205760405162461bcd60e51b815260206004820152602660248201527f6f6e65206f7220666577206d656d6265727320697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae5565b818181518110611d3257611d326134a0565b602002602001015160136000858481518110611d5057611d506134a0565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550600060126000858481518110611d9457611d946134a0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611dd081613591565b915050611c8d565b600a546001600160a01b03163314611e025760405162461bcd60e51b8152600401610ae590613345565b6001600160a01b038116611e675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae5565b611e7081612144565b50565b60006001600160e01b0319821663780e9d6360e01b14806109c757506109c7826125fa565b6000818152600260205260408120546001600160a01b0316806109c757604051637e27328960e01b815260048101849052602401610ae5565b610edd838383600161264a565b600c5460ff1615610e8a5760405163d93c066560e01b815260040160405180910390fd5b6001600160a01b03821660009081526012602052604090205460ff1615611f6b5760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737465643a206d696e74696e67206e6f7420616c6c6f7765646044820152606401610ae5565b601d54610100900460ff16156120065733600090815260136020526040902054611fd75760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420656c696769626c6520666f72206d696e740000006044820152606401610ae5565b336000908152601360205260409020548111156120065760405162461bcd60e51b8152600401610ae5906132f6565b601d54610100900460ff161561203b5733600090815260136020526040812080548392906120359084906135d9565b90915550505b60005b81811015610edd576000601e5461205460085490565b61205e9190613488565b6000818152601460205260409020429055905061207b8482612750565b508061208681613591565b91505061203e565b600061209b84848461276a565b949350505050565b6120ab61277f565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b0390911681526020016115dd565b60006120fb826110ea565b9050612109816000846127a2565b6000612118600084600061208e565b90506001600160a01b038116610edd57604051637e27328960e01b815260048101849052602401610ae5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61219e611ede565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120d83390565b6001600160a01b03821661220557604051630b61174360e31b81526001600160a01b0383166004820152602401610ae5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6002600b54036122c45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae5565b6002600b55478082116122d757816122d9565b805b91506000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114612328576040519150601f19603f3d011682016040523d82523d6000602084013e61232d565b606091505b50509050806123735760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610ae5565b836001600160a01b03167f2d7972e635b540e3a7d69ab075a726bac4112e45f631bde1b551cb069dcad6df846040516123ae91815260200190565b60405180910390a250506001600b555050565b6001600160a01b0383163b15610d8657604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906124039033908890879087906004016135f0565b6020604051808303816000875af192505050801561243e575060408051601f3d908101601f1916820190925261243b9181019061362d565b60015b6124a7573d80801561246c576040519150601f19603f3d011682016040523d82523d6000602084013e612471565b606091505b50805160000361249f57604051633250574960e11b81526001600160a01b0385166004820152602401610ae5565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b146124e357604051633250574960e11b81526001600160a01b0385166004820152602401610ae5565b5050505050565b6060601c80546109dc90613282565b6060816000036125205750506040805180820190915260018152600360fc1b602082015290565b8160005b811561254a578061253481613591565b91506125439050600a836132e2565b9150612524565b60008167ffffffffffffffff81111561256557612565612e16565b6040519080825280601f01601f19166020018201604052801561258f576020820181803683370190505b5090505b841561209b576125a46001836135d9565b91506125b1600a8661364a565b6125bc906030613488565b60f81b8183815181106125d1576125d16134a0565b60200101906001600160f81b031916908160001a9053506125f3600a866132e2565b9450612593565b60006001600160e01b031982166380ac58cd60e01b148061262b57506001600160e01b03198216635b5e139f60e01b145b806109c757506301ffc9a760e01b6001600160e01b03198316146109c7565b808061265e57506001600160a01b03821615155b1561272057600061266e84611e98565b90506001600160a01b0383161580159061269a5750826001600160a01b0316816001600160a01b031614155b80156126ad57506126ab8184611b3f565b155b156126d65760405163a9fbf51f60e01b81526001600160a01b0384166004820152602401610ae5565b811561271e5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b610a93828260405180602001604052806000815250612852565b6000612774611ede565b61209b848484612869565b600c5460ff16610e8a57604051638dfc202b60e01b815260040160405180910390fd5b6127aa611ede565b6127b5838383612962565b6001600160a01b03831660009081526012602052604090205460ff161580156127f757506001600160a01b03821660009081526012602052604090205460ff16155b610edd5760405162461bcd60e51b815260206004820152602660248201527f426c61636b6c69737465643a20746f6b656e207472616e736665722070726f686044820152651a589a5d195960d21b6064820152608401610ae5565b61285c8383612a1a565b610edd60008484846123c1565b6000828152600260205260408120546001600160a01b039081169083161561289657612896818486612a8b565b6001600160a01b038116156128d4576128b360008560008061264a565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615612903576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b6001600160a01b0383166129bd576129b881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6129e0565b816001600160a01b0316836001600160a01b0316146129e0576129e08382612aef565b6001600160a01b0382166129f757610edd81612b8c565b826001600160a01b0316826001600160a01b031614610edd57610edd8282612c3b565b6001600160a01b038216612a4457604051633250574960e11b815260006004820152602401610ae5565b612a50600083836127a2565b6000612a5e8383600061208e565b90506001600160a01b03811615610edd576040516339e3563760e11b815260006004820152602401610ae5565b612a96838383612c7f565b610edd576001600160a01b038316612ac457604051637e27328960e01b815260048101829052602401610ae5565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610ae5565b60006001612afc846111f6565b612b0691906135d9565b600083815260076020526040902054909150808214612b59576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b9e906001906135d9565b60008381526009602052604081205460088054939450909284908110612bc657612bc66134a0565b906000526020600020015490508060088381548110612be757612be76134a0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c1f57612c1f61365e565b6001900381819060005260206000200160009055905550505050565b6000612c46836111f6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b0383161580159061209b5750826001600160a01b0316846001600160a01b03161480612cb95750612cb98484611b3f565b8061209b5750506000908152600460205260409020546001600160a01b03908116911614919050565b6001600160e01b031981168114611e7057600080fd5b600060208284031215612d0a57600080fd5b813561177281612ce2565b60005b83811015612d30578181015183820152602001612d18565b83811115610d865750506000910152565b60008151808452612d59816020860160208601612d15565b601f01601f19169290920160200192915050565b6020815260006117726020830184612d41565b600060208284031215612d9257600080fd5b5035919050565b80356001600160a01b03811681146118be57600080fd5b60008060408385031215612dc357600080fd5b612dcc83612d99565b946020939093013593505050565b600080600060608486031215612def57600080fd5b612df884612d99565b9250612e0660208501612d99565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e5557612e55612e16565b604052919050565b600067ffffffffffffffff831115612e7757612e77612e16565b612e8a601f8401601f1916602001612e2c565b9050828152838383011115612e9e57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612ec657600080fd5b61177283833560208501612e5d565b600060208284031215612ee757600080fd5b813567ffffffffffffffff811115612efe57600080fd5b61209b84828501612eb5565b600060208284031215612f1c57600080fd5b61177282612d99565b60008060408385031215612f3857600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b81811015612f7f57835183529284019291840191600101612f63565b50909695505050505050565b60008060408385031215612f9e57600080fd5b612fa783612d99565b915060208301358015158114612fbc57600080fd5b809150509250929050565b60008060008060808587031215612fdd57600080fd5b612fe685612d99565b9350612ff460208601612d99565b925060408501359150606085013567ffffffffffffffff81111561301757600080fd5b8501601f8101871361302857600080fd5b61303787823560208401612e5d565b91505092959194509250565b600067ffffffffffffffff82111561305d5761305d612e16565b5060051b60200190565b600082601f83011261307857600080fd5b8135602061308d61308883613043565b612e2c565b82815260059290921b840181019181810190868411156130ac57600080fd5b8286015b848110156130c757803583529183019183016130b0565b509695505050505050565b600080604083850312156130e557600080fd5b823567ffffffffffffffff808211156130fd57600080fd5b818501915085601f83011261311157600080fd5b8135602061312161308883613043565b82815260059290921b8401810191818101908984111561314057600080fd5b8286015b848110156131785780358681111561315c5760008081fd5b61316a8c86838b0101612eb5565b845250918301918301613144565b509650508601359250508082111561318f57600080fd5b5061319c85828601613067565b9150509250929050565b600080604083850312156131b957600080fd5b6131c283612d99565b91506131d060208401612d99565b90509250929050565b600080604083850312156131ec57600080fd5b823567ffffffffffffffff8082111561320457600080fd5b818501915085601f83011261321857600080fd5b8135602061322861308883613043565b82815260059290921b8401810191818101908984111561324757600080fd5b948201945b8386101561326c5761325d86612d99565b8252948201949082019061324c565b9650508601359250508082111561318f57600080fd5b600181811c9082168061329657607f821691505b60208210810361153b57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826132f1576132f16132b6565b500490565b6020808252602f908201527f596f75722077686974656c69737420616d6f756e74206c657373207468616e2060408201526e1e5bdd481d1c9e481d1bc81b5a5b9d608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610edd57600081815260208120601f850160051c810160208610156133a15750805b601f850160051c820191505b818110156133c0578281556001016133ad565b505050505050565b815167ffffffffffffffff8111156133e2576133e2612e16565b6133f6816133f08454613282565b8461337a565b602080601f83116001811461342b57600084156134135750858301515b600019600386901b1c1916600185901b1785556133c0565b600085815260208120601f198616915b8281101561345a5788860151825594840194600190910190840161343b565b50858210156134785787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000821982111561349b5761349b6132cc565b500190565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f5468617420656e7469747920686173206e6f74206265656e206d616b652079656040820152601d60fa1b606082015260800190565b6000815461350481613282565b6001828116801561351c576001811461353157613560565b60ff1984168752821515830287019450613560565b8560005260208060002060005b858110156135575781548a82015290840190820161353e565b50505082870194505b5050505092915050565b600061358861358261357c84886134f7565b866134f7565b846134f7565b95945050505050565b6000600182016135a3576135a36132cc565b5060010190565b600083516135bc818460208801612d15565b8351908301906135d0818360208801612d15565b01949350505050565b6000828210156135eb576135eb6132cc565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061362390830184612d41565b9695505050505050565b60006020828403121561363f57600080fd5b815161177281612ce2565b600082613659576136596132b6565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f425d48ea9381dc25337c9407b7439a47bbe59598855f2c72e199e20c48319a664736f6c634300080f0033

Deployed Bytecode Sourcemap

62959:9636:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72413:179;;;;;;;;;;-1:-1:-1;72413:179:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;72413:179:0;;;;;;;;28386:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29558:158::-;;;;;;;;;;-1:-1:-1;29558:158:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29558:158:0;1528:203:1;29377:115:0;;;;;;;;;;-1:-1:-1;29377:115:0;;;;;:::i;:::-;;:::i;:::-;;65975:620;;;:::i;48954:104::-;;;;;;;;;;-1:-1:-1;49036:10:0;:17;48954:104;;;2319:25:1;;;2307:2;2292:18;48954:104:0;2173:177:1;63836:38:0;;;;;;;;;;-1:-1:-1;63836:38:0;;;;;;;;;;;70975:102;;;;;;;;;;-1:-1:-1;71053:19:0;;;;70975:102;;30227:588;;;;;;;;;;-1:-1:-1;30227:588:0;;;;;:::i;:::-;;:::i;48649:241::-;;;;;;;;;;-1:-1:-1;48649:241:0;;;;;:::i;:::-;;:::i;68552:108::-;;;;;;;;;;-1:-1:-1;68552:108:0;;;;;:::i;:::-;;:::i;71743:67::-;;;;;;;;;;;;;:::i;71192:120::-;;;;;;;;;;-1:-1:-1;71192:120:0;;;;;:::i;:::-;;:::i;30886:134::-;;;;;;;;;;-1:-1:-1;30886:134:0;;;;;:::i;:::-;;:::i;64985:239::-;;;;;;;;;;-1:-1:-1;64985:239:0;;;;;:::i;:::-;;:::i;67734:139::-;;;;;;;;;;-1:-1:-1;67734:139:0;;;;;:::i;:::-;;:::i;63878:27::-;;;;;;;;;;;;;;;;63213:67;;;;;;;;;;-1:-1:-1;63213:67:0;;;;-1:-1:-1;;;;;63213:67:0;;;49123:218;;;;;;;;;;-1:-1:-1;49123:218:0;;;;;:::i;:::-;;:::i;67881:147::-;;;;;;;;;;-1:-1:-1;67881:147:0;;;;;:::i;:::-;;:::i;11445:86::-;;;;;;;;;;-1:-1:-1;11516:7:0;;;;11445:86;;28199:120;;;;;;;;;;-1:-1:-1;28199:120:0;;;;;:::i;:::-;;:::i;71317:::-;;;;;;;;;;-1:-1:-1;71317:120:0;;;;;:::i;:::-;;:::i;69542:98::-;;;;;;;;;;-1:-1:-1;69614:21:0;69542:98;;70243:350;;;;;;;;;;-1:-1:-1;70243:350:0;;;;;:::i;:::-;;:::i;27924:213::-;;;;;;;;;;-1:-1:-1;27924:213:0;;;;;:::i;:::-;;:::i;13931:85::-;;;;;;;;;;;;;:::i;63183:26::-;;;;;;;;;;;;;;;;68153:394;;;;;;;;;;-1:-1:-1;68153:394:0;;;;;:::i;:::-;;:::i;68802:257::-;;;;;;;;;;-1:-1:-1;68802:257:0;;;;;:::i;:::-;;:::i;71551:63::-;;;;;;;;;;;;;:::i;69645:404::-;;;;;;;;;;-1:-1:-1;69645:404:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63795:37::-;;;;;;;;;;-1:-1:-1;63795:37:0;;;;;;;;63093:20;;;;;;;;;;;;;;;;13340:78;;;;;;;;;;-1:-1:-1;13407:6:0;;-1:-1:-1;;;;;13407:6:0;13340:78;;63151:28;;;;;;;;;;;;;;;;28546:95;;;;;;;;;;;;;:::i;29788:146::-;;;;;;;;;;-1:-1:-1;29788:146:0;;;;;:::i;:::-;;:::i;65229:166::-;;;;;;;;;;;;;:::i;69064:179::-;;;;;;;;;;;;;:::i;31091:211::-;;;;;;;;;;-1:-1:-1;31091:211:0;;;;;:::i;:::-;;:::i;63613:40::-;;;;;;;;;;;;;:::i;28712:260::-;;;;;;;;;;-1:-1:-1;28712:260:0;;;;;:::i;:::-;;:::i;70054:184::-;;;;;;;;;;-1:-1:-1;70054:184:0;;;;;:::i;:::-;;:::i;63117:30::-;;;;;;;;;;;;;;;;70598:268;;;;;;;;;;-1:-1:-1;70598:268:0;;;;;:::i;:::-;;:::i;65864:106::-;;;;;;;;;;-1:-1:-1;65950:10:0;65919:4;65940:21;;;:9;:21;;;;;;:25;;65864:106;;63657:47;;;;;;;;;;;;;:::i;67240:491::-;;;;;;;;;;-1:-1:-1;67240:491:0;;;;;:::i;:::-;;:::i;70871:99::-;;;;;;;;;;;;;:::i;30005:155::-;;;;;;;;;;-1:-1:-1;30005:155:0;;;;;:::i;:::-;;:::i;68665:129::-;;;;;;;;;;-1:-1:-1;68665:129:0;;;;;:::i;:::-;;:::i;65403:456::-;;;;;;;;;;-1:-1:-1;65403:456:0;;;;;:::i;:::-;;:::i;14156:177::-;;;;;;;;;;-1:-1:-1;14156:177:0;;;;;:::i;:::-;;:::i;68036:112::-;;;;;;;;;;-1:-1:-1;68036:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;68121:19:0;68097:4;68121:19;;;:10;:19;;;;;;;;;68036:112;72413:179;72524:4;72548:36;72572:11;72548:23;:36::i;:::-;72541:43;72413:179;-1:-1:-1;;72413:179:0:o;28386:91::-;28431:13;28464:5;28457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28386:91;:::o;29558:158::-;29625:7;29645:22;29659:7;29645:13;:22::i;:::-;-1:-1:-1;32134:7:0;32161:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32161:24:0;29687:21;32064:129;29377:115;29449:35;29458:2;29462:7;9587:10;29449:8;:35::i;:::-;29377:115;;:::o;65975:620::-;16112:1;16657:7;;:19;16649:63;;;;-1:-1:-1;;;16649:63:0;;10391:2:1;16649:63:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:33;10449:18;;;10442:61;10520:18;;16649:63:0;;;;;;;;;16112:1;16778:7;:18;64812:13:::1;::::0;64793:15:::1;:32;::::0;::::1;::::0;:66:::1;;;64848:11;;64829:15;:30;;64793:66;:89;;;;-1:-1:-1::0;64863:19:0::1;::::0;::::1;;64793:89;64789:178;;;64890:19;:26:::0;;-1:-1:-1;;64890:26:0::1;64912:4;64890:26;::::0;;64789:178:::1;;;64934:19;:27:::0;;-1:-1:-1;;64934:27:0::1;::::0;;64789:178:::1;11050:19:::2;:17;:19::i;:::-;66066:14:::3;66095:5;;66083:9;:17;;;;:::i;:::-;66066:34;;66131:1;66121:6;:11;;66113:52;;;::::0;-1:-1:-1;;;66113:52:0;;11140:2:1;66113:52:0::3;::::0;::::3;11122:21:1::0;11179:2;11159:18;;;11152:30;11218;11198:18;;;11191:58;11266:18;;66113:52:0::3;10938:352:1::0;66113:52:0::3;66198:10;66187:22;::::0;;;:10:::3;:22;::::0;;;;;::::3;;66186:23;66178:68;;;::::0;-1:-1:-1;;;66178:68:0;;11497:2:1;66178:68:0::3;::::0;::::3;11479:21:1::0;;;11516:18;;;11509:30;11575:34;11555:18;;;11548:62;11627:18;;66178:68:0::3;11295:356:1::0;66178:68:0::3;66261:18;::::0;::::3;::::0;::::3;;;66257:224;;;66314:10;66328:1;66304:21:::0;;;:9:::3;:21;::::0;;;;;66296:67:::3;;;::::0;-1:-1:-1;;;66296:67:0;;11858:2:1;66296:67:0::3;::::0;::::3;11840:21:1::0;11897:2;11877:18;;;11870:30;11936:31;11916:18;;;11909:59;11985:18;;66296:67:0::3;11656:353:1::0;66296:67:0::3;66396:10;66386:21;::::0;;;:9:::3;:21;::::0;;;;;:31;-1:-1:-1;66386:31:0::3;66378:91;;;;-1:-1:-1::0;;;66378:91:0::3;;;;;;;:::i;:::-;66501:19;::::0;::::3;;66493:57;;;::::0;-1:-1:-1;;;66493:57:0;;12632:2:1;66493:57:0::3;::::0;::::3;12614:21:1::0;12671:2;12651:18;;;12644:30;12710:27;12690:18;;;12683:55;12755:18;;66493:57:0::3;12430:349:1::0;66493:57:0::3;66557:33;66571:10;66583:6;66557:13;:33::i;:::-;-1:-1:-1::0;16071:1:0;16933:7;:22;65975:620::o;30227:588::-;-1:-1:-1;;;;;30322:16:0;;30318:89;;30362:33;;-1:-1:-1;;;30362:33:0;;30392:1;30362:33;;;1674:51:1;1647:18;;30362:33:0;1528:203:1;30318:89:0;30628:21;30652:34;30660:2;30664:7;9587:10;30652:7;:34::i;:::-;30628:58;;30718:4;-1:-1:-1;;;;;30701:21:0;:13;-1:-1:-1;;;;;30701:21:0;;30697:111;;30746:50;;-1:-1:-1;;;30746:50:0;;-1:-1:-1;;;;;13042:15:1;;;30746:50:0;;;13024:34:1;13074:18;;;13067:34;;;13137:15;;13117:18;;;13110:43;12959:18;;30746:50:0;12784:375:1;30697:111:0;30307:508;30227:588;;;:::o;48649:241::-;48746:7;48776:23;48793:5;48776:16;:23::i;:::-;48768:5;:31;48760:87;;;;-1:-1:-1;;;48760:87:0;;13366:2:1;48760:87:0;;;13348:21:1;13405:2;13385:18;;;13378:30;13444:34;13424:18;;;13417:62;-1:-1:-1;;;13495:18:1;;;13488:41;13546:19;;48760:87:0;13164:407:1;48760:87:0;-1:-1:-1;;;;;;48859:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48649:241::o;68552:108::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;68627:13:::1;:28;68643:12:::0;68627:13;:28:::1;:::i;71743:67::-:0;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;71792:10:::1;:8;:10::i;:::-;71743:67::o:0;71192:120::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;71275:14:::1;:32;71292:15:::0;71275:14;:32:::1;:::i;30886:134::-:0;30973:39;30990:4;30996:2;31000:7;30973:39;;;;;;;;;;;;:16;:39::i;:::-;30886:134;;;:::o;64985:239::-;65051:13;31919:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31919:16:0;65112:10;65103:19;;65095:63;;;;-1:-1:-1;;;65095:63:0;;16343:2:1;65095:63:0;;;16325:21:1;16382:2;16362:18;;;16355:30;16421:33;16401:18;;;16394:61;16472:18;;65095:63:0;16141:355:1;65095:63:0;65171:21;65184:7;65171:12;:21::i;:::-;65215:1;65199:12;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;64985:239:0:o;67734:139::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;67803:19:0;::::1;;::::0;;;:10:::1;:19;::::0;;;;;:26;;-1:-1:-1;;67803:26:0::1;67825:4;67803:26;::::0;;67845:20;::::1;::::0;67803:19;67845:20:::1;67734:139:::0;:::o;49123:218::-;49198:7;49228:30;49036:10;:17;;48954:104;49228:30;49220:5;:38;49212:95;;;;-1:-1:-1;;;49212:95:0;;16836:2:1;49212:95:0;;;16818:21:1;16875:2;16855:18;;;16848:30;16914:34;16894:18;;;16887:62;-1:-1:-1;;;16965:18:1;;;16958:42;17017:19;;49212:95:0;16634:408:1;49212:95:0;49319:10;49330:5;49319:17;;;;;;;;:::i;:::-;;;;;;;;;49312:24;;49123:218;;;:::o;67881:147::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;67955:19:0;::::1;67977:5;67955:19:::0;;;:10:::1;:19;::::0;;;;;:27;;-1:-1:-1;;67955:27:0::1;::::0;;67998:22;::::1;::::0;67977:5;67998:22:::1;67881:147:::0;:::o;28199:120::-;28262:7;28289:22;28303:7;28289:13;:22::i;71317:120::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;71400:14:::1;:32;71417:15:::0;71400:14;:32:::1;:::i;70243:350::-:0;70308:13;70346;49036:10;:17;;48954:104;70346:13;70336:7;:23;70328:69;;;;-1:-1:-1;;;70328:69:0;;;;;;;:::i;:::-;70451:15;;70433:33;;:15;:33;:::i;:::-;70410:20;70422:7;70410:11;:20::i;:::-;:56;70402:98;;;;-1:-1:-1;;;70402:98:0;;17783:2:1;70402:98:0;;;17765:21:1;17822:2;17802:18;;;17795:30;17861:31;17841:18;;;17834:59;17910:18;;70402:98:0;17581:353:1;70402:98:0;70536:14;70552:9;:18;70562:7;70552:18;;;;;;;;;;;70572:14;70519:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70505:83;;70243:350;;;:::o;27924:213::-;27987:7;-1:-1:-1;;;;;28011:19:0;;28007:89;;28054:30;;-1:-1:-1;;;28054:30:0;;28081:1;28054:30;;;1674:51:1;1647:18;;28054:30:0;1528:203:1;28007:89:0;-1:-1:-1;;;;;;28113:16:0;;;;;:9;:16;;;;;;;27924:213::o;13931:85::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;13990:21:::1;14008:1;13990:9;:21::i;68153:394::-:0;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;68306:15:::1;68286:17;:35;68267:119;;;::::0;-1:-1:-1;;;68267:119:0;;19230:2:1;68267:119:0::1;::::0;::::1;19212:21:1::0;19269:2;19249:18;;;19242:30;19308:34;19288:18;;;19281:62;-1:-1:-1;;;19359:18:1;;;19352:38;19407:19;;68267:119:0::1;19028:404:1::0;68267:119:0::1;68397:13;:33:::0;;;68441:11:::1;:29:::0;;;68486:53:::1;::::0;;19611:25:1;;;19667:2;19652:18;;19645:34;;;68486:53:0::1;::::0;19584:18:1;68486:53:0::1;;;;;;;68153:394:::0;;:::o;68802:257::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;68881:25:0;::::1;68873:67;;;::::0;-1:-1:-1;;;68873:67:0;;19892:2:1;68873:67:0::1;::::0;::::1;19874:21:1::0;19931:2;19911:18;;;19904:30;19970:31;19950:18;;;19943:59;20019:18;;68873:67:0::1;19690:353:1::0;68873:67:0::1;68974:7;::::0;-1:-1:-1;;;;;68974:7:0;;::::1;68959:22:::0;;::::1;::::0;68951:68:::1;;;::::0;-1:-1:-1;;;68951:68:0;;20250:2:1;68951:68:0::1;::::0;::::1;20232:21:1::0;20289:2;20269:18;;;20262:30;20328:34;20308:18;;;20301:62;-1:-1:-1;;;20379:18:1;;;20372:31;20420:19;;68951:68:0::1;20048:397:1::0;68951:68:0::1;69030:7;:21:::0;;-1:-1:-1;;;;;;69030:21:0::1;-1:-1:-1::0;;;;;69030:21:0;;;::::1;::::0;;;::::1;::::0;;68802:257::o;71551:63::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;71598:8:::1;:6;:8::i;69645:404::-:0;69705:28;69740:18;69761:15;69771:4;69761:9;:15::i;:::-;69740:36;;69785:10;69799:1;69785:15;69781:264;;69815:16;;;69829:1;69815:16;;;;;;;;;;;-1:-1:-1;69808:23:0;69645:404;-1:-1:-1;;;69645:404:0:o;69781:264::-;69849:23;69889:10;69875:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69875:25:0;;69849:51;;69911:13;69906:115;69938:10;69930:5;:18;69906:115;;;69982:32;70002:4;70008:5;69982:19;:32::i;:::-;69966:6;69973:5;69966:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;69950:7;;;;:::i;:::-;;;;69906:115;;69781:264;69735:314;69645:404;;;:::o;28546:95::-;28593:13;28626:7;28619:14;;;;;:::i;29788:146::-;29874:52;9587:10;29907:8;29917;29874:18;:52::i;65229:166::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;65311:18:::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;65310:19;65289:40:::0;::::1;-1:-1:-1::0;;65289:40:0;;::::1;::::0;;;::::1;::::0;;;;65345:42:::1;::::0;::::1;::::0;::::1;::::0;65368:18;::::1;::::0;;::::1;565:14:1::0;558:22;540:41;;528:2;513:18;;400:187;65345:42:0::1;;;;;;;;65229:166::o:0;69064:179::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;69108:23;;:50;;-1:-1:-1;69135:7:0;;-1:-1:-1;;;;;69135:7:0;9587:10;69135:23;69108:50;69100:86;;;;-1:-1:-1;;;69100:86:0;;20792:2:1;69100:86:0;;;20774:21:1;20831:2;20811:18;;;20804:30;20870:25;20850:18;;;20843:53;20913:18;;69100:86:0;20590:347:1;69100:86:0;69207:7;;69191:47;;-1:-1:-1;;;;;69207:7:0;69614:21;69191:7;:47::i;31091:211::-;31205:31;31218:4;31224:2;31228:7;31205:12;:31::i;:::-;31247:47;31270:4;31276:2;31280:7;31289:4;31247:22;:47::i;63613:40::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28712:260::-;28776:13;28802:22;28816:7;28802:13;:22::i;:::-;;28837:21;28861:10;:8;:10::i;:::-;28837:34;;28913:1;28895:7;28889:21;:25;:75;;;;;;;;;;;;;;;;;28931:7;28940:18;:7;:16;:18::i;:::-;28917:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28889:75;28882:82;28712:260;-1:-1:-1;;;28712:260:0:o;70054:184::-;70113:7;70145:13;49036:10;:17;;48954:104;70145:13;70135:7;:23;70127:69;;;;-1:-1:-1;;;70127:69:0;;;;;;;:::i;:::-;-1:-1:-1;70208:25:0;;;;:16;:25;;;;;;;70054:184::o;70598:268::-;13407:6;;70669:13;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;49036:10;:17;70697:7:::1;:23;70689:69;;;;-1:-1:-1::0;;;70689:69:0::1;;;;;;;:::i;:::-;70766:17;::::0;::::1;::::0;::::1;;;70763:99;;;70798:15;70791:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70598:268:::0;;;:::o;70763:99::-:1;70838:18;::::0;;;:9:::1;:18;::::0;;;;70831:25;;::::1;::::0;::::1;:::i;70763:99::-;70598:268:::0;;;:::o;63657:47::-;;;;;;;:::i;67240:491::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;67367:8:::1;:15;67347:9;:16;:35;67339:80;;;::::0;-1:-1:-1;;;67339:80:0;;21619:2:1;67339:80:0::1;::::0;::::1;21601:21:1::0;;;21638:18;;;21631:30;21697:34;21677:18;;;21670:62;21749:18;;67339:80:0::1;21417:356:1::0;67339:80:0::1;67427:17;::::0;::::1;::::0;::::1;;;67424:76;;;67470:9;67480:1;67470:12;;;;;;;;:::i;:::-;;;;;;;67452:15;:30;;;;;;:::i;67424:76::-;67509:9;67504:223;67528:8;:15;67524:1;:19;67504:223;;;67556:21;67586:9;:22;67596:8;67605:1;67596:11;;;;;;;;:::i;:::-;;;;;;;67586:22;;;;;;;;;;;67556:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67623:8;:15;67642:1;67623:20;67615:63;;;::::0;-1:-1:-1;;;67615:63:0;;21980:2:1;67615:63:0::1;::::0;::::1;21962:21:1::0;22019:2;21999:18;;;21992:30;22058:32;22038:18;;;22031:60;22108:18;;67615:63:0::1;21778:354:1::0;67615:63:0::1;67709:9;67719:1;67709:12;;;;;;;;:::i;:::-;;;;;;;67684:9;:22;67694:8;67703:1;67694:11;;;;;;;;:::i;:::-;;;;;;;67684:22;;;;;;;;;;;:37;;;;;;:::i;:::-;;67550:177;67545:3;;;;;:::i;:::-;;;;67504:223;;70871:99:::0;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;70946:19:::1;::::0;;-1:-1:-1;;70923:42:0;::::1;70946:19;::::0;;::::1;70945:20;70923:42;::::0;;70871:99::o;30005:155::-;-1:-1:-1;;;;;30117:25:0;;;30093:4;30117:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30005:155::o;68665:129::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;68752:5:::1;::::0;68731:37:::1;::::0;;22395:2:1;22377:21;;;22434:1;22414:18;;;22407:29;-1:-1:-1;;;22467:3:1;22452:19;;22445:36;22548:4;22533:20;;22526:36;;;;22578:18;;22571:34;;;68731:37:0::1;::::0;22513:3:1;22498:19;68731:37:0::1;;;;;;;68773:5;:16:::0;68665:129::o;65403:456::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;65540:8:::1;:15;65519:10;:17;:36;65511:97;;;::::0;-1:-1:-1;;;65511:97:0;;22818:2:1;65511:97:0::1;::::0;::::1;22800:21:1::0;22857:2;22837:18;;;22830:30;22896:34;22876:18;;;22869:62;-1:-1:-1;;;22947:18:1;;;22940:46;23003:19;;65511:97:0::1;22616:412:1::0;65511:97:0::1;65624:6;65619:233;65640:10;:17;65636:1;:21;65619:233;;;65703:1;-1:-1:-1::0;;;;;65678:27:0::1;:10;65689:1;65678:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65678:27:0::1;::::0;65670:78:::1;;;::::0;-1:-1:-1;;;65670:78:0;;23235:2:1;65670:78:0::1;::::0;::::1;23217:21:1::0;23274:2;23254:18;;;23247:30;23313:34;23293:18;;;23286:62;-1:-1:-1;;;23364:18:1;;;23357:36;23410:19;;65670:78:0::1;23033:402:1::0;65670:78:0::1;65790:8;65799:1;65790:11;;;;;;;;:::i;:::-;;;;;;;65763:9;:24;65773:10;65784:1;65773:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65763:24:0::1;-1:-1:-1::0;;;;;65763:24:0::1;;;;;;;;;;;;:38;;;;65835:5;65807:10;:25;65818:10;65829:1;65818:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;65807:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;65807:25:0;:33;;-1:-1:-1;;65807:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65659:3;::::1;::::0;::::1;:::i;:::-;;;;65619:233;;14156:177:::0;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14239:22:0;::::1;14231:73;;;::::0;-1:-1:-1;;;14231:73:0;;23642:2:1;14231:73:0::1;::::0;::::1;23624:21:1::0;23681:2;23661:18;;;23654:30;23720:34;23700:18;;;23693:62;-1:-1:-1;;;23771:18:1;;;23764:36;23817:19;;14231:73:0::1;23440:402:1::0;14231:73:0::1;14309:19;14319:8;14309:9;:19::i;:::-;14156:177:::0;:::o;48362:215::-;48464:4;-1:-1:-1;;;;;;48482:50:0;;-1:-1:-1;;;48482:50:0;;:90;;;48536:36;48560:11;48536:23;:36::i;42748:247::-;42811:7;31919:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31919:16:0;;42875:90;;42922:31;;-1:-1:-1;;;42922:31:0;;;;;2319:25:1;;;2292:18;;42922:31:0;2173:177:1;40980:122:0;41061:33;41070:2;41074:7;41083:4;41089;41061:8;:33::i;11604:132::-;11516:7;;;;11666:63;;;11702:15;;-1:-1:-1;;;11702:15:0;;;;;;;;;;;66600:635;-1:-1:-1;;;;;66682:17:0;;;;;;:10;:17;;;;;;;;66681:18;66673:63;;;;-1:-1:-1;;;66673:63:0;;11497:2:1;66673:63:0;;;11479:21:1;;;11516:18;;;11509:30;11575:34;11555:18;;;11548:62;11627:18;;66673:63:0;11295:356:1;66673:63:0;66751:18;;;;;;;66747:224;;;66804:10;66818:1;66794:21;;;:9;:21;;;;;;66786:67;;;;-1:-1:-1;;;66786:67:0;;11858:2:1;66786:67:0;;;11840:21:1;11897:2;11877:18;;;11870:30;11936:31;11916:18;;;11909:59;11985:18;;66786:67:0;11656:353:1;66786:67:0;66886:10;66876:21;;;;:9;:21;;;;;;:31;-1:-1:-1;66876:31:0;66868:91;;;;-1:-1:-1;;;66868:91:0;;;;;;;:::i;:::-;66987:18;;;;;;;66983:67;;;67023:10;67013:21;;;;:9;:21;;;;;:31;;67038:6;;67013:21;:31;;67038:6;;67013:31;:::i;:::-;;;;-1:-1:-1;;66983:67:0;67061:9;67056:175;67080:6;67076:1;:10;67056:175;;;67099:15;67133:12;;67117:13;49036:10;:17;;48954:104;67117:13;:28;;;;:::i;:::-;67151:25;;;;:16;:25;;;;;67179:15;67151:43;;67099:46;-1:-1:-1;67200:25:0;67210:5;67099:46;67200:9;:25::i;:::-;-1:-1:-1;67088:3:0;;;;:::i;:::-;;;;67056:175;;72176:229;72338:7;72365:32;72379:2;72383:7;72392:4;72365:13;:32::i;:::-;72358:39;72176:229;-1:-1:-1;;;;72176:229:0:o;12346:120::-;11309:16;:14;:16::i;:::-;12405:7:::1;:15:::0;;-1:-1:-1;;12405:15:0::1;::::0;;12436:22:::1;9587:10:::0;12445:12:::1;12436:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;12436:22:0::1;1528:203:1::0;37793:341:0;37845:13;37861:23;37876:7;37861:14;:23::i;:::-;37845:39;;37895:48;37916:5;37931:1;37935:7;37895:20;:48::i;:::-;37954:21;37978:40;37994:1;37998:7;38015:1;37978:7;:40::i;:::-;37954:64;-1:-1:-1;;;;;;38033:27:0;;38029:98;;38084:31;;-1:-1:-1;;;38084:31:0;;;;;2319:25:1;;;2292:18;;38084:31:0;2173:177:1;14338:152:0;14407:6;;;-1:-1:-1;;;;;14418:17:0;;;-1:-1:-1;;;;;;14418:17:0;;;;;;;14445:40;;14407:6;;;14418:17;14407:6;;14445:40;;14388:16;;14445:40;14383:107;14338:152;:::o;12087:118::-;11050:19;:17;:19::i;:::-;12147:7:::1;:14:::0;;-1:-1:-1;;12147:14:0::1;12157:4;12147:14;::::0;;12177:20:::1;12184:12;9587:10:::0;;9513:89;42187:318;-1:-1:-1;;;;;42295:22:0;;42291:93;;42341:31;;-1:-1:-1;;;42341:31:0;;-1:-1:-1;;;;;1692:32:1;;42341:31:0;;;1674:51:1;1647:18;;42341:31:0;1528:203:1;42291:93:0;-1:-1:-1;;;;;42394:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42394:46:0;;;;;;;;;;42456:41;;540::1;;;42456::0;;513:18:1;42456:41:0;;;;;;;42187:318;;;:::o;69248:289::-;16112:1;16657:7;;:19;16649:63;;;;-1:-1:-1;;;16649:63:0;;10391:2:1;16649:63:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:33;10449:18;;;10442:61;10520:18;;16649:63:0;10189:355:1;16649:63:0;16112:1;16778:7;:18;69614:21;69381:16;;::::1;:35;;69410:6;69381:35;;;69400:7;69381:35;69372:44;;69422:9;69437:2;-1:-1:-1::0;;;;;69437:7:0::1;69452:6;69437:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69421:42;;;69476:4;69468:35;;;::::0;-1:-1:-1;;;69468:35:0;;24389:2:1;69468:35:0::1;::::0;::::1;24371:21:1::0;24428:2;24408:18;;;24401:30;-1:-1:-1;;;24447:18:1;;;24440:48;24505:18;;69468:35:0::1;24187:342:1::0;69468:35:0::1;69521:2;-1:-1:-1::0;;;;;69513:19:0::1;;69525:6;69513:19;;;;2319:25:1::0;;2307:2;2292:18;;2173:177;69513:19:0::1;;;;;;;;-1:-1:-1::0;;16071:1:0;16933:7;:22;-1:-1:-1;;69248:289:0:o;43545:799::-;-1:-1:-1;;;;;43662:14:0;;;:18;43658:679;;43701:71;;-1:-1:-1;;;43701:71:0;;-1:-1:-1;;;;;43701:36:0;;;;;:71;;9587:10;;43752:4;;43758:7;;43767:4;;43701:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43701:71:0;;;;;;;;-1:-1:-1;;43701:71:0;;;;;;;;;;;;:::i;:::-;;;43697:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44015:6;:13;44032:1;44015:18;44011:300;;44065:25;;-1:-1:-1;;;44065:25:0;;-1:-1:-1;;;;;1692:32:1;;44065:25:0;;;1674:51:1;1647:18;;44065:25:0;1528:203:1;44011:300:0;44261:6;44255:13;44246:6;44242:2;44238:15;44231:38;43697:629;-1:-1:-1;;;;;;43820:51:0;;-1:-1:-1;;;43820:51:0;43816:132;;43903:25;;-1:-1:-1;;;43903:25:0;;-1:-1:-1;;;;;1692:32:1;;43903:25:0;;;1674:51:1;1647:18;;43903:25:0;1528:203:1;43816:132:0;43773:190;43545:799;;;;:::o;71082:105::-;71142:13;71169;71162:20;;;;;:::i;7505:594::-;7561:13;7764:5;7773:1;7764:10;7760:38;;-1:-1:-1;;7782:10:0;;;;;;;;;;;;-1:-1:-1;;;7782:10:0;;;;;7505:594::o;7760:38::-;7817:5;7802:12;7846:54;7853:9;;7846:54;;7870:8;;;;:::i;:::-;;-1:-1:-1;7884:10:0;;-1:-1:-1;7892:2:0;7884:10;;:::i;:::-;;;7846:54;;;7904:19;7936:6;7926:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7926:17:0;;7904:39;;7948:121;7955:10;;7948:121;;7973:11;7983:1;7973:11;;:::i;:::-;;-1:-1:-1;8033:10:0;8041:2;8033:5;:10;:::i;:::-;8020:24;;:2;:24;:::i;:::-;8007:39;;7990:6;7997;7990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7990:56:0;;;;;;;;-1:-1:-1;8052:11:0;8061:2;8052:11;;:::i;:::-;;;7948:121;;27555:305;27657:4;-1:-1:-1;;;;;;27694:40:0;;-1:-1:-1;;;27694:40:0;;:105;;-1:-1:-1;;;;;;;27751:48:0;;-1:-1:-1;;;27751:48:0;27694:105;:158;;;-1:-1:-1;;;;;;;;;;24185:40:0;;;27816:36;24082:148;41290:678;41452:9;:31;;;-1:-1:-1;;;;;;41465:18:0;;;;41452:31;41448:471;;;41500:13;41516:22;41530:7;41516:13;:22::i;:::-;41500:38;-1:-1:-1;;;;;;41669:18:0;;;;;;:35;;;41700:4;-1:-1:-1;;;;;41691:13:0;:5;-1:-1:-1;;;;;41691:13:0;;;41669:35;:69;;;;;41709:29;41726:5;41733:4;41709:16;:29::i;:::-;41708:30;41669:69;41665:144;;;41766:27;;-1:-1:-1;;;41766:27:0;;-1:-1:-1;;;;;1692:32:1;;41766:27:0;;;1674:51:1;1647:18;;41766:27:0;1528:203:1;41665:144:0;41829:9;41825:83;;;41884:7;41880:2;-1:-1:-1;;;;;41864:28:0;41873:5;-1:-1:-1;;;;;41864:28:0;;;;;;;;;;;41825:83;41485:434;41448:471;-1:-1:-1;;41931:24:0;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41931:29:0;-1:-1:-1;;;;;41931:29:0;;;;;;;;;;41290:678::o;36940:102::-;37008:26;37018:2;37022:7;37008:26;;;;;;;;;;;;:9;:26::i;47369:210::-;47512:7;11050:19;:17;:19::i;:::-;47539:32:::1;47553:2;47557:7;47566:4;47539:13;:32::i;11813:130::-:0;11516:7;;;;11872:64;;11909:15;;-1:-1:-1;;;11909:15:0;;;;;;;;;;;71813:355;11050:19;:17;:19::i;:::-;72017:45:::1;72044:4;72050:2;72054:7;72017:26;:45::i;:::-;-1:-1:-1::0;;;;;72082:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;72081:17;:36:::0;::::1;;;-1:-1:-1::0;;;;;;72103:14:0;::::1;;::::0;;;:10:::1;:14;::::0;;;;;::::1;;72102:15;72081:36;72073:87;;;::::0;-1:-1:-1;;;72073:87:0;;25601:2:1;72073:87:0::1;::::0;::::1;25583:21:1::0;25640:2;25620:18;;;25613:30;25679:34;25659:18;;;25652:62;-1:-1:-1;;;25730:18:1;;;25723:36;25776:19;;72073:87:0::1;25399:402:1::0;37269:185:0;37364:18;37370:2;37374:7;37364:5;:18::i;:::-;37393:53;37424:1;37428:2;37432:7;37441:4;37393:22;:53::i;35026:824::-;35112:7;31919:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31919:16:0;;;;35227:18;;;35223:88;;35262:37;35279:4;35285;35291:7;35262:16;:37::i;:::-;-1:-1:-1;;;;;35358:18:0;;;35354:263;;35476:48;35493:1;35497:7;35514:1;35518:5;35476:8;:48::i;:::-;-1:-1:-1;;;;;35570:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;35570:20:0;;;35354:263;-1:-1:-1;;;;;35633:16:0;;;35629:111;;-1:-1:-1;;;;;35695:13:0;;;;;;:9;:13;;;;;:18;;35712:1;35695:18;;;35629:111;35752:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35752:21:0;-1:-1:-1;;;;;35752:21:0;;;;;;;;;35791:27;;35752:16;;35791:27;;;;;;;35838:4;35026:824;-1:-1:-1;;;;35026:824:0:o;49906:487::-;-1:-1:-1;;;;;50079:18:0;;50075:157;;50105:40;50137:7;51160:10;:17;;51133:24;;;;:15;:24;;;;;:44;;;51182:24;;;;;;;;;;;;51062:149;50105:40;50075:157;;;50169:2;-1:-1:-1;;;;;50161:10:0;:4;-1:-1:-1;;;;;50161:10:0;;50157:75;;50179:47;50212:4;50218:7;50179:32;:47::i;:::-;-1:-1:-1;;;;;50240:16:0;;50236:153;;50264:45;50301:7;50264:36;:45::i;50236:153::-;50331:4;-1:-1:-1;;;;;50325:10:0;:2;-1:-1:-1;;;;;50325:10:0;;50321:68;;50343:40;50371:2;50375:7;50343:27;:40::i;36186:391::-;-1:-1:-1;;;;;36254:16:0;;36250:89;;36294:33;;-1:-1:-1;;;36294:33:0;;36324:1;36294:33;;;1674:51:1;1647:18;;36294:33:0;1528:203:1;36250:89:0;36349:45;36378:1;36382:2;36386:7;36349:20;:45::i;:::-;36405:21;36429:32;36437:2;36441:7;36458:1;36429:7;:32::i;:::-;36405:56;-1:-1:-1;;;;;;36476:27:0;;;36472:98;;36527:31;;-1:-1:-1;;;36527:31:0;;36555:1;36527:31;;;1674:51:1;1647:18;;36527:31:0;1528:203:1;33233:376:0;33346:38;33360:5;33367:7;33376;33346:13;:38::i;:::-;33341:261;;-1:-1:-1;;;;;33405:19:0;;33401:190;;33452:31;;-1:-1:-1;;;33452:31:0;;;;;2319:25:1;;;2292:18;;33452:31:0;2173:177:1;33401:190:0;33531:44;;-1:-1:-1;;;33531:44:0;;-1:-1:-1;;;;;25998:32:1;;33531:44:0;;;25980:51:1;26047:18;;;26040:34;;;25953:18;;33531:44:0;25806:274:1;51811:898:0;52059:22;52109:1;52084:22;52101:4;52084:16;:22::i;:::-;:26;;;;:::i;:::-;52115:18;52136:26;;;:17;:26;;;;;;52059:51;;-1:-1:-1;52257:28:0;;;52253:295;;-1:-1:-1;;;;;52315:18:0;;52293:19;52315:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52357:30;;;;;;:44;;;52465:30;;:17;:30;;;;;:43;;;52253:295;-1:-1:-1;52632:26:0;;;;:17;:26;;;;;;;;52625:33;;;-1:-1:-1;;;;;52670:18:0;;;;;:12;:18;;;;;:34;;;;;;;52663:41;51811:898::o;52986:998::-;53246:10;:17;53221:22;;53246:21;;53266:1;;53246:21;:::i;:::-;53272:18;53293:24;;;:15;:24;;;;;;53642:10;:26;;53221:46;;-1:-1:-1;53293:24:0;;53221:46;;53642:26;;;;;;:::i;:::-;;;;;;;;;53620:48;;53700:11;53675:10;53686;53675:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53774:28;;;:15;:28;;;;;;;:41;;;53934:24;;;;;53927:31;53963:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53057:927;;;52986:998;:::o;50676:200::-;50755:14;50772:20;50789:2;50772:16;:20::i;:::-;-1:-1:-1;;;;;50797:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50836:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50676:200:0:o;32513:276::-;32616:4;-1:-1:-1;;;;;32653:21:0;;;;;;:128;;;32701:7;-1:-1:-1;;;;;32692:16:0;:5;-1:-1:-1;;;;;32692:16:0;;:52;;;;32712:32;32729:5;32736:7;32712:16;:32::i;:::-;32692:88;;;-1:-1:-1;;32134:7:0;32161:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32161:24:0;;;32748:32;;;;;-1:-1:-1;32513:276:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;2991:18;2976:34;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:407::-;3165:5;3199:18;3191:6;3188:30;3185:56;;;3221:18;;:::i;:::-;3259:57;3304:2;3283:15;;-1:-1:-1;;3279:29:1;3310:4;3275:40;3259:57;:::i;:::-;3250:66;;3339:6;3332:5;3325:21;3379:3;3370:6;3365:3;3361:16;3358:25;3355:45;;;3396:1;3393;3386:12;3355:45;3445:6;3440:3;3433:4;3426:5;3422:16;3409:43;3499:1;3492:4;3483:6;3476:5;3472:18;3468:29;3461:40;3100:407;;;;;:::o;3512:222::-;3555:5;3608:3;3601:4;3593:6;3589:17;3585:27;3575:55;;3626:1;3623;3616:12;3575:55;3648:80;3724:3;3715:6;3702:20;3695:4;3687:6;3683:17;3648:80;:::i;3739:322::-;3808:6;3861:2;3849:9;3840:7;3836:23;3832:32;3829:52;;;3877:1;3874;3867:12;3829:52;3917:9;3904:23;3950:18;3942:6;3939:30;3936:50;;;3982:1;3979;3972:12;3936:50;4005;4047:7;4038:6;4027:9;4023:22;4005:50;:::i;4066:186::-;4125:6;4178:2;4166:9;4157:7;4153:23;4149:32;4146:52;;;4194:1;4191;4184:12;4146:52;4217:29;4236:9;4217:29;:::i;4257:248::-;4325:6;4333;4386:2;4374:9;4365:7;4361:23;4357:32;4354:52;;;4402:1;4399;4392:12;4354:52;-1:-1:-1;;4425:23:1;;;4495:2;4480:18;;;4467:32;;-1:-1:-1;4257:248:1:o;4510:632::-;4681:2;4733:21;;;4803:13;;4706:18;;;4825:22;;;4652:4;;4681:2;4904:15;;;;4878:2;4863:18;;;4652:4;4947:169;4961:6;4958:1;4955:13;4947:169;;;5022:13;;5010:26;;5091:15;;;;5056:12;;;;4983:1;4976:9;4947:169;;;-1:-1:-1;5133:3:1;;4510:632;-1:-1:-1;;;;;;4510:632:1:o;5147:347::-;5212:6;5220;5273:2;5261:9;5252:7;5248:23;5244:32;5241:52;;;5289:1;5286;5279:12;5241:52;5312:29;5331:9;5312:29;:::i;:::-;5302:39;;5391:2;5380:9;5376:18;5363:32;5438:5;5431:13;5424:21;5417:5;5414:32;5404:60;;5460:1;5457;5450:12;5404:60;5483:5;5473:15;;;5147:347;;;;;:::o;5499:667::-;5594:6;5602;5610;5618;5671:3;5659:9;5650:7;5646:23;5642:33;5639:53;;;5688:1;5685;5678:12;5639:53;5711:29;5730:9;5711:29;:::i;:::-;5701:39;;5759:38;5793:2;5782:9;5778:18;5759:38;:::i;:::-;5749:48;;5844:2;5833:9;5829:18;5816:32;5806:42;;5899:2;5888:9;5884:18;5871:32;5926:18;5918:6;5915:30;5912:50;;;5958:1;5955;5948:12;5912:50;5981:22;;6034:4;6026:13;;6022:27;-1:-1:-1;6012:55:1;;6063:1;6060;6053:12;6012:55;6086:74;6152:7;6147:2;6134:16;6129:2;6125;6121:11;6086:74;:::i;:::-;6076:84;;;5499:667;;;;;;;:::o;6171:182::-;6230:4;6263:18;6255:6;6252:30;6249:56;;;6285:18;;:::i;:::-;-1:-1:-1;6330:1:1;6326:14;6342:4;6322:25;;6171:182::o;6358:661::-;6412:5;6465:3;6458:4;6450:6;6446:17;6442:27;6432:55;;6483:1;6480;6473:12;6432:55;6519:6;6506:20;6545:4;6569:59;6585:42;6624:2;6585:42;:::i;:::-;6569:59;:::i;:::-;6662:15;;;6748:1;6744:10;;;;6732:23;;6728:32;;;6693:12;;;;6772:15;;;6769:35;;;6800:1;6797;6790:12;6769:35;6836:2;6828:6;6824:15;6848:142;6864:6;6859:3;6856:15;6848:142;;;6930:17;;6918:30;;6968:12;;;;6881;;6848:142;;;-1:-1:-1;7008:5:1;6358:661;-1:-1:-1;;;;;;6358:661:1:o;7024:1360::-;7152:6;7160;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7269:9;7256:23;7298:18;7339:2;7331:6;7328:14;7325:34;;;7355:1;7352;7345:12;7325:34;7393:6;7382:9;7378:22;7368:32;;7438:7;7431:4;7427:2;7423:13;7419:27;7409:55;;7460:1;7457;7450:12;7409:55;7496:2;7483:16;7518:4;7542:59;7558:42;7597:2;7558:42;:::i;7542:59::-;7635:15;;;7717:1;7713:10;;;;7705:19;;7701:28;;;7666:12;;;;7741:19;;;7738:39;;;7773:1;7770;7763:12;7738:39;7805:2;7801;7797:11;7817:353;7833:6;7828:3;7825:15;7817:353;;;7919:3;7906:17;7955:2;7942:11;7939:19;7936:109;;;7999:1;8028:2;8024;8017:14;7936:109;8070:57;8119:7;8114:2;8100:11;8096:2;8092:20;8088:29;8070:57;:::i;:::-;8058:70;;-1:-1:-1;8148:12:1;;;;7850;;7817:353;;;-1:-1:-1;8189:5:1;-1:-1:-1;;8232:18:1;;8219:32;;-1:-1:-1;;8263:16:1;;;8260:36;;;8292:1;8289;8282:12;8260:36;;8315:63;8370:7;8359:8;8348:9;8344:24;8315:63;:::i;:::-;8305:73;;;7024:1360;;;;;:::o;8389:260::-;8457:6;8465;8518:2;8506:9;8497:7;8493:23;8489:32;8486:52;;;8534:1;8531;8524:12;8486:52;8557:29;8576:9;8557:29;:::i;:::-;8547:39;;8605:38;8639:2;8628:9;8624:18;8605:38;:::i;:::-;8595:48;;8389:260;;;;;:::o;8654:1145::-;8772:6;8780;8833:2;8821:9;8812:7;8808:23;8804:32;8801:52;;;8849:1;8846;8839:12;8801:52;8889:9;8876:23;8918:18;8959:2;8951:6;8948:14;8945:34;;;8975:1;8972;8965:12;8945:34;9013:6;9002:9;8998:22;8988:32;;9058:7;9051:4;9047:2;9043:13;9039:27;9029:55;;9080:1;9077;9070:12;9029:55;9116:2;9103:16;9138:4;9162:59;9178:42;9217:2;9178:42;:::i;9162:59::-;9255:15;;;9337:1;9333:10;;;;9325:19;;9321:28;;;9286:12;;;;9361:19;;;9358:39;;;9393:1;9390;9383:12;9358:39;9417:11;;;;9437:148;9453:6;9448:3;9445:15;9437:148;;;9519:23;9538:3;9519:23;:::i;:::-;9507:36;;9470:12;;;;9563;;;;9437:148;;;9604:5;-1:-1:-1;;9647:18:1;;9634:32;;-1:-1:-1;;9678:16:1;;;9675:36;;;9707:1;9704;9697:12;9804:380;9883:1;9879:12;;;;9926;;;9947:61;;10001:4;9993:6;9989:17;9979:27;;9947:61;10054:2;10046:6;10043:14;10023:18;10020:38;10017:161;;10100:10;10095:3;10091:20;10088:1;10081:31;10135:4;10132:1;10125:15;10163:4;10160:1;10153:15;10549:127;10610:10;10605:3;10601:20;10598:1;10591:31;10641:4;10638:1;10631:15;10665:4;10662:1;10655:15;10681:127;10742:10;10737:3;10733:20;10730:1;10723:31;10773:4;10770:1;10763:15;10797:4;10794:1;10787:15;10813:120;10853:1;10879;10869:35;;10884:18;;:::i;:::-;-1:-1:-1;10918:9:1;;10813:120::o;12014:411::-;12216:2;12198:21;;;12255:2;12235:18;;;12228:30;12294:34;12289:2;12274:18;;12267:62;-1:-1:-1;;;12360:2:1;12345:18;;12338:45;12415:3;12400:19;;12014:411::o;13576:356::-;13778:2;13760:21;;;13797:18;;;13790:30;13856:34;13851:2;13836:18;;13829:62;13923:2;13908:18;;13576:356::o;14063:545::-;14165:2;14160:3;14157:11;14154:448;;;14201:1;14226:5;14222:2;14215:17;14271:4;14267:2;14257:19;14341:2;14329:10;14325:19;14322:1;14318:27;14312:4;14308:38;14377:4;14365:10;14362:20;14359:47;;;-1:-1:-1;14400:4:1;14359:47;14455:2;14450:3;14446:12;14443:1;14439:20;14433:4;14429:31;14419:41;;14510:82;14528:2;14521:5;14518:13;14510:82;;;14573:17;;;14554:1;14543:13;14510:82;;;14514:3;;;14063:545;;;:::o;14784:1352::-;14910:3;14904:10;14937:18;14929:6;14926:30;14923:56;;;14959:18;;:::i;:::-;14988:97;15078:6;15038:38;15070:4;15064:11;15038:38;:::i;:::-;15032:4;14988:97;:::i;:::-;15140:4;;15204:2;15193:14;;15221:1;15216:663;;;;15923:1;15940:6;15937:89;;;-1:-1:-1;15992:19:1;;;15986:26;15937:89;-1:-1:-1;;14741:1:1;14737:11;;;14733:24;14729:29;14719:40;14765:1;14761:11;;;14716:57;16039:81;;15186:944;;15216:663;14010:1;14003:14;;;14047:4;14034:18;;-1:-1:-1;;15252:20:1;;;15370:236;15384:7;15381:1;15378:14;15370:236;;;15473:19;;;15467:26;15452:42;;15565:27;;;;15533:1;15521:14;;;;15400:19;;15370:236;;;15374:3;15634:6;15625:7;15622:19;15619:201;;;15695:19;;;15689:26;-1:-1:-1;;15778:1:1;15774:14;;;15790:3;15770:24;15766:37;15762:42;15747:58;15732:74;;15619:201;-1:-1:-1;;;;;15866:1:1;15850:14;;;15846:22;15833:36;;-1:-1:-1;14784:1352:1:o;16501:128::-;16541:3;16572:1;16568:6;16565:1;16562:13;16559:39;;;16578:18;;:::i;:::-;-1:-1:-1;16614:9:1;;16501:128::o;17047:127::-;17108:10;17103:3;17099:20;17096:1;17089:31;17139:4;17136:1;17129:15;17163:4;17160:1;17153:15;17179:397;17381:2;17363:21;;;17420:2;17400:18;;;17393:30;17459:34;17454:2;17439:18;;17432:62;-1:-1:-1;;;17525:2:1;17510:18;;17503:31;17566:3;17551:19;;17179:397::o;17939:722::-;17989:3;18030:5;18024:12;18059:36;18085:9;18059:36;:::i;:::-;18114:1;18131:18;;;18158:133;;;;18305:1;18300:355;;;;18124:531;;18158:133;-1:-1:-1;;18191:24:1;;18179:37;;18264:14;;18257:22;18245:35;;18236:45;;;-1:-1:-1;18158:133:1;;18300:355;18331:5;18328:1;18321:16;18360:4;18405:2;18402:1;18392:16;18430:1;18444:165;18458:6;18455:1;18452:13;18444:165;;;18536:14;;18523:11;;;18516:35;18579:16;;;;18473:10;;18444:165;;;18448:3;;;18638:6;18633:3;18629:16;18622:23;;18124:531;;;;;17939:722;;;;:::o;18666:357::-;18884:3;18909:108;18943:73;18977:38;19011:3;19003:6;18977:38;:::i;:::-;18969:6;18943:73;:::i;:::-;18935:6;18909:108;:::i;:::-;18902:115;18666:357;-1:-1:-1;;;;;18666:357:1:o;20450:135::-;20489:3;20510:17;;;20507:43;;20530:18;;:::i;:::-;-1:-1:-1;20577:1:1;20566:13;;20450:135::o;20942:470::-;21121:3;21159:6;21153:13;21175:53;21221:6;21216:3;21209:4;21201:6;21197:17;21175:53;:::i;:::-;21291:13;;21250:16;;;;21313:57;21291:13;21250:16;21347:4;21335:17;;21313:57;:::i;:::-;21386:20;;20942:470;-1:-1:-1;;;;20942:470:1:o;23847:125::-;23887:4;23915:1;23912;23909:8;23906:34;;;23920:18;;:::i;:::-;-1:-1:-1;23957:9:1;;23847:125::o;24534:489::-;-1:-1:-1;;;;;24803:15:1;;;24785:34;;24855:15;;24850:2;24835:18;;24828:43;24902:2;24887:18;;24880:34;;;24950:3;24945:2;24930:18;;24923:31;;;24728:4;;24971:46;;24997:19;;24989:6;24971:46;:::i;:::-;24963:54;24534:489;-1:-1:-1;;;;;;24534:489:1:o;25028:249::-;25097:6;25150:2;25138:9;25129:7;25125:23;25121:32;25118:52;;;25166:1;25163;25156:12;25118:52;25198:9;25192:16;25217:30;25241:5;25217:30;:::i;25282:112::-;25314:1;25340;25330:35;;25345:18;;:::i;:::-;-1:-1:-1;25379:9:1;;25282:112::o;26085:127::-;26146:10;26141:3;26137:20;26134:1;26127:31;26177:4;26174:1;26167:15;26201:4;26198:1;26191:15

Swarm Source

ipfs://f425d48ea9381dc25337c9407b7439a47bbe59598855f2c72e199e20c48319a6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.