Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
314 MVRSWOOD
Holders
121
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MVRSWOODLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MVRSWood
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-10 */ // SPDX-License-Identifier: MIT /* ______ ______ ______ ______ __ __ ______ /\ == \ /\ ___\ /\ ___\ /\ __ \ /\ "-./ \ /\ ___\ \ \ __< \ \ __\ \ \ \____ \ \ \/\ \ \ \ \-./\ \ \ \ __\ \ \_____\ \ \_____\ \ \_____\ \ \_____\ \ \_\ \ \_\ \ \_____\ \/_____/ \/_____/ \/_____/ \/_____/ \/_/ \/_/ \/_____/ __ __ ______ ______ ______ __ __ ______ ______ ______ ______ /\ "-./ \ /\ ___\ /\__ _\ /\ __ \ /\ \ / / /\ ___\ /\ == \ /\ ___\ /\ ___\ \ \ \-./\ \ \ \ __\ \/_/\ \/ \ \ __ \ \ \ \'/ \ \ __\ \ \ __< \ \___ \ \ \ __\ \ \_\ \ \_\ \ \_____\ \ \_\ \ \_\ \_\ \ \__| \ \_____\ \ \_\ \_\ \/\_____\ \ \_____\ \/_/ \/_/ \/_____/ \/_/ \/_/\/_/ \/_/ \/_____/ \/_/ /_/ \/_____/ \/_____/ ______ ______ __ __ ______ __ ______ __ __ /\ == \ /\ __ \ /\ \_\ \ /\ __ \ /\ \ /\__ _\ /\ \_\ \ \ \ __< \ \ \/\ \ \ \____ \ \ \ __ \ \ \ \____ \/_/\ \/ \ \____ \ \ \_\ \_\ \ \_____\ \/\_____\ \ \_\ \_\ \ \_____\ \ \_\ \/\_____\ \/_/ /_/ \/_____/ \/_____/ \/_/\/_/ \/_____/ \/_/ \/_____/ _ | | _ __ _____ ___ __ _____ _____ ___ __| | ___ ___ _ __ ___ | '_ ` _ \ \ / / '__/ __\ \ /\ / / _ \ / _ \ / _` | / __/ _ \| '_ ` _ \ | | | | | \ V /| | \__ \\ V V / (_) | (_) | (_| || (_| (_) | | | | | | |_| |_| |_|\_/ |_| |___/ \_/\_/ \___/ \___/ \__,_(_)___\___/|_| |_| |_| */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @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 { /** * @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); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @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()); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/rim721_01_final.sol pragma solidity ^0.8.2; /* ______ ______ ______ ______ __ __ ______ /\ == \ /\ ___\ /\ ___\ /\ __ \ /\ "-./ \ /\ ___\ \ \ __< \ \ __\ \ \ \____ \ \ \/\ \ \ \ \-./\ \ \ \ __\ \ \_____\ \ \_____\ \ \_____\ \ \_____\ \ \_\ \ \_\ \ \_____\ \/_____/ \/_____/ \/_____/ \/_____/ \/_/ \/_/ \/_____/ __ __ ______ ______ ______ __ __ ______ ______ ______ ______ /\ "-./ \ /\ ___\ /\__ _\ /\ __ \ /\ \ / / /\ ___\ /\ == \ /\ ___\ /\ ___\ \ \ \-./\ \ \ \ __\ \/_/\ \/ \ \ __ \ \ \ \'/ \ \ __\ \ \ __< \ \___ \ \ \ __\ \ \_\ \ \_\ \ \_____\ \ \_\ \ \_\ \_\ \ \__| \ \_____\ \ \_\ \_\ \/\_____\ \ \_____\ \/_/ \/_/ \/_____/ \/_/ \/_/\/_/ \/_/ \/_____/ \/_/ /_/ \/_____/ \/_____/ ______ ______ __ __ ______ __ ______ __ __ /\ == \ /\ __ \ /\ \_\ \ /\ __ \ /\ \ /\__ _\ /\ \_\ \ \ \ __< \ \ \/\ \ \ \____ \ \ \ __ \ \ \ \____ \/_/\ \/ \ \____ \ \ \_\ \_\ \ \_____\ \/\_____\ \ \_\ \_\ \ \_____\ \ \_\ \/\_____\ \/_/ /_/ \/_____/ \/_____/ \/_/\/_/ \/_____/ \/_/ \/_____/ _ | | _ __ _____ ___ __ _____ _____ ___ __| | ___ ___ _ __ ___ | '_ ` _ \ \ / / '__/ __\ \ /\ / / _ \ / _ \ / _` | / __/ _ \| '_ ` _ \ | | | | | \ V /| | \__ \\ V V / (_) | (_) | (_| || (_| (_) | | | | | | |_| |_| |_|\_/ |_| |___/ \_/\_/ \___/ \___/ \__,_(_)___\___/|_| |_| |_| */ contract MVRSWood is ERC721, ERC721Enumerable, ERC2981, Pausable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; /* * ____ ____ ____ ____ ____ _________ ____ ____ ____ ____ _________ ____ ____ ____ _________ ____ ____ ____ ____ * ||C |||R |||O |||W |||N ||| |||K |||I |||N |||G ||| |||A |||P |||E ||| |||P |||U |||N |||K || * ||__|||__|||__|||__|||__|||_______|||__|||__|||__|||__|||_______|||__|||__|||__|||_______|||__|||__|||__|||__|| * |/__\|/__\|/__\|/__\|/__\|/_______\|/__\|/__\|/__\|/__\|/_______\|/__\|/__\|/__\|/_______\|/__\|/__\|/__\|/__\| */ uint256 public numTokens = 9716; uint256 public mintPrice = 0.15 ether; uint public publicMintLimit = 4; string public README = "https://mvrswood.com"; string private _baseURIextended = "https://mvrswood.com/nft/md/"; constructor() ERC721("Become Metaverse Royalty", "MVRSWOOD") { setDefaultRoyalty(msg.sender, 750); } function setBaseURI(string memory upBaseURI) external onlyOwner() { _baseURIextended = upBaseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function safeMint(address to) public onlyOwner { uint256 ts = totalSupply(); bool _paused = paused(); if (_paused) _unpause(); _safeMint(to, ts); if (_paused) _pause(); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC2981, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function mint(uint numberOfTokens) external payable { uint256 ts = totalSupply(); require(!paused(), "Sale is paused"); require(numberOfTokens <= publicMintLimit, "Exceeded max allowed token purchase"); require(ts + numberOfTokens <= numTokens, "Purchase would exceed max number of tokens"); require(mintPrice * numberOfTokens <= msg.value, "Not enough Ether sent"); for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, ts + i); } } function royalMint(uint numberOfTokens) external onlyOwner { uint256 ts = totalSupply(); bool _paused = paused(); if (_paused) _unpause(); for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, ts + i); } if (_paused) _pause(); } function withdraw() external onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function setPriceWei(uint256 _newPriceWei) external onlyOwner() { mintPrice = _newPriceWei; } function setNumTokens(uint256 _newNumTokens) external onlyOwner { numTokens = _newNumTokens; } function setPublicMintLimit(uint256 _newPublicMintLimit) external onlyOwner { publicMintLimit = _newPublicMintLimit; } function setReadme(string memory _newReadme) external onlyOwner { README = _newReadme; } function renounceOwnership() public override onlyOwner { } function tokenURI(uint256 tokenId) public view override returns (string memory) { string memory uri = ERC721.tokenURI(tokenId); return (bytes(uri).length > 0) ? string(abi.encodePacked(uri, ".json")) : ""; } function setDefaultRoyalty(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner { _setDefaultRoyalty(_receiver, _royaltyFeesInBips); } function setTokenRoyalty(uint256 _tokenId, address _receiver, uint96 _royaltyFeesInBips) public onlyOwner { _setTokenRoyalty(_tokenId, _receiver, _royaltyFeesInBips); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"README","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","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":"numTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"royalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","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":"upBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNumTokens","type":"uint256"}],"name":"setNumTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPriceWei","type":"uint256"}],"name":"setPriceWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicMintLimit","type":"uint256"}],"name":"setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newReadme","type":"string"}],"name":"setReadme","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526125f4600e55670214e8348c4f0000600f5560046010556040518060400160405280601481526020017f68747470733a2f2f6d767273776f6f642e636f6d000000000000000000000000815250601190805190602001906200006892919062000505565b506040518060400160405280601c81526020017f68747470733a2f2f6d767273776f6f642e636f6d2f6e66742f6d642f0000000081525060129080519060200190620000b692919062000505565b50348015620000c457600080fd5b506040518060400160405280601881526020017f4265636f6d65204d657461766572736520526f79616c747900000000000000008152506040518060400160405280600881526020017f4d565253574f4f4400000000000000000000000000000000000000000000000081525081600090805190602001906200014992919062000505565b5080600190805190602001906200016292919062000505565b5050506000600c60006101000a81548160ff021916908315150217905550620001a062000194620001ba60201b60201c565b620001c260201b60201c565b620001b4336102ee6200028860201b60201c565b620007a7565b600033905090565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000298620001ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002be6200032d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030e906200062a565b60405180910390fd5b6200032982826200035760201b60201c565b5050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000367620004fb60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620003c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bf906200064c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200043b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000432906200066e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b8280546200051390620006a1565b90600052602060002090601f01602090048101928262000537576000855562000583565b82601f106200055257805160ff191683800117855562000583565b8280016001018555821562000583579182015b828111156200058257825182559160200191906001019062000565565b5b50905062000592919062000596565b5090565b5b80821115620005b157600081600090555060010162000597565b5090565b6000620005c460208362000690565b9150620005d18262000706565b602082019050919050565b6000620005eb602a8362000690565b9150620005f8826200072f565b604082019050919050565b60006200061260198362000690565b91506200061f826200077e565b602082019050919050565b600060208201905081810360008301526200064581620005b5565b9050919050565b600060208201905081810360008301526200066781620005dc565b9050919050565b60006020820190508181036000830152620006898162000603565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620006ba57607f821691505b60208210811415620006d157620006d0620006d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6150ce80620007b76000396000f3fe6080604052600436106102235760003560e01c80636352211e11610123578063a22cb465116100ab578063e5aa79db1161006f578063e5aa79db146107cf578063e985e9c5146107f8578063ef3e067c14610835578063f2673ddb1461085e578063f2fde38b1461088757610223565b8063a22cb465146106ec578063b88d4fde14610715578063bb485b881461073e578063c1e4dfda14610769578063c87b56dd1461079257610223565b80638456cb59116100f25780638456cb59146106385780638da5cb5b1461064f5780638e499bcf1461067a57806395d89b41146106a5578063a0712d68146106d057610223565b80636352211e1461057c5780636817c76c146105b957806370a08231146105e4578063715018a61461062157610223565b80632a55205a116101b157806342842e0e1161017557806342842e0e146104995780634f6ccce7146104c257806355f804b3146104ff5780635944c753146105285780635c975abb1461055157610223565b80632a55205a146103c75780632f745c59146104055780633ccfd60b146104425780633f4ba83a1461045957806340d097c31461047057610223565b806306fdde03116101f857806306fdde03146102e2578063081812fc1461030d578063095ea7b31461034a57806318160ddd1461037357806323b872dd1461039e57610223565b8062ad861f14610228578062be6c641461025357806301ffc9a71461027c57806304634d8d146102b9575b600080fd5b34801561023457600080fd5b5061023d6108b0565b60405161024a91906140bd565b60405180910390f35b34801561025f57600080fd5b5061027a60048036038101906102759190613a68565b61093e565b005b34801561028857600080fd5b506102a3600480360381019061029e91906139c5565b610a29565b6040516102b091906140a2565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613985565b610a3b565b005b3480156102ee57600080fd5b506102f7610ac5565b60405161030491906140bd565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613a68565b610b57565b6040516103419190614012565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190613945565b610bdc565b005b34801561037f57600080fd5b50610388610cf4565b604051610395919061443f565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c0919061382f565b610d01565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190613ae8565b610d61565b6040516103fc929190614079565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190613945565b610f4c565b604051610439919061443f565b60405180910390f35b34801561044e57600080fd5b50610457610ff1565b005b34801561046557600080fd5b5061046e6110bc565b005b34801561047c57600080fd5b50610497600480360381019061049291906137c2565b611142565b005b3480156104a557600080fd5b506104c060048036038101906104bb919061382f565b611203565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613a68565b611223565b6040516104f6919061443f565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190613a1f565b611294565b005b34801561053457600080fd5b5061054f600480360381019061054a9190613a95565b61132a565b005b34801561055d57600080fd5b506105666113b6565b60405161057391906140a2565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613a68565b6113cd565b6040516105b09190614012565b60405180910390f35b3480156105c557600080fd5b506105ce61147f565b6040516105db919061443f565b60405180910390f35b3480156105f057600080fd5b5061060b600480360381019061060691906137c2565b611485565b604051610618919061443f565b60405180910390f35b34801561062d57600080fd5b5061063661153d565b005b34801561064457600080fd5b5061064d6115bb565b005b34801561065b57600080fd5b50610664611641565b6040516106719190614012565b60405180910390f35b34801561068657600080fd5b5061068f61166b565b60405161069c919061443f565b60405180910390f35b3480156106b157600080fd5b506106ba611671565b6040516106c791906140bd565b60405180910390f35b6106ea60048036038101906106e59190613a68565b611703565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613905565b611874565b005b34801561072157600080fd5b5061073c60048036038101906107379190613882565b61188a565b005b34801561074a57600080fd5b506107536118ec565b604051610760919061443f565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190613a68565b6118f2565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613a68565b611978565b6040516107c691906140bd565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613a68565b6119ce565b005b34801561080457600080fd5b5061081f600480360381019061081a91906137ef565b611a54565b60405161082c91906140a2565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613a68565b611ae8565b005b34801561086a57600080fd5b5061088560048036038101906108809190613a1f565b611b6e565b005b34801561089357600080fd5b506108ae60048036038101906108a991906137c2565b611c04565b005b601180546108bd90614707565b80601f01602080910402602001604051908101604052809291908181526020018280546108e990614707565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b505050505081565b610946611cfc565b73ffffffffffffffffffffffffffffffffffffffff16610964611641565b73ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b1906142ff565b60405180910390fd5b60006109c4610cf4565b905060006109d06113b6565b905080156109e1576109e0611d04565b5b60005b83811015610a1457610a013382856109fc9190614524565b611da6565b8080610a0c9061476a565b9150506109e4565b508015610a2457610a23611dc4565b5b505050565b6000610a3482611e67565b9050919050565b610a43611cfc565b73ffffffffffffffffffffffffffffffffffffffff16610a61611641565b73ffffffffffffffffffffffffffffffffffffffff1614610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906142ff565b60405180910390fd5b610ac18282611ee1565b5050565b606060008054610ad490614707565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090614707565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b6282612077565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b98906142df565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be7826113cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061435f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c77611cfc565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca0611cfc565b611a54565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc9061423f565b60405180910390fd5b610cef83836120e3565b505050565b6000600880549050905090565b610d12610d0c611cfc565b8261219c565b610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d489061437f565b60405180910390fd5b610d5c83838361227a565b505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610ef757600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610f016124d6565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f2d91906145ab565b610f37919061457a565b90508160000151819350935050509250929050565b6000610f5783611485565b8210610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f9061413f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ff9611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611017611641565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611064906142ff565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110b8573d6000803e3d6000fd5b5050565b6110c4611cfc565b73ffffffffffffffffffffffffffffffffffffffff166110e2611641565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f906142ff565b60405180910390fd5b611140611d04565b565b61114a611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611168611641565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b5906142ff565b60405180910390fd5b60006111c8610cf4565b905060006111d46113b6565b905080156111e5576111e4611d04565b5b6111ef8383611da6565b80156111fe576111fd611dc4565b5b505050565b61121e8383836040518060200160405280600081525061188a565b505050565b600061122d610cf4565b821061126e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611265906143bf565b60405180910390fd5b60088281548110611282576112816148a0565b5b90600052602060002001549050919050565b61129c611cfc565b73ffffffffffffffffffffffffffffffffffffffff166112ba611641565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611307906142ff565b60405180910390fd5b80601290805190602001906113269291906135c1565b5050565b611332611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611350611641565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d906142ff565b60405180910390fd5b6113b18383836124e0565b505050565b6000600c60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d9061427f565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed9061425f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611545611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611563611641565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906142ff565b60405180910390fd5b565b6115c3611cfc565b73ffffffffffffffffffffffffffffffffffffffff166115e1611641565b73ffffffffffffffffffffffffffffffffffffffff1614611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906142ff565b60405180910390fd5b61163f611dc4565b565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606001805461168090614707565b80601f01602080910402602001604051908101604052809291908181526020018280546116ac90614707565b80156116f95780601f106116ce576101008083540402835291602001916116f9565b820191906000526020600020905b8154815290600101906020018083116116dc57829003601f168201915b5050505050905090565b600061170d610cf4565b90506117176113b6565b15611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e906143ff565b60405180910390fd5b60105482111561179c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117939061429f565b60405180910390fd5b600e5482826117ab9190614524565b11156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e3906140df565b60405180910390fd5b3482600f546117fb91906145ab565b111561183c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118339061411f565b60405180910390fd5b60005b8281101561186f5761185c3382846118579190614524565b611da6565b80806118679061476a565b91505061183f565b505050565b61188661187f611cfc565b8383612688565b5050565b61189b611895611cfc565b8361219c565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d19061437f565b60405180910390fd5b6118e6848484846127f5565b50505050565b60105481565b6118fa611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611918611641565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906142ff565b60405180910390fd5b80600f8190555050565b6060600061198583612851565b905060008151116119a557604051806020016040528060008152506119c6565b806040516020016119b69190613ff0565b6040516020818303038152906040525b915050919050565b6119d6611cfc565b73ffffffffffffffffffffffffffffffffffffffff166119f4611641565b73ffffffffffffffffffffffffffffffffffffffff1614611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a41906142ff565b60405180910390fd5b80600e8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af0611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611b0e611641565b73ffffffffffffffffffffffffffffffffffffffff1614611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b906142ff565b60405180910390fd5b8060108190555050565b611b76611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611b94611641565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be1906142ff565b60405180910390fd5b8060119080519060200190611c009291906135c1565b5050565b611c0c611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611c2a611641565b73ffffffffffffffffffffffffffffffffffffffff1614611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906142ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce79061417f565b60405180910390fd5b611cf9816128f8565b50565b600033905090565b611d0c6113b6565b611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906140ff565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d8f611cfc565b604051611d9c9190614012565b60405180910390a1565b611dc08282604051806020016040528060008152506129be565b5050565b611dcc6113b6565b15611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e039061421f565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e50611cfc565b604051611e5d9190614012565b60405180910390a1565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611eda5750611ed982612a19565b5b9050919050565b611ee96124d6565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e906143df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae9061441f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612156836113cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121a782612077565b6121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906141ff565b60405180910390fd5b60006121f1836113cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061226057508373ffffffffffffffffffffffffffffffffffffffff1661224884610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227157506122708185611a54565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661229a826113cd565b73ffffffffffffffffffffffffffffffffffffffff16146122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e79061431f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612357906141bf565b60405180910390fd5b61236b838383612a93565b6123766000826120e3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c69190614605565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241d9190614524565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612710905090565b6124e86124d6565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d906143df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ad9061439f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee906141df565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127e891906140a2565b60405180910390a3505050565b61280084848461227a565b61280c84848484612aeb565b61284b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128429061415f565b60405180910390fd5b50505050565b606061285c82612077565b61289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128929061433f565b60405180910390fd5b60006128a5612c82565b905060008151116128c557604051806020016040528060008152506128f0565b806128cf84612d14565b6040516020016128e0929190613fcc565b6040516020818303038152906040525b915050919050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129c88383612e75565b6129d56000848484612aeb565b612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b9061415f565b60405180910390fd5b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a8c5750612a8b82613043565b5b9050919050565b612a9b6113b6565b15612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad29061421f565b60405180910390fd5b612ae6838383613125565b505050565b6000612b0c8473ffffffffffffffffffffffffffffffffffffffff16613239565b15612c75578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b35611cfc565b8786866040518563ffffffff1660e01b8152600401612b57949392919061402d565b602060405180830381600087803b158015612b7157600080fd5b505af1925050508015612ba257506040513d601f19601f82011682018060405250810190612b9f91906139f2565b60015b612c25573d8060008114612bd2576040519150601f19603f3d011682016040523d82523d6000602084013e612bd7565b606091505b50600081511415612c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c149061415f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c7a565b600190505b949350505050565b606060128054612c9190614707565b80601f0160208091040260200160405190810160405280929190818152602001828054612cbd90614707565b8015612d0a5780601f10612cdf57610100808354040283529160200191612d0a565b820191906000526020600020905b815481529060010190602001808311612ced57829003601f168201915b5050505050905090565b60606000821415612d5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e70565b600082905060005b60008214612d8e578080612d779061476a565b915050600a82612d87919061457a565b9150612d64565b60008167ffffffffffffffff811115612daa57612da96148cf565b5b6040519080825280601f01601f191660200182016040528015612ddc5781602001600182028036833780820191505090505b5090505b60008514612e6957600182612df59190614605565b9150600a85612e0491906147b3565b6030612e109190614524565b60f81b818381518110612e2657612e256148a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e62919061457a565b9450612de0565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edc906142bf565b60405180910390fd5b612eee81612077565b15612f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f259061419f565b60405180910390fd5b612f3a60008383612a93565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f8a9190614524565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061310e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061311e575061311d8261324c565b5b9050919050565b6131308383836132b6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131735761316e816132bb565b6131b2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131b1576131b08382613304565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f5576131f081613471565b613234565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613233576132328282613542565b5b5b505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161331184611485565b61331b9190614605565b9050600060076000848152602001908152602001600020549050818114613400576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134859190614605565b90506000600960008481526020019081526020016000205490506000600883815481106134b5576134b46148a0565b5b9060005260206000200154905080600883815481106134d7576134d66148a0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061352657613525614871565b5b6001900381819060005260206000200160009055905550505050565b600061354d83611485565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546135cd90614707565b90600052602060002090601f0160209004810192826135ef5760008555613636565b82601f1061360857805160ff1916838001178555613636565b82800160010185558215613636579182015b8281111561363557825182559160200191906001019061361a565b5b5090506136439190613647565b5090565b5b80821115613660576000816000905550600101613648565b5090565b60006136776136728461447f565b61445a565b90508281526020810184848401111561369357613692614903565b5b61369e8482856146c5565b509392505050565b60006136b96136b4846144b0565b61445a565b9050828152602081018484840111156136d5576136d4614903565b5b6136e08482856146c5565b509392505050565b6000813590506136f781615025565b92915050565b60008135905061370c8161503c565b92915050565b60008135905061372181615053565b92915050565b60008151905061373681615053565b92915050565b600082601f830112613751576137506148fe565b5b8135613761848260208601613664565b91505092915050565b600082601f83011261377f5761377e6148fe565b5b813561378f8482602086016136a6565b91505092915050565b6000813590506137a78161506a565b92915050565b6000813590506137bc81615081565b92915050565b6000602082840312156137d8576137d761490d565b5b60006137e6848285016136e8565b91505092915050565b600080604083850312156138065761380561490d565b5b6000613814858286016136e8565b9250506020613825858286016136e8565b9150509250929050565b6000806000606084860312156138485761384761490d565b5b6000613856868287016136e8565b9350506020613867868287016136e8565b925050604061387886828701613798565b9150509250925092565b6000806000806080858703121561389c5761389b61490d565b5b60006138aa878288016136e8565b94505060206138bb878288016136e8565b93505060406138cc87828801613798565b925050606085013567ffffffffffffffff8111156138ed576138ec614908565b5b6138f98782880161373c565b91505092959194509250565b6000806040838503121561391c5761391b61490d565b5b600061392a858286016136e8565b925050602061393b858286016136fd565b9150509250929050565b6000806040838503121561395c5761395b61490d565b5b600061396a858286016136e8565b925050602061397b85828601613798565b9150509250929050565b6000806040838503121561399c5761399b61490d565b5b60006139aa858286016136e8565b92505060206139bb858286016137ad565b9150509250929050565b6000602082840312156139db576139da61490d565b5b60006139e984828501613712565b91505092915050565b600060208284031215613a0857613a0761490d565b5b6000613a1684828501613727565b91505092915050565b600060208284031215613a3557613a3461490d565b5b600082013567ffffffffffffffff811115613a5357613a52614908565b5b613a5f8482850161376a565b91505092915050565b600060208284031215613a7e57613a7d61490d565b5b6000613a8c84828501613798565b91505092915050565b600080600060608486031215613aae57613aad61490d565b5b6000613abc86828701613798565b9350506020613acd868287016136e8565b9250506040613ade868287016137ad565b9150509250925092565b60008060408385031215613aff57613afe61490d565b5b6000613b0d85828601613798565b9250506020613b1e85828601613798565b9150509250929050565b613b3181614639565b82525050565b613b408161464b565b82525050565b6000613b51826144e1565b613b5b81856144f7565b9350613b6b8185602086016146d4565b613b7481614912565b840191505092915050565b6000613b8a826144ec565b613b948185614508565b9350613ba48185602086016146d4565b613bad81614912565b840191505092915050565b6000613bc3826144ec565b613bcd8185614519565b9350613bdd8185602086016146d4565b80840191505092915050565b6000613bf6602a83614508565b9150613c0182614923565b604082019050919050565b6000613c19601483614508565b9150613c2482614972565b602082019050919050565b6000613c3c601583614508565b9150613c478261499b565b602082019050919050565b6000613c5f602b83614508565b9150613c6a826149c4565b604082019050919050565b6000613c82603283614508565b9150613c8d82614a13565b604082019050919050565b6000613ca5602683614508565b9150613cb082614a62565b604082019050919050565b6000613cc8601c83614508565b9150613cd382614ab1565b602082019050919050565b6000613ceb602483614508565b9150613cf682614ada565b604082019050919050565b6000613d0e601983614508565b9150613d1982614b29565b602082019050919050565b6000613d31602c83614508565b9150613d3c82614b52565b604082019050919050565b6000613d54601083614508565b9150613d5f82614ba1565b602082019050919050565b6000613d77603883614508565b9150613d8282614bca565b604082019050919050565b6000613d9a602a83614508565b9150613da582614c19565b604082019050919050565b6000613dbd602983614508565b9150613dc882614c68565b604082019050919050565b6000613de0602383614508565b9150613deb82614cb7565b604082019050919050565b6000613e03602083614508565b9150613e0e82614d06565b602082019050919050565b6000613e26602c83614508565b9150613e3182614d2f565b604082019050919050565b6000613e49600583614519565b9150613e5482614d7e565b600582019050919050565b6000613e6c602083614508565b9150613e7782614da7565b602082019050919050565b6000613e8f602983614508565b9150613e9a82614dd0565b604082019050919050565b6000613eb2602f83614508565b9150613ebd82614e1f565b604082019050919050565b6000613ed5602183614508565b9150613ee082614e6e565b604082019050919050565b6000613ef8603183614508565b9150613f0382614ebd565b604082019050919050565b6000613f1b601b83614508565b9150613f2682614f0c565b602082019050919050565b6000613f3e602c83614508565b9150613f4982614f35565b604082019050919050565b6000613f61602a83614508565b9150613f6c82614f84565b604082019050919050565b6000613f84600e83614508565b9150613f8f82614fd3565b602082019050919050565b6000613fa7601983614508565b9150613fb282614ffc565b602082019050919050565b613fc6816146a3565b82525050565b6000613fd88285613bb8565b9150613fe48284613bb8565b91508190509392505050565b6000613ffc8284613bb8565b915061400782613e3c565b915081905092915050565b60006020820190506140276000830184613b28565b92915050565b60006080820190506140426000830187613b28565b61404f6020830186613b28565b61405c6040830185613fbd565b818103606083015261406e8184613b46565b905095945050505050565b600060408201905061408e6000830185613b28565b61409b6020830184613fbd565b9392505050565b60006020820190506140b76000830184613b37565b92915050565b600060208201905081810360008301526140d78184613b7f565b905092915050565b600060208201905081810360008301526140f881613be9565b9050919050565b6000602082019050818103600083015261411881613c0c565b9050919050565b6000602082019050818103600083015261413881613c2f565b9050919050565b6000602082019050818103600083015261415881613c52565b9050919050565b6000602082019050818103600083015261417881613c75565b9050919050565b6000602082019050818103600083015261419881613c98565b9050919050565b600060208201905081810360008301526141b881613cbb565b9050919050565b600060208201905081810360008301526141d881613cde565b9050919050565b600060208201905081810360008301526141f881613d01565b9050919050565b6000602082019050818103600083015261421881613d24565b9050919050565b6000602082019050818103600083015261423881613d47565b9050919050565b6000602082019050818103600083015261425881613d6a565b9050919050565b6000602082019050818103600083015261427881613d8d565b9050919050565b6000602082019050818103600083015261429881613db0565b9050919050565b600060208201905081810360008301526142b881613dd3565b9050919050565b600060208201905081810360008301526142d881613df6565b9050919050565b600060208201905081810360008301526142f881613e19565b9050919050565b6000602082019050818103600083015261431881613e5f565b9050919050565b6000602082019050818103600083015261433881613e82565b9050919050565b6000602082019050818103600083015261435881613ea5565b9050919050565b6000602082019050818103600083015261437881613ec8565b9050919050565b6000602082019050818103600083015261439881613eeb565b9050919050565b600060208201905081810360008301526143b881613f0e565b9050919050565b600060208201905081810360008301526143d881613f31565b9050919050565b600060208201905081810360008301526143f881613f54565b9050919050565b6000602082019050818103600083015261441881613f77565b9050919050565b6000602082019050818103600083015261443881613f9a565b9050919050565b60006020820190506144546000830184613fbd565b92915050565b6000614464614475565b90506144708282614739565b919050565b6000604051905090565b600067ffffffffffffffff82111561449a576144996148cf565b5b6144a382614912565b9050602081019050919050565b600067ffffffffffffffff8211156144cb576144ca6148cf565b5b6144d482614912565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061452f826146a3565b915061453a836146a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456f5761456e6147e4565b5b828201905092915050565b6000614585826146a3565b9150614590836146a3565b9250826145a05761459f614813565b5b828204905092915050565b60006145b6826146a3565b91506145c1836146a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145fa576145f96147e4565b5b828202905092915050565b6000614610826146a3565b915061461b836146a3565b92508282101561462e5761462d6147e4565b5b828203905092915050565b600061464482614683565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156146f25780820151818401526020810190506146d7565b83811115614701576000848401525b50505050565b6000600282049050600182168061471f57607f821691505b6020821081141561473357614732614842565b5b50919050565b61474282614912565b810181811067ffffffffffffffff82111715614761576147606148cf565b5b80604052505050565b6000614775826146a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147a8576147a76147e4565b5b600182019050919050565b60006147be826146a3565b91506147c9836146a3565b9250826147d9576147d8614813565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c6420657863656564206d6178206e756d62657260008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820616c6c6f77656420746f6b656e20707572636860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61502e81614639565b811461503957600080fd5b50565b6150458161464b565b811461505057600080fd5b50565b61505c81614657565b811461506757600080fd5b50565b615073816146a3565b811461507e57600080fd5b50565b61508a816146ad565b811461509557600080fd5b5056fea2646970667358221220ca627e3b8b441b16e3d0a4d750d6558adc68334da7abf3fc498201a0d4efdf7564736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102235760003560e01c80636352211e11610123578063a22cb465116100ab578063e5aa79db1161006f578063e5aa79db146107cf578063e985e9c5146107f8578063ef3e067c14610835578063f2673ddb1461085e578063f2fde38b1461088757610223565b8063a22cb465146106ec578063b88d4fde14610715578063bb485b881461073e578063c1e4dfda14610769578063c87b56dd1461079257610223565b80638456cb59116100f25780638456cb59146106385780638da5cb5b1461064f5780638e499bcf1461067a57806395d89b41146106a5578063a0712d68146106d057610223565b80636352211e1461057c5780636817c76c146105b957806370a08231146105e4578063715018a61461062157610223565b80632a55205a116101b157806342842e0e1161017557806342842e0e146104995780634f6ccce7146104c257806355f804b3146104ff5780635944c753146105285780635c975abb1461055157610223565b80632a55205a146103c75780632f745c59146104055780633ccfd60b146104425780633f4ba83a1461045957806340d097c31461047057610223565b806306fdde03116101f857806306fdde03146102e2578063081812fc1461030d578063095ea7b31461034a57806318160ddd1461037357806323b872dd1461039e57610223565b8062ad861f14610228578062be6c641461025357806301ffc9a71461027c57806304634d8d146102b9575b600080fd5b34801561023457600080fd5b5061023d6108b0565b60405161024a91906140bd565b60405180910390f35b34801561025f57600080fd5b5061027a60048036038101906102759190613a68565b61093e565b005b34801561028857600080fd5b506102a3600480360381019061029e91906139c5565b610a29565b6040516102b091906140a2565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613985565b610a3b565b005b3480156102ee57600080fd5b506102f7610ac5565b60405161030491906140bd565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613a68565b610b57565b6040516103419190614012565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190613945565b610bdc565b005b34801561037f57600080fd5b50610388610cf4565b604051610395919061443f565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c0919061382f565b610d01565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190613ae8565b610d61565b6040516103fc929190614079565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190613945565b610f4c565b604051610439919061443f565b60405180910390f35b34801561044e57600080fd5b50610457610ff1565b005b34801561046557600080fd5b5061046e6110bc565b005b34801561047c57600080fd5b50610497600480360381019061049291906137c2565b611142565b005b3480156104a557600080fd5b506104c060048036038101906104bb919061382f565b611203565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613a68565b611223565b6040516104f6919061443f565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190613a1f565b611294565b005b34801561053457600080fd5b5061054f600480360381019061054a9190613a95565b61132a565b005b34801561055d57600080fd5b506105666113b6565b60405161057391906140a2565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613a68565b6113cd565b6040516105b09190614012565b60405180910390f35b3480156105c557600080fd5b506105ce61147f565b6040516105db919061443f565b60405180910390f35b3480156105f057600080fd5b5061060b600480360381019061060691906137c2565b611485565b604051610618919061443f565b60405180910390f35b34801561062d57600080fd5b5061063661153d565b005b34801561064457600080fd5b5061064d6115bb565b005b34801561065b57600080fd5b50610664611641565b6040516106719190614012565b60405180910390f35b34801561068657600080fd5b5061068f61166b565b60405161069c919061443f565b60405180910390f35b3480156106b157600080fd5b506106ba611671565b6040516106c791906140bd565b60405180910390f35b6106ea60048036038101906106e59190613a68565b611703565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613905565b611874565b005b34801561072157600080fd5b5061073c60048036038101906107379190613882565b61188a565b005b34801561074a57600080fd5b506107536118ec565b604051610760919061443f565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190613a68565b6118f2565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613a68565b611978565b6040516107c691906140bd565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613a68565b6119ce565b005b34801561080457600080fd5b5061081f600480360381019061081a91906137ef565b611a54565b60405161082c91906140a2565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613a68565b611ae8565b005b34801561086a57600080fd5b5061088560048036038101906108809190613a1f565b611b6e565b005b34801561089357600080fd5b506108ae60048036038101906108a991906137c2565b611c04565b005b601180546108bd90614707565b80601f01602080910402602001604051908101604052809291908181526020018280546108e990614707565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b505050505081565b610946611cfc565b73ffffffffffffffffffffffffffffffffffffffff16610964611641565b73ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b1906142ff565b60405180910390fd5b60006109c4610cf4565b905060006109d06113b6565b905080156109e1576109e0611d04565b5b60005b83811015610a1457610a013382856109fc9190614524565b611da6565b8080610a0c9061476a565b9150506109e4565b508015610a2457610a23611dc4565b5b505050565b6000610a3482611e67565b9050919050565b610a43611cfc565b73ffffffffffffffffffffffffffffffffffffffff16610a61611641565b73ffffffffffffffffffffffffffffffffffffffff1614610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906142ff565b60405180910390fd5b610ac18282611ee1565b5050565b606060008054610ad490614707565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090614707565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b6282612077565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b98906142df565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be7826113cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061435f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c77611cfc565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca0611cfc565b611a54565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc9061423f565b60405180910390fd5b610cef83836120e3565b505050565b6000600880549050905090565b610d12610d0c611cfc565b8261219c565b610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d489061437f565b60405180910390fd5b610d5c83838361227a565b505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610ef757600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610f016124d6565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f2d91906145ab565b610f37919061457a565b90508160000151819350935050509250929050565b6000610f5783611485565b8210610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f9061413f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ff9611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611017611641565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611064906142ff565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110b8573d6000803e3d6000fd5b5050565b6110c4611cfc565b73ffffffffffffffffffffffffffffffffffffffff166110e2611641565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f906142ff565b60405180910390fd5b611140611d04565b565b61114a611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611168611641565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b5906142ff565b60405180910390fd5b60006111c8610cf4565b905060006111d46113b6565b905080156111e5576111e4611d04565b5b6111ef8383611da6565b80156111fe576111fd611dc4565b5b505050565b61121e8383836040518060200160405280600081525061188a565b505050565b600061122d610cf4565b821061126e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611265906143bf565b60405180910390fd5b60088281548110611282576112816148a0565b5b90600052602060002001549050919050565b61129c611cfc565b73ffffffffffffffffffffffffffffffffffffffff166112ba611641565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611307906142ff565b60405180910390fd5b80601290805190602001906113269291906135c1565b5050565b611332611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611350611641565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d906142ff565b60405180910390fd5b6113b18383836124e0565b505050565b6000600c60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d9061427f565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed9061425f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611545611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611563611641565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906142ff565b60405180910390fd5b565b6115c3611cfc565b73ffffffffffffffffffffffffffffffffffffffff166115e1611641565b73ffffffffffffffffffffffffffffffffffffffff1614611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906142ff565b60405180910390fd5b61163f611dc4565b565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606001805461168090614707565b80601f01602080910402602001604051908101604052809291908181526020018280546116ac90614707565b80156116f95780601f106116ce576101008083540402835291602001916116f9565b820191906000526020600020905b8154815290600101906020018083116116dc57829003601f168201915b5050505050905090565b600061170d610cf4565b90506117176113b6565b15611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e906143ff565b60405180910390fd5b60105482111561179c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117939061429f565b60405180910390fd5b600e5482826117ab9190614524565b11156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e3906140df565b60405180910390fd5b3482600f546117fb91906145ab565b111561183c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118339061411f565b60405180910390fd5b60005b8281101561186f5761185c3382846118579190614524565b611da6565b80806118679061476a565b91505061183f565b505050565b61188661187f611cfc565b8383612688565b5050565b61189b611895611cfc565b8361219c565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d19061437f565b60405180910390fd5b6118e6848484846127f5565b50505050565b60105481565b6118fa611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611918611641565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906142ff565b60405180910390fd5b80600f8190555050565b6060600061198583612851565b905060008151116119a557604051806020016040528060008152506119c6565b806040516020016119b69190613ff0565b6040516020818303038152906040525b915050919050565b6119d6611cfc565b73ffffffffffffffffffffffffffffffffffffffff166119f4611641565b73ffffffffffffffffffffffffffffffffffffffff1614611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a41906142ff565b60405180910390fd5b80600e8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af0611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611b0e611641565b73ffffffffffffffffffffffffffffffffffffffff1614611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b906142ff565b60405180910390fd5b8060108190555050565b611b76611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611b94611641565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be1906142ff565b60405180910390fd5b8060119080519060200190611c009291906135c1565b5050565b611c0c611cfc565b73ffffffffffffffffffffffffffffffffffffffff16611c2a611641565b73ffffffffffffffffffffffffffffffffffffffff1614611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906142ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce79061417f565b60405180910390fd5b611cf9816128f8565b50565b600033905090565b611d0c6113b6565b611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906140ff565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d8f611cfc565b604051611d9c9190614012565b60405180910390a1565b611dc08282604051806020016040528060008152506129be565b5050565b611dcc6113b6565b15611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e039061421f565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e50611cfc565b604051611e5d9190614012565b60405180910390a1565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611eda5750611ed982612a19565b5b9050919050565b611ee96124d6565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e906143df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae9061441f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612156836113cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121a782612077565b6121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906141ff565b60405180910390fd5b60006121f1836113cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061226057508373ffffffffffffffffffffffffffffffffffffffff1661224884610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227157506122708185611a54565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661229a826113cd565b73ffffffffffffffffffffffffffffffffffffffff16146122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e79061431f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612357906141bf565b60405180910390fd5b61236b838383612a93565b6123766000826120e3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c69190614605565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241d9190614524565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612710905090565b6124e86124d6565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d906143df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ad9061439f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee906141df565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127e891906140a2565b60405180910390a3505050565b61280084848461227a565b61280c84848484612aeb565b61284b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128429061415f565b60405180910390fd5b50505050565b606061285c82612077565b61289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128929061433f565b60405180910390fd5b60006128a5612c82565b905060008151116128c557604051806020016040528060008152506128f0565b806128cf84612d14565b6040516020016128e0929190613fcc565b6040516020818303038152906040525b915050919050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129c88383612e75565b6129d56000848484612aeb565b612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b9061415f565b60405180910390fd5b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a8c5750612a8b82613043565b5b9050919050565b612a9b6113b6565b15612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad29061421f565b60405180910390fd5b612ae6838383613125565b505050565b6000612b0c8473ffffffffffffffffffffffffffffffffffffffff16613239565b15612c75578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b35611cfc565b8786866040518563ffffffff1660e01b8152600401612b57949392919061402d565b602060405180830381600087803b158015612b7157600080fd5b505af1925050508015612ba257506040513d601f19601f82011682018060405250810190612b9f91906139f2565b60015b612c25573d8060008114612bd2576040519150601f19603f3d011682016040523d82523d6000602084013e612bd7565b606091505b50600081511415612c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c149061415f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c7a565b600190505b949350505050565b606060128054612c9190614707565b80601f0160208091040260200160405190810160405280929190818152602001828054612cbd90614707565b8015612d0a5780601f10612cdf57610100808354040283529160200191612d0a565b820191906000526020600020905b815481529060010190602001808311612ced57829003601f168201915b5050505050905090565b60606000821415612d5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e70565b600082905060005b60008214612d8e578080612d779061476a565b915050600a82612d87919061457a565b9150612d64565b60008167ffffffffffffffff811115612daa57612da96148cf565b5b6040519080825280601f01601f191660200182016040528015612ddc5781602001600182028036833780820191505090505b5090505b60008514612e6957600182612df59190614605565b9150600a85612e0491906147b3565b6030612e109190614524565b60f81b818381518110612e2657612e256148a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e62919061457a565b9450612de0565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edc906142bf565b60405180910390fd5b612eee81612077565b15612f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f259061419f565b60405180910390fd5b612f3a60008383612a93565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f8a9190614524565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061310e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061311e575061311d8261324c565b5b9050919050565b6131308383836132b6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131735761316e816132bb565b6131b2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131b1576131b08382613304565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f5576131f081613471565b613234565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613233576132328282613542565b5b5b505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161331184611485565b61331b9190614605565b9050600060076000848152602001908152602001600020549050818114613400576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134859190614605565b90506000600960008481526020019081526020016000205490506000600883815481106134b5576134b46148a0565b5b9060005260206000200154905080600883815481106134d7576134d66148a0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061352657613525614871565b5b6001900381819060005260206000200160009055905550505050565b600061354d83611485565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546135cd90614707565b90600052602060002090601f0160209004810192826135ef5760008555613636565b82601f1061360857805160ff1916838001178555613636565b82800160010185558215613636579182015b8281111561363557825182559160200191906001019061361a565b5b5090506136439190613647565b5090565b5b80821115613660576000816000905550600101613648565b5090565b60006136776136728461447f565b61445a565b90508281526020810184848401111561369357613692614903565b5b61369e8482856146c5565b509392505050565b60006136b96136b4846144b0565b61445a565b9050828152602081018484840111156136d5576136d4614903565b5b6136e08482856146c5565b509392505050565b6000813590506136f781615025565b92915050565b60008135905061370c8161503c565b92915050565b60008135905061372181615053565b92915050565b60008151905061373681615053565b92915050565b600082601f830112613751576137506148fe565b5b8135613761848260208601613664565b91505092915050565b600082601f83011261377f5761377e6148fe565b5b813561378f8482602086016136a6565b91505092915050565b6000813590506137a78161506a565b92915050565b6000813590506137bc81615081565b92915050565b6000602082840312156137d8576137d761490d565b5b60006137e6848285016136e8565b91505092915050565b600080604083850312156138065761380561490d565b5b6000613814858286016136e8565b9250506020613825858286016136e8565b9150509250929050565b6000806000606084860312156138485761384761490d565b5b6000613856868287016136e8565b9350506020613867868287016136e8565b925050604061387886828701613798565b9150509250925092565b6000806000806080858703121561389c5761389b61490d565b5b60006138aa878288016136e8565b94505060206138bb878288016136e8565b93505060406138cc87828801613798565b925050606085013567ffffffffffffffff8111156138ed576138ec614908565b5b6138f98782880161373c565b91505092959194509250565b6000806040838503121561391c5761391b61490d565b5b600061392a858286016136e8565b925050602061393b858286016136fd565b9150509250929050565b6000806040838503121561395c5761395b61490d565b5b600061396a858286016136e8565b925050602061397b85828601613798565b9150509250929050565b6000806040838503121561399c5761399b61490d565b5b60006139aa858286016136e8565b92505060206139bb858286016137ad565b9150509250929050565b6000602082840312156139db576139da61490d565b5b60006139e984828501613712565b91505092915050565b600060208284031215613a0857613a0761490d565b5b6000613a1684828501613727565b91505092915050565b600060208284031215613a3557613a3461490d565b5b600082013567ffffffffffffffff811115613a5357613a52614908565b5b613a5f8482850161376a565b91505092915050565b600060208284031215613a7e57613a7d61490d565b5b6000613a8c84828501613798565b91505092915050565b600080600060608486031215613aae57613aad61490d565b5b6000613abc86828701613798565b9350506020613acd868287016136e8565b9250506040613ade868287016137ad565b9150509250925092565b60008060408385031215613aff57613afe61490d565b5b6000613b0d85828601613798565b9250506020613b1e85828601613798565b9150509250929050565b613b3181614639565b82525050565b613b408161464b565b82525050565b6000613b51826144e1565b613b5b81856144f7565b9350613b6b8185602086016146d4565b613b7481614912565b840191505092915050565b6000613b8a826144ec565b613b948185614508565b9350613ba48185602086016146d4565b613bad81614912565b840191505092915050565b6000613bc3826144ec565b613bcd8185614519565b9350613bdd8185602086016146d4565b80840191505092915050565b6000613bf6602a83614508565b9150613c0182614923565b604082019050919050565b6000613c19601483614508565b9150613c2482614972565b602082019050919050565b6000613c3c601583614508565b9150613c478261499b565b602082019050919050565b6000613c5f602b83614508565b9150613c6a826149c4565b604082019050919050565b6000613c82603283614508565b9150613c8d82614a13565b604082019050919050565b6000613ca5602683614508565b9150613cb082614a62565b604082019050919050565b6000613cc8601c83614508565b9150613cd382614ab1565b602082019050919050565b6000613ceb602483614508565b9150613cf682614ada565b604082019050919050565b6000613d0e601983614508565b9150613d1982614b29565b602082019050919050565b6000613d31602c83614508565b9150613d3c82614b52565b604082019050919050565b6000613d54601083614508565b9150613d5f82614ba1565b602082019050919050565b6000613d77603883614508565b9150613d8282614bca565b604082019050919050565b6000613d9a602a83614508565b9150613da582614c19565b604082019050919050565b6000613dbd602983614508565b9150613dc882614c68565b604082019050919050565b6000613de0602383614508565b9150613deb82614cb7565b604082019050919050565b6000613e03602083614508565b9150613e0e82614d06565b602082019050919050565b6000613e26602c83614508565b9150613e3182614d2f565b604082019050919050565b6000613e49600583614519565b9150613e5482614d7e565b600582019050919050565b6000613e6c602083614508565b9150613e7782614da7565b602082019050919050565b6000613e8f602983614508565b9150613e9a82614dd0565b604082019050919050565b6000613eb2602f83614508565b9150613ebd82614e1f565b604082019050919050565b6000613ed5602183614508565b9150613ee082614e6e565b604082019050919050565b6000613ef8603183614508565b9150613f0382614ebd565b604082019050919050565b6000613f1b601b83614508565b9150613f2682614f0c565b602082019050919050565b6000613f3e602c83614508565b9150613f4982614f35565b604082019050919050565b6000613f61602a83614508565b9150613f6c82614f84565b604082019050919050565b6000613f84600e83614508565b9150613f8f82614fd3565b602082019050919050565b6000613fa7601983614508565b9150613fb282614ffc565b602082019050919050565b613fc6816146a3565b82525050565b6000613fd88285613bb8565b9150613fe48284613bb8565b91508190509392505050565b6000613ffc8284613bb8565b915061400782613e3c565b915081905092915050565b60006020820190506140276000830184613b28565b92915050565b60006080820190506140426000830187613b28565b61404f6020830186613b28565b61405c6040830185613fbd565b818103606083015261406e8184613b46565b905095945050505050565b600060408201905061408e6000830185613b28565b61409b6020830184613fbd565b9392505050565b60006020820190506140b76000830184613b37565b92915050565b600060208201905081810360008301526140d78184613b7f565b905092915050565b600060208201905081810360008301526140f881613be9565b9050919050565b6000602082019050818103600083015261411881613c0c565b9050919050565b6000602082019050818103600083015261413881613c2f565b9050919050565b6000602082019050818103600083015261415881613c52565b9050919050565b6000602082019050818103600083015261417881613c75565b9050919050565b6000602082019050818103600083015261419881613c98565b9050919050565b600060208201905081810360008301526141b881613cbb565b9050919050565b600060208201905081810360008301526141d881613cde565b9050919050565b600060208201905081810360008301526141f881613d01565b9050919050565b6000602082019050818103600083015261421881613d24565b9050919050565b6000602082019050818103600083015261423881613d47565b9050919050565b6000602082019050818103600083015261425881613d6a565b9050919050565b6000602082019050818103600083015261427881613d8d565b9050919050565b6000602082019050818103600083015261429881613db0565b9050919050565b600060208201905081810360008301526142b881613dd3565b9050919050565b600060208201905081810360008301526142d881613df6565b9050919050565b600060208201905081810360008301526142f881613e19565b9050919050565b6000602082019050818103600083015261431881613e5f565b9050919050565b6000602082019050818103600083015261433881613e82565b9050919050565b6000602082019050818103600083015261435881613ea5565b9050919050565b6000602082019050818103600083015261437881613ec8565b9050919050565b6000602082019050818103600083015261439881613eeb565b9050919050565b600060208201905081810360008301526143b881613f0e565b9050919050565b600060208201905081810360008301526143d881613f31565b9050919050565b600060208201905081810360008301526143f881613f54565b9050919050565b6000602082019050818103600083015261441881613f77565b9050919050565b6000602082019050818103600083015261443881613f9a565b9050919050565b60006020820190506144546000830184613fbd565b92915050565b6000614464614475565b90506144708282614739565b919050565b6000604051905090565b600067ffffffffffffffff82111561449a576144996148cf565b5b6144a382614912565b9050602081019050919050565b600067ffffffffffffffff8211156144cb576144ca6148cf565b5b6144d482614912565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061452f826146a3565b915061453a836146a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456f5761456e6147e4565b5b828201905092915050565b6000614585826146a3565b9150614590836146a3565b9250826145a05761459f614813565b5b828204905092915050565b60006145b6826146a3565b91506145c1836146a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145fa576145f96147e4565b5b828202905092915050565b6000614610826146a3565b915061461b836146a3565b92508282101561462e5761462d6147e4565b5b828203905092915050565b600061464482614683565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156146f25780820151818401526020810190506146d7565b83811115614701576000848401525b50505050565b6000600282049050600182168061471f57607f821691505b6020821081141561473357614732614842565b5b50919050565b61474282614912565b810181811067ffffffffffffffff82111715614761576147606148cf565b5b80604052505050565b6000614775826146a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147a8576147a76147e4565b5b600182019050919050565b60006147be826146a3565b91506147c9836146a3565b9250826147d9576147d8614813565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c6420657863656564206d6178206e756d62657260008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820616c6c6f77656420746f6b656e20707572636860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61502e81614639565b811461503957600080fd5b50565b6150458161464b565b811461505057600080fd5b50565b61505c81614657565b811461506757600080fd5b50565b615073816146a3565b811461507e57600080fd5b50565b61508a816146ad565b811461509557600080fd5b5056fea2646970667358221220ca627e3b8b441b16e3d0a4d750d6558adc68334da7abf3fc498201a0d4efdf7564736f6c63430008070033
Deployed Bytecode Sourcemap
58258:4563:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59087:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61092:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60264:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62452:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37200:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38759:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38282:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50346:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39509:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25522:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;50014:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61458:148;;;;;;;;;;;;;:::i;:::-;;59686:71;;;;;;;;;;;;;:::i;:::-;;59765:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39919:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50536:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59345:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62624:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10502:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36894:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58999:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36624:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62135:68;;;;;;;;;;;;;:::i;:::-;;59611:67;;;;;;;;;;;;;:::i;:::-;;7902:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58952:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37369:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60497:587;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39052:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40175:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59048:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61618:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62215:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61743:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39278:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61869:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62015:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8811:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59087:48;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61092:358::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61168:10:::1;61181:13;:11;:13::i;:::-;61168:26;;61215:12;61230:8;:6;:8::i;:::-;61215:23;;61250:7;61246:23;;;61259:10;:8;:10::i;:::-;61246:23;61295:9;61290:111;61314:14;61310:1;:18;61290:111;;;61360:29;61370:10;61387:1;61382:2;:6;;;;:::i;:::-;61360:9;:29::i;:::-;61330:3;;;;;:::i;:::-;;;;61290:111;;;;61425:7;61421:21;;;61434:8;:6;:8::i;:::-;61421:21;61157:293;;61092:358:::0;:::o;60264:221::-;60412:4;60441:36;60465:11;60441:23;:36::i;:::-;60434:43;;60264:221;;;:::o;62452:164::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62559:49:::1;62578:9;62589:18;62559;:49::i;:::-;62452:164:::0;;:::o;37200:100::-;37254:13;37287:5;37280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37200:100;:::o;38759:221::-;38835:7;38863:16;38871:7;38863;:16::i;:::-;38855:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38948:15;:24;38964:7;38948:24;;;;;;;;;;;;;;;;;;;;;38941:31;;38759:221;;;:::o;38282:411::-;38363:13;38379:23;38394:7;38379:14;:23::i;:::-;38363:39;;38427:5;38421:11;;:2;:11;;;;38413:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38521:5;38505:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38530:37;38547:5;38554:12;:10;:12::i;:::-;38530:16;:37::i;:::-;38505:62;38483:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;38664:21;38673:2;38677:7;38664:8;:21::i;:::-;38352:341;38282:411;;:::o;50346:113::-;50407:7;50434:10;:17;;;;50427:24;;50346:113;:::o;39509:339::-;39704:41;39723:12;:10;:12::i;:::-;39737:7;39704:18;:41::i;:::-;39696:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;39812:28;39822:4;39828:2;39832:7;39812:9;:28::i;:::-;39509:339;;;:::o;25522:494::-;25666:7;25675;25700:26;25729:17;:27;25747:8;25729:27;;;;;;;;;;;25700:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1;25773:30;;:7;:16;;;:30;;;25769:92;;;25830:19;25820:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25769:92;25873:21;25938:17;:15;:17::i;:::-;25897:58;;25911:7;:23;;;25898:36;;:10;:36;;;;:::i;:::-;25897:58;;;;:::i;:::-;25873:82;;25976:7;:16;;;25994:13;25968:40;;;;;;25522:494;;;;;:::o;50014:256::-;50111:7;50147:23;50164:5;50147:16;:23::i;:::-;50139:5;:31;50131:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;50236:12;:19;50249:5;50236:19;;;;;;;;;;;;;;;:26;50256:5;50236:26;;;;;;;;;;;;50229:33;;50014:256;;;;:::o;61458:148::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61514:12:::1;61529:21;61514:36;;61569:10;61561:28;;:37;61590:7;61561:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61503:103;61458:148::o:0;59686:71::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59739:10:::1;:8;:10::i;:::-;59686:71::o:0;59765:256::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59829:10:::1;59842:13;:11;:13::i;:::-;59829:26;;59876:12;59891:8;:6;:8::i;:::-;59876:23;;59914:7;59910:23;;;59923:10;:8;:10::i;:::-;59910:23;59954:17;59964:2;59968;59954:9;:17::i;:::-;59996:7;59992:21;;;60005:8;:6;:8::i;:::-;59992:21;59818:203;;59765:256:::0;:::o;39919:185::-;40057:39;40074:4;40080:2;40084:7;40057:39;;;;;;;;;;;;:16;:39::i;:::-;39919:185;;;:::o;50536:233::-;50611:7;50647:30;:28;:30::i;:::-;50639:5;:38;50631:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;50744:10;50755:5;50744:17;;;;;;;;:::i;:::-;;;;;;;;;;50737:24;;50536:233;;;:::o;59345:119::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59447:9:::1;59428:16;:28;;;;;;;;;;;;:::i;:::-;;59345:119:::0;:::o;62624:188::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62747:57:::1;62764:8;62774:9;62785:18;62747:16;:57::i;:::-;62624:188:::0;;;:::o;10502:86::-;10549:4;10573:7;;;;;;;;;;;10566:14;;10502:86;:::o;36894:239::-;36966:7;36986:13;37002:7;:16;37010:7;37002:16;;;;;;;;;;;;;;;;;;;;;36986:32;;37054:1;37037:19;;:5;:19;;;;37029:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37120:5;37113:12;;;36894:239;;;:::o;58999:39::-;;;;:::o;36624:208::-;36696:7;36741:1;36724:19;;:5;:19;;;;36716:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;36808:9;:16;36818:5;36808:16;;;;;;;;;;;;;;;;36801:23;;36624:208;;;:::o;62135:68::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62135:::o;59611:67::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59662:8:::1;:6;:8::i;:::-;59611:67::o:0;7902:87::-;7948:7;7975:6;;;;;;;;;;;7968:13;;7902:87;:::o;58952:33::-;;;;:::o;37369:104::-;37425:13;37458:7;37451:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37369:104;:::o;60497:587::-;60566:10;60579:13;:11;:13::i;:::-;60566:26;;60622:8;:6;:8::i;:::-;60621:9;60613:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;60696:15;;60678:14;:33;;60670:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60803:9;;60785:14;60780:2;:19;;;;:::i;:::-;:32;;60772:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;60918:9;60900:14;60888:9;;:26;;;;:::i;:::-;:39;;60880:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;60971:9;60966:111;60990:14;60986:1;:18;60966:111;;;61036:29;61046:10;61063:1;61058:2;:6;;;;:::i;:::-;61036:9;:29::i;:::-;61006:3;;;;;:::i;:::-;;;;60966:111;;;;60555:529;60497:587;:::o;39052:155::-;39147:52;39166:12;:10;:12::i;:::-;39180:8;39190;39147:18;:52::i;:::-;39052:155;;:::o;40175:328::-;40350:41;40369:12;:10;:12::i;:::-;40383:7;40350:18;:41::i;:::-;40342:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;40456:39;40470:4;40476:2;40480:7;40489:5;40456:13;:39::i;:::-;40175:328;;;;:::o;59048:32::-;;;;:::o;61618:113::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61711:12:::1;61699:9;:24;;;;61618:113:::0;:::o;62215:229::-;62280:13;62308:17;62328:24;62344:7;62328:15;:24::i;:::-;62308:44;;62388:1;62374:3;62368:17;:21;62367:69;;;;;;;;;;;;;;;;;62417:3;62400:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;62367:69;62360:76;;;62215:229;;;:::o;61743:114::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61836:13:::1;61824:9;:25;;;;61743:114:::0;:::o;39278:164::-;39375:4;39399:18;:25;39418:5;39399:25;;;;;;;;;;;;;;;:35;39425:8;39399:35;;;;;;;;;;;;;;;;;;;;;;;;;39392:42;;39278:164;;;;:::o;61869:138::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61980:19:::1;61962:15;:37;;;;61869:138:::0;:::o;62015:108::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62105:10:::1;62096:6;:19;;;;;;;;;;;;:::i;:::-;;62015:108:::0;:::o;8811:201::-;8133:12;:10;:12::i;:::-;8122:23;;:7;:5;:7::i;:::-;:23;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8920:1:::1;8900:22;;:8;:22;;;;8892:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8976:28;8995:8;8976:18;:28::i;:::-;8811:201:::0;:::o;6626:98::-;6679:7;6706:10;6699:17;;6626:98;:::o;11561:120::-;11105:8;:6;:8::i;:::-;11097:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;11630:5:::1;11620:7;;:15;;;;;;;;;;;;;;;;;;11651:22;11660:12;:10;:12::i;:::-;11651:22;;;;;;:::i;:::-;;;;;;;;11561:120::o:0;42997:110::-;43073:26;43083:2;43087:7;43073:26;;;;;;;;;;;;:9;:26::i;:::-;42997:110;;:::o;11302:118::-;10828:8;:6;:8::i;:::-;10827:9;10819:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;11372:4:::1;11362:7;;:14;;;;;;;;;;;;;;;;;;11392:20;11399:12;:10;:12::i;:::-;11392:20;;;;;;:::i;:::-;;;;;;;;11302:118::o:0;25252:215::-;25354:4;25393:26;25378:41;;;:11;:41;;;;:81;;;;25423:36;25447:11;25423:23;:36::i;:::-;25378:81;25371:88;;25252:215;;;:::o;26666:332::-;26785:17;:15;:17::i;:::-;26769:33;;:12;:33;;;;26761:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;26888:1;26868:22;;:8;:22;;;;26860:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;26955:35;;;;;;;;26967:8;26955:35;;;;;;26977:12;26955:35;;;;;26933:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26666:332;;:::o;42013:127::-;42078:4;42130:1;42102:30;;:7;:16;42110:7;42102:16;;;;;;;;;;;;;;;;;;;;;:30;;;;42095:37;;42013:127;;;:::o;45995:174::-;46097:2;46070:15;:24;46086:7;46070:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46153:7;46149:2;46115:46;;46124:23;46139:7;46124:14;:23::i;:::-;46115:46;;;;;;;;;;;;45995:174;;:::o;42307:348::-;42400:4;42425:16;42433:7;42425;:16::i;:::-;42417:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42501:13;42517:23;42532:7;42517:14;:23::i;:::-;42501:39;;42570:5;42559:16;;:7;:16;;;:51;;;;42603:7;42579:31;;:20;42591:7;42579:11;:20::i;:::-;:31;;;42559:51;:87;;;;42614:32;42631:5;42638:7;42614:16;:32::i;:::-;42559:87;42551:96;;;42307:348;;;;:::o;45299:578::-;45458:4;45431:31;;:23;45446:7;45431:14;:23::i;:::-;:31;;;45423:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45541:1;45527:16;;:2;:16;;;;45519:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;45597:39;45618:4;45624:2;45628:7;45597:20;:39::i;:::-;45701:29;45718:1;45722:7;45701:8;:29::i;:::-;45762:1;45743:9;:15;45753:4;45743:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;45791:1;45774:9;:13;45784:2;45774:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;45822:2;45803:7;:16;45811:7;45803:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;45861:7;45857:2;45842:27;;45851:4;45842:27;;;;;;;;;;;;45299:578;;;:::o;26298:97::-;26356:6;26382:5;26375:12;;26298:97;:::o;27493:390::-;27661:17;:15;:17::i;:::-;27645:33;;:12;:33;;;;27637:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;27764:1;27744:22;;:8;:22;;;;27736:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27840:35;;;;;;;;27852:8;27840:35;;;;;;27862:12;27840:35;;;;;27811:17;:26;27829:7;27811:26;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27493:390;;;:::o;46311:315::-;46466:8;46457:17;;:5;:17;;;;46449:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46553:8;46515:18;:25;46534:5;46515:25;;;;;;;;;;;;;;;:35;46541:8;46515:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;46599:8;46577:41;;46592:5;46577:41;;;46609:8;46577:41;;;;;;:::i;:::-;;;;;;;;46311:315;;;:::o;41385:::-;41542:28;41552:4;41558:2;41562:7;41542:9;:28::i;:::-;41589:48;41612:4;41618:2;41622:7;41631:5;41589:22;:48::i;:::-;41581:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;41385:315;;;;:::o;37544:334::-;37617:13;37651:16;37659:7;37651;:16::i;:::-;37643:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;37732:21;37756:10;:8;:10::i;:::-;37732:34;;37808:1;37790:7;37784:21;:25;:86;;;;;;;;;;;;;;;;;37836:7;37845:18;:7;:16;:18::i;:::-;37819:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37784:86;37777:93;;;37544:334;;;:::o;9172:191::-;9246:16;9265:6;;;;;;;;;;;9246:25;;9291:8;9282:6;;:17;;;;;;;;;;;;;;;;;;9346:8;9315:40;;9336:8;9315:40;;;;;;;;;;;;9235:128;9172:191;:::o;43334:321::-;43464:18;43470:2;43474:7;43464:5;:18::i;:::-;43515:54;43546:1;43550:2;43554:7;43563:5;43515:22;:54::i;:::-;43493:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;43334:321;;;:::o;49706:224::-;49808:4;49847:35;49832:50;;;:11;:50;;;;:90;;;;49886:36;49910:11;49886:23;:36::i;:::-;49832:90;49825:97;;49706:224;;;:::o;60029:227::-;10828:8;:6;:8::i;:::-;10827:9;10819:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60203:45:::1;60230:4;60236:2;60240:7;60203:26;:45::i;:::-;60029:227:::0;;;:::o;47191:799::-;47346:4;47367:15;:2;:13;;;:15::i;:::-;47363:620;;;47419:2;47403:36;;;47440:12;:10;:12::i;:::-;47454:4;47460:7;47469:5;47403:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47399:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47662:1;47645:6;:13;:18;47641:272;;;47688:60;;;;;;;;;;:::i;:::-;;;;;;;;47641:272;47863:6;47857:13;47848:6;47844:2;47840:15;47833:38;47399:529;47536:41;;;47526:51;;;:6;:51;;;;47519:58;;;;;47363:620;47967:4;47960:11;;47191:799;;;;;;;:::o;59476:123::-;59536:13;59575:16;59568:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59476:123;:::o;4188:723::-;4244:13;4474:1;4465:5;:10;4461:53;;;4492:10;;;;;;;;;;;;;;;;;;;;;4461:53;4524:12;4539:5;4524:20;;4555:14;4580:78;4595:1;4587:4;:9;4580:78;;4613:8;;;;;:::i;:::-;;;;4644:2;4636:10;;;;;:::i;:::-;;;4580:78;;;4668:19;4700:6;4690:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4668:39;;4718:154;4734:1;4725:5;:10;4718:154;;4762:1;4752:11;;;;;:::i;:::-;;;4829:2;4821:5;:10;;;;:::i;:::-;4808:2;:24;;;;:::i;:::-;4795:39;;4778:6;4785;4778:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4858:2;4849:11;;;;;:::i;:::-;;;4718:154;;;4896:6;4882:21;;;;;4188:723;;;;:::o;43991:382::-;44085:1;44071:16;;:2;:16;;;;44063:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44144:16;44152:7;44144;:16::i;:::-;44143:17;44135:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44206:45;44235:1;44239:2;44243:7;44206:20;:45::i;:::-;44281:1;44264:9;:13;44274:2;44264:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;44312:2;44293:7;:16;44301:7;44293:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44357:7;44353:2;44332:33;;44349:1;44332:33;;;;;;;;;;;;43991:382;;:::o;36255:305::-;36357:4;36409:25;36394:40;;;:11;:40;;;;:105;;;;36466:33;36451:48;;;:11;:48;;;;36394:105;:158;;;;36516:36;36540:11;36516:23;:36::i;:::-;36394:158;36374:178;;36255:305;;;:::o;51382:589::-;51526:45;51553:4;51559:2;51563:7;51526:26;:45::i;:::-;51604:1;51588:18;;:4;:18;;;51584:187;;;51623:40;51655:7;51623:31;:40::i;:::-;51584:187;;;51693:2;51685:10;;:4;:10;;;51681:90;;51712:47;51745:4;51751:7;51712:32;:47::i;:::-;51681:90;51584:187;51799:1;51785:16;;:2;:16;;;51781:183;;;51818:45;51855:7;51818:36;:45::i;:::-;51781:183;;;51891:4;51885:10;;:2;:10;;;51881:83;;51912:40;51940:2;51944:7;51912:27;:40::i;:::-;51881:83;51781:183;51382:589;;;:::o;12508:387::-;12568:4;12776:12;12843:7;12831:20;12823:28;;12886:1;12879:4;:8;12872:15;;;12508:387;;;:::o;23702:157::-;23787:4;23826:25;23811:40;;;:11;:40;;;;23804:47;;23702:157;;;:::o;48562:126::-;;;;:::o;52694:164::-;52798:10;:17;;;;52771:15;:24;52787:7;52771:24;;;;;;;;;;;:44;;;;52826:10;52842:7;52826:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52694:164;:::o;53485:988::-;53751:22;53801:1;53776:22;53793:4;53776:16;:22::i;:::-;:26;;;;:::i;:::-;53751:51;;53813:18;53834:17;:26;53852:7;53834:26;;;;;;;;;;;;53813:47;;53981:14;53967:10;:28;53963:328;;54012:19;54034:12;:18;54047:4;54034:18;;;;;;;;;;;;;;;:34;54053:14;54034:34;;;;;;;;;;;;54012:56;;54118:11;54085:12;:18;54098:4;54085:18;;;;;;;;;;;;;;;:30;54104:10;54085:30;;;;;;;;;;;:44;;;;54235:10;54202:17;:30;54220:11;54202:30;;;;;;;;;;;:43;;;;53997:294;53963:328;54387:17;:26;54405:7;54387:26;;;;;;;;;;;54380:33;;;54431:12;:18;54444:4;54431:18;;;;;;;;;;;;;;;:34;54450:14;54431:34;;;;;;;;;;;54424:41;;;53566:907;;53485:988;;:::o;54768:1079::-;55021:22;55066:1;55046:10;:17;;;;:21;;;;:::i;:::-;55021:46;;55078:18;55099:15;:24;55115:7;55099:24;;;;;;;;;;;;55078:45;;55450:19;55472:10;55483:14;55472:26;;;;;;;;:::i;:::-;;;;;;;;;;55450:48;;55536:11;55511:10;55522;55511:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;55647:10;55616:15;:28;55632:11;55616:28;;;;;;;;;;;:41;;;;55788:15;:24;55804:7;55788:24;;;;;;;;;;;55781:31;;;55823:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54839:1008;;;54768:1079;:::o;52272:221::-;52357:14;52374:20;52391:2;52374:16;:20::i;:::-;52357:37;;52432:7;52405:12;:16;52418:2;52405:16;;;;;;;;;;;;;;;:24;52422:6;52405:24;;;;;;;;;;;:34;;;;52479:6;52450:17;:26;52468:7;52450:26;;;;;;;;;;;:35;;;;52346:147;52272:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:137::-;2322:5;2360:6;2347:20;2338:29;;2376:32;2402:5;2376:32;:::i;:::-;2277:137;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:472::-;5830:6;5838;5887:2;5875:9;5866:7;5862:23;5858:32;5855:119;;;5893:79;;:::i;:::-;5855:119;6013:1;6038:53;6083:7;6074:6;6063:9;6059:22;6038:53;:::i;:::-;6028:63;;5984:117;6140:2;6166:52;6210:7;6201:6;6190:9;6186:22;6166:52;:::i;:::-;6156:62;;6111:117;5763:472;;;;;:::o;6241:327::-;6299:6;6348:2;6336:9;6327:7;6323:23;6319:32;6316:119;;;6354:79;;:::i;:::-;6316:119;6474:1;6499:52;6543:7;6534:6;6523:9;6519:22;6499:52;:::i;:::-;6489:62;;6445:116;6241:327;;;;:::o;6574:349::-;6643:6;6692:2;6680:9;6671:7;6667:23;6663:32;6660:119;;;6698:79;;:::i;:::-;6660:119;6818:1;6843:63;6898:7;6889:6;6878:9;6874:22;6843:63;:::i;:::-;6833:73;;6789:127;6574:349;;;;:::o;6929:509::-;6998:6;7047:2;7035:9;7026:7;7022:23;7018:32;7015:119;;;7053:79;;:::i;:::-;7015:119;7201:1;7190:9;7186:17;7173:31;7231:18;7223:6;7220:30;7217:117;;;7253:79;;:::i;:::-;7217:117;7358:63;7413:7;7404:6;7393:9;7389:22;7358:63;:::i;:::-;7348:73;;7144:287;6929:509;;;;:::o;7444:329::-;7503:6;7552:2;7540:9;7531:7;7527:23;7523:32;7520:119;;;7558:79;;:::i;:::-;7520:119;7678:1;7703:53;7748:7;7739:6;7728:9;7724:22;7703:53;:::i;:::-;7693:63;;7649:117;7444:329;;;;:::o;7779:617::-;7855:6;7863;7871;7920:2;7908:9;7899:7;7895:23;7891:32;7888:119;;;7926:79;;:::i;:::-;7888:119;8046:1;8071:53;8116:7;8107:6;8096:9;8092:22;8071:53;:::i;:::-;8061:63;;8017:117;8173:2;8199:53;8244:7;8235:6;8224:9;8220:22;8199:53;:::i;:::-;8189:63;;8144:118;8301:2;8327:52;8371:7;8362:6;8351:9;8347:22;8327:52;:::i;:::-;8317:62;;8272:117;7779:617;;;;;:::o;8402:474::-;8470:6;8478;8527:2;8515:9;8506:7;8502:23;8498:32;8495:119;;;8533:79;;:::i;:::-;8495:119;8653:1;8678:53;8723:7;8714:6;8703:9;8699:22;8678:53;:::i;:::-;8668:63;;8624:117;8780:2;8806:53;8851:7;8842:6;8831:9;8827:22;8806:53;:::i;:::-;8796:63;;8751:118;8402:474;;;;;:::o;8882:118::-;8969:24;8987:5;8969:24;:::i;:::-;8964:3;8957:37;8882:118;;:::o;9006:109::-;9087:21;9102:5;9087:21;:::i;:::-;9082:3;9075:34;9006:109;;:::o;9121:360::-;9207:3;9235:38;9267:5;9235:38;:::i;:::-;9289:70;9352:6;9347:3;9289:70;:::i;:::-;9282:77;;9368:52;9413:6;9408:3;9401:4;9394:5;9390:16;9368:52;:::i;:::-;9445:29;9467:6;9445:29;:::i;:::-;9440:3;9436:39;9429:46;;9211:270;9121:360;;;;:::o;9487:364::-;9575:3;9603:39;9636:5;9603:39;:::i;:::-;9658:71;9722:6;9717:3;9658:71;:::i;:::-;9651:78;;9738:52;9783:6;9778:3;9771:4;9764:5;9760:16;9738:52;:::i;:::-;9815:29;9837:6;9815:29;:::i;:::-;9810:3;9806:39;9799:46;;9579:272;9487:364;;;;:::o;9857:377::-;9963:3;9991:39;10024:5;9991:39;:::i;:::-;10046:89;10128:6;10123:3;10046:89;:::i;:::-;10039:96;;10144:52;10189:6;10184:3;10177:4;10170:5;10166:16;10144:52;:::i;:::-;10221:6;10216:3;10212:16;10205:23;;9967:267;9857:377;;;;:::o;10240:366::-;10382:3;10403:67;10467:2;10462:3;10403:67;:::i;:::-;10396:74;;10479:93;10568:3;10479:93;:::i;:::-;10597:2;10592:3;10588:12;10581:19;;10240:366;;;:::o;10612:::-;10754:3;10775:67;10839:2;10834:3;10775:67;:::i;:::-;10768:74;;10851:93;10940:3;10851:93;:::i;:::-;10969:2;10964:3;10960:12;10953:19;;10612:366;;;:::o;10984:::-;11126:3;11147:67;11211:2;11206:3;11147:67;:::i;:::-;11140:74;;11223:93;11312:3;11223:93;:::i;:::-;11341:2;11336:3;11332:12;11325:19;;10984:366;;;:::o;11356:::-;11498:3;11519:67;11583:2;11578:3;11519:67;:::i;:::-;11512:74;;11595:93;11684:3;11595:93;:::i;:::-;11713:2;11708:3;11704:12;11697:19;;11356:366;;;:::o;11728:::-;11870:3;11891:67;11955:2;11950:3;11891:67;:::i;:::-;11884:74;;11967:93;12056:3;11967:93;:::i;:::-;12085:2;12080:3;12076:12;12069:19;;11728:366;;;:::o;12100:::-;12242:3;12263:67;12327:2;12322:3;12263:67;:::i;:::-;12256:74;;12339:93;12428:3;12339:93;:::i;:::-;12457:2;12452:3;12448:12;12441:19;;12100:366;;;:::o;12472:::-;12614:3;12635:67;12699:2;12694:3;12635:67;:::i;:::-;12628:74;;12711:93;12800:3;12711:93;:::i;:::-;12829:2;12824:3;12820:12;12813:19;;12472:366;;;:::o;12844:::-;12986:3;13007:67;13071:2;13066:3;13007:67;:::i;:::-;13000:74;;13083:93;13172:3;13083:93;:::i;:::-;13201:2;13196:3;13192:12;13185:19;;12844:366;;;:::o;13216:::-;13358:3;13379:67;13443:2;13438:3;13379:67;:::i;:::-;13372:74;;13455:93;13544:3;13455:93;:::i;:::-;13573:2;13568:3;13564:12;13557:19;;13216:366;;;:::o;13588:::-;13730:3;13751:67;13815:2;13810:3;13751:67;:::i;:::-;13744:74;;13827:93;13916:3;13827:93;:::i;:::-;13945:2;13940:3;13936:12;13929:19;;13588:366;;;:::o;13960:::-;14102:3;14123:67;14187:2;14182:3;14123:67;:::i;:::-;14116:74;;14199:93;14288:3;14199:93;:::i;:::-;14317:2;14312:3;14308:12;14301:19;;13960:366;;;:::o;14332:::-;14474:3;14495:67;14559:2;14554:3;14495:67;:::i;:::-;14488:74;;14571:93;14660:3;14571:93;:::i;:::-;14689:2;14684:3;14680:12;14673:19;;14332:366;;;:::o;14704:::-;14846:3;14867:67;14931:2;14926:3;14867:67;:::i;:::-;14860:74;;14943:93;15032:3;14943:93;:::i;:::-;15061:2;15056:3;15052:12;15045:19;;14704:366;;;:::o;15076:::-;15218:3;15239:67;15303:2;15298:3;15239:67;:::i;:::-;15232:74;;15315:93;15404:3;15315:93;:::i;:::-;15433:2;15428:3;15424:12;15417:19;;15076:366;;;:::o;15448:::-;15590:3;15611:67;15675:2;15670:3;15611:67;:::i;:::-;15604:74;;15687:93;15776:3;15687:93;:::i;:::-;15805:2;15800:3;15796:12;15789:19;;15448:366;;;:::o;15820:::-;15962:3;15983:67;16047:2;16042:3;15983:67;:::i;:::-;15976:74;;16059:93;16148:3;16059:93;:::i;:::-;16177:2;16172:3;16168:12;16161:19;;15820:366;;;:::o;16192:::-;16334:3;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16431:93;16520:3;16431:93;:::i;:::-;16549:2;16544:3;16540:12;16533:19;;16192:366;;;:::o;16564:400::-;16724:3;16745:84;16827:1;16822:3;16745:84;:::i;:::-;16738:91;;16838:93;16927:3;16838:93;:::i;:::-;16956:1;16951:3;16947:11;16940:18;;16564:400;;;:::o;16970:366::-;17112:3;17133:67;17197:2;17192:3;17133:67;:::i;:::-;17126:74;;17209:93;17298:3;17209:93;:::i;:::-;17327:2;17322:3;17318:12;17311:19;;16970:366;;;:::o;17342:::-;17484:3;17505:67;17569:2;17564:3;17505:67;:::i;:::-;17498:74;;17581:93;17670:3;17581:93;:::i;:::-;17699:2;17694:3;17690:12;17683:19;;17342:366;;;:::o;17714:::-;17856:3;17877:67;17941:2;17936:3;17877:67;:::i;:::-;17870:74;;17953:93;18042:3;17953:93;:::i;:::-;18071:2;18066:3;18062:12;18055:19;;17714:366;;;:::o;18086:::-;18228:3;18249:67;18313:2;18308:3;18249:67;:::i;:::-;18242:74;;18325:93;18414:3;18325:93;:::i;:::-;18443:2;18438:3;18434:12;18427:19;;18086:366;;;:::o;18458:::-;18600:3;18621:67;18685:2;18680:3;18621:67;:::i;:::-;18614:74;;18697:93;18786:3;18697:93;:::i;:::-;18815:2;18810:3;18806:12;18799:19;;18458:366;;;:::o;18830:::-;18972:3;18993:67;19057:2;19052:3;18993:67;:::i;:::-;18986:74;;19069:93;19158:3;19069:93;:::i;:::-;19187:2;19182:3;19178:12;19171:19;;18830:366;;;:::o;19202:::-;19344:3;19365:67;19429:2;19424:3;19365:67;:::i;:::-;19358:74;;19441:93;19530:3;19441:93;:::i;:::-;19559:2;19554:3;19550:12;19543:19;;19202:366;;;:::o;19574:::-;19716:3;19737:67;19801:2;19796:3;19737:67;:::i;:::-;19730:74;;19813:93;19902:3;19813:93;:::i;:::-;19931:2;19926:3;19922:12;19915:19;;19574:366;;;:::o;19946:::-;20088:3;20109:67;20173:2;20168:3;20109:67;:::i;:::-;20102:74;;20185:93;20274:3;20185:93;:::i;:::-;20303:2;20298:3;20294:12;20287:19;;19946:366;;;:::o;20318:::-;20460:3;20481:67;20545:2;20540:3;20481:67;:::i;:::-;20474:74;;20557:93;20646:3;20557:93;:::i;:::-;20675:2;20670:3;20666:12;20659:19;;20318:366;;;:::o;20690:118::-;20777:24;20795:5;20777:24;:::i;:::-;20772:3;20765:37;20690:118;;:::o;20814:435::-;20994:3;21016:95;21107:3;21098:6;21016:95;:::i;:::-;21009:102;;21128:95;21219:3;21210:6;21128:95;:::i;:::-;21121:102;;21240:3;21233:10;;20814:435;;;;;:::o;21255:541::-;21488:3;21510:95;21601:3;21592:6;21510:95;:::i;:::-;21503:102;;21622:148;21766:3;21622:148;:::i;:::-;21615:155;;21787:3;21780:10;;21255:541;;;;:::o;21802:222::-;21895:4;21933:2;21922:9;21918:18;21910:26;;21946:71;22014:1;22003:9;21999:17;21990:6;21946:71;:::i;:::-;21802:222;;;;:::o;22030:640::-;22225:4;22263:3;22252:9;22248:19;22240:27;;22277:71;22345:1;22334:9;22330:17;22321:6;22277:71;:::i;:::-;22358:72;22426:2;22415:9;22411:18;22402:6;22358:72;:::i;:::-;22440;22508:2;22497:9;22493:18;22484:6;22440:72;:::i;:::-;22559:9;22553:4;22549:20;22544:2;22533:9;22529:18;22522:48;22587:76;22658:4;22649:6;22587:76;:::i;:::-;22579:84;;22030:640;;;;;;;:::o;22676:332::-;22797:4;22835:2;22824:9;22820:18;22812:26;;22848:71;22916:1;22905:9;22901:17;22892:6;22848:71;:::i;:::-;22929:72;22997:2;22986:9;22982:18;22973:6;22929:72;:::i;:::-;22676:332;;;;;:::o;23014:210::-;23101:4;23139:2;23128:9;23124:18;23116:26;;23152:65;23214:1;23203:9;23199:17;23190:6;23152:65;:::i;:::-;23014:210;;;;:::o;23230:313::-;23343:4;23381:2;23370:9;23366:18;23358:26;;23430:9;23424:4;23420:20;23416:1;23405:9;23401:17;23394:47;23458:78;23531:4;23522:6;23458:78;:::i;:::-;23450:86;;23230:313;;;;:::o;23549:419::-;23715:4;23753:2;23742:9;23738:18;23730:26;;23802:9;23796:4;23792:20;23788:1;23777:9;23773:17;23766:47;23830:131;23956:4;23830:131;:::i;:::-;23822:139;;23549:419;;;:::o;23974:::-;24140:4;24178:2;24167:9;24163:18;24155:26;;24227:9;24221:4;24217:20;24213:1;24202:9;24198:17;24191:47;24255:131;24381:4;24255:131;:::i;:::-;24247:139;;23974:419;;;:::o;24399:::-;24565:4;24603:2;24592:9;24588:18;24580:26;;24652:9;24646:4;24642:20;24638:1;24627:9;24623:17;24616:47;24680:131;24806:4;24680:131;:::i;:::-;24672:139;;24399:419;;;:::o;24824:::-;24990:4;25028:2;25017:9;25013:18;25005:26;;25077:9;25071:4;25067:20;25063:1;25052:9;25048:17;25041:47;25105:131;25231:4;25105:131;:::i;:::-;25097:139;;24824:419;;;:::o;25249:::-;25415:4;25453:2;25442:9;25438:18;25430:26;;25502:9;25496:4;25492:20;25488:1;25477:9;25473:17;25466:47;25530:131;25656:4;25530:131;:::i;:::-;25522:139;;25249:419;;;:::o;25674:::-;25840:4;25878:2;25867:9;25863:18;25855:26;;25927:9;25921:4;25917:20;25913:1;25902:9;25898:17;25891:47;25955:131;26081:4;25955:131;:::i;:::-;25947:139;;25674:419;;;:::o;26099:::-;26265:4;26303:2;26292:9;26288:18;26280:26;;26352:9;26346:4;26342:20;26338:1;26327:9;26323:17;26316:47;26380:131;26506:4;26380:131;:::i;:::-;26372:139;;26099:419;;;:::o;26524:::-;26690:4;26728:2;26717:9;26713:18;26705:26;;26777:9;26771:4;26767:20;26763:1;26752:9;26748:17;26741:47;26805:131;26931:4;26805:131;:::i;:::-;26797:139;;26524:419;;;:::o;26949:::-;27115:4;27153:2;27142:9;27138:18;27130:26;;27202:9;27196:4;27192:20;27188:1;27177:9;27173:17;27166:47;27230:131;27356:4;27230:131;:::i;:::-;27222:139;;26949:419;;;:::o;27374:::-;27540:4;27578:2;27567:9;27563:18;27555:26;;27627:9;27621:4;27617:20;27613:1;27602:9;27598:17;27591:47;27655:131;27781:4;27655:131;:::i;:::-;27647:139;;27374:419;;;:::o;27799:::-;27965:4;28003:2;27992:9;27988:18;27980:26;;28052:9;28046:4;28042:20;28038:1;28027:9;28023:17;28016:47;28080:131;28206:4;28080:131;:::i;:::-;28072:139;;27799:419;;;:::o;28224:::-;28390:4;28428:2;28417:9;28413:18;28405:26;;28477:9;28471:4;28467:20;28463:1;28452:9;28448:17;28441:47;28505:131;28631:4;28505:131;:::i;:::-;28497:139;;28224:419;;;:::o;28649:::-;28815:4;28853:2;28842:9;28838:18;28830:26;;28902:9;28896:4;28892:20;28888:1;28877:9;28873:17;28866:47;28930:131;29056:4;28930:131;:::i;:::-;28922:139;;28649:419;;;:::o;29074:::-;29240:4;29278:2;29267:9;29263:18;29255:26;;29327:9;29321:4;29317:20;29313:1;29302:9;29298:17;29291:47;29355:131;29481:4;29355:131;:::i;:::-;29347:139;;29074:419;;;:::o;29499:::-;29665:4;29703:2;29692:9;29688:18;29680:26;;29752:9;29746:4;29742:20;29738:1;29727:9;29723:17;29716:47;29780:131;29906:4;29780:131;:::i;:::-;29772:139;;29499:419;;;:::o;29924:::-;30090:4;30128:2;30117:9;30113:18;30105:26;;30177:9;30171:4;30167:20;30163:1;30152:9;30148:17;30141:47;30205:131;30331:4;30205:131;:::i;:::-;30197:139;;29924:419;;;:::o;30349:::-;30515:4;30553:2;30542:9;30538:18;30530:26;;30602:9;30596:4;30592:20;30588:1;30577:9;30573:17;30566:47;30630:131;30756:4;30630:131;:::i;:::-;30622:139;;30349:419;;;:::o;30774:::-;30940:4;30978:2;30967:9;30963:18;30955:26;;31027:9;31021:4;31017:20;31013:1;31002:9;30998:17;30991:47;31055:131;31181:4;31055:131;:::i;:::-;31047:139;;30774:419;;;:::o;31199:::-;31365:4;31403:2;31392:9;31388:18;31380:26;;31452:9;31446:4;31442:20;31438:1;31427:9;31423:17;31416:47;31480:131;31606:4;31480:131;:::i;:::-;31472:139;;31199:419;;;:::o;31624:::-;31790:4;31828:2;31817:9;31813:18;31805:26;;31877:9;31871:4;31867:20;31863:1;31852:9;31848:17;31841:47;31905:131;32031:4;31905:131;:::i;:::-;31897:139;;31624:419;;;:::o;32049:::-;32215:4;32253:2;32242:9;32238:18;32230:26;;32302:9;32296:4;32292:20;32288:1;32277:9;32273:17;32266:47;32330:131;32456:4;32330:131;:::i;:::-;32322:139;;32049:419;;;:::o;32474:::-;32640:4;32678:2;32667:9;32663:18;32655:26;;32727:9;32721:4;32717:20;32713:1;32702:9;32698:17;32691:47;32755:131;32881:4;32755:131;:::i;:::-;32747:139;;32474:419;;;:::o;32899:::-;33065:4;33103:2;33092:9;33088:18;33080:26;;33152:9;33146:4;33142:20;33138:1;33127:9;33123:17;33116:47;33180:131;33306:4;33180:131;:::i;:::-;33172:139;;32899:419;;;:::o;33324:::-;33490:4;33528:2;33517:9;33513:18;33505:26;;33577:9;33571:4;33567:20;33563:1;33552:9;33548:17;33541:47;33605:131;33731:4;33605:131;:::i;:::-;33597:139;;33324:419;;;:::o;33749:::-;33915:4;33953:2;33942:9;33938:18;33930:26;;34002:9;33996:4;33992:20;33988:1;33977:9;33973:17;33966:47;34030:131;34156:4;34030:131;:::i;:::-;34022:139;;33749:419;;;:::o;34174:::-;34340:4;34378:2;34367:9;34363:18;34355:26;;34427:9;34421:4;34417:20;34413:1;34402:9;34398:17;34391:47;34455:131;34581:4;34455:131;:::i;:::-;34447:139;;34174:419;;;:::o;34599:::-;34765:4;34803:2;34792:9;34788:18;34780:26;;34852:9;34846:4;34842:20;34838:1;34827:9;34823:17;34816:47;34880:131;35006:4;34880:131;:::i;:::-;34872:139;;34599:419;;;:::o;35024:222::-;35117:4;35155:2;35144:9;35140:18;35132:26;;35168:71;35236:1;35225:9;35221:17;35212:6;35168:71;:::i;:::-;35024:222;;;;:::o;35252:129::-;35286:6;35313:20;;:::i;:::-;35303:30;;35342:33;35370:4;35362:6;35342:33;:::i;:::-;35252:129;;;:::o;35387:75::-;35420:6;35453:2;35447:9;35437:19;;35387:75;:::o;35468:307::-;35529:4;35619:18;35611:6;35608:30;35605:56;;;35641:18;;:::i;:::-;35605:56;35679:29;35701:6;35679:29;:::i;:::-;35671:37;;35763:4;35757;35753:15;35745:23;;35468:307;;;:::o;35781:308::-;35843:4;35933:18;35925:6;35922:30;35919:56;;;35955:18;;:::i;:::-;35919:56;35993:29;36015:6;35993:29;:::i;:::-;35985:37;;36077:4;36071;36067:15;36059:23;;35781:308;;;:::o;36095:98::-;36146:6;36180:5;36174:12;36164:22;;36095:98;;;:::o;36199:99::-;36251:6;36285:5;36279:12;36269:22;;36199:99;;;:::o;36304:168::-;36387:11;36421:6;36416:3;36409:19;36461:4;36456:3;36452:14;36437:29;;36304:168;;;;:::o;36478:169::-;36562:11;36596:6;36591:3;36584:19;36636:4;36631:3;36627:14;36612:29;;36478:169;;;;:::o;36653:148::-;36755:11;36792:3;36777:18;;36653:148;;;;:::o;36807:305::-;36847:3;36866:20;36884:1;36866:20;:::i;:::-;36861:25;;36900:20;36918:1;36900:20;:::i;:::-;36895:25;;37054:1;36986:66;36982:74;36979:1;36976:81;36973:107;;;37060:18;;:::i;:::-;36973:107;37104:1;37101;37097:9;37090:16;;36807:305;;;;:::o;37118:185::-;37158:1;37175:20;37193:1;37175:20;:::i;:::-;37170:25;;37209:20;37227:1;37209:20;:::i;:::-;37204:25;;37248:1;37238:35;;37253:18;;:::i;:::-;37238:35;37295:1;37292;37288:9;37283:14;;37118:185;;;;:::o;37309:348::-;37349:7;37372:20;37390:1;37372:20;:::i;:::-;37367:25;;37406:20;37424:1;37406:20;:::i;:::-;37401:25;;37594:1;37526:66;37522:74;37519:1;37516:81;37511:1;37504:9;37497:17;37493:105;37490:131;;;37601:18;;:::i;:::-;37490:131;37649:1;37646;37642:9;37631:20;;37309:348;;;;:::o;37663:191::-;37703:4;37723:20;37741:1;37723:20;:::i;:::-;37718:25;;37757:20;37775:1;37757:20;:::i;:::-;37752:25;;37796:1;37793;37790:8;37787:34;;;37801:18;;:::i;:::-;37787:34;37846:1;37843;37839:9;37831:17;;37663:191;;;;:::o;37860:96::-;37897:7;37926:24;37944:5;37926:24;:::i;:::-;37915:35;;37860:96;;;:::o;37962:90::-;37996:7;38039:5;38032:13;38025:21;38014:32;;37962:90;;;:::o;38058:149::-;38094:7;38134:66;38127:5;38123:78;38112:89;;38058:149;;;:::o;38213:126::-;38250:7;38290:42;38283:5;38279:54;38268:65;;38213:126;;;:::o;38345:77::-;38382:7;38411:5;38400:16;;38345:77;;;:::o;38428:109::-;38464:7;38504:26;38497:5;38493:38;38482:49;;38428:109;;;:::o;38543:154::-;38627:6;38622:3;38617;38604:30;38689:1;38680:6;38675:3;38671:16;38664:27;38543:154;;;:::o;38703:307::-;38771:1;38781:113;38795:6;38792:1;38789:13;38781:113;;;38880:1;38875:3;38871:11;38865:18;38861:1;38856:3;38852:11;38845:39;38817:2;38814:1;38810:10;38805:15;;38781:113;;;38912:6;38909:1;38906:13;38903:101;;;38992:1;38983:6;38978:3;38974:16;38967:27;38903:101;38752:258;38703:307;;;:::o;39016:320::-;39060:6;39097:1;39091:4;39087:12;39077:22;;39144:1;39138:4;39134:12;39165:18;39155:81;;39221:4;39213:6;39209:17;39199:27;;39155:81;39283:2;39275:6;39272:14;39252:18;39249:38;39246:84;;;39302:18;;:::i;:::-;39246:84;39067:269;39016:320;;;:::o;39342:281::-;39425:27;39447:4;39425:27;:::i;:::-;39417:6;39413:40;39555:6;39543:10;39540:22;39519:18;39507:10;39504:34;39501:62;39498:88;;;39566:18;;:::i;:::-;39498:88;39606:10;39602:2;39595:22;39385:238;39342:281;;:::o;39629:233::-;39668:3;39691:24;39709:5;39691:24;:::i;:::-;39682:33;;39737:66;39730:5;39727:77;39724:103;;;39807:18;;:::i;:::-;39724:103;39854:1;39847:5;39843:13;39836:20;;39629:233;;;:::o;39868:176::-;39900:1;39917:20;39935:1;39917:20;:::i;:::-;39912:25;;39951:20;39969:1;39951:20;:::i;:::-;39946:25;;39990:1;39980:35;;39995:18;;:::i;:::-;39980:35;40036:1;40033;40029:9;40024:14;;39868:176;;;;:::o;40050:180::-;40098:77;40095:1;40088:88;40195:4;40192:1;40185:15;40219:4;40216:1;40209:15;40236:180;40284:77;40281:1;40274:88;40381:4;40378:1;40371:15;40405:4;40402:1;40395:15;40422:180;40470:77;40467:1;40460:88;40567:4;40564:1;40557:15;40591:4;40588:1;40581:15;40608:180;40656:77;40653:1;40646:88;40753:4;40750:1;40743:15;40777:4;40774:1;40767:15;40794:180;40842:77;40839:1;40832:88;40939:4;40936:1;40929:15;40963:4;40960:1;40953:15;40980:180;41028:77;41025:1;41018:88;41125:4;41122:1;41115:15;41149:4;41146:1;41139:15;41166:117;41275:1;41272;41265:12;41289:117;41398:1;41395;41388:12;41412:117;41521:1;41518;41511:12;41535:117;41644:1;41641;41634:12;41658:102;41699:6;41750:2;41746:7;41741:2;41734:5;41730:14;41726:28;41716:38;;41658:102;;;:::o;41766:229::-;41906:34;41902:1;41894:6;41890:14;41883:58;41975:12;41970:2;41962:6;41958:15;41951:37;41766:229;:::o;42001:170::-;42141:22;42137:1;42129:6;42125:14;42118:46;42001:170;:::o;42177:171::-;42317:23;42313:1;42305:6;42301:14;42294:47;42177:171;:::o;42354:230::-;42494:34;42490:1;42482:6;42478:14;42471:58;42563:13;42558:2;42550:6;42546:15;42539:38;42354:230;:::o;42590:237::-;42730:34;42726:1;42718:6;42714:14;42707:58;42799:20;42794:2;42786:6;42782:15;42775:45;42590:237;:::o;42833:225::-;42973:34;42969:1;42961:6;42957:14;42950:58;43042:8;43037:2;43029:6;43025:15;43018:33;42833:225;:::o;43064:178::-;43204:30;43200:1;43192:6;43188:14;43181:54;43064:178;:::o;43248:223::-;43388:34;43384:1;43376:6;43372:14;43365:58;43457:6;43452:2;43444:6;43440:15;43433:31;43248:223;:::o;43477:175::-;43617:27;43613:1;43605:6;43601:14;43594:51;43477:175;:::o;43658:231::-;43798:34;43794:1;43786:6;43782:14;43775:58;43867:14;43862:2;43854:6;43850:15;43843:39;43658:231;:::o;43895:166::-;44035:18;44031:1;44023:6;44019:14;44012:42;43895:166;:::o;44067:243::-;44207:34;44203:1;44195:6;44191:14;44184:58;44276:26;44271:2;44263:6;44259:15;44252:51;44067:243;:::o;44316:229::-;44456:34;44452:1;44444:6;44440:14;44433:58;44525:12;44520:2;44512:6;44508:15;44501:37;44316:229;:::o;44551:228::-;44691:34;44687:1;44679:6;44675:14;44668:58;44760:11;44755:2;44747:6;44743:15;44736:36;44551:228;:::o;44785:222::-;44925:34;44921:1;44913:6;44909:14;44902:58;44994:5;44989:2;44981:6;44977:15;44970:30;44785:222;:::o;45013:182::-;45153:34;45149:1;45141:6;45137:14;45130:58;45013:182;:::o;45201:231::-;45341:34;45337:1;45329:6;45325:14;45318:58;45410:14;45405:2;45397:6;45393:15;45386:39;45201:231;:::o;45438:155::-;45578:7;45574:1;45566:6;45562:14;45555:31;45438:155;:::o;45599:182::-;45739:34;45735:1;45727:6;45723:14;45716:58;45599:182;:::o;45787:228::-;45927:34;45923:1;45915:6;45911:14;45904:58;45996:11;45991:2;45983:6;45979:15;45972:36;45787:228;:::o;46021:234::-;46161:34;46157:1;46149:6;46145:14;46138:58;46230:17;46225:2;46217:6;46213:15;46206:42;46021:234;:::o;46261:220::-;46401:34;46397:1;46389:6;46385:14;46378:58;46470:3;46465:2;46457:6;46453:15;46446:28;46261:220;:::o;46487:236::-;46627:34;46623:1;46615:6;46611:14;46604:58;46696:19;46691:2;46683:6;46679:15;46672:44;46487:236;:::o;46729:177::-;46869:29;46865:1;46857:6;46853:14;46846:53;46729:177;:::o;46912:231::-;47052:34;47048:1;47040:6;47036:14;47029:58;47121:14;47116:2;47108:6;47104:15;47097:39;46912:231;:::o;47149:229::-;47289:34;47285:1;47277:6;47273:14;47266:58;47358:12;47353:2;47345:6;47341:15;47334:37;47149:229;:::o;47384:164::-;47524:16;47520:1;47512:6;47508:14;47501:40;47384:164;:::o;47554:175::-;47694:27;47690:1;47682:6;47678:14;47671:51;47554:175;:::o;47735:122::-;47808:24;47826:5;47808:24;:::i;:::-;47801:5;47798:35;47788:63;;47847:1;47844;47837:12;47788:63;47735:122;:::o;47863:116::-;47933:21;47948:5;47933:21;:::i;:::-;47926:5;47923:32;47913:60;;47969:1;47966;47959:12;47913:60;47863:116;:::o;47985:120::-;48057:23;48074:5;48057:23;:::i;:::-;48050:5;48047:34;48037:62;;48095:1;48092;48085:12;48037:62;47985:120;:::o;48111:122::-;48184:24;48202:5;48184:24;:::i;:::-;48177:5;48174:35;48164:63;;48223:1;48220;48213:12;48164:63;48111:122;:::o;48239:120::-;48311:23;48328:5;48311:23;:::i;:::-;48304:5;48301:34;48291:62;;48349:1;48346;48339:12;48291:62;48239:120;:::o
Swarm Source
ipfs://ca627e3b8b441b16e3d0a4d750d6558adc68334da7abf3fc498201a0d4efdf75
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.