ERC-721
Overview
Max Total Supply
897 MP
Holders
59
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 MPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Moopers
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-26 */ // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/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/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.9.0) (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: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual 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 token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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 from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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: Moopers.sol pragma solidity ^0.8.18; contract Moopers is ERC721, Ownable { using Strings for uint256; uint public constant MAX_TOKENS = 3500; uint private constant TOKENS_RESERVED = 200; uint public price = 10000; uint256 public constant MAX_MINT_PER_TX = 3300; bool public isSaleActive; uint256 public totalSupply; mapping(address => uint256) private mintedPerWallet; string public baseUri; string public baseExtension = ".json"; constructor() ERC721("Moopers", "MP") { baseUri = "ipfs://bafybeic6fk4zvyf7bfvlj5itkvpfzmk6opcukt3yfe2do7e5olxhlh34da/"; for(uint256 i = 1; i <= TOKENS_RESERVED; ++i) { _safeMint(msg.sender, i); } totalSupply = TOKENS_RESERVED; } // Public Functions function mint(uint256 _numTokens) external payable { require(isSaleActive, "The sale is paused."); require(_numTokens <= MAX_MINT_PER_TX, "You cannot mint that many in one transaction."); require(mintedPerWallet[msg.sender] + _numTokens <= MAX_MINT_PER_TX, "You cannot mint that many total."); uint256 curTotalSupply = totalSupply; require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds total supply."); require(_numTokens * price <= msg.value, "Insufficient funds."); for(uint256 i = 1; i <= _numTokens; ++i) { _safeMint(msg.sender, curTotalSupply + i); } mintedPerWallet[msg.sender] += _numTokens; totalSupply += _numTokens; } // Owner-only functions function flipSaleState() external onlyOwner { isSaleActive = !isSaleActive; } function setBaseUri(string memory _baseUri) external onlyOwner { baseUri = _baseUri; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function withdrawAll() external payable onlyOwner { uint256 balance = address(this).balance; uint256 balanceOne = balance * 100 / 100; uint256 balanceTwo = balance * 0 / 100; ( bool transferOne, ) = payable(0xd608138d112FA20848F785a80ef1F2936C769B25).call{value: balanceOne}(""); ( bool transferTwo, ) = payable(0xd608138d112FA20848F785a80ef1F2936C769B25).call{value: balanceTwo}(""); require(transferOne && transferTwo, "Transfer failed."); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function _baseURI() internal view virtual override returns (string memory) { return baseUri; } }
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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526127106007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908162000050919062000a01565b503480156200005e57600080fd5b506040518060400160405280600781526020017f4d6f6f70657273000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d500000000000000000000000000000000000000000000000000000000000008152508160009081620000dc919062000a01565b508060019081620000ee919062000a01565b50505062000111620001056200018160201b60201c565b6200018960201b60201c565b6040518060800160405280604381526020016200492b60439139600b90816200013b919062000a01565b506000600190505b60c8811162000172576200015e33826200024f60201b60201c565b806200016a9062000b17565b905062000143565b5060c860098190555062000ec9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002718282604051806020016040528060008152506200027560201b60201c565b5050565b620002878383620002e360201b60201c565b6200029c60008484846200052960201b60201c565b620002de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d59062000beb565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034c9062000c5d565b60405180910390fd5b6200036681620006d260201b60201c565b15620003a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a09062000ccf565b60405180910390fd5b620003bf6000838360016200071b60201b60201c565b620003d081620006d260201b60201c565b1562000413576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040a9062000ccf565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005256000838360016200072160201b60201c565b5050565b6000620005578473ffffffffffffffffffffffffffffffffffffffff166200072760201b620013bb1760201c565b15620006c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005896200018160201b60201c565b8786866040518563ffffffff1660e01b8152600401620005ad949392919062000de1565b6020604051808303816000875af1925050508015620005ec57506040513d601f19601f82011682018060405250810190620005e9919062000e97565b60015b62000674573d80600081146200061f576040519150601f19603f3d011682016040523d82523d6000602084013e62000624565b606091505b5060008151036200066c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006639062000beb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006ca565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff16620006fc836200074a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080957607f821691505b6020821081036200081f576200081e620007c1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200084a565b6200089586836200084a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008e2620008dc620008d684620008ad565b620008b7565b620008ad565b9050919050565b6000819050919050565b620008fe83620008c1565b620009166200090d82620008e9565b84845462000857565b825550505050565b600090565b6200092d6200091e565b6200093a818484620008f3565b505050565b5b8181101562000962576200095660008262000923565b60018101905062000940565b5050565b601f821115620009b1576200097b8162000825565b62000986846200083a565b8101602085101562000996578190505b620009ae620009a5856200083a565b8301826200093f565b50505b505050565b600082821c905092915050565b6000620009d660001984600802620009b6565b1980831691505092915050565b6000620009f18383620009c3565b9150826002028217905092915050565b62000a0c8262000787565b67ffffffffffffffff81111562000a285762000a2762000792565b5b62000a348254620007f0565b62000a4182828562000966565b600060209050601f83116001811462000a79576000841562000a64578287015190505b62000a708582620009e3565b86555062000ae0565b601f19841662000a898662000825565b60005b8281101562000ab35784890151825560018201915060208501945060208101905062000a8c565b8683101562000ad3578489015162000acf601f891682620009c3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b2482620008ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000b595762000b5862000ae8565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000bd360328362000b64565b915062000be08262000b75565b604082019050919050565b6000602082019050818103600083015262000c068162000bc4565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000c4560208362000b64565b915062000c528262000c0d565b602082019050919050565b6000602082019050818103600083015262000c788162000c36565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000cb7601c8362000b64565b915062000cc48262000c7f565b602082019050919050565b6000602082019050818103600083015262000cea8162000ca8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d1e8262000cf1565b9050919050565b62000d308162000d11565b82525050565b62000d4181620008ad565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000d8357808201518184015260208101905062000d66565b60008484015250505050565b6000601f19601f8301169050919050565b600062000dad8262000d47565b62000db9818562000d52565b935062000dcb81856020860162000d63565b62000dd68162000d8f565b840191505092915050565b600060808201905062000df8600083018762000d25565b62000e07602083018662000d25565b62000e16604083018562000d36565b818103606083015262000e2a818462000da0565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000e718162000e3a565b811462000e7d57600080fd5b50565b60008151905062000e918162000e66565b92915050565b60006020828403121562000eb05762000eaf62000e35565b5b600062000ec08482850162000e80565b91505092915050565b613a528062000ed96000396000f3fe6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906123b4565b610674565b6040516101f091906123fc565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b91906124a7565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906124ff565b6107e8565b604051610258919061256d565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906125b4565b61082e565b005b34801561029657600080fd5b5061029f610945565b6040516102ac9190612603565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061261e565b61094b565b005b3480156102ea57600080fd5b506102f36109ab565b005b34801561030157600080fd5b5061031c6004803603810190610317919061261e565b6109df565b005b34801561032a57600080fd5b506103336109ff565b60405161034091906123fc565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b91906124ff565b610a12565b60405161037d919061256d565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190612671565b610a98565b6040516103ba9190612603565b60405180910390f35b3480156103cf57600080fd5b506103d8610b4f565b005b6103e2610b63565b005b3480156103f057600080fd5b506103f9610cf9565b604051610406919061256d565b60405180910390f35b34801561041b57600080fd5b50610424610d23565b6040516104319190612603565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c91906124ff565b610d29565b005b34801561046f57600080fd5b50610478610d3b565b60405161048591906124a7565b60405180910390f35b34801561049a57600080fd5b506104a3610dcd565b6040516104b091906124a7565b60405180910390f35b3480156104c557600080fd5b506104ce610e5b565b6040516104db9190612603565b60405180910390f35b6104fe60048036038101906104f991906124ff565b610e61565b005b34801561050c57600080fd5b50610527600480360381019061052291906127d3565b6110d3565b005b34801561053557600080fd5b50610550600480360381019061054b9190612848565b6110ee565b005b34801561055e57600080fd5b5061057960048036038101906105749190612929565b611104565b005b34801561058757600080fd5b50610590611166565b60405161059d91906124a7565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906124ff565b6111f4565b6040516105da91906124a7565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906129ac565b61129e565b60405161061791906123fc565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612671565b611332565b005b34801561065557600080fd5b5061065e6113b5565b60405161066b9190612603565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e826113de565b5b9050919050565b60606000805461076590612a1b565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612a1b565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611448565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090612abe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c8611493565b73ffffffffffffffffffffffffffffffffffffffff1614806108f757506108f6816108f1611493565b61129e565b5b610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612b50565b60405180910390fd5b610940838361149b565b505050565b60095481565b61095c610956611493565b82611554565b61099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290612be2565b60405180910390fd5b6109a68383836115e9565b505050565b6109b36118e2565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fa83838360405180602001604052806000815250611104565b505050565b600860009054906101000a900460ff1681565b600080610a1e83611960565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690612c4e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90612ce0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b576118e2565b610b61600061199d565b565b610b6b6118e2565b6000479050600060648083610b809190612d2f565b610b8a9190612da0565b905060006064600084610b9d9190612d2f565b610ba79190612da0565b9050600073d608138d112fa20848f785a80ef1f2936c769b2573ffffffffffffffffffffffffffffffffffffffff1683604051610be390612e02565b60006040518083038185875af1925050503d8060008114610c20576040519150601f19603f3d011682016040523d82523d6000602084013e610c25565b606091505b50509050600073d608138d112fa20848f785a80ef1f2936c769b2573ffffffffffffffffffffffffffffffffffffffff1683604051610c6390612e02565b60006040518083038185875af1925050503d8060008114610ca0576040519150601f19603f3d011682016040523d82523d6000602084013e610ca5565b606091505b50509050818015610cb35750805b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990612e63565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ce481565b610d316118e2565b8060078190555050565b606060018054610d4a90612a1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7690612a1b565b8015610dc35780601f10610d9857610100808354040283529160200191610dc3565b820191906000526020600020905b815481529060010190602001808311610da657829003601f168201915b5050505050905090565b600b8054610dda90612a1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0690612a1b565b8015610e535780601f10610e2857610100808354040283529160200191610e53565b820191906000526020600020905b815481529060010190602001808311610e3657829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612ecf565b60405180910390fd5b610ce4811115610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90612f61565b60405180910390fd5b610ce481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f439190612f81565b1115610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90613001565b60405180910390fd5b60006009549050610dac8282610f9a9190612f81565b1115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061306d565b60405180910390fd5b3460075483610fea9190612d2f565b111561102b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611022906130d9565b60405180910390fd5b6000600190505b82811161105f5761104e3382846110499190612f81565b611a63565b80611058906130f9565b9050611032565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110af9190612f81565b9250508190555081600960008282546110c89190612f81565b925050819055505050565b6110db6118e2565b80600b90816110ea91906132ed565b5050565b6111006110f9611493565b8383611a81565b5050565b61111561110f611493565b83611554565b611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612be2565b60405180910390fd5b61116084848484611bed565b50505050565b600c805461117390612a1b565b80601f016020809104026020016040519081016040528092919081815260200182805461119f90612a1b565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b505050505081565b60606111ff82611c49565b61123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613431565b60405180910390fd5b6000611248611c8a565b905060008151116112685760405180602001604052806000815250611296565b8061127284611d1c565b600c60405160200161128693929190613510565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61133a6118e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a0906135b3565b60405180910390fd5b6113b28161199d565b50565b610dac81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61145181611c49565b611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790612c4e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661150e83610a12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061156083610a12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a257506115a1818561129e565b5b806115e057508373ffffffffffffffffffffffffffffffffffffffff166115c8846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661160982610a12565b73ffffffffffffffffffffffffffffffffffffffff161461165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613645565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c5906136d7565b60405180910390fd5b6116db8383836001611dea565b8273ffffffffffffffffffffffffffffffffffffffff166116fb82610a12565b73ffffffffffffffffffffffffffffffffffffffff1614611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613645565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118dd8383836001611df0565b505050565b6118ea611493565b73ffffffffffffffffffffffffffffffffffffffff16611908610cf9565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590613743565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a7d828260405180602001604052806000815250611df6565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae6906137af565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be091906123fc565b60405180910390a3505050565b611bf88484846115e9565b611c0484848484611e51565b611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613841565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c6b83611960565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611c9990612a1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc590612a1b565b8015611d125780601f10611ce757610100808354040283529160200191611d12565b820191906000526020600020905b815481529060010190602001808311611cf557829003601f168201915b5050505050905090565b606060006001611d2b84611fd8565b01905060008167ffffffffffffffff811115611d4a57611d496126a8565b5b6040519080825280601f01601f191660200182016040528015611d7c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611ddf578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dd357611dd2612d71565b5b04945060008503611d8a575b819350505050919050565b50505050565b50505050565b611e00838361212b565b611e0d6000848484611e51565b611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390613841565b60405180910390fd5b505050565b6000611e728473ffffffffffffffffffffffffffffffffffffffff166113bb565b15611fcb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e9b611493565b8786866040518563ffffffff1660e01b8152600401611ebd94939291906138b6565b6020604051808303816000875af1925050508015611ef957506040513d601f19601f82011682018060405250810190611ef69190613917565b60015b611f7b573d8060008114611f29576040519150601f19603f3d011682016040523d82523d6000602084013e611f2e565b606091505b506000815103611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90613841565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fd0565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612036577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161202c5761202b612d71565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612073576d04ee2d6d415b85acef8100000000838161206957612068612d71565b5b0492506020810190505b662386f26fc1000083106120a257662386f26fc10000838161209857612097612d71565b5b0492506010810190505b6305f5e10083106120cb576305f5e10083816120c1576120c0612d71565b5b0492506008810190505b61271083106120f05761271083816120e6576120e5612d71565b5b0492506004810190505b60648310612113576064838161210957612108612d71565b5b0492506002810190505b600a8310612122576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190613990565b60405180910390fd5b6121a381611c49565b156121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da906139fc565b60405180910390fd5b6121f1600083836001611dea565b6121fa81611c49565b1561223a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612231906139fc565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612344600083836001611df0565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123918161235c565b811461239c57600080fd5b50565b6000813590506123ae81612388565b92915050565b6000602082840312156123ca576123c9612352565b5b60006123d88482850161239f565b91505092915050565b60008115159050919050565b6123f6816123e1565b82525050565b600060208201905061241160008301846123ed565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612451578082015181840152602081019050612436565b60008484015250505050565b6000601f19601f8301169050919050565b600061247982612417565b6124838185612422565b9350612493818560208601612433565b61249c8161245d565b840191505092915050565b600060208201905081810360008301526124c1818461246e565b905092915050565b6000819050919050565b6124dc816124c9565b81146124e757600080fd5b50565b6000813590506124f9816124d3565b92915050565b60006020828403121561251557612514612352565b5b6000612523848285016124ea565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125578261252c565b9050919050565b6125678161254c565b82525050565b6000602082019050612582600083018461255e565b92915050565b6125918161254c565b811461259c57600080fd5b50565b6000813590506125ae81612588565b92915050565b600080604083850312156125cb576125ca612352565b5b60006125d98582860161259f565b92505060206125ea858286016124ea565b9150509250929050565b6125fd816124c9565b82525050565b600060208201905061261860008301846125f4565b92915050565b60008060006060848603121561263757612636612352565b5b60006126458682870161259f565b93505060206126568682870161259f565b9250506040612667868287016124ea565b9150509250925092565b60006020828403121561268757612686612352565b5b60006126958482850161259f565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126e08261245d565b810181811067ffffffffffffffff821117156126ff576126fe6126a8565b5b80604052505050565b6000612712612348565b905061271e82826126d7565b919050565b600067ffffffffffffffff82111561273e5761273d6126a8565b5b6127478261245d565b9050602081019050919050565b82818337600083830152505050565b600061277661277184612723565b612708565b905082815260208101848484011115612792576127916126a3565b5b61279d848285612754565b509392505050565b600082601f8301126127ba576127b961269e565b5b81356127ca848260208601612763565b91505092915050565b6000602082840312156127e9576127e8612352565b5b600082013567ffffffffffffffff81111561280757612806612357565b5b612813848285016127a5565b91505092915050565b612825816123e1565b811461283057600080fd5b50565b6000813590506128428161281c565b92915050565b6000806040838503121561285f5761285e612352565b5b600061286d8582860161259f565b925050602061287e85828601612833565b9150509250929050565b600067ffffffffffffffff8211156128a3576128a26126a8565b5b6128ac8261245d565b9050602081019050919050565b60006128cc6128c784612888565b612708565b9050828152602081018484840111156128e8576128e76126a3565b5b6128f3848285612754565b509392505050565b600082601f8301126129105761290f61269e565b5b81356129208482602086016128b9565b91505092915050565b6000806000806080858703121561294357612942612352565b5b60006129518782880161259f565b94505060206129628782880161259f565b9350506040612973878288016124ea565b925050606085013567ffffffffffffffff81111561299457612993612357565b5b6129a0878288016128fb565b91505092959194509250565b600080604083850312156129c3576129c2612352565b5b60006129d18582860161259f565b92505060206129e28582860161259f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a3357607f821691505b602082108103612a4657612a456129ec565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aa8602183612422565b9150612ab382612a4c565b604082019050919050565b60006020820190508181036000830152612ad781612a9b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612b3a603d83612422565b9150612b4582612ade565b604082019050919050565b60006020820190508181036000830152612b6981612b2d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612bcc602d83612422565b9150612bd782612b70565b604082019050919050565b60006020820190508181036000830152612bfb81612bbf565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612c38601883612422565b9150612c4382612c02565b602082019050919050565b60006020820190508181036000830152612c6781612c2b565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612cca602983612422565b9150612cd582612c6e565b604082019050919050565b60006020820190508181036000830152612cf981612cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d3a826124c9565b9150612d45836124c9565b9250828202612d53816124c9565b91508282048414831517612d6a57612d69612d00565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dab826124c9565b9150612db6836124c9565b925082612dc657612dc5612d71565b5b828204905092915050565b600081905092915050565b50565b6000612dec600083612dd1565b9150612df782612ddc565b600082019050919050565b6000612e0d82612ddf565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612e4d601083612422565b9150612e5882612e17565b602082019050919050565b60006020820190508181036000830152612e7c81612e40565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b6000612eb9601383612422565b9150612ec482612e83565b602082019050919050565b60006020820190508181036000830152612ee881612eac565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000612f4b602d83612422565b9150612f5682612eef565b604082019050919050565b60006020820190508181036000830152612f7a81612f3e565b9050919050565b6000612f8c826124c9565b9150612f97836124c9565b9250828201905080821115612faf57612fae612d00565b5b92915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b6000612feb602083612422565b9150612ff682612fb5565b602082019050919050565b6000602082019050818103600083015261301a81612fde565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000613057601583612422565b915061306282613021565b602082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006130c3601383612422565b91506130ce8261308d565b602082019050919050565b600060208201905081810360008301526130f2816130b6565b9050919050565b6000613104826124c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361313657613135612d00565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131a37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613166565b6131ad8683613166565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131ea6131e56131e0846124c9565b6131c5565b6124c9565b9050919050565b6000819050919050565b613204836131cf565b613218613210826131f1565b848454613173565b825550505050565b600090565b61322d613220565b6132388184846131fb565b505050565b5b8181101561325c57613251600082613225565b60018101905061323e565b5050565b601f8211156132a15761327281613141565b61327b84613156565b8101602085101561328a578190505b61329e61329685613156565b83018261323d565b50505b505050565b600082821c905092915050565b60006132c4600019846008026132a6565b1980831691505092915050565b60006132dd83836132b3565b9150826002028217905092915050565b6132f682612417565b67ffffffffffffffff81111561330f5761330e6126a8565b5b6133198254612a1b565b613324828285613260565b600060209050601f8311600181146133575760008415613345578287015190505b61334f85826132d1565b8655506133b7565b601f19841661336586613141565b60005b8281101561338d57848901518255600182019150602085019450602081019050613368565b868310156133aa57848901516133a6601f8916826132b3565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061341b602f83612422565b9150613426826133bf565b604082019050919050565b6000602082019050818103600083015261344a8161340e565b9050919050565b600081905092915050565b600061346782612417565b6134718185613451565b9350613481818560208601612433565b80840191505092915050565b6000815461349a81612a1b565b6134a48186613451565b945060018216600081146134bf57600181146134d457613507565b60ff1983168652811515820286019350613507565b6134dd85613141565b60005b838110156134ff578154818901526001820191506020810190506134e0565b838801955050505b50505092915050565b600061351c828661345c565b9150613528828561345c565b9150613534828461348d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061359d602683612422565b91506135a882613541565b604082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061362f602583612422565b915061363a826135d3565b604082019050919050565b6000602082019050818103600083015261365e81613622565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c1602483612422565b91506136cc82613665565b604082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061372d602083612422565b9150613738826136f7565b602082019050919050565b6000602082019050818103600083015261375c81613720565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613799601983612422565b91506137a482613763565b602082019050919050565b600060208201905081810360008301526137c88161378c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061382b603283612422565b9150613836826137cf565b604082019050919050565b6000602082019050818103600083015261385a8161381e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061388882613861565b613892818561386c565b93506138a2818560208601612433565b6138ab8161245d565b840191505092915050565b60006080820190506138cb600083018761255e565b6138d8602083018661255e565b6138e560408301856125f4565b81810360608301526138f7818461387d565b905095945050505050565b60008151905061391181612388565b92915050565b60006020828403121561392d5761392c612352565b5b600061393b84828501613902565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061397a602083612422565b915061398582613944565b602082019050919050565b600060208201905081810360008301526139a98161396d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139e6601c83612422565b91506139f1826139b0565b602082019050919050565b60006020820190508181036000830152613a15816139d9565b905091905056fea2646970667358221220a0a0274f8397eaca1e395818565dc105fb272aa7101962c0c75676e8090b2c3464736f6c63430008120033697066733a2f2f626166796265696336666b347a767966376266766c6a3569746b7670667a6d6b366f7063756b743379666532646f3765356f6c78686c68333464612f
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906123b4565b610674565b6040516101f091906123fc565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b91906124a7565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906124ff565b6107e8565b604051610258919061256d565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906125b4565b61082e565b005b34801561029657600080fd5b5061029f610945565b6040516102ac9190612603565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061261e565b61094b565b005b3480156102ea57600080fd5b506102f36109ab565b005b34801561030157600080fd5b5061031c6004803603810190610317919061261e565b6109df565b005b34801561032a57600080fd5b506103336109ff565b60405161034091906123fc565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b91906124ff565b610a12565b60405161037d919061256d565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190612671565b610a98565b6040516103ba9190612603565b60405180910390f35b3480156103cf57600080fd5b506103d8610b4f565b005b6103e2610b63565b005b3480156103f057600080fd5b506103f9610cf9565b604051610406919061256d565b60405180910390f35b34801561041b57600080fd5b50610424610d23565b6040516104319190612603565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c91906124ff565b610d29565b005b34801561046f57600080fd5b50610478610d3b565b60405161048591906124a7565b60405180910390f35b34801561049a57600080fd5b506104a3610dcd565b6040516104b091906124a7565b60405180910390f35b3480156104c557600080fd5b506104ce610e5b565b6040516104db9190612603565b60405180910390f35b6104fe60048036038101906104f991906124ff565b610e61565b005b34801561050c57600080fd5b50610527600480360381019061052291906127d3565b6110d3565b005b34801561053557600080fd5b50610550600480360381019061054b9190612848565b6110ee565b005b34801561055e57600080fd5b5061057960048036038101906105749190612929565b611104565b005b34801561058757600080fd5b50610590611166565b60405161059d91906124a7565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906124ff565b6111f4565b6040516105da91906124a7565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906129ac565b61129e565b60405161061791906123fc565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612671565b611332565b005b34801561065557600080fd5b5061065e6113b5565b60405161066b9190612603565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e826113de565b5b9050919050565b60606000805461076590612a1b565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612a1b565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611448565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090612abe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c8611493565b73ffffffffffffffffffffffffffffffffffffffff1614806108f757506108f6816108f1611493565b61129e565b5b610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612b50565b60405180910390fd5b610940838361149b565b505050565b60095481565b61095c610956611493565b82611554565b61099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290612be2565b60405180910390fd5b6109a68383836115e9565b505050565b6109b36118e2565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fa83838360405180602001604052806000815250611104565b505050565b600860009054906101000a900460ff1681565b600080610a1e83611960565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690612c4e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90612ce0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b576118e2565b610b61600061199d565b565b610b6b6118e2565b6000479050600060648083610b809190612d2f565b610b8a9190612da0565b905060006064600084610b9d9190612d2f565b610ba79190612da0565b9050600073d608138d112fa20848f785a80ef1f2936c769b2573ffffffffffffffffffffffffffffffffffffffff1683604051610be390612e02565b60006040518083038185875af1925050503d8060008114610c20576040519150601f19603f3d011682016040523d82523d6000602084013e610c25565b606091505b50509050600073d608138d112fa20848f785a80ef1f2936c769b2573ffffffffffffffffffffffffffffffffffffffff1683604051610c6390612e02565b60006040518083038185875af1925050503d8060008114610ca0576040519150601f19603f3d011682016040523d82523d6000602084013e610ca5565b606091505b50509050818015610cb35750805b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990612e63565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ce481565b610d316118e2565b8060078190555050565b606060018054610d4a90612a1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7690612a1b565b8015610dc35780601f10610d9857610100808354040283529160200191610dc3565b820191906000526020600020905b815481529060010190602001808311610da657829003601f168201915b5050505050905090565b600b8054610dda90612a1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0690612a1b565b8015610e535780601f10610e2857610100808354040283529160200191610e53565b820191906000526020600020905b815481529060010190602001808311610e3657829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612ecf565b60405180910390fd5b610ce4811115610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90612f61565b60405180910390fd5b610ce481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f439190612f81565b1115610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90613001565b60405180910390fd5b60006009549050610dac8282610f9a9190612f81565b1115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061306d565b60405180910390fd5b3460075483610fea9190612d2f565b111561102b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611022906130d9565b60405180910390fd5b6000600190505b82811161105f5761104e3382846110499190612f81565b611a63565b80611058906130f9565b9050611032565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110af9190612f81565b9250508190555081600960008282546110c89190612f81565b925050819055505050565b6110db6118e2565b80600b90816110ea91906132ed565b5050565b6111006110f9611493565b8383611a81565b5050565b61111561110f611493565b83611554565b611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612be2565b60405180910390fd5b61116084848484611bed565b50505050565b600c805461117390612a1b565b80601f016020809104026020016040519081016040528092919081815260200182805461119f90612a1b565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b505050505081565b60606111ff82611c49565b61123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613431565b60405180910390fd5b6000611248611c8a565b905060008151116112685760405180602001604052806000815250611296565b8061127284611d1c565b600c60405160200161128693929190613510565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61133a6118e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a0906135b3565b60405180910390fd5b6113b28161199d565b50565b610dac81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61145181611c49565b611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790612c4e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661150e83610a12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061156083610a12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a257506115a1818561129e565b5b806115e057508373ffffffffffffffffffffffffffffffffffffffff166115c8846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661160982610a12565b73ffffffffffffffffffffffffffffffffffffffff161461165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613645565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c5906136d7565b60405180910390fd5b6116db8383836001611dea565b8273ffffffffffffffffffffffffffffffffffffffff166116fb82610a12565b73ffffffffffffffffffffffffffffffffffffffff1614611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613645565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118dd8383836001611df0565b505050565b6118ea611493565b73ffffffffffffffffffffffffffffffffffffffff16611908610cf9565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590613743565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a7d828260405180602001604052806000815250611df6565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae6906137af565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be091906123fc565b60405180910390a3505050565b611bf88484846115e9565b611c0484848484611e51565b611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613841565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c6b83611960565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611c9990612a1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc590612a1b565b8015611d125780601f10611ce757610100808354040283529160200191611d12565b820191906000526020600020905b815481529060010190602001808311611cf557829003601f168201915b5050505050905090565b606060006001611d2b84611fd8565b01905060008167ffffffffffffffff811115611d4a57611d496126a8565b5b6040519080825280601f01601f191660200182016040528015611d7c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611ddf578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dd357611dd2612d71565b5b04945060008503611d8a575b819350505050919050565b50505050565b50505050565b611e00838361212b565b611e0d6000848484611e51565b611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390613841565b60405180910390fd5b505050565b6000611e728473ffffffffffffffffffffffffffffffffffffffff166113bb565b15611fcb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e9b611493565b8786866040518563ffffffff1660e01b8152600401611ebd94939291906138b6565b6020604051808303816000875af1925050508015611ef957506040513d601f19601f82011682018060405250810190611ef69190613917565b60015b611f7b573d8060008114611f29576040519150601f19603f3d011682016040523d82523d6000602084013e611f2e565b606091505b506000815103611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90613841565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fd0565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612036577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161202c5761202b612d71565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612073576d04ee2d6d415b85acef8100000000838161206957612068612d71565b5b0492506020810190505b662386f26fc1000083106120a257662386f26fc10000838161209857612097612d71565b5b0492506010810190505b6305f5e10083106120cb576305f5e10083816120c1576120c0612d71565b5b0492506008810190505b61271083106120f05761271083816120e6576120e5612d71565b5b0492506004810190505b60648310612113576064838161210957612108612d71565b5b0492506002810190505b600a8310612122576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190613990565b60405180910390fd5b6121a381611c49565b156121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da906139fc565b60405180910390fd5b6121f1600083836001611dea565b6121fa81611c49565b1561223a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612231906139fc565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612344600083836001611df0565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123918161235c565b811461239c57600080fd5b50565b6000813590506123ae81612388565b92915050565b6000602082840312156123ca576123c9612352565b5b60006123d88482850161239f565b91505092915050565b60008115159050919050565b6123f6816123e1565b82525050565b600060208201905061241160008301846123ed565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612451578082015181840152602081019050612436565b60008484015250505050565b6000601f19601f8301169050919050565b600061247982612417565b6124838185612422565b9350612493818560208601612433565b61249c8161245d565b840191505092915050565b600060208201905081810360008301526124c1818461246e565b905092915050565b6000819050919050565b6124dc816124c9565b81146124e757600080fd5b50565b6000813590506124f9816124d3565b92915050565b60006020828403121561251557612514612352565b5b6000612523848285016124ea565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125578261252c565b9050919050565b6125678161254c565b82525050565b6000602082019050612582600083018461255e565b92915050565b6125918161254c565b811461259c57600080fd5b50565b6000813590506125ae81612588565b92915050565b600080604083850312156125cb576125ca612352565b5b60006125d98582860161259f565b92505060206125ea858286016124ea565b9150509250929050565b6125fd816124c9565b82525050565b600060208201905061261860008301846125f4565b92915050565b60008060006060848603121561263757612636612352565b5b60006126458682870161259f565b93505060206126568682870161259f565b9250506040612667868287016124ea565b9150509250925092565b60006020828403121561268757612686612352565b5b60006126958482850161259f565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126e08261245d565b810181811067ffffffffffffffff821117156126ff576126fe6126a8565b5b80604052505050565b6000612712612348565b905061271e82826126d7565b919050565b600067ffffffffffffffff82111561273e5761273d6126a8565b5b6127478261245d565b9050602081019050919050565b82818337600083830152505050565b600061277661277184612723565b612708565b905082815260208101848484011115612792576127916126a3565b5b61279d848285612754565b509392505050565b600082601f8301126127ba576127b961269e565b5b81356127ca848260208601612763565b91505092915050565b6000602082840312156127e9576127e8612352565b5b600082013567ffffffffffffffff81111561280757612806612357565b5b612813848285016127a5565b91505092915050565b612825816123e1565b811461283057600080fd5b50565b6000813590506128428161281c565b92915050565b6000806040838503121561285f5761285e612352565b5b600061286d8582860161259f565b925050602061287e85828601612833565b9150509250929050565b600067ffffffffffffffff8211156128a3576128a26126a8565b5b6128ac8261245d565b9050602081019050919050565b60006128cc6128c784612888565b612708565b9050828152602081018484840111156128e8576128e76126a3565b5b6128f3848285612754565b509392505050565b600082601f8301126129105761290f61269e565b5b81356129208482602086016128b9565b91505092915050565b6000806000806080858703121561294357612942612352565b5b60006129518782880161259f565b94505060206129628782880161259f565b9350506040612973878288016124ea565b925050606085013567ffffffffffffffff81111561299457612993612357565b5b6129a0878288016128fb565b91505092959194509250565b600080604083850312156129c3576129c2612352565b5b60006129d18582860161259f565b92505060206129e28582860161259f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a3357607f821691505b602082108103612a4657612a456129ec565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aa8602183612422565b9150612ab382612a4c565b604082019050919050565b60006020820190508181036000830152612ad781612a9b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612b3a603d83612422565b9150612b4582612ade565b604082019050919050565b60006020820190508181036000830152612b6981612b2d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612bcc602d83612422565b9150612bd782612b70565b604082019050919050565b60006020820190508181036000830152612bfb81612bbf565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612c38601883612422565b9150612c4382612c02565b602082019050919050565b60006020820190508181036000830152612c6781612c2b565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612cca602983612422565b9150612cd582612c6e565b604082019050919050565b60006020820190508181036000830152612cf981612cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d3a826124c9565b9150612d45836124c9565b9250828202612d53816124c9565b91508282048414831517612d6a57612d69612d00565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dab826124c9565b9150612db6836124c9565b925082612dc657612dc5612d71565b5b828204905092915050565b600081905092915050565b50565b6000612dec600083612dd1565b9150612df782612ddc565b600082019050919050565b6000612e0d82612ddf565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612e4d601083612422565b9150612e5882612e17565b602082019050919050565b60006020820190508181036000830152612e7c81612e40565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b6000612eb9601383612422565b9150612ec482612e83565b602082019050919050565b60006020820190508181036000830152612ee881612eac565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000612f4b602d83612422565b9150612f5682612eef565b604082019050919050565b60006020820190508181036000830152612f7a81612f3e565b9050919050565b6000612f8c826124c9565b9150612f97836124c9565b9250828201905080821115612faf57612fae612d00565b5b92915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b6000612feb602083612422565b9150612ff682612fb5565b602082019050919050565b6000602082019050818103600083015261301a81612fde565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000613057601583612422565b915061306282613021565b602082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006130c3601383612422565b91506130ce8261308d565b602082019050919050565b600060208201905081810360008301526130f2816130b6565b9050919050565b6000613104826124c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361313657613135612d00565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131a37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613166565b6131ad8683613166565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131ea6131e56131e0846124c9565b6131c5565b6124c9565b9050919050565b6000819050919050565b613204836131cf565b613218613210826131f1565b848454613173565b825550505050565b600090565b61322d613220565b6132388184846131fb565b505050565b5b8181101561325c57613251600082613225565b60018101905061323e565b5050565b601f8211156132a15761327281613141565b61327b84613156565b8101602085101561328a578190505b61329e61329685613156565b83018261323d565b50505b505050565b600082821c905092915050565b60006132c4600019846008026132a6565b1980831691505092915050565b60006132dd83836132b3565b9150826002028217905092915050565b6132f682612417565b67ffffffffffffffff81111561330f5761330e6126a8565b5b6133198254612a1b565b613324828285613260565b600060209050601f8311600181146133575760008415613345578287015190505b61334f85826132d1565b8655506133b7565b601f19841661336586613141565b60005b8281101561338d57848901518255600182019150602085019450602081019050613368565b868310156133aa57848901516133a6601f8916826132b3565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061341b602f83612422565b9150613426826133bf565b604082019050919050565b6000602082019050818103600083015261344a8161340e565b9050919050565b600081905092915050565b600061346782612417565b6134718185613451565b9350613481818560208601612433565b80840191505092915050565b6000815461349a81612a1b565b6134a48186613451565b945060018216600081146134bf57600181146134d457613507565b60ff1983168652811515820286019350613507565b6134dd85613141565b60005b838110156134ff578154818901526001820191506020810190506134e0565b838801955050505b50505092915050565b600061351c828661345c565b9150613528828561345c565b9150613534828461348d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061359d602683612422565b91506135a882613541565b604082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061362f602583612422565b915061363a826135d3565b604082019050919050565b6000602082019050818103600083015261365e81613622565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c1602483612422565b91506136cc82613665565b604082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061372d602083612422565b9150613738826136f7565b602082019050919050565b6000602082019050818103600083015261375c81613720565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613799601983612422565b91506137a482613763565b602082019050919050565b600060208201905081810360008301526137c88161378c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061382b603283612422565b9150613836826137cf565b604082019050919050565b6000602082019050818103600083015261385a8161381e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061388882613861565b613892818561386c565b93506138a2818560208601612433565b6138ab8161245d565b840191505092915050565b60006080820190506138cb600083018761255e565b6138d8602083018661255e565b6138e560408301856125f4565b81810360608301526138f7818461387d565b905095945050505050565b60008151905061391181612388565b92915050565b60006020828403121561392d5761392c612352565b5b600061393b84828501613902565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061397a602083612422565b915061398582613944565b602082019050919050565b600060208201905081810360008301526139a98161396d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139e6601c83612422565b91506139f1826139b0565b602082019050919050565b60006020820190508181036000830152613a15816139d9565b905091905056fea2646970667358221220a0a0274f8397eaca1e395818565dc105fb272aa7101962c0c75676e8090b2c3464736f6c63430008120033
Deployed Bytecode Sourcemap
56666:2881:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38060:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38988:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40500:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40018:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56956:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41200:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58219:91;;;;;;;;;;;;;:::i;:::-;;41572:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56925:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38698:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38429:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55789:103;;;;;;;;;;;;;:::i;:::-;;58520:502;;;:::i;:::-;;55148:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56870:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58426:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39157:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57049:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56838:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57439:743;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58318:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40743:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41794:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57077:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59030:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40969:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56047:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56743:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38060:305;38162:4;38214:25;38199:40;;;:11;:40;;;;:105;;;;38271:33;38256:48;;;:11;:48;;;;38199:105;:158;;;;38321:36;38345:11;38321:23;:36::i;:::-;38199:158;38179:178;;38060:305;;;:::o;38988:100::-;39042:13;39075:5;39068:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38988:100;:::o;40500:171::-;40576:7;40596:23;40611:7;40596:14;:23::i;:::-;40639:15;:24;40655:7;40639:24;;;;;;;;;;;;;;;;;;;;;40632:31;;40500:171;;;:::o;40018:416::-;40099:13;40115:23;40130:7;40115:14;:23::i;:::-;40099:39;;40163:5;40157:11;;:2;:11;;;40149:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40257:5;40241:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40266:37;40283:5;40290:12;:10;:12::i;:::-;40266:16;:37::i;:::-;40241:62;40219:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;40405:21;40414:2;40418:7;40405:8;:21::i;:::-;40088:346;40018:416;;:::o;56956:26::-;;;;:::o;41200:301::-;41361:41;41380:12;:10;:12::i;:::-;41394:7;41361:18;:41::i;:::-;41353:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;41465:28;41475:4;41481:2;41485:7;41465:9;:28::i;:::-;41200:301;;;:::o;58219:91::-;55034:13;:11;:13::i;:::-;58290:12:::1;;;;;;;;;;;58289:13;58274:12;;:28;;;;;;;;;;;;;;;;;;58219:91::o:0;41572:151::-;41676:39;41693:4;41699:2;41703:7;41676:39;;;;;;;;;;;;:16;:39::i;:::-;41572:151;;;:::o;56925:24::-;;;;;;;;;;;;;:::o;38698:223::-;38770:7;38790:13;38806:17;38815:7;38806:8;:17::i;:::-;38790:33;;38859:1;38842:19;;:5;:19;;;38834:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;38908:5;38901:12;;;38698:223;;;:::o;38429:207::-;38501:7;38546:1;38529:19;;:5;:19;;;38521:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38612:9;:16;38622:5;38612:16;;;;;;;;;;;;;;;;38605:23;;38429:207;;;:::o;55789:103::-;55034:13;:11;:13::i;:::-;55854:30:::1;55881:1;55854:18;:30::i;:::-;55789:103::o:0;58520:502::-;55034:13;:11;:13::i;:::-;58581:15:::1;58599:21;58581:39;;58631:18;58668:3;58662::::0;58652:7:::1;:13;;;;:::i;:::-;:19;;;;:::i;:::-;58631:40;;58682:18;58717:3;58713:1;58703:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;58682:38;;58733:16;58763:42;58755:56;;58819:10;58755:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58731:103;;;58847:16;58877:42;58869:56;;58933:10;58869:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58845:103;;;58967:11;:26;;;;;58982:11;58967:26;58959:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58570:452;;;;;58520:502::o:0;55148:87::-;55194:7;55221:6;;;;;;;;;;;55214:13;;55148:87;:::o;56870:46::-;56912:4;56870:46;:::o;58426:86::-;55034:13;:11;:13::i;:::-;58498:6:::1;58490:5;:14;;;;58426:86:::0;:::o;39157:104::-;39213:13;39246:7;39239:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39157:104;:::o;57049:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56838:25::-;;;;:::o;57439:743::-;57509:12;;;;;;;;;;;57501:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;56912:4;57564:10;:29;;57556:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;56912:4;57692:10;57662:15;:27;57678:10;57662:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:59;;57654:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;57769:22;57794:11;;57769:36;;56777:4;57841:10;57824:14;:27;;;;:::i;:::-;:41;;57816:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;57932:9;57923:5;;57910:10;:18;;;;:::i;:::-;:31;;57902:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;57982:9;57994:1;57982:13;;57978:109;58002:10;57997:1;:15;57978:109;;58034:41;58044:10;58073:1;58056:14;:18;;;;:::i;:::-;58034:9;:41::i;:::-;58014:3;;;;:::i;:::-;;;57978:109;;;;58128:10;58097:15;:27;58113:10;58097:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;58164:10;58149:11;;:25;;;;;;;:::i;:::-;;;;;;;;57490:692;57439:743;:::o;58318:100::-;55034:13;:11;:13::i;:::-;58402:8:::1;58392:7;:18;;;;;;:::i;:::-;;58318:100:::0;:::o;40743:155::-;40838:52;40857:12;:10;:12::i;:::-;40871:8;40881;40838:18;:52::i;:::-;40743:155;;:::o;41794:279::-;41925:41;41944:12;:10;:12::i;:::-;41958:7;41925:18;:41::i;:::-;41917:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42027:38;42041:4;42047:2;42051:7;42060:4;42027:13;:38::i;:::-;41794:279;;;;:::o;57077:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59030:397::-;59103:13;59137:16;59145:7;59137;:16::i;:::-;59129:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59219:28;59250:10;:8;:10::i;:::-;59219:41;;59309:1;59284:14;59278:28;:32;:141;;;;;;;;;;;;;;;;;59350:14;59366:18;:7;:16;:18::i;:::-;59386:13;59333:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59278:141;59271:148;;;59030:397;;;:::o;40969:164::-;41066:4;41090:18;:25;41109:5;41090:25;;;;;;;;;;;;;;;:35;41116:8;41090:35;;;;;;;;;;;;;;;;;;;;;;;;;41083:42;;40969:164;;;;:::o;56047:201::-;55034:13;:11;:13::i;:::-;56156:1:::1;56136:22;;:8;:22;;::::0;56128:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;56212:28;56231:8;56212:18;:28::i;:::-;56047:201:::0;:::o;56743:38::-;56777:4;56743:38;:::o;18796:326::-;18856:4;19113:1;19091:7;:19;;;:23;19084:30;;18796:326;;;:::o;29791:157::-;29876:4;29915:25;29900:40;;;:11;:40;;;;29893:47;;29791:157;;;:::o;50063:135::-;50145:16;50153:7;50145;:16::i;:::-;50137:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50063:135;:::o;36439:98::-;36492:7;36519:10;36512:17;;36439:98;:::o;49376:174::-;49478:2;49451:15;:24;49467:7;49451:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49534:7;49530:2;49496:46;;49505:23;49520:7;49505:14;:23::i;:::-;49496:46;;;;;;;;;;;;49376:174;;:::o;44063:264::-;44156:4;44173:13;44189:23;44204:7;44189:14;:23::i;:::-;44173:39;;44242:5;44231:16;;:7;:16;;;:52;;;;44251:32;44268:5;44275:7;44251:16;:32::i;:::-;44231:52;:87;;;;44311:7;44287:31;;:20;44299:7;44287:11;:20::i;:::-;:31;;;44231:87;44223:96;;;44063:264;;;;:::o;48028:1229::-;48153:4;48126:31;;:23;48141:7;48126:14;:23::i;:::-;:31;;;48118:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48232:1;48218:16;;:2;:16;;;48210:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48288:42;48309:4;48315:2;48319:7;48328:1;48288:20;:42::i;:::-;48460:4;48433:31;;:23;48448:7;48433:14;:23::i;:::-;:31;;;48425:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48578:15;:24;48594:7;48578:24;;;;;;;;;;;;48571:31;;;;;;;;;;;49073:1;49054:9;:15;49064:4;49054:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;49106:1;49089:9;:13;49099:2;49089:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49148:2;49129:7;:16;49137:7;49129:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49187:7;49183:2;49168:27;;49177:4;49168:27;;;;;;;;;;;;49208:41;49228:4;49234:2;49238:7;49247:1;49208:19;:41::i;:::-;48028:1229;;;:::o;55313:132::-;55388:12;:10;:12::i;:::-;55377:23;;:7;:5;:7::i;:::-;:23;;;55369:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55313:132::o;43338:117::-;43404:7;43431;:16;43439:7;43431:16;;;;;;;;;;;;;;;;;;;;;43424:23;;43338:117;;;:::o;56408:191::-;56482:16;56501:6;;;;;;;;;;;56482:25;;56527:8;56518:6;;:17;;;;;;;;;;;;;;;;;;56582:8;56551:40;;56572:8;56551:40;;;;;;;;;;;;56471:128;56408:191;:::o;44669:110::-;44745:26;44755:2;44759:7;44745:26;;;;;;;;;;;;:9;:26::i;:::-;44669:110;;:::o;49693:281::-;49814:8;49805:17;;:5;:17;;;49797:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49901:8;49863:18;:25;49882:5;49863:25;;;;;;;;;;;;;;;:35;49889:8;49863:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49947:8;49925:41;;49940:5;49925:41;;;49957:8;49925:41;;;;;;:::i;:::-;;;;;;;;49693:281;;;:::o;42954:270::-;43067:28;43077:4;43083:2;43087:7;43067:9;:28::i;:::-;43114:47;43137:4;43143:2;43147:7;43156:4;43114:22;:47::i;:::-;43106:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42954:270;;;;:::o;43768:128::-;43833:4;43886:1;43857:31;;:17;43866:7;43857:8;:17::i;:::-;:31;;;;43850:38;;43768:128;;;:::o;59436:108::-;59496:13;59529:7;59522:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59436:108;:::o;14920:716::-;14976:13;15027:14;15064:1;15044:17;15055:5;15044:10;:17::i;:::-;:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15080:41;;15136:11;15265:6;15261:2;15257:15;15249:6;15245:28;15238:35;;15302:288;15309:4;15302:288;;;15334:5;;;;;;;;15476:8;15471:2;15464:5;15460:14;15455:30;15450:3;15442:44;15532:2;15523:11;;;;;;:::i;:::-;;;;;15566:1;15557:5;:10;15302:288;15553:21;15302:288;15611:6;15604:13;;;;;14920:716;;;:::o;52347:116::-;;;;;:::o;53185:115::-;;;;;:::o;45006:285::-;45101:18;45107:2;45111:7;45101:5;:18::i;:::-;45152:53;45183:1;45187:2;45191:7;45200:4;45152:22;:53::i;:::-;45130:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45006:285;;;:::o;50762:853::-;50916:4;50937:15;:2;:13;;;:15::i;:::-;50933:675;;;50989:2;50973:36;;;51010:12;:10;:12::i;:::-;51024:4;51030:7;51039:4;50973:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50969:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51231:1;51214:6;:13;:18;51210:328;;51257:60;;;;;;;;;;:::i;:::-;;;;;;;;51210:328;51488:6;51482:13;51473:6;51469:2;51465:15;51458:38;50969:584;51105:41;;;51095:51;;;:6;:51;;;;51088:58;;;;;50933:675;51592:4;51585:11;;50762:853;;;;;;;:::o;11754:948::-;11807:7;11827:14;11844:1;11827:18;;11894:8;11885:5;:17;11881:106;;11932:8;11923:17;;;;;;:::i;:::-;;;;;11969:2;11959:12;;;;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;;;;:::i;:::-;;;;;12089:2;12079:12;;;;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;;;;:::i;:::-;;;;;12209:2;12199:12;;;;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;;;;:::i;:::-;;;;;12327:1;12317:11;;;;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;;;;:::i;:::-;;;;;12444:1;12434:11;;;;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;;;;:::i;:::-;;;;;12561:1;12551:11;;;;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;;;;12592:68;12688:6;12681:13;;;11754:948;;;:::o;45627:942::-;45721:1;45707:16;;:2;:16;;;45699:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45780:16;45788:7;45780;:16::i;:::-;45779:17;45771:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45842:48;45871:1;45875:2;45879:7;45888:1;45842:20;:48::i;:::-;45989:16;45997:7;45989;:16::i;:::-;45988:17;45980:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46404:1;46387:9;:13;46397:2;46387:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;46448:2;46429:7;:16;46437:7;46429:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;46493:7;46489:2;46468:33;;46485:1;46468:33;;;;;;;;;;;;46514:47;46542:1;46546:2;46550:7;46559:1;46514:19;:47::i;:::-;45627:942;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:220::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:3;12807:2;12799:6;12795:15;12788:28;12603:220;:::o;12829:366::-;12971:3;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12829:366;;;:::o;13201:419::-;13367:4;13405:2;13394:9;13390:18;13382:26;;13454:9;13448:4;13444:20;13440:1;13429:9;13425:17;13418:47;13482:131;13608:4;13482:131;:::i;:::-;13474:139;;13201:419;;;:::o;13626:248::-;13766:34;13762:1;13754:6;13750:14;13743:58;13835:31;13830:2;13822:6;13818:15;13811:56;13626:248;:::o;13880:366::-;14022:3;14043:67;14107:2;14102:3;14043:67;:::i;:::-;14036:74;;14119:93;14208:3;14119:93;:::i;:::-;14237:2;14232:3;14228:12;14221:19;;13880:366;;;:::o;14252:419::-;14418:4;14456:2;14445:9;14441:18;14433:26;;14505:9;14499:4;14495:20;14491:1;14480:9;14476:17;14469:47;14533:131;14659:4;14533:131;:::i;:::-;14525:139;;14252:419;;;:::o;14677:232::-;14817:34;14813:1;14805:6;14801:14;14794:58;14886:15;14881:2;14873:6;14869:15;14862:40;14677:232;:::o;14915:366::-;15057:3;15078:67;15142:2;15137:3;15078:67;:::i;:::-;15071:74;;15154:93;15243:3;15154:93;:::i;:::-;15272:2;15267:3;15263:12;15256:19;;14915:366;;;:::o;15287:419::-;15453:4;15491:2;15480:9;15476:18;15468:26;;15540:9;15534:4;15530:20;15526:1;15515:9;15511:17;15504:47;15568:131;15694:4;15568:131;:::i;:::-;15560:139;;15287:419;;;:::o;15712:174::-;15852:26;15848:1;15840:6;15836:14;15829:50;15712:174;:::o;15892:366::-;16034:3;16055:67;16119:2;16114:3;16055:67;:::i;:::-;16048:74;;16131:93;16220:3;16131:93;:::i;:::-;16249:2;16244:3;16240:12;16233:19;;15892:366;;;:::o;16264:419::-;16430:4;16468:2;16457:9;16453:18;16445:26;;16517:9;16511:4;16507:20;16503:1;16492:9;16488:17;16481:47;16545:131;16671:4;16545:131;:::i;:::-;16537:139;;16264:419;;;:::o;16689:228::-;16829:34;16825:1;16817:6;16813:14;16806:58;16898:11;16893:2;16885:6;16881:15;16874:36;16689:228;:::o;16923:366::-;17065:3;17086:67;17150:2;17145:3;17086:67;:::i;:::-;17079:74;;17162:93;17251:3;17162:93;:::i;:::-;17280:2;17275:3;17271:12;17264:19;;16923:366;;;:::o;17295:419::-;17461:4;17499:2;17488:9;17484:18;17476:26;;17548:9;17542:4;17538:20;17534:1;17523:9;17519:17;17512:47;17576:131;17702:4;17576:131;:::i;:::-;17568:139;;17295:419;;;:::o;17720:180::-;17768:77;17765:1;17758:88;17865:4;17862:1;17855:15;17889:4;17886:1;17879:15;17906:410;17946:7;17969:20;17987:1;17969:20;:::i;:::-;17964:25;;18003:20;18021:1;18003:20;:::i;:::-;17998:25;;18058:1;18055;18051:9;18080:30;18098:11;18080:30;:::i;:::-;18069:41;;18259:1;18250:7;18246:15;18243:1;18240:22;18220:1;18213:9;18193:83;18170:139;;18289:18;;:::i;:::-;18170:139;17954:362;17906:410;;;;:::o;18322:180::-;18370:77;18367:1;18360:88;18467:4;18464:1;18457:15;18491:4;18488:1;18481:15;18508:185;18548:1;18565:20;18583:1;18565:20;:::i;:::-;18560:25;;18599:20;18617:1;18599:20;:::i;:::-;18594:25;;18638:1;18628:35;;18643:18;;:::i;:::-;18628:35;18685:1;18682;18678:9;18673:14;;18508:185;;;;:::o;18699:147::-;18800:11;18837:3;18822:18;;18699:147;;;;:::o;18852:114::-;;:::o;18972:398::-;19131:3;19152:83;19233:1;19228:3;19152:83;:::i;:::-;19145:90;;19244:93;19333:3;19244:93;:::i;:::-;19362:1;19357:3;19353:11;19346:18;;18972:398;;;:::o;19376:379::-;19560:3;19582:147;19725:3;19582:147;:::i;:::-;19575:154;;19746:3;19739:10;;19376:379;;;:::o;19761:166::-;19901:18;19897:1;19889:6;19885:14;19878:42;19761:166;:::o;19933:366::-;20075:3;20096:67;20160:2;20155:3;20096:67;:::i;:::-;20089:74;;20172:93;20261:3;20172:93;:::i;:::-;20290:2;20285:3;20281:12;20274:19;;19933:366;;;:::o;20305:419::-;20471:4;20509:2;20498:9;20494:18;20486:26;;20558:9;20552:4;20548:20;20544:1;20533:9;20529:17;20522:47;20586:131;20712:4;20586:131;:::i;:::-;20578:139;;20305:419;;;:::o;20730:169::-;20870:21;20866:1;20858:6;20854:14;20847:45;20730:169;:::o;20905:366::-;21047:3;21068:67;21132:2;21127:3;21068:67;:::i;:::-;21061:74;;21144:93;21233:3;21144:93;:::i;:::-;21262:2;21257:3;21253:12;21246:19;;20905:366;;;:::o;21277:419::-;21443:4;21481:2;21470:9;21466:18;21458:26;;21530:9;21524:4;21520:20;21516:1;21505:9;21501:17;21494:47;21558:131;21684:4;21558:131;:::i;:::-;21550:139;;21277:419;;;:::o;21702:232::-;21842:34;21838:1;21830:6;21826:14;21819:58;21911:15;21906:2;21898:6;21894:15;21887:40;21702:232;:::o;21940:366::-;22082:3;22103:67;22167:2;22162:3;22103:67;:::i;:::-;22096:74;;22179:93;22268:3;22179:93;:::i;:::-;22297:2;22292:3;22288:12;22281:19;;21940:366;;;:::o;22312:419::-;22478:4;22516:2;22505:9;22501:18;22493:26;;22565:9;22559:4;22555:20;22551:1;22540:9;22536:17;22529:47;22593:131;22719:4;22593:131;:::i;:::-;22585:139;;22312:419;;;:::o;22737:191::-;22777:3;22796:20;22814:1;22796:20;:::i;:::-;22791:25;;22830:20;22848:1;22830:20;:::i;:::-;22825:25;;22873:1;22870;22866:9;22859:16;;22894:3;22891:1;22888:10;22885:36;;;22901:18;;:::i;:::-;22885:36;22737:191;;;;:::o;22934:182::-;23074:34;23070:1;23062:6;23058:14;23051:58;22934:182;:::o;23122:366::-;23264:3;23285:67;23349:2;23344:3;23285:67;:::i;:::-;23278:74;;23361:93;23450:3;23361:93;:::i;:::-;23479:2;23474:3;23470:12;23463:19;;23122:366;;;:::o;23494:419::-;23660:4;23698:2;23687:9;23683:18;23675:26;;23747:9;23741:4;23737:20;23733:1;23722:9;23718:17;23711:47;23775:131;23901:4;23775:131;:::i;:::-;23767:139;;23494:419;;;:::o;23919:171::-;24059:23;24055:1;24047:6;24043:14;24036:47;23919:171;:::o;24096:366::-;24238:3;24259:67;24323:2;24318:3;24259:67;:::i;:::-;24252:74;;24335:93;24424:3;24335:93;:::i;:::-;24453:2;24448:3;24444:12;24437:19;;24096:366;;;:::o;24468:419::-;24634:4;24672:2;24661:9;24657:18;24649:26;;24721:9;24715:4;24711:20;24707:1;24696:9;24692:17;24685:47;24749:131;24875:4;24749:131;:::i;:::-;24741:139;;24468:419;;;:::o;24893:169::-;25033:21;25029:1;25021:6;25017:14;25010:45;24893:169;:::o;25068:366::-;25210:3;25231:67;25295:2;25290:3;25231:67;:::i;:::-;25224:74;;25307:93;25396:3;25307:93;:::i;:::-;25425:2;25420:3;25416:12;25409:19;;25068:366;;;:::o;25440:419::-;25606:4;25644:2;25633:9;25629:18;25621:26;;25693:9;25687:4;25683:20;25679:1;25668:9;25664:17;25657:47;25721:131;25847:4;25721:131;:::i;:::-;25713:139;;25440:419;;;:::o;25865:233::-;25904:3;25927:24;25945:5;25927:24;:::i;:::-;25918:33;;25973:66;25966:5;25963:77;25960:103;;26043:18;;:::i;:::-;25960:103;26090:1;26083:5;26079:13;26072:20;;25865:233;;;:::o;26104:141::-;26153:4;26176:3;26168:11;;26199:3;26196:1;26189:14;26233:4;26230:1;26220:18;26212:26;;26104:141;;;:::o;26251:93::-;26288:6;26335:2;26330;26323:5;26319:14;26315:23;26305:33;;26251:93;;;:::o;26350:107::-;26394:8;26444:5;26438:4;26434:16;26413:37;;26350:107;;;;:::o;26463:393::-;26532:6;26582:1;26570:10;26566:18;26605:97;26635:66;26624:9;26605:97;:::i;:::-;26723:39;26753:8;26742:9;26723:39;:::i;:::-;26711:51;;26795:4;26791:9;26784:5;26780:21;26771:30;;26844:4;26834:8;26830:19;26823:5;26820:30;26810:40;;26539:317;;26463:393;;;;;:::o;26862:60::-;26890:3;26911:5;26904:12;;26862:60;;;:::o;26928:142::-;26978:9;27011:53;27029:34;27038:24;27056:5;27038:24;:::i;:::-;27029:34;:::i;:::-;27011:53;:::i;:::-;26998:66;;26928:142;;;:::o;27076:75::-;27119:3;27140:5;27133:12;;27076:75;;;:::o;27157:269::-;27267:39;27298:7;27267:39;:::i;:::-;27328:91;27377:41;27401:16;27377:41;:::i;:::-;27369:6;27362:4;27356:11;27328:91;:::i;:::-;27322:4;27315:105;27233:193;27157:269;;;:::o;27432:73::-;27477:3;27432:73;:::o;27511:189::-;27588:32;;:::i;:::-;27629:65;27687:6;27679;27673:4;27629:65;:::i;:::-;27564:136;27511:189;;:::o;27706:186::-;27766:120;27783:3;27776:5;27773:14;27766:120;;;27837:39;27874:1;27867:5;27837:39;:::i;:::-;27810:1;27803:5;27799:13;27790:22;;27766:120;;;27706:186;;:::o;27898:543::-;27999:2;27994:3;27991:11;27988:446;;;28033:38;28065:5;28033:38;:::i;:::-;28117:29;28135:10;28117:29;:::i;:::-;28107:8;28103:44;28300:2;28288:10;28285:18;28282:49;;;28321:8;28306:23;;28282:49;28344:80;28400:22;28418:3;28400:22;:::i;:::-;28390:8;28386:37;28373:11;28344:80;:::i;:::-;28003:431;;27988:446;27898:543;;;:::o;28447:117::-;28501:8;28551:5;28545:4;28541:16;28520:37;;28447:117;;;;:::o;28570:169::-;28614:6;28647:51;28695:1;28691:6;28683:5;28680:1;28676:13;28647:51;:::i;:::-;28643:56;28728:4;28722;28718:15;28708:25;;28621:118;28570:169;;;;:::o;28744:295::-;28820:4;28966:29;28991:3;28985:4;28966:29;:::i;:::-;28958:37;;29028:3;29025:1;29021:11;29015:4;29012:21;29004:29;;28744:295;;;;:::o;29044:1395::-;29161:37;29194:3;29161:37;:::i;:::-;29263:18;29255:6;29252:30;29249:56;;;29285:18;;:::i;:::-;29249:56;29329:38;29361:4;29355:11;29329:38;:::i;:::-;29414:67;29474:6;29466;29460:4;29414:67;:::i;:::-;29508:1;29532:4;29519:17;;29564:2;29556:6;29553:14;29581:1;29576:618;;;;30238:1;30255:6;30252:77;;;30304:9;30299:3;30295:19;30289:26;30280:35;;30252:77;30355:67;30415:6;30408:5;30355:67;:::i;:::-;30349:4;30342:81;30211:222;29546:887;;29576:618;29628:4;29624:9;29616:6;29612:22;29662:37;29694:4;29662:37;:::i;:::-;29721:1;29735:208;29749:7;29746:1;29743:14;29735:208;;;29828:9;29823:3;29819:19;29813:26;29805:6;29798:42;29879:1;29871:6;29867:14;29857:24;;29926:2;29915:9;29911:18;29898:31;;29772:4;29769:1;29765:12;29760:17;;29735:208;;;29971:6;29962:7;29959:19;29956:179;;;30029:9;30024:3;30020:19;30014:26;30072:48;30114:4;30106:6;30102:17;30091:9;30072:48;:::i;:::-;30064:6;30057:64;29979:156;29956:179;30181:1;30177;30169:6;30165:14;30161:22;30155:4;30148:36;29583:611;;;29546:887;;29136:1303;;;29044:1395;;:::o;30445:234::-;30585:34;30581:1;30573:6;30569:14;30562:58;30654:17;30649:2;30641:6;30637:15;30630:42;30445:234;:::o;30685:366::-;30827:3;30848:67;30912:2;30907:3;30848:67;:::i;:::-;30841:74;;30924:93;31013:3;30924:93;:::i;:::-;31042:2;31037:3;31033:12;31026:19;;30685:366;;;:::o;31057:419::-;31223:4;31261:2;31250:9;31246:18;31238:26;;31310:9;31304:4;31300:20;31296:1;31285:9;31281:17;31274:47;31338:131;31464:4;31338:131;:::i;:::-;31330:139;;31057:419;;;:::o;31482:148::-;31584:11;31621:3;31606:18;;31482:148;;;;:::o;31636:390::-;31742:3;31770:39;31803:5;31770:39;:::i;:::-;31825:89;31907:6;31902:3;31825:89;:::i;:::-;31818:96;;31923:65;31981:6;31976:3;31969:4;31962:5;31958:16;31923:65;:::i;:::-;32013:6;32008:3;32004:16;31997:23;;31746:280;31636:390;;;;:::o;32056:874::-;32159:3;32196:5;32190:12;32225:36;32251:9;32225:36;:::i;:::-;32277:89;32359:6;32354:3;32277:89;:::i;:::-;32270:96;;32397:1;32386:9;32382:17;32413:1;32408:166;;;;32588:1;32583:341;;;;32375:549;;32408:166;32492:4;32488:9;32477;32473:25;32468:3;32461:38;32554:6;32547:14;32540:22;32532:6;32528:35;32523:3;32519:45;32512:52;;32408:166;;32583:341;32650:38;32682:5;32650:38;:::i;:::-;32710:1;32724:154;32738:6;32735:1;32732:13;32724:154;;;32812:7;32806:14;32802:1;32797:3;32793:11;32786:35;32862:1;32853:7;32849:15;32838:26;;32760:4;32757:1;32753:12;32748:17;;32724:154;;;32907:6;32902:3;32898:16;32891:23;;32590:334;;32375:549;;32163:767;;32056:874;;;;:::o;32936:589::-;33161:3;33183:95;33274:3;33265:6;33183:95;:::i;:::-;33176:102;;33295:95;33386:3;33377:6;33295:95;:::i;:::-;33288:102;;33407:92;33495:3;33486:6;33407:92;:::i;:::-;33400:99;;33516:3;33509:10;;32936:589;;;;;;:::o;33531:225::-;33671:34;33667:1;33659:6;33655:14;33648:58;33740:8;33735:2;33727:6;33723:15;33716:33;33531:225;:::o;33762:366::-;33904:3;33925:67;33989:2;33984:3;33925:67;:::i;:::-;33918:74;;34001:93;34090:3;34001:93;:::i;:::-;34119:2;34114:3;34110:12;34103:19;;33762:366;;;:::o;34134:419::-;34300:4;34338:2;34327:9;34323:18;34315:26;;34387:9;34381:4;34377:20;34373:1;34362:9;34358:17;34351:47;34415:131;34541:4;34415:131;:::i;:::-;34407:139;;34134:419;;;:::o;34559:224::-;34699:34;34695:1;34687:6;34683:14;34676:58;34768:7;34763:2;34755:6;34751:15;34744:32;34559:224;:::o;34789:366::-;34931:3;34952:67;35016:2;35011:3;34952:67;:::i;:::-;34945:74;;35028:93;35117:3;35028:93;:::i;:::-;35146:2;35141:3;35137:12;35130:19;;34789:366;;;:::o;35161:419::-;35327:4;35365:2;35354:9;35350:18;35342:26;;35414:9;35408:4;35404:20;35400:1;35389:9;35385:17;35378:47;35442:131;35568:4;35442:131;:::i;:::-;35434:139;;35161:419;;;:::o;35586:223::-;35726:34;35722:1;35714:6;35710:14;35703:58;35795:6;35790:2;35782:6;35778:15;35771:31;35586:223;:::o;35815:366::-;35957:3;35978:67;36042:2;36037:3;35978:67;:::i;:::-;35971:74;;36054:93;36143:3;36054:93;:::i;:::-;36172:2;36167:3;36163:12;36156:19;;35815:366;;;:::o;36187:419::-;36353:4;36391:2;36380:9;36376:18;36368:26;;36440:9;36434:4;36430:20;36426:1;36415:9;36411:17;36404:47;36468:131;36594:4;36468:131;:::i;:::-;36460:139;;36187:419;;;:::o;36612:182::-;36752:34;36748:1;36740:6;36736:14;36729:58;36612:182;:::o;36800:366::-;36942:3;36963:67;37027:2;37022:3;36963:67;:::i;:::-;36956:74;;37039:93;37128:3;37039:93;:::i;:::-;37157:2;37152:3;37148:12;37141:19;;36800:366;;;:::o;37172:419::-;37338:4;37376:2;37365:9;37361:18;37353:26;;37425:9;37419:4;37415:20;37411:1;37400:9;37396:17;37389:47;37453:131;37579:4;37453:131;:::i;:::-;37445:139;;37172:419;;;:::o;37597:175::-;37737:27;37733:1;37725:6;37721:14;37714:51;37597:175;:::o;37778:366::-;37920:3;37941:67;38005:2;38000:3;37941:67;:::i;:::-;37934:74;;38017:93;38106:3;38017:93;:::i;:::-;38135:2;38130:3;38126:12;38119:19;;37778:366;;;:::o;38150:419::-;38316:4;38354:2;38343:9;38339:18;38331:26;;38403:9;38397:4;38393:20;38389:1;38378:9;38374:17;38367:47;38431:131;38557:4;38431:131;:::i;:::-;38423:139;;38150:419;;;:::o;38575:237::-;38715:34;38711:1;38703:6;38699:14;38692:58;38784:20;38779:2;38771:6;38767:15;38760:45;38575:237;:::o;38818:366::-;38960:3;38981:67;39045:2;39040:3;38981:67;:::i;:::-;38974:74;;39057:93;39146:3;39057:93;:::i;:::-;39175:2;39170:3;39166:12;39159:19;;38818:366;;;:::o;39190:419::-;39356:4;39394:2;39383:9;39379:18;39371:26;;39443:9;39437:4;39433:20;39429:1;39418:9;39414:17;39407:47;39471:131;39597:4;39471:131;:::i;:::-;39463:139;;39190:419;;;:::o;39615:98::-;39666:6;39700:5;39694:12;39684:22;;39615:98;;;:::o;39719:168::-;39802:11;39836:6;39831:3;39824:19;39876:4;39871:3;39867:14;39852:29;;39719:168;;;;:::o;39893:373::-;39979:3;40007:38;40039:5;40007:38;:::i;:::-;40061:70;40124:6;40119:3;40061:70;:::i;:::-;40054:77;;40140:65;40198:6;40193:3;40186:4;40179:5;40175:16;40140:65;:::i;:::-;40230:29;40252:6;40230:29;:::i;:::-;40225:3;40221:39;40214:46;;39983:283;39893:373;;;;:::o;40272:640::-;40467:4;40505:3;40494:9;40490:19;40482:27;;40519:71;40587:1;40576:9;40572:17;40563:6;40519:71;:::i;:::-;40600:72;40668:2;40657:9;40653:18;40644:6;40600:72;:::i;:::-;40682;40750:2;40739:9;40735:18;40726:6;40682:72;:::i;:::-;40801:9;40795:4;40791:20;40786:2;40775:9;40771:18;40764:48;40829:76;40900:4;40891:6;40829:76;:::i;:::-;40821:84;;40272:640;;;;;;;:::o;40918:141::-;40974:5;41005:6;40999:13;40990:22;;41021:32;41047:5;41021:32;:::i;:::-;40918:141;;;;:::o;41065:349::-;41134:6;41183:2;41171:9;41162:7;41158:23;41154:32;41151:119;;;41189:79;;:::i;:::-;41151:119;41309:1;41334:63;41389:7;41380:6;41369:9;41365:22;41334:63;:::i;:::-;41324:73;;41280:127;41065:349;;;;:::o;41420:182::-;41560:34;41556:1;41548:6;41544:14;41537:58;41420:182;:::o;41608:366::-;41750:3;41771:67;41835:2;41830:3;41771:67;:::i;:::-;41764:74;;41847:93;41936:3;41847:93;:::i;:::-;41965:2;41960:3;41956:12;41949:19;;41608:366;;;:::o;41980:419::-;42146:4;42184:2;42173:9;42169:18;42161:26;;42233:9;42227:4;42223:20;42219:1;42208:9;42204:17;42197:47;42261:131;42387:4;42261:131;:::i;:::-;42253:139;;41980:419;;;:::o;42405:178::-;42545:30;42541:1;42533:6;42529:14;42522:54;42405:178;:::o;42589:366::-;42731:3;42752:67;42816:2;42811:3;42752:67;:::i;:::-;42745:74;;42828:93;42917:3;42828:93;:::i;:::-;42946:2;42941:3;42937:12;42930:19;;42589:366;;;:::o;42961:419::-;43127:4;43165:2;43154:9;43150:18;43142:26;;43214:9;43208:4;43204:20;43200:1;43189:9;43185:17;43178:47;43242:131;43368:4;43242:131;:::i;:::-;43234:139;;42961:419;;;:::o
Swarm Source
ipfs://a0a0274f8397eaca1e395818565dc105fb272aa7101962c0c75676e8090b2c34
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.