Overview
Max Total Supply
888,663 AINFTs
Holders
830,760
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 AINFTsLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
NFT
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at lineascan.build/ on 2023-07-19 */ // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.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) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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 10, 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 * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.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 `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); } } // 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/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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.8.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/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.8.2) (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/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: contracts/Imaginairynft2.sol pragma solidity ^0.8.0; contract NFT is ERC721URIStorage { using Counters for Counters.Counter; Counters.Counter private _tokenIds; address public owner; uint256 public cost; // A mapping to store the tokens owned by a particular address mapping(address => uint256[]) private _tokensOfOwner; constructor( string memory _name, string memory _symbol, uint256 _cost ) ERC721(_name, _symbol) { owner = msg.sender; cost = _cost; } function mint(string memory tokenURI) public payable { require(msg.value >= cost, "Payment less than cost"); _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _mint(msg.sender, newItemId); _setTokenURI(newItemId, tokenURI); // Update the mapping every time a new token is minted _tokensOfOwner[msg.sender].push(newItemId); } function totalSupply() public view returns (uint256) { return _tokenIds.current(); } // A function to get the tokens owned by a particular address function tokensOfOwner(address _owner) public view returns(uint256[] memory) { return _tokensOfOwner[_owner]; } function setCost(uint256 newCost) public { require(msg.sender == owner, "Only owner can change cost"); cost = newCost; } // Function to allow token owner to burn their NFT function burn(uint256 tokenId) public { require(_isApprovedOrOwner(msg.sender, tokenId), "Caller is not owner nor approved"); _burn(tokenId); } function withdraw() public { require(msg.sender == owner, "Only owner can withdraw"); payable(owner).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI","type":"string"}],"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":[{"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":"uint256","name":"newCost","type":"uint256"}],"name":"setCost","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003a7038038062003a7083398181016040528101906200003791906200027e565b828281600090816200004a919062000559565b5080600190816200005c919062000559565b50505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060098190555050505062000640565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200011982620000ce565b810181811067ffffffffffffffff821117156200013b576200013a620000df565b5b80604052505050565b600062000150620000b0565b90506200015e82826200010e565b919050565b600067ffffffffffffffff821115620001815762000180620000df565b5b6200018c82620000ce565b9050602081019050919050565b60005b83811015620001b95780820151818401526020810190506200019c565b60008484015250505050565b6000620001dc620001d68462000163565b62000144565b905082815260208101848484011115620001fb57620001fa620000c9565b5b6200020884828562000199565b509392505050565b600082601f830112620002285762000227620000c4565b5b81516200023a848260208601620001c5565b91505092915050565b6000819050919050565b620002588162000243565b81146200026457600080fd5b50565b60008151905062000278816200024d565b92915050565b6000806000606084860312156200029a5762000299620000ba565b5b600084015167ffffffffffffffff811115620002bb57620002ba620000bf565b5b620002c98682870162000210565b935050602084015167ffffffffffffffff811115620002ed57620002ec620000bf565b5b620002fb8682870162000210565b92505060406200030e8682870162000267565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036b57607f821691505b60208210810362000381576200038062000323565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ac565b620003f78683620003ac565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200043a620004346200042e8462000243565b6200040f565b62000243565b9050919050565b6000819050919050565b620004568362000419565b6200046e620004658262000441565b848454620003b9565b825550505050565b600090565b6200048562000476565b620004928184846200044b565b505050565b5b81811015620004ba57620004ae6000826200047b565b60018101905062000498565b5050565b601f8211156200050957620004d38162000387565b620004de846200039c565b81016020851015620004ee578190505b62000506620004fd856200039c565b83018262000497565b50505b505050565b600082821c905092915050565b60006200052e600019846008026200050e565b1980831691505092915050565b60006200054983836200051b565b9150826002028217905092915050565b620005648262000318565b67ffffffffffffffff81111562000580576200057f620000df565b5b6200058c825462000352565b62000599828285620004be565b600060209050601f831160018114620005d15760008415620005bc578287015190505b620005c885826200053b565b86555062000638565b601f198416620005e18662000387565b60005b828110156200060b57848901518255600182019150602085019450602081019050620005e4565b868310156200062b578489015162000627601f8916826200051b565b8355505b6001600288020188555050505b505050505050565b61342080620006506000396000f3fe60806040526004361061012a5760003560e01c806344a0d68a116100ab57806395d89b411161006f57806395d89b41146103f0578063a22cb4651461041b578063b88d4fde14610444578063c87b56dd1461046d578063d85d3d27146104aa578063e985e9c5146104c65761012a565b806344a0d68a146102e55780636352211e1461030e57806370a082311461034b5780638462151c146103885780638da5cb5b146103c55761012a565b806318160ddd116100f257806318160ddd1461022857806323b872dd146102535780633ccfd60b1461027c57806342842e0e1461029357806342966c68146102bc5761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806313faede6146101fd575b600080fd5b34801561013b57600080fd5b5061015660048036038101906101519190612092565b610503565b60405161016391906120da565b60405180910390f35b34801561017857600080fd5b506101816105e5565b60405161018e9190612185565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b991906121dd565b610677565b6040516101cb919061224b565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f69190612292565b6106bd565b005b34801561020957600080fd5b506102126107d4565b60405161021f91906122e1565b60405180910390f35b34801561023457600080fd5b5061023d6107da565b60405161024a91906122e1565b60405180910390f35b34801561025f57600080fd5b5061027a600480360381019061027591906122fc565b6107eb565b005b34801561028857600080fd5b5061029161084b565b005b34801561029f57600080fd5b506102ba60048036038101906102b591906122fc565b610946565b005b3480156102c857600080fd5b506102e360048036038101906102de91906121dd565b610966565b005b3480156102f157600080fd5b5061030c600480360381019061030791906121dd565b6109bb565b005b34801561031a57600080fd5b50610335600480360381019061033091906121dd565b610a55565b604051610342919061224b565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061234f565b610adb565b60405161037f91906122e1565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa919061234f565b610b92565b6040516103bc919061243a565b60405180910390f35b3480156103d157600080fd5b506103da610c29565b6040516103e7919061224b565b60405180910390f35b3480156103fc57600080fd5b50610405610c4f565b6040516104129190612185565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612488565b610ce1565b005b34801561045057600080fd5b5061046b600480360381019061046691906125fd565b610cf7565b005b34801561047957600080fd5b50610494600480360381019061048f91906121dd565b610d59565b6040516104a19190612185565b60405180910390f35b6104c460048036038101906104bf9190612721565b610e6b565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061276a565b610f46565b6040516104fa91906120da565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105de57506105dd82610fda565b5b9050919050565b6060600080546105f4906127d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610620906127d9565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b600061068282611044565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c882610a55565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f9061287c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661075761108f565b73ffffffffffffffffffffffffffffffffffffffff16148061078657506107858161078061108f565b610f46565b5b6107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc9061290e565b60405180910390fd5b6107cf8383611097565b505050565b60095481565b60006107e66007611150565b905090565b6107fc6107f661108f565b8261115e565b61083b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610832906129a0565b60405180910390fd5b6108468383836111f3565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d290612a0c565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610943573d6000803e3d6000fd5b50565b61096183838360405180602001604052806000815250610cf7565b505050565b610970338261115e565b6109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690612a78565b60405180910390fd5b6109b8816114ec565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290612ae4565b60405180910390fd5b8060098190555050565b600080610a618361153f565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990612b50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290612be2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610c1d57602002820191906000526020600020905b815481526020019060010190808311610c09575b50505050509050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610c5e906127d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8a906127d9565b8015610cd75780601f10610cac57610100808354040283529160200191610cd7565b820191906000526020600020905b815481529060010190602001808311610cba57829003601f168201915b5050505050905090565b610cf3610cec61108f565b838361157c565b5050565b610d08610d0261108f565b8361115e565b610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e906129a0565b60405180910390fd5b610d53848484846116e8565b50505050565b6060610d6482611044565b6000600660008481526020019081526020016000208054610d84906127d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610db0906127d9565b8015610dfd5780601f10610dd257610100808354040283529160200191610dfd565b820191906000526020600020905b815481529060010190602001808311610de057829003601f168201915b505050505090506000610e0e611744565b90506000815103610e23578192505050610e66565b600082511115610e58578082604051602001610e40929190612c3e565b60405160208183030381529060405292505050610e66565b610e618461175b565b925050505b919050565b600954341015610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612cae565b60405180910390fd5b610eba60076117c3565b6000610ec66007611150565b9050610ed233826117d9565b610edc81836119f6565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61104d81611a63565b61108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390612b50565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661110a83610a55565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061116a83610a55565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111ac57506111ab8185610f46565b5b806111ea57508373ffffffffffffffffffffffffffffffffffffffff166111d284610677565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661121382610a55565b73ffffffffffffffffffffffffffffffffffffffff1614611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090612d40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90612dd2565b60405180910390fd5b6112e58383836001611aa4565b8273ffffffffffffffffffffffffffffffffffffffff1661130582610a55565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290612d40565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114e78383836001611aaa565b505050565b6114f581611ab0565b6000600660008381526020019081526020016000208054611515906127d9565b90501461153c5760066000828152602001908152602001600020600061153b9190611fc9565b5b50565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190612e3e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116db91906120da565b60405180910390a3505050565b6116f38484846111f3565b6116ff84848484611bfe565b61173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590612ed0565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061176682611044565b6000611770611744565b9050600081511161179057604051806020016040528060008152506117bb565b8061179a84611d85565b6040516020016117ab929190612c3e565b6040516020818303038152906040525b915050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90612f3c565b60405180910390fd5b61185181611a63565b15611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612fa8565b60405180910390fd5b61189f600083836001611aa4565b6118a881611a63565b156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90612fa8565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119f2600083836001611aaa565b5050565b6119ff82611a63565b611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a359061303a565b60405180910390fd5b80600660008481526020019081526020016000209081611a5e9190613206565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a858361153f565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b6000611abb82610a55565b9050611acb816000846001611aa4565b611ad482610a55565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bfa816000846001611aaa565b5050565b6000611c1f8473ffffffffffffffffffffffffffffffffffffffff16611e53565b15611d78578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c4861108f565b8786866040518563ffffffff1660e01b8152600401611c6a949392919061332d565b6020604051808303816000875af1925050508015611ca657506040513d601f19601f82011682018060405250810190611ca3919061338e565b60015b611d28573d8060008114611cd6576040519150601f19603f3d011682016040523d82523d6000602084013e611cdb565b606091505b506000815103611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1790612ed0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d7d565b600190505b949350505050565b606060006001611d9484611e76565b01905060008167ffffffffffffffff811115611db357611db26124d2565b5b6040519080825280601f01601f191660200182016040528015611de55781602001600182028036833780820191505090505b509050600082602001820190505b600115611e48578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e3c57611e3b6133bb565b5b04945060008503611df3575b819350505050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611ed4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611eca57611ec96133bb565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f11576d04ee2d6d415b85acef81000000008381611f0757611f066133bb565b5b0492506020810190505b662386f26fc100008310611f4057662386f26fc100008381611f3657611f356133bb565b5b0492506010810190505b6305f5e1008310611f69576305f5e1008381611f5f57611f5e6133bb565b5b0492506008810190505b6127108310611f8e576127108381611f8457611f836133bb565b5b0492506004810190505b60648310611fb15760648381611fa757611fa66133bb565b5b0492506002810190505b600a8310611fc0576001810190505b80915050919050565b508054611fd5906127d9565b6000825580601f10611fe75750612006565b601f0160209004906000526020600020908101906120059190612009565b5b50565b5b8082111561202257600081600090555060010161200a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206f8161203a565b811461207a57600080fd5b50565b60008135905061208c81612066565b92915050565b6000602082840312156120a8576120a7612030565b5b60006120b68482850161207d565b91505092915050565b60008115159050919050565b6120d4816120bf565b82525050565b60006020820190506120ef60008301846120cb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561212f578082015181840152602081019050612114565b60008484015250505050565b6000601f19601f8301169050919050565b6000612157826120f5565b6121618185612100565b9350612171818560208601612111565b61217a8161213b565b840191505092915050565b6000602082019050818103600083015261219f818461214c565b905092915050565b6000819050919050565b6121ba816121a7565b81146121c557600080fd5b50565b6000813590506121d7816121b1565b92915050565b6000602082840312156121f3576121f2612030565b5b6000612201848285016121c8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122358261220a565b9050919050565b6122458161222a565b82525050565b6000602082019050612260600083018461223c565b92915050565b61226f8161222a565b811461227a57600080fd5b50565b60008135905061228c81612266565b92915050565b600080604083850312156122a9576122a8612030565b5b60006122b78582860161227d565b92505060206122c8858286016121c8565b9150509250929050565b6122db816121a7565b82525050565b60006020820190506122f660008301846122d2565b92915050565b60008060006060848603121561231557612314612030565b5b60006123238682870161227d565b93505060206123348682870161227d565b9250506040612345868287016121c8565b9150509250925092565b60006020828403121561236557612364612030565b5b60006123738482850161227d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6123b1816121a7565b82525050565b60006123c383836123a8565b60208301905092915050565b6000602082019050919050565b60006123e78261237c565b6123f18185612387565b93506123fc83612398565b8060005b8381101561242d57815161241488826123b7565b975061241f836123cf565b925050600181019050612400565b5085935050505092915050565b6000602082019050818103600083015261245481846123dc565b905092915050565b612465816120bf565b811461247057600080fd5b50565b6000813590506124828161245c565b92915050565b6000806040838503121561249f5761249e612030565b5b60006124ad8582860161227d565b92505060206124be85828601612473565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61250a8261213b565b810181811067ffffffffffffffff82111715612529576125286124d2565b5b80604052505050565b600061253c612026565b90506125488282612501565b919050565b600067ffffffffffffffff821115612568576125676124d2565b5b6125718261213b565b9050602081019050919050565b82818337600083830152505050565b60006125a061259b8461254d565b612532565b9050828152602081018484840111156125bc576125bb6124cd565b5b6125c784828561257e565b509392505050565b600082601f8301126125e4576125e36124c8565b5b81356125f484826020860161258d565b91505092915050565b6000806000806080858703121561261757612616612030565b5b60006126258782880161227d565b94505060206126368782880161227d565b9350506040612647878288016121c8565b925050606085013567ffffffffffffffff81111561266857612667612035565b5b612674878288016125cf565b91505092959194509250565b600067ffffffffffffffff82111561269b5761269a6124d2565b5b6126a48261213b565b9050602081019050919050565b60006126c46126bf84612680565b612532565b9050828152602081018484840111156126e0576126df6124cd565b5b6126eb84828561257e565b509392505050565b600082601f830112612708576127076124c8565b5b81356127188482602086016126b1565b91505092915050565b60006020828403121561273757612736612030565b5b600082013567ffffffffffffffff81111561275557612754612035565b5b612761848285016126f3565b91505092915050565b6000806040838503121561278157612780612030565b5b600061278f8582860161227d565b92505060206127a08582860161227d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127f157607f821691505b602082108103612804576128036127aa565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612866602183612100565b91506128718261280a565b604082019050919050565b6000602082019050818103600083015261289581612859565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006128f8603d83612100565b91506129038261289c565b604082019050919050565b60006020820190508181036000830152612927816128eb565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061298a602d83612100565b91506129958261292e565b604082019050919050565b600060208201905081810360008301526129b98161297d565b9050919050565b7f4f6e6c79206f776e65722063616e207769746864726177000000000000000000600082015250565b60006129f6601783612100565b9150612a01826129c0565b602082019050919050565b60006020820190508181036000830152612a25816129e9565b9050919050565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b6000612a62602083612100565b9150612a6d82612a2c565b602082019050919050565b60006020820190508181036000830152612a9181612a55565b9050919050565b7f4f6e6c79206f776e65722063616e206368616e676520636f7374000000000000600082015250565b6000612ace601a83612100565b9150612ad982612a98565b602082019050919050565b60006020820190508181036000830152612afd81612ac1565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612b3a601883612100565b9150612b4582612b04565b602082019050919050565b60006020820190508181036000830152612b6981612b2d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612bcc602983612100565b9150612bd782612b70565b604082019050919050565b60006020820190508181036000830152612bfb81612bbf565b9050919050565b600081905092915050565b6000612c18826120f5565b612c228185612c02565b9350612c32818560208601612111565b80840191505092915050565b6000612c4a8285612c0d565b9150612c568284612c0d565b91508190509392505050565b7f5061796d656e74206c657373207468616e20636f737400000000000000000000600082015250565b6000612c98601683612100565b9150612ca382612c62565b602082019050919050565b60006020820190508181036000830152612cc781612c8b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612d2a602583612100565b9150612d3582612cce565b604082019050919050565b60006020820190508181036000830152612d5981612d1d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612dbc602483612100565b9150612dc782612d60565b604082019050919050565b60006020820190508181036000830152612deb81612daf565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612e28601983612100565b9150612e3382612df2565b602082019050919050565b60006020820190508181036000830152612e5781612e1b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612eba603283612100565b9150612ec582612e5e565b604082019050919050565b60006020820190508181036000830152612ee981612ead565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612f26602083612100565b9150612f3182612ef0565b602082019050919050565b60006020820190508181036000830152612f5581612f19565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612f92601c83612100565b9150612f9d82612f5c565b602082019050919050565b60006020820190508181036000830152612fc181612f85565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613024602e83612100565b915061302f82612fc8565b604082019050919050565b6000602082019050818103600083015261305381613017565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261307f565b6130c6868361307f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131036130fe6130f9846121a7565b6130de565b6121a7565b9050919050565b6000819050919050565b61311d836130e8565b6131316131298261310a565b84845461308c565b825550505050565b600090565b613146613139565b613151818484613114565b505050565b5b818110156131755761316a60008261313e565b600181019050613157565b5050565b601f8211156131ba5761318b8161305a565b6131948461306f565b810160208510156131a3578190505b6131b76131af8561306f565b830182613156565b50505b505050565b600082821c905092915050565b60006131dd600019846008026131bf565b1980831691505092915050565b60006131f683836131cc565b9150826002028217905092915050565b61320f826120f5565b67ffffffffffffffff811115613228576132276124d2565b5b61323282546127d9565b61323d828285613179565b600060209050601f831160018114613270576000841561325e578287015190505b61326885826131ea565b8655506132d0565b601f19841661327e8661305a565b60005b828110156132a657848901518255600182019150602085019450602081019050613281565b868310156132c357848901516132bf601f8916826131cc565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b60006132ff826132d8565b61330981856132e3565b9350613319818560208601612111565b6133228161213b565b840191505092915050565b6000608082019050613342600083018761223c565b61334f602083018661223c565b61335c60408301856122d2565b818103606083015261336e81846132f4565b905095945050505050565b60008151905061338881612066565b92915050565b6000602082840312156133a4576133a3612030565b5b60006133b284828501613379565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212201dfbe9d22a427204da954b736fe9f6027eee4f19c4c7121922ebc1d910b3896a64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000000f496d6167696e41497279204e4654730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000641494e4654730000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061012a5760003560e01c806344a0d68a116100ab57806395d89b411161006f57806395d89b41146103f0578063a22cb4651461041b578063b88d4fde14610444578063c87b56dd1461046d578063d85d3d27146104aa578063e985e9c5146104c65761012a565b806344a0d68a146102e55780636352211e1461030e57806370a082311461034b5780638462151c146103885780638da5cb5b146103c55761012a565b806318160ddd116100f257806318160ddd1461022857806323b872dd146102535780633ccfd60b1461027c57806342842e0e1461029357806342966c68146102bc5761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806313faede6146101fd575b600080fd5b34801561013b57600080fd5b5061015660048036038101906101519190612092565b610503565b60405161016391906120da565b60405180910390f35b34801561017857600080fd5b506101816105e5565b60405161018e9190612185565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b991906121dd565b610677565b6040516101cb919061224b565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f69190612292565b6106bd565b005b34801561020957600080fd5b506102126107d4565b60405161021f91906122e1565b60405180910390f35b34801561023457600080fd5b5061023d6107da565b60405161024a91906122e1565b60405180910390f35b34801561025f57600080fd5b5061027a600480360381019061027591906122fc565b6107eb565b005b34801561028857600080fd5b5061029161084b565b005b34801561029f57600080fd5b506102ba60048036038101906102b591906122fc565b610946565b005b3480156102c857600080fd5b506102e360048036038101906102de91906121dd565b610966565b005b3480156102f157600080fd5b5061030c600480360381019061030791906121dd565b6109bb565b005b34801561031a57600080fd5b50610335600480360381019061033091906121dd565b610a55565b604051610342919061224b565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061234f565b610adb565b60405161037f91906122e1565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa919061234f565b610b92565b6040516103bc919061243a565b60405180910390f35b3480156103d157600080fd5b506103da610c29565b6040516103e7919061224b565b60405180910390f35b3480156103fc57600080fd5b50610405610c4f565b6040516104129190612185565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612488565b610ce1565b005b34801561045057600080fd5b5061046b600480360381019061046691906125fd565b610cf7565b005b34801561047957600080fd5b50610494600480360381019061048f91906121dd565b610d59565b6040516104a19190612185565b60405180910390f35b6104c460048036038101906104bf9190612721565b610e6b565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061276a565b610f46565b6040516104fa91906120da565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105de57506105dd82610fda565b5b9050919050565b6060600080546105f4906127d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610620906127d9565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b600061068282611044565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c882610a55565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f9061287c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661075761108f565b73ffffffffffffffffffffffffffffffffffffffff16148061078657506107858161078061108f565b610f46565b5b6107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc9061290e565b60405180910390fd5b6107cf8383611097565b505050565b60095481565b60006107e66007611150565b905090565b6107fc6107f661108f565b8261115e565b61083b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610832906129a0565b60405180910390fd5b6108468383836111f3565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d290612a0c565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610943573d6000803e3d6000fd5b50565b61096183838360405180602001604052806000815250610cf7565b505050565b610970338261115e565b6109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690612a78565b60405180910390fd5b6109b8816114ec565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290612ae4565b60405180910390fd5b8060098190555050565b600080610a618361153f565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990612b50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290612be2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610c1d57602002820191906000526020600020905b815481526020019060010190808311610c09575b50505050509050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610c5e906127d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8a906127d9565b8015610cd75780601f10610cac57610100808354040283529160200191610cd7565b820191906000526020600020905b815481529060010190602001808311610cba57829003601f168201915b5050505050905090565b610cf3610cec61108f565b838361157c565b5050565b610d08610d0261108f565b8361115e565b610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e906129a0565b60405180910390fd5b610d53848484846116e8565b50505050565b6060610d6482611044565b6000600660008481526020019081526020016000208054610d84906127d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610db0906127d9565b8015610dfd5780601f10610dd257610100808354040283529160200191610dfd565b820191906000526020600020905b815481529060010190602001808311610de057829003601f168201915b505050505090506000610e0e611744565b90506000815103610e23578192505050610e66565b600082511115610e58578082604051602001610e40929190612c3e565b60405160208183030381529060405292505050610e66565b610e618461175b565b925050505b919050565b600954341015610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612cae565b60405180910390fd5b610eba60076117c3565b6000610ec66007611150565b9050610ed233826117d9565b610edc81836119f6565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61104d81611a63565b61108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390612b50565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661110a83610a55565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061116a83610a55565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111ac57506111ab8185610f46565b5b806111ea57508373ffffffffffffffffffffffffffffffffffffffff166111d284610677565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661121382610a55565b73ffffffffffffffffffffffffffffffffffffffff1614611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090612d40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90612dd2565b60405180910390fd5b6112e58383836001611aa4565b8273ffffffffffffffffffffffffffffffffffffffff1661130582610a55565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290612d40565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114e78383836001611aaa565b505050565b6114f581611ab0565b6000600660008381526020019081526020016000208054611515906127d9565b90501461153c5760066000828152602001908152602001600020600061153b9190611fc9565b5b50565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190612e3e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116db91906120da565b60405180910390a3505050565b6116f38484846111f3565b6116ff84848484611bfe565b61173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590612ed0565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061176682611044565b6000611770611744565b9050600081511161179057604051806020016040528060008152506117bb565b8061179a84611d85565b6040516020016117ab929190612c3e565b6040516020818303038152906040525b915050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90612f3c565b60405180910390fd5b61185181611a63565b15611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612fa8565b60405180910390fd5b61189f600083836001611aa4565b6118a881611a63565b156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90612fa8565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119f2600083836001611aaa565b5050565b6119ff82611a63565b611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a359061303a565b60405180910390fd5b80600660008481526020019081526020016000209081611a5e9190613206565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a858361153f565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b6000611abb82610a55565b9050611acb816000846001611aa4565b611ad482610a55565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bfa816000846001611aaa565b5050565b6000611c1f8473ffffffffffffffffffffffffffffffffffffffff16611e53565b15611d78578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c4861108f565b8786866040518563ffffffff1660e01b8152600401611c6a949392919061332d565b6020604051808303816000875af1925050508015611ca657506040513d601f19601f82011682018060405250810190611ca3919061338e565b60015b611d28573d8060008114611cd6576040519150601f19603f3d011682016040523d82523d6000602084013e611cdb565b606091505b506000815103611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1790612ed0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d7d565b600190505b949350505050565b606060006001611d9484611e76565b01905060008167ffffffffffffffff811115611db357611db26124d2565b5b6040519080825280601f01601f191660200182016040528015611de55781602001600182028036833780820191505090505b509050600082602001820190505b600115611e48578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e3c57611e3b6133bb565b5b04945060008503611df3575b819350505050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611ed4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611eca57611ec96133bb565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f11576d04ee2d6d415b85acef81000000008381611f0757611f066133bb565b5b0492506020810190505b662386f26fc100008310611f4057662386f26fc100008381611f3657611f356133bb565b5b0492506010810190505b6305f5e1008310611f69576305f5e1008381611f5f57611f5e6133bb565b5b0492506008810190505b6127108310611f8e576127108381611f8457611f836133bb565b5b0492506004810190505b60648310611fb15760648381611fa757611fa66133bb565b5b0492506002810190505b600a8310611fc0576001810190505b80915050919050565b508054611fd5906127d9565b6000825580601f10611fe75750612006565b601f0160209004906000526020600020908101906120059190612009565b5b50565b5b8082111561202257600081600090555060010161200a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206f8161203a565b811461207a57600080fd5b50565b60008135905061208c81612066565b92915050565b6000602082840312156120a8576120a7612030565b5b60006120b68482850161207d565b91505092915050565b60008115159050919050565b6120d4816120bf565b82525050565b60006020820190506120ef60008301846120cb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561212f578082015181840152602081019050612114565b60008484015250505050565b6000601f19601f8301169050919050565b6000612157826120f5565b6121618185612100565b9350612171818560208601612111565b61217a8161213b565b840191505092915050565b6000602082019050818103600083015261219f818461214c565b905092915050565b6000819050919050565b6121ba816121a7565b81146121c557600080fd5b50565b6000813590506121d7816121b1565b92915050565b6000602082840312156121f3576121f2612030565b5b6000612201848285016121c8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122358261220a565b9050919050565b6122458161222a565b82525050565b6000602082019050612260600083018461223c565b92915050565b61226f8161222a565b811461227a57600080fd5b50565b60008135905061228c81612266565b92915050565b600080604083850312156122a9576122a8612030565b5b60006122b78582860161227d565b92505060206122c8858286016121c8565b9150509250929050565b6122db816121a7565b82525050565b60006020820190506122f660008301846122d2565b92915050565b60008060006060848603121561231557612314612030565b5b60006123238682870161227d565b93505060206123348682870161227d565b9250506040612345868287016121c8565b9150509250925092565b60006020828403121561236557612364612030565b5b60006123738482850161227d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6123b1816121a7565b82525050565b60006123c383836123a8565b60208301905092915050565b6000602082019050919050565b60006123e78261237c565b6123f18185612387565b93506123fc83612398565b8060005b8381101561242d57815161241488826123b7565b975061241f836123cf565b925050600181019050612400565b5085935050505092915050565b6000602082019050818103600083015261245481846123dc565b905092915050565b612465816120bf565b811461247057600080fd5b50565b6000813590506124828161245c565b92915050565b6000806040838503121561249f5761249e612030565b5b60006124ad8582860161227d565b92505060206124be85828601612473565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61250a8261213b565b810181811067ffffffffffffffff82111715612529576125286124d2565b5b80604052505050565b600061253c612026565b90506125488282612501565b919050565b600067ffffffffffffffff821115612568576125676124d2565b5b6125718261213b565b9050602081019050919050565b82818337600083830152505050565b60006125a061259b8461254d565b612532565b9050828152602081018484840111156125bc576125bb6124cd565b5b6125c784828561257e565b509392505050565b600082601f8301126125e4576125e36124c8565b5b81356125f484826020860161258d565b91505092915050565b6000806000806080858703121561261757612616612030565b5b60006126258782880161227d565b94505060206126368782880161227d565b9350506040612647878288016121c8565b925050606085013567ffffffffffffffff81111561266857612667612035565b5b612674878288016125cf565b91505092959194509250565b600067ffffffffffffffff82111561269b5761269a6124d2565b5b6126a48261213b565b9050602081019050919050565b60006126c46126bf84612680565b612532565b9050828152602081018484840111156126e0576126df6124cd565b5b6126eb84828561257e565b509392505050565b600082601f830112612708576127076124c8565b5b81356127188482602086016126b1565b91505092915050565b60006020828403121561273757612736612030565b5b600082013567ffffffffffffffff81111561275557612754612035565b5b612761848285016126f3565b91505092915050565b6000806040838503121561278157612780612030565b5b600061278f8582860161227d565b92505060206127a08582860161227d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127f157607f821691505b602082108103612804576128036127aa565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612866602183612100565b91506128718261280a565b604082019050919050565b6000602082019050818103600083015261289581612859565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006128f8603d83612100565b91506129038261289c565b604082019050919050565b60006020820190508181036000830152612927816128eb565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061298a602d83612100565b91506129958261292e565b604082019050919050565b600060208201905081810360008301526129b98161297d565b9050919050565b7f4f6e6c79206f776e65722063616e207769746864726177000000000000000000600082015250565b60006129f6601783612100565b9150612a01826129c0565b602082019050919050565b60006020820190508181036000830152612a25816129e9565b9050919050565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b6000612a62602083612100565b9150612a6d82612a2c565b602082019050919050565b60006020820190508181036000830152612a9181612a55565b9050919050565b7f4f6e6c79206f776e65722063616e206368616e676520636f7374000000000000600082015250565b6000612ace601a83612100565b9150612ad982612a98565b602082019050919050565b60006020820190508181036000830152612afd81612ac1565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612b3a601883612100565b9150612b4582612b04565b602082019050919050565b60006020820190508181036000830152612b6981612b2d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612bcc602983612100565b9150612bd782612b70565b604082019050919050565b60006020820190508181036000830152612bfb81612bbf565b9050919050565b600081905092915050565b6000612c18826120f5565b612c228185612c02565b9350612c32818560208601612111565b80840191505092915050565b6000612c4a8285612c0d565b9150612c568284612c0d565b91508190509392505050565b7f5061796d656e74206c657373207468616e20636f737400000000000000000000600082015250565b6000612c98601683612100565b9150612ca382612c62565b602082019050919050565b60006020820190508181036000830152612cc781612c8b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612d2a602583612100565b9150612d3582612cce565b604082019050919050565b60006020820190508181036000830152612d5981612d1d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612dbc602483612100565b9150612dc782612d60565b604082019050919050565b60006020820190508181036000830152612deb81612daf565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612e28601983612100565b9150612e3382612df2565b602082019050919050565b60006020820190508181036000830152612e5781612e1b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612eba603283612100565b9150612ec582612e5e565b604082019050919050565b60006020820190508181036000830152612ee981612ead565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612f26602083612100565b9150612f3182612ef0565b602082019050919050565b60006020820190508181036000830152612f5581612f19565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612f92601c83612100565b9150612f9d82612f5c565b602082019050919050565b60006020820190508181036000830152612fc181612f85565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613024602e83612100565b915061302f82612fc8565b604082019050919050565b6000602082019050818103600083015261305381613017565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261307f565b6130c6868361307f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131036130fe6130f9846121a7565b6130de565b6121a7565b9050919050565b6000819050919050565b61311d836130e8565b6131316131298261310a565b84845461308c565b825550505050565b600090565b613146613139565b613151818484613114565b505050565b5b818110156131755761316a60008261313e565b600181019050613157565b5050565b601f8211156131ba5761318b8161305a565b6131948461306f565b810160208510156131a3578190505b6131b76131af8561306f565b830182613156565b50505b505050565b600082821c905092915050565b60006131dd600019846008026131bf565b1980831691505092915050565b60006131f683836131cc565b9150826002028217905092915050565b61320f826120f5565b67ffffffffffffffff811115613228576132276124d2565b5b61323282546127d9565b61323d828285613179565b600060209050601f831160018114613270576000841561325e578287015190505b61326885826131ea565b8655506132d0565b601f19841661327e8661305a565b60005b828110156132a657848901518255600182019150602085019450602081019050613281565b868310156132c357848901516132bf601f8916826131cc565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b60006132ff826132d8565b61330981856132e3565b9350613319818560208601612111565b6133228161213b565b840191505092915050565b6000608082019050613342600083018761223c565b61334f602083018661223c565b61335c60408301856122d2565b818103606083015261336e81846132f4565b905095945050505050565b60008151905061338881612066565b92915050565b6000602082840312156133a4576133a3612030565b5b60006133b284828501613379565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212201dfbe9d22a427204da954b736fe9f6027eee4f19c4c7121922ebc1d910b3896a64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000000f496d6167696e41497279204e4654730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000641494e4654730000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): ImaginAIry NFTs
Arg [1] : _symbol (string): AINFTs
Arg [2] : _cost (uint256): 1000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 496d6167696e41497279204e4654730000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 41494e4654730000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
55541:1771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35844:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36772:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38284:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37802:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55693:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56470:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38984:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57151:158;;;;;;;;;;;;;:::i;:::-;;39390:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56977:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56770:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36482:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36213:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56641:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55666:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38527:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39646:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52565:624;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56046:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38753:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35844:305;35946:4;35998:25;35983:40;;;:11;:40;;;;:105;;;;36055:33;36040:48;;;:11;:48;;;;35983:105;:158;;;;36105:36;36129:11;36105:23;:36::i;:::-;35983:158;35963:178;;35844:305;;;:::o;36772:100::-;36826:13;36859:5;36852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772:100;:::o;38284:171::-;38360:7;38380:23;38395:7;38380:14;:23::i;:::-;38423:15;:24;38439:7;38423:24;;;;;;;;;;;;;;;;;;;;;38416:31;;38284:171;;;:::o;37802:416::-;37883:13;37899:23;37914:7;37899:14;:23::i;:::-;37883:39;;37947:5;37941:11;;:2;:11;;;37933:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38041:5;38025:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38050:37;38067:5;38074:12;:10;:12::i;:::-;38050:16;:37::i;:::-;38025:62;38003:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38189:21;38198:2;38202:7;38189:8;:21::i;:::-;37872:346;37802:416;;:::o;55693:19::-;;;;:::o;56470:98::-;56514:7;56541:19;:9;:17;:19::i;:::-;56534:26;;56470:98;:::o;38984:335::-;39179:41;39198:12;:10;:12::i;:::-;39212:7;39179:18;:41::i;:::-;39171:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39283:28;39293:4;39299:2;39303:7;39283:9;:28::i;:::-;38984:335;;;:::o;57151:158::-;57211:5;;;;;;;;;;;57197:19;;:10;:19;;;57189:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57263:5;;;;;;;;;;;57255:23;;:46;57279:21;57255:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57151:158::o;39390:185::-;39528:39;39545:4;39551:2;39555:7;39528:39;;;;;;;;;;;;:16;:39::i;:::-;39390:185;;;:::o;56977:166::-;57034:39;57053:10;57065:7;57034:18;:39::i;:::-;57026:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;57121:14;57127:7;57121:5;:14::i;:::-;56977:166;:::o;56770:143::-;56844:5;;;;;;;;;;;56830:19;;:10;:19;;;56822:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;56898:7;56891:4;:14;;;;56770:143;:::o;36482:223::-;36554:7;36574:13;36590:17;36599:7;36590:8;:17::i;:::-;36574:33;;36643:1;36626:19;;:5;:19;;;36618:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36692:5;36685:12;;;36482:223;;;:::o;36213:207::-;36285:7;36330:1;36313:19;;:5;:19;;;36305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36396:9;:16;36406:5;36396:16;;;;;;;;;;;;;;;;36389:23;;36213:207;;;:::o;56641:121::-;56700:16;56732:14;:22;56747:6;56732:22;;;;;;;;;;;;;;;56725:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56641:121;;;:::o;55666:20::-;;;;;;;;;;;;;:::o;36941:104::-;36997:13;37030:7;37023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36941:104;:::o;38527:155::-;38622:52;38641:12;:10;:12::i;:::-;38655:8;38665;38622:18;:52::i;:::-;38527:155;;:::o;39646:322::-;39820:41;39839:12;:10;:12::i;:::-;39853:7;39820:18;:41::i;:::-;39812:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:38;39936:4;39942:2;39946:7;39955:4;39922:13;:38::i;:::-;39646:322;;;;:::o;52565:624::-;52638:13;52664:23;52679:7;52664:14;:23::i;:::-;52700;52726:10;:19;52737:7;52726:19;;;;;;;;;;;52700:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52756:18;52777:10;:8;:10::i;:::-;52756:31;;52885:1;52869:4;52863:18;:23;52859:72;;52910:9;52903:16;;;;;;52859:72;53061:1;53041:9;53035:23;:27;53031:108;;;53110:4;53116:9;53093:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53079:48;;;;;;53031:108;53158:23;53173:7;53158:14;:23::i;:::-;53151:30;;;;52565:624;;;;:::o;56046:416::-;56131:4;;56118:9;:17;;56110:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;56173:21;:9;:19;:21::i;:::-;56205:17;56225:19;:9;:17;:19::i;:::-;56205:39;;56255:28;56261:10;56273:9;56255:5;:28::i;:::-;56294:33;56307:9;56318:8;56294:12;:33::i;:::-;56412:14;:26;56427:10;56412:26;;;;;;;;;;;;;;;56444:9;56412:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56099:363;56046:416;:::o;38753:164::-;38850:4;38874:18;:25;38893:5;38874:25;;;;;;;;;;;;;;;:35;38900:8;38874:35;;;;;;;;;;;;;;;;;;;;;;;;;38867:42;;38753:164;;;;:::o;28356:157::-;28441:4;28480:25;28465:40;;;:11;:40;;;;28458:47;;28356:157;;;:::o;48103:135::-;48185:16;48193:7;48185;:16::i;:::-;48177:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48103:135;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;47382:174::-;47484:2;47457:15;:24;47473:7;47457:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47540:7;47536:2;47502:46;;47511:23;47526:7;47511:14;:23::i;:::-;47502:46;;;;;;;;;;;;47382:174;;:::o;54872:114::-;54937:7;54964;:14;;;54957:21;;54872:114;;;:::o;42001:264::-;42094:4;42111:13;42127:23;42142:7;42127:14;:23::i;:::-;42111:39;;42180:5;42169:16;;:7;:16;;;:52;;;;42189:32;42206:5;42213:7;42189:16;:32::i;:::-;42169:52;:87;;;;42249:7;42225:31;;:20;42237:7;42225:11;:20::i;:::-;:31;;;42169:87;42161:96;;;42001:264;;;;:::o;46000:1263::-;46159:4;46132:31;;:23;46147:7;46132:14;:23::i;:::-;:31;;;46124:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46238:1;46224:16;;:2;:16;;;46216:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46294:42;46315:4;46321:2;46325:7;46334:1;46294:20;:42::i;:::-;46466:4;46439:31;;:23;46454:7;46439:14;:23::i;:::-;:31;;;46431:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46584:15;:24;46600:7;46584:24;;;;;;;;;;;;46577:31;;;;;;;;;;;47079:1;47060:9;:15;47070:4;47060:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47112:1;47095:9;:13;47105:2;47095:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47154:2;47135:7;:16;47143:7;47135:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47193:7;47189:2;47174:27;;47183:4;47174:27;;;;;;;;;;;;47214:41;47234:4;47240:2;47244:7;47253:1;47214:19;:41::i;:::-;46000:1263;;;:::o;53787:206::-;53856:20;53868:7;53856:11;:20::i;:::-;53930:1;53899:10;:19;53910:7;53899:19;;;;;;;;;;;53893:33;;;;;:::i;:::-;;;:38;53889:97;;53955:10;:19;53966:7;53955:19;;;;;;;;;;;;53948:26;;;;:::i;:::-;53889:97;53787:206;:::o;41276:117::-;41342:7;41369;:16;41377:7;41369:16;;;;;;;;;;;;;;;;;;;;;41362:23;;41276:117;;;:::o;47699:315::-;47854:8;47845:17;;:5;:17;;;47837:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47941:8;47903:18;:25;47922:5;47903:25;;;;;;;;;;;;;;;:35;47929:8;47903:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;47987:8;47965:41;;47980:5;47965:41;;;47997:8;47965:41;;;;;;:::i;:::-;;;;;;;;47699:315;;;:::o;40849:313::-;41005:28;41015:4;41021:2;41025:7;41005:9;:28::i;:::-;41052:47;41075:4;41081:2;41085:7;41094:4;41052:22;:47::i;:::-;41044:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40849:313;;;;:::o;37646:94::-;37697:13;37723:9;;;;;;;;;;;;;;37646:94;:::o;37116:281::-;37189:13;37215:23;37230:7;37215:14;:23::i;:::-;37251:21;37275:10;:8;:10::i;:::-;37251:34;;37327:1;37309:7;37303:21;:25;:86;;;;;;;;;;;;;;;;;37355:7;37364:18;:7;:16;:18::i;:::-;37338:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37303:86;37296:93;;;37116:281;;;:::o;54994:127::-;55101:1;55083:7;:14;;;:19;;;;;;;;;;;54994:127;:::o;43599:942::-;43693:1;43679:16;;:2;:16;;;43671:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43752:16;43760:7;43752;:16::i;:::-;43751:17;43743:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43814:48;43843:1;43847:2;43851:7;43860:1;43814:20;:48::i;:::-;43961:16;43969:7;43961;:16::i;:::-;43960:17;43952:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44376:1;44359:9;:13;44369:2;44359:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44420:2;44401:7;:16;44409:7;44401:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44465:7;44461:2;44440:33;;44457:1;44440:33;;;;;;;;;;;;44486:47;44514:1;44518:2;44522:7;44531:1;44486:19;:47::i;:::-;43599:942;;:::o;53345:217::-;53445:16;53453:7;53445;:16::i;:::-;53437:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53545:9;53523:10;:19;53534:7;53523:19;;;;;;;;;;;:31;;;;;;:::i;:::-;;53345:217;;:::o;41706:128::-;41771:4;41824:1;41795:31;;:17;41804:7;41795:8;:17::i;:::-;:31;;;;41788:38;;41706:128;;;:::o;50387:159::-;;;;;:::o;51268:158::-;;;;;:::o;44880:783::-;44940:13;44956:23;44971:7;44956:14;:23::i;:::-;44940:39;;44992:51;45013:5;45028:1;45032:7;45041:1;44992:20;:51::i;:::-;45156:23;45171:7;45156:14;:23::i;:::-;45148:31;;45227:15;:24;45243:7;45227:24;;;;;;;;;;;;45220:31;;;;;;;;;;;45492:1;45472:9;:16;45482:5;45472:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;45522:7;:16;45530:7;45522:16;;;;;;;;;;;;45515:23;;;;;;;;;;;45584:7;45580:1;45556:36;;45565:5;45556:36;;;;;;;;;;;;45605:50;45625:5;45640:1;45644:7;45653:1;45605:19;:50::i;:::-;44929:734;44880:783;:::o;48802:853::-;48956:4;48977:15;:2;:13;;;:15::i;:::-;48973:675;;;49029:2;49013:36;;;49050:12;:10;:12::i;:::-;49064:4;49070:7;49079:4;49013:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49009:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49271:1;49254:6;:13;:18;49250:328;;49297:60;;;;;;;;;;:::i;:::-;;;;;;;;49250:328;49528:6;49522:13;49513:6;49509:2;49505:15;49498:38;49009:584;49145:41;;;49135:51;;;:6;:51;;;;49128:58;;;;;48973:675;49632:4;49625:11;;48802:853;;;;;;;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;17325:326::-;17385:4;17642:1;17620:7;:19;;;:23;17613:30;;17325:326;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:114::-;6269:6;6303:5;6297:12;6287:22;;6202:114;;;:::o;6322:184::-;6421:11;6455:6;6450:3;6443:19;6495:4;6490:3;6486:14;6471:29;;6322:184;;;;:::o;6512:132::-;6579:4;6602:3;6594:11;;6632:4;6627:3;6623:14;6615:22;;6512:132;;;:::o;6650:108::-;6727:24;6745:5;6727:24;:::i;:::-;6722:3;6715:37;6650:108;;:::o;6764:179::-;6833:10;6854:46;6896:3;6888:6;6854:46;:::i;:::-;6932:4;6927:3;6923:14;6909:28;;6764:179;;;;:::o;6949:113::-;7019:4;7051;7046:3;7042:14;7034:22;;6949:113;;;:::o;7098:732::-;7217:3;7246:54;7294:5;7246:54;:::i;:::-;7316:86;7395:6;7390:3;7316:86;:::i;:::-;7309:93;;7426:56;7476:5;7426:56;:::i;:::-;7505:7;7536:1;7521:284;7546:6;7543:1;7540:13;7521:284;;;7622:6;7616:13;7649:63;7708:3;7693:13;7649:63;:::i;:::-;7642:70;;7735:60;7788:6;7735:60;:::i;:::-;7725:70;;7581:224;7568:1;7565;7561:9;7556:14;;7521:284;;;7525:14;7821:3;7814:10;;7222:608;;;7098:732;;;;:::o;7836:373::-;7979:4;8017:2;8006:9;8002:18;7994:26;;8066:9;8060:4;8056:20;8052:1;8041:9;8037:17;8030:47;8094:108;8197:4;8188:6;8094:108;:::i;:::-;8086:116;;7836:373;;;;:::o;8215:116::-;8285:21;8300:5;8285:21;:::i;:::-;8278:5;8275:32;8265:60;;8321:1;8318;8311:12;8265:60;8215:116;:::o;8337:133::-;8380:5;8418:6;8405:20;8396:29;;8434:30;8458:5;8434:30;:::i;:::-;8337:133;;;;:::o;8476:468::-;8541:6;8549;8598:2;8586:9;8577:7;8573:23;8569:32;8566:119;;;8604:79;;:::i;:::-;8566:119;8724:1;8749:53;8794:7;8785:6;8774:9;8770:22;8749:53;:::i;:::-;8739:63;;8695:117;8851:2;8877:50;8919:7;8910:6;8899:9;8895:22;8877:50;:::i;:::-;8867:60;;8822:115;8476:468;;;;;:::o;8950:117::-;9059:1;9056;9049:12;9073:117;9182:1;9179;9172:12;9196:180;9244:77;9241:1;9234:88;9341:4;9338:1;9331:15;9365:4;9362:1;9355:15;9382:281;9465:27;9487:4;9465:27;:::i;:::-;9457:6;9453:40;9595:6;9583:10;9580:22;9559:18;9547:10;9544:34;9541:62;9538:88;;;9606:18;;:::i;:::-;9538:88;9646:10;9642:2;9635:22;9425:238;9382:281;;:::o;9669:129::-;9703:6;9730:20;;:::i;:::-;9720:30;;9759:33;9787:4;9779:6;9759:33;:::i;:::-;9669:129;;;:::o;9804:307::-;9865:4;9955:18;9947:6;9944:30;9941:56;;;9977:18;;:::i;:::-;9941:56;10015:29;10037:6;10015:29;:::i;:::-;10007:37;;10099:4;10093;10089:15;10081:23;;9804:307;;;:::o;10117:146::-;10214:6;10209:3;10204;10191:30;10255:1;10246:6;10241:3;10237:16;10230:27;10117:146;;;:::o;10269:423::-;10346:5;10371:65;10387:48;10428:6;10387:48;:::i;:::-;10371:65;:::i;:::-;10362:74;;10459:6;10452:5;10445:21;10497:4;10490:5;10486:16;10535:3;10526:6;10521:3;10517:16;10514:25;10511:112;;;10542:79;;:::i;:::-;10511:112;10632:54;10679:6;10674:3;10669;10632:54;:::i;:::-;10352:340;10269:423;;;;;:::o;10711:338::-;10766:5;10815:3;10808:4;10800:6;10796:17;10792:27;10782:122;;10823:79;;:::i;:::-;10782:122;10940:6;10927:20;10965:78;11039:3;11031:6;11024:4;11016:6;11012:17;10965:78;:::i;:::-;10956:87;;10772:277;10711:338;;;;:::o;11055:943::-;11150:6;11158;11166;11174;11223:3;11211:9;11202:7;11198:23;11194:33;11191:120;;;11230:79;;:::i;:::-;11191:120;11350:1;11375:53;11420:7;11411:6;11400:9;11396:22;11375:53;:::i;:::-;11365:63;;11321:117;11477:2;11503:53;11548:7;11539:6;11528:9;11524:22;11503:53;:::i;:::-;11493:63;;11448:118;11605:2;11631:53;11676:7;11667:6;11656:9;11652:22;11631:53;:::i;:::-;11621:63;;11576:118;11761:2;11750:9;11746:18;11733:32;11792:18;11784:6;11781:30;11778:117;;;11814:79;;:::i;:::-;11778:117;11919:62;11973:7;11964:6;11953:9;11949:22;11919:62;:::i;:::-;11909:72;;11704:287;11055:943;;;;;;;:::o;12004:308::-;12066:4;12156:18;12148:6;12145:30;12142:56;;;12178:18;;:::i;:::-;12142:56;12216:29;12238:6;12216:29;:::i;:::-;12208:37;;12300:4;12294;12290:15;12282:23;;12004:308;;;:::o;12318:425::-;12396:5;12421:66;12437:49;12479:6;12437:49;:::i;:::-;12421:66;:::i;:::-;12412:75;;12510:6;12503:5;12496:21;12548:4;12541:5;12537:16;12586:3;12577:6;12572:3;12568:16;12565:25;12562:112;;;12593:79;;:::i;:::-;12562:112;12683:54;12730:6;12725:3;12720;12683:54;:::i;:::-;12402:341;12318:425;;;;;:::o;12763:340::-;12819:5;12868:3;12861:4;12853:6;12849:17;12845:27;12835:122;;12876:79;;:::i;:::-;12835:122;12993:6;12980:20;13018:79;13093:3;13085:6;13078:4;13070:6;13066:17;13018:79;:::i;:::-;13009:88;;12825:278;12763:340;;;;:::o;13109:509::-;13178:6;13227:2;13215:9;13206:7;13202:23;13198:32;13195:119;;;13233:79;;:::i;:::-;13195:119;13381:1;13370:9;13366:17;13353:31;13411:18;13403:6;13400:30;13397:117;;;13433:79;;:::i;:::-;13397:117;13538:63;13593:7;13584:6;13573:9;13569:22;13538:63;:::i;:::-;13528:73;;13324:287;13109:509;;;;:::o;13624:474::-;13692:6;13700;13749:2;13737:9;13728:7;13724:23;13720:32;13717:119;;;13755:79;;:::i;:::-;13717:119;13875:1;13900:53;13945:7;13936:6;13925:9;13921:22;13900:53;:::i;:::-;13890:63;;13846:117;14002:2;14028:53;14073:7;14064:6;14053:9;14049:22;14028:53;:::i;:::-;14018:63;;13973:118;13624:474;;;;;:::o;14104:180::-;14152:77;14149:1;14142:88;14249:4;14246:1;14239:15;14273:4;14270:1;14263:15;14290:320;14334:6;14371:1;14365:4;14361:12;14351:22;;14418:1;14412:4;14408:12;14439:18;14429:81;;14495:4;14487:6;14483:17;14473:27;;14429:81;14557:2;14549:6;14546:14;14526:18;14523:38;14520:84;;14576:18;;:::i;:::-;14520:84;14341:269;14290:320;;;:::o;14616:220::-;14756:34;14752:1;14744:6;14740:14;14733:58;14825:3;14820:2;14812:6;14808:15;14801:28;14616:220;:::o;14842:366::-;14984:3;15005:67;15069:2;15064:3;15005:67;:::i;:::-;14998:74;;15081:93;15170:3;15081:93;:::i;:::-;15199:2;15194:3;15190:12;15183:19;;14842:366;;;:::o;15214:419::-;15380:4;15418:2;15407:9;15403:18;15395:26;;15467:9;15461:4;15457:20;15453:1;15442:9;15438:17;15431:47;15495:131;15621:4;15495:131;:::i;:::-;15487:139;;15214:419;;;:::o;15639:248::-;15779:34;15775:1;15767:6;15763:14;15756:58;15848:31;15843:2;15835:6;15831:15;15824:56;15639:248;:::o;15893:366::-;16035:3;16056:67;16120:2;16115:3;16056:67;:::i;:::-;16049:74;;16132:93;16221:3;16132:93;:::i;:::-;16250:2;16245:3;16241:12;16234:19;;15893:366;;;:::o;16265:419::-;16431:4;16469:2;16458:9;16454:18;16446:26;;16518:9;16512:4;16508:20;16504:1;16493:9;16489:17;16482:47;16546:131;16672:4;16546:131;:::i;:::-;16538:139;;16265:419;;;:::o;16690:232::-;16830:34;16826:1;16818:6;16814:14;16807:58;16899:15;16894:2;16886:6;16882:15;16875:40;16690:232;:::o;16928:366::-;17070:3;17091:67;17155:2;17150:3;17091:67;:::i;:::-;17084:74;;17167:93;17256:3;17167:93;:::i;:::-;17285:2;17280:3;17276:12;17269:19;;16928:366;;;:::o;17300:419::-;17466:4;17504:2;17493:9;17489:18;17481:26;;17553:9;17547:4;17543:20;17539:1;17528:9;17524:17;17517:47;17581:131;17707:4;17581:131;:::i;:::-;17573:139;;17300:419;;;:::o;17725:173::-;17865:25;17861:1;17853:6;17849:14;17842:49;17725:173;:::o;17904:366::-;18046:3;18067:67;18131:2;18126:3;18067:67;:::i;:::-;18060:74;;18143:93;18232:3;18143:93;:::i;:::-;18261:2;18256:3;18252:12;18245:19;;17904:366;;;:::o;18276:419::-;18442:4;18480:2;18469:9;18465:18;18457:26;;18529:9;18523:4;18519:20;18515:1;18504:9;18500:17;18493:47;18557:131;18683:4;18557:131;:::i;:::-;18549:139;;18276:419;;;:::o;18701:182::-;18841:34;18837:1;18829:6;18825:14;18818:58;18701:182;:::o;18889:366::-;19031:3;19052:67;19116:2;19111:3;19052:67;:::i;:::-;19045:74;;19128:93;19217:3;19128:93;:::i;:::-;19246:2;19241:3;19237:12;19230:19;;18889:366;;;:::o;19261:419::-;19427:4;19465:2;19454:9;19450:18;19442:26;;19514:9;19508:4;19504:20;19500:1;19489:9;19485:17;19478:47;19542:131;19668:4;19542:131;:::i;:::-;19534:139;;19261:419;;;:::o;19686:176::-;19826:28;19822:1;19814:6;19810:14;19803:52;19686:176;:::o;19868:366::-;20010:3;20031:67;20095:2;20090:3;20031:67;:::i;:::-;20024:74;;20107:93;20196:3;20107:93;:::i;:::-;20225:2;20220:3;20216:12;20209:19;;19868:366;;;:::o;20240:419::-;20406:4;20444:2;20433:9;20429:18;20421:26;;20493:9;20487:4;20483:20;20479:1;20468:9;20464:17;20457:47;20521:131;20647:4;20521:131;:::i;:::-;20513:139;;20240:419;;;:::o;20665:174::-;20805:26;20801:1;20793:6;20789:14;20782:50;20665:174;:::o;20845:366::-;20987:3;21008:67;21072:2;21067:3;21008:67;:::i;:::-;21001:74;;21084:93;21173:3;21084:93;:::i;:::-;21202:2;21197:3;21193:12;21186:19;;20845:366;;;:::o;21217:419::-;21383:4;21421:2;21410:9;21406:18;21398:26;;21470:9;21464:4;21460:20;21456:1;21445:9;21441:17;21434:47;21498:131;21624:4;21498:131;:::i;:::-;21490:139;;21217:419;;;:::o;21642:228::-;21782:34;21778:1;21770:6;21766:14;21759:58;21851:11;21846:2;21838:6;21834:15;21827:36;21642:228;:::o;21876:366::-;22018:3;22039:67;22103:2;22098:3;22039:67;:::i;:::-;22032:74;;22115:93;22204:3;22115:93;:::i;:::-;22233:2;22228:3;22224:12;22217:19;;21876:366;;;:::o;22248:419::-;22414:4;22452:2;22441:9;22437:18;22429:26;;22501:9;22495:4;22491:20;22487:1;22476:9;22472:17;22465:47;22529:131;22655:4;22529:131;:::i;:::-;22521:139;;22248:419;;;:::o;22673:148::-;22775:11;22812:3;22797:18;;22673:148;;;;:::o;22827:390::-;22933:3;22961:39;22994:5;22961:39;:::i;:::-;23016:89;23098:6;23093:3;23016:89;:::i;:::-;23009:96;;23114:65;23172:6;23167:3;23160:4;23153:5;23149:16;23114:65;:::i;:::-;23204:6;23199:3;23195:16;23188:23;;22937:280;22827:390;;;;:::o;23223:435::-;23403:3;23425:95;23516:3;23507:6;23425:95;:::i;:::-;23418:102;;23537:95;23628:3;23619:6;23537:95;:::i;:::-;23530:102;;23649:3;23642:10;;23223:435;;;;;:::o;23664:172::-;23804:24;23800:1;23792:6;23788:14;23781:48;23664:172;:::o;23842:366::-;23984:3;24005:67;24069:2;24064:3;24005:67;:::i;:::-;23998:74;;24081:93;24170:3;24081:93;:::i;:::-;24199:2;24194:3;24190:12;24183:19;;23842:366;;;:::o;24214:419::-;24380:4;24418:2;24407:9;24403:18;24395:26;;24467:9;24461:4;24457:20;24453:1;24442:9;24438:17;24431:47;24495:131;24621:4;24495:131;:::i;:::-;24487:139;;24214:419;;;:::o;24639:224::-;24779:34;24775:1;24767:6;24763:14;24756:58;24848:7;24843:2;24835:6;24831:15;24824:32;24639:224;:::o;24869:366::-;25011:3;25032:67;25096:2;25091:3;25032:67;:::i;:::-;25025:74;;25108:93;25197:3;25108:93;:::i;:::-;25226:2;25221:3;25217:12;25210:19;;24869:366;;;:::o;25241:419::-;25407:4;25445:2;25434:9;25430:18;25422:26;;25494:9;25488:4;25484:20;25480:1;25469:9;25465:17;25458:47;25522:131;25648:4;25522:131;:::i;:::-;25514:139;;25241:419;;;:::o;25666:223::-;25806:34;25802:1;25794:6;25790:14;25783:58;25875:6;25870:2;25862:6;25858:15;25851:31;25666:223;:::o;25895:366::-;26037:3;26058:67;26122:2;26117:3;26058:67;:::i;:::-;26051:74;;26134:93;26223:3;26134:93;:::i;:::-;26252:2;26247:3;26243:12;26236:19;;25895:366;;;:::o;26267:419::-;26433:4;26471:2;26460:9;26456:18;26448:26;;26520:9;26514:4;26510:20;26506:1;26495:9;26491:17;26484:47;26548:131;26674:4;26548:131;:::i;:::-;26540:139;;26267:419;;;:::o;26692:175::-;26832:27;26828:1;26820:6;26816:14;26809:51;26692:175;:::o;26873:366::-;27015:3;27036:67;27100:2;27095:3;27036:67;:::i;:::-;27029:74;;27112:93;27201:3;27112:93;:::i;:::-;27230:2;27225:3;27221:12;27214:19;;26873:366;;;:::o;27245:419::-;27411:4;27449:2;27438:9;27434:18;27426:26;;27498:9;27492:4;27488:20;27484:1;27473:9;27469:17;27462:47;27526:131;27652:4;27526:131;:::i;:::-;27518:139;;27245:419;;;:::o;27670:237::-;27810:34;27806:1;27798:6;27794:14;27787:58;27879:20;27874:2;27866:6;27862:15;27855:45;27670:237;:::o;27913:366::-;28055:3;28076:67;28140:2;28135:3;28076:67;:::i;:::-;28069:74;;28152:93;28241:3;28152:93;:::i;:::-;28270:2;28265:3;28261:12;28254:19;;27913:366;;;:::o;28285:419::-;28451:4;28489:2;28478:9;28474:18;28466:26;;28538:9;28532:4;28528:20;28524:1;28513:9;28509:17;28502:47;28566:131;28692:4;28566:131;:::i;:::-;28558:139;;28285:419;;;:::o;28710:182::-;28850:34;28846:1;28838:6;28834:14;28827:58;28710:182;:::o;28898:366::-;29040:3;29061:67;29125:2;29120:3;29061:67;:::i;:::-;29054:74;;29137:93;29226:3;29137:93;:::i;:::-;29255:2;29250:3;29246:12;29239:19;;28898:366;;;:::o;29270:419::-;29436:4;29474:2;29463:9;29459:18;29451:26;;29523:9;29517:4;29513:20;29509:1;29498:9;29494:17;29487:47;29551:131;29677:4;29551:131;:::i;:::-;29543:139;;29270:419;;;:::o;29695:178::-;29835:30;29831:1;29823:6;29819:14;29812:54;29695:178;:::o;29879:366::-;30021:3;30042:67;30106:2;30101:3;30042:67;:::i;:::-;30035:74;;30118:93;30207:3;30118:93;:::i;:::-;30236:2;30231:3;30227:12;30220:19;;29879:366;;;:::o;30251:419::-;30417:4;30455:2;30444:9;30440:18;30432:26;;30504:9;30498:4;30494:20;30490:1;30479:9;30475:17;30468:47;30532:131;30658:4;30532:131;:::i;:::-;30524:139;;30251:419;;;:::o;30676:233::-;30816:34;30812:1;30804:6;30800:14;30793:58;30885:16;30880:2;30872:6;30868:15;30861:41;30676:233;:::o;30915:366::-;31057:3;31078:67;31142:2;31137:3;31078:67;:::i;:::-;31071:74;;31154:93;31243:3;31154:93;:::i;:::-;31272:2;31267:3;31263:12;31256:19;;30915:366;;;:::o;31287:419::-;31453:4;31491:2;31480:9;31476:18;31468:26;;31540:9;31534:4;31530:20;31526:1;31515:9;31511:17;31504:47;31568:131;31694:4;31568:131;:::i;:::-;31560:139;;31287:419;;;:::o;31712:141::-;31761:4;31784:3;31776:11;;31807:3;31804:1;31797:14;31841:4;31838:1;31828:18;31820:26;;31712:141;;;:::o;31859:93::-;31896:6;31943:2;31938;31931:5;31927:14;31923:23;31913:33;;31859:93;;;:::o;31958:107::-;32002:8;32052:5;32046:4;32042:16;32021:37;;31958:107;;;;:::o;32071:393::-;32140:6;32190:1;32178:10;32174:18;32213:97;32243:66;32232:9;32213:97;:::i;:::-;32331:39;32361:8;32350:9;32331:39;:::i;:::-;32319:51;;32403:4;32399:9;32392:5;32388:21;32379:30;;32452:4;32442:8;32438:19;32431:5;32428:30;32418:40;;32147:317;;32071:393;;;;;:::o;32470:60::-;32498:3;32519:5;32512:12;;32470:60;;;:::o;32536:142::-;32586:9;32619:53;32637:34;32646:24;32664:5;32646:24;:::i;:::-;32637:34;:::i;:::-;32619:53;:::i;:::-;32606:66;;32536:142;;;:::o;32684:75::-;32727:3;32748:5;32741:12;;32684:75;;;:::o;32765:269::-;32875:39;32906:7;32875:39;:::i;:::-;32936:91;32985:41;33009:16;32985:41;:::i;:::-;32977:6;32970:4;32964:11;32936:91;:::i;:::-;32930:4;32923:105;32841:193;32765:269;;;:::o;33040:73::-;33085:3;33040:73;:::o;33119:189::-;33196:32;;:::i;:::-;33237:65;33295:6;33287;33281:4;33237:65;:::i;:::-;33172:136;33119:189;;:::o;33314:186::-;33374:120;33391:3;33384:5;33381:14;33374:120;;;33445:39;33482:1;33475:5;33445:39;:::i;:::-;33418:1;33411:5;33407:13;33398:22;;33374:120;;;33314:186;;:::o;33506:543::-;33607:2;33602:3;33599:11;33596:446;;;33641:38;33673:5;33641:38;:::i;:::-;33725:29;33743:10;33725:29;:::i;:::-;33715:8;33711:44;33908:2;33896:10;33893:18;33890:49;;;33929:8;33914:23;;33890:49;33952:80;34008:22;34026:3;34008:22;:::i;:::-;33998:8;33994:37;33981:11;33952:80;:::i;:::-;33611:431;;33596:446;33506:543;;;:::o;34055:117::-;34109:8;34159:5;34153:4;34149:16;34128:37;;34055:117;;;;:::o;34178:169::-;34222:6;34255:51;34303:1;34299:6;34291:5;34288:1;34284:13;34255:51;:::i;:::-;34251:56;34336:4;34330;34326:15;34316:25;;34229:118;34178:169;;;;:::o;34352:295::-;34428:4;34574:29;34599:3;34593:4;34574:29;:::i;:::-;34566:37;;34636:3;34633:1;34629:11;34623:4;34620:21;34612:29;;34352:295;;;;:::o;34652:1395::-;34769:37;34802:3;34769:37;:::i;:::-;34871:18;34863:6;34860:30;34857:56;;;34893:18;;:::i;:::-;34857:56;34937:38;34969:4;34963:11;34937:38;:::i;:::-;35022:67;35082:6;35074;35068:4;35022:67;:::i;:::-;35116:1;35140:4;35127:17;;35172:2;35164:6;35161:14;35189:1;35184:618;;;;35846:1;35863:6;35860:77;;;35912:9;35907:3;35903:19;35897:26;35888:35;;35860:77;35963:67;36023:6;36016:5;35963:67;:::i;:::-;35957:4;35950:81;35819:222;35154:887;;35184:618;35236:4;35232:9;35224:6;35220:22;35270:37;35302:4;35270:37;:::i;:::-;35329:1;35343:208;35357:7;35354:1;35351:14;35343:208;;;35436:9;35431:3;35427:19;35421:26;35413:6;35406:42;35487:1;35479:6;35475:14;35465:24;;35534:2;35523:9;35519:18;35506:31;;35380:4;35377:1;35373:12;35368:17;;35343:208;;;35579:6;35570:7;35567:19;35564:179;;;35637:9;35632:3;35628:19;35622:26;35680:48;35722:4;35714:6;35710:17;35699:9;35680:48;:::i;:::-;35672:6;35665:64;35587:156;35564:179;35789:1;35785;35777:6;35773:14;35769:22;35763:4;35756:36;35191:611;;;35154:887;;34744:1303;;;34652:1395;;:::o;36053:98::-;36104:6;36138:5;36132:12;36122:22;;36053:98;;;:::o;36157:168::-;36240:11;36274:6;36269:3;36262:19;36314:4;36309:3;36305:14;36290:29;;36157:168;;;;:::o;36331:373::-;36417:3;36445:38;36477:5;36445:38;:::i;:::-;36499:70;36562:6;36557:3;36499:70;:::i;:::-;36492:77;;36578:65;36636:6;36631:3;36624:4;36617:5;36613:16;36578:65;:::i;:::-;36668:29;36690:6;36668:29;:::i;:::-;36663:3;36659:39;36652:46;;36421:283;36331:373;;;;:::o;36710:640::-;36905:4;36943:3;36932:9;36928:19;36920:27;;36957:71;37025:1;37014:9;37010:17;37001:6;36957:71;:::i;:::-;37038:72;37106:2;37095:9;37091:18;37082:6;37038:72;:::i;:::-;37120;37188:2;37177:9;37173:18;37164:6;37120:72;:::i;:::-;37239:9;37233:4;37229:20;37224:2;37213:9;37209:18;37202:48;37267:76;37338:4;37329:6;37267:76;:::i;:::-;37259:84;;36710:640;;;;;;;:::o;37356:141::-;37412:5;37443:6;37437:13;37428:22;;37459:32;37485:5;37459:32;:::i;:::-;37356:141;;;;:::o;37503:349::-;37572:6;37621:2;37609:9;37600:7;37596:23;37592:32;37589:119;;;37627:79;;:::i;:::-;37589:119;37747:1;37772:63;37827:7;37818:6;37807:9;37803:22;37772:63;:::i;:::-;37762:73;;37718:127;37503:349;;;;:::o;37858:180::-;37906:77;37903:1;37896:88;38003:4;38000:1;37993:15;38027:4;38024:1;38017:15
Swarm Source
ipfs://1dfbe9d22a427204da954b736fe9f6027eee4f19c4c7121922ebc1d910b3896a
[ 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.