ERC-721
Overview
Max Total Supply
2,666 MSC
Holders
1,166
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MSCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MermaidSistersMSC
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-27 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/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/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/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.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @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 {} } // File: contracts/MermaidSistersMSC.sol pragma solidity >=0.7.0 <0.9.0; contract MermaidSistersMSC is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.0 ether; uint256 public maxSupply = 2666; uint256 public maxMintAmountPerTx = 2; bool public paused = false; bool public revealed = false; constructor() ERC721("Mermaid Sisters MSC", "MSC") { setHiddenMetadataUri("ipfs://QmT5uVLbToioTx2rjDaimQvCaDbrcJWb2HSd4U4275qerG/Hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b916008916200020b565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a916009916200020b565b506000600b55610a6a600c556002600d55600e805461ffff191690553480156200007357600080fd5b50604080518082018252601381527f4d65726d6169642053697374657273204d5343000000000000000000000000006020808301918252835180850190945260038452624d534360e81b908401528151919291620000d4916000916200020b565b508051620000ea9060019060208401906200020b565b50505062000107620001016200013160201b60201c565b62000135565b6200012b604051806080016040528060418152602001620024fc6041913962000187565b620002ee565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000191620001aa565b8051620001a690600a9060208401906200020b565b5050565b6006546001600160a01b03163314620002095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200021990620002b1565b90600052602060002090601f0160209004810192826200023d576000855562000288565b82601f106200025857805160ff191683800117855562000288565b8280016001018555821562000288579182015b82811115620002885782518255916020019190600101906200026b565b50620002969291506200029a565b5090565b5b808211156200029657600081556001016200029b565b600181811c90821680620002c657607f821691505b60208210811415620002e857634e487b7160e01b600052602260045260246000fd5b50919050565b6121fe80620002fe6000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146105c9578063e0a80853146105df578063e985e9c5146105ff578063efbd73f414610648578063f2fde38b1461066857600080fd5b8063a45ba8e714610554578063b071401b14610569578063b88d4fde14610589578063c87b56dd146105a957600080fd5b80638da5cb5b116100e75780638da5cb5b146104d857806394354fd0146104f657806395d89b411461050c578063a0712d6814610521578063a22cb4651461053457600080fd5b80636352211e1461046357806370a0823114610483578063715018a6146104a35780637ec4a659146104b857600080fd5b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb146103e057806351830227146104005780635503a0e81461041f5780635c975abb1461043457806362b99ad41461044e57600080fd5b80633ccfd60b1461035e57806342842e0e14610373578063438b63001461039357806344a0d68a146103c057600080fd5b806313faede6116101e257806313faede6146102c557806316ba10e0146102e957806316c38b3c1461030957806318160ddd1461032957806323b872dd1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611d79565b610688565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106da565b6040516102409190611fa9565b34801561027757600080fd5b5061028b610286366004611dfc565b61076c565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611d34565b610793565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004611db3565b6108ae565b34801561031557600080fd5b506102c3610324366004611d5e565b6108cd565b34801561033557600080fd5b506102db6108e8565b34801561034a57600080fd5b506102c3610359366004611c52565b6108f8565b34801561036a57600080fd5b506102c3610929565b34801561037f57600080fd5b506102c361038e366004611c52565b6109a5565b34801561039f57600080fd5b506103b36103ae366004611c04565b6109c0565b6040516102409190611f65565b3480156103cc57600080fd5b506102c36103db366004611dfc565b610aa1565b3480156103ec57600080fd5b506102c36103fb366004611db3565b610aae565b34801561040c57600080fd5b50600e5461023490610100900460ff1681565b34801561042b57600080fd5b5061025e610ac9565b34801561044057600080fd5b50600e546102349060ff1681565b34801561045a57600080fd5b5061025e610b57565b34801561046f57600080fd5b5061028b61047e366004611dfc565b610b64565b34801561048f57600080fd5b506102db61049e366004611c04565b610bc4565b3480156104af57600080fd5b506102c3610c4a565b3480156104c457600080fd5b506102c36104d3366004611db3565b610c5e565b3480156104e457600080fd5b506006546001600160a01b031661028b565b34801561050257600080fd5b506102db600d5481565b34801561051857600080fd5b5061025e610c79565b6102c361052f366004611dfc565b610c88565b34801561054057600080fd5b506102c361054f366004611d0a565b610dea565b34801561056057600080fd5b5061025e610df5565b34801561057557600080fd5b506102c3610584366004611dfc565b610e02565b34801561059557600080fd5b506102c36105a4366004611c8e565b610e0f565b3480156105b557600080fd5b5061025e6105c4366004611dfc565b610e47565b3480156105d557600080fd5b506102db600c5481565b3480156105eb57600080fd5b506102c36105fa366004611d5e565b610fc6565b34801561060b57600080fd5b5061023461061a366004611c1f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065457600080fd5b506102c3610663366004611e15565b610fe8565b34801561067457600080fd5b506102c3610683366004611c04565b6110ac565b60006001600160e01b031982166380ac58cd60e01b14806106b957506001600160e01b03198216635b5e139f60e01b145b806106d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e99061211a565b80601f01602080910402602001604051908101604052809291908181526020018280546107159061211a565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b600061077782611122565b506000908152600460205260409020546001600160a01b031690565b600061079e82610b64565b9050806001600160a01b0316836001600160a01b031614156108115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061082d575061082d813361061a565b61089f5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610808565b6108a98383611181565b505050565b6108b66111ef565b80516108c9906009906020840190611ac9565b5050565b6108d56111ef565b600e805460ff1916911515919091179055565b60006108f360075490565b905090565b6109023382611249565b61091e5760405162461bcd60e51b815260040161080890611fbc565b6108a98383836112c8565b6109316111ef565b60006109456006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461098f576040519150601f19603f3d011682016040523d82523d6000602084013e610994565b606091505b50509050806109a257600080fd5b50565b6108a983838360405180602001604052806000815250610e0f565b606060006109cd83610bc4565b905060008167ffffffffffffffff8111156109ea576109ea61219c565b604051908082528060200260200182016040528015610a13578160200160208202803683370190505b509050600160005b8381108015610a2c5750600c548211155b15610a97576000610a3c83610b64565b9050866001600160a01b0316816001600160a01b03161415610a845782848381518110610a6b57610a6b612186565b602090810291909101015281610a8081612155565b9250505b82610a8e81612155565b93505050610a1b565b5090949350505050565b610aa96111ef565b600b55565b610ab66111ef565b80516108c990600a906020840190611ac9565b60098054610ad69061211a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b029061211a565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b505050505081565b60088054610ad69061211a565b6000818152600260205260408120546001600160a01b0316806106d45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610808565b60006001600160a01b038216610c2e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610808565b506001600160a01b031660009081526003602052604090205490565b610c526111ef565b610c5c6000611439565b565b610c666111ef565b80516108c9906008906020840190611ac9565b6060600180546106e99061211a565b80600081118015610c9b5750600d548111155b610cde5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610808565b600c5481610ceb60075490565b610cf591906120a0565b1115610d3a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610808565b600e5460ff1615610d8d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610808565b81600b54610d9b91906120b8565b341015610de05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610808565b6108c9338361148b565b6108c93383836114c8565b600a8054610ad69061211a565b610e0a6111ef565b600d55565b610e193383611249565b610e355760405162461bcd60e51b815260040161080890611fbc565b610e4184848484611597565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ec65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610808565b600e54610100900460ff16610f6757600a8054610ee29061211a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e9061211a565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b50505050509050919050565b6000610f716115ca565b90506000815111610f915760405180602001604052806000815250610fbf565b80610f9b846115d9565b6009604051602001610faf93929190611e64565b6040516020818303038152906040525b9392505050565b610fce6111ef565b600e80549115156101000261ff0019909216919091179055565b81600081118015610ffb5750600d548111155b61103e5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610808565b600c548161104b60075490565b61105591906120a0565b111561109a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610808565b6110a26111ef565b6108a9828461148b565b6110b46111ef565b6001600160a01b0381166111195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610808565b6109a281611439565b6000818152600260205260409020546001600160a01b03166109a25760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610808565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111b682610b64565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b03163314610c5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610808565b60008061125583610b64565b9050806001600160a01b0316846001600160a01b0316148061129c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112c05750836001600160a01b03166112b58461076c565b6001600160a01b0316145b949350505050565b826001600160a01b03166112db82610b64565b6001600160a01b0316146113015760405162461bcd60e51b81526004016108089061205b565b6001600160a01b0382166113635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610808565b6113708383836001611676565b826001600160a01b031661138382610b64565b6001600160a01b0316146113a95760405162461bcd60e51b81526004016108089061205b565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108a9576114a4600780546001019055565b6114b6836114b160075490565b6116fe565b806114c081612155565b91505061148e565b816001600160a01b0316836001600160a01b0316141561152a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610808565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115a28484846112c8565b6115ae84848484611718565b610e415760405162461bcd60e51b815260040161080890612009565b6060600880546106e99061211a565b606060006115e683611825565b600101905060008167ffffffffffffffff8111156116065761160661219c565b6040519080825280601f01601f191660200182016040528015611630576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846116695761166e565b61163a565b509392505050565b6001811115610e41576001600160a01b038416156116bc576001600160a01b038416600090815260036020526040812080548392906116b69084906120d7565b90915550505b6001600160a01b03831615610e41576001600160a01b038316600090815260036020526040812080548392906116f39084906120a0565b909155505050505050565b6108c98282604051806020016040528060008152506118fd565b60006001600160a01b0384163b1561181a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061175c903390899088908890600401611f28565b602060405180830381600087803b15801561177657600080fd5b505af19250505080156117a6575060408051601f3d908101601f191682019092526117a391810190611d96565b60015b611800573d8080156117d4576040519150601f19603f3d011682016040523d82523d6000602084013e6117d9565b606091505b5080516117f85760405162461bcd60e51b815260040161080890612009565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c0565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118645772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611890576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118ae57662386f26fc10000830492506010015b6305f5e10083106118c6576305f5e100830492506008015b61271083106118da57612710830492506004015b606483106118ec576064830492506002015b600a83106106d45760010192915050565b6119078383611930565b6119146000848484611718565b6108a95760405162461bcd60e51b815260040161080890612009565b6001600160a01b0382166119865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610808565b6000818152600260205260409020546001600160a01b0316156119eb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610808565b6119f9600083836001611676565b6000818152600260205260409020546001600160a01b031615611a5e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610808565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ad59061211a565b90600052602060002090601f016020900481019282611af75760008555611b3d565b82601f10611b1057805160ff1916838001178555611b3d565b82800160010185558215611b3d579182015b82811115611b3d578251825591602001919060010190611b22565b50611b49929150611b4d565b5090565b5b80821115611b495760008155600101611b4e565b600067ffffffffffffffff80841115611b7d57611b7d61219c565b604051601f8501601f19908116603f01168101908282118183101715611ba557611ba561219c565b81604052809350858152868686011115611bbe57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bef57600080fd5b919050565b80358015158114611bef57600080fd5b600060208284031215611c1657600080fd5b610fbf82611bd8565b60008060408385031215611c3257600080fd5b611c3b83611bd8565b9150611c4960208401611bd8565b90509250929050565b600080600060608486031215611c6757600080fd5b611c7084611bd8565b9250611c7e60208501611bd8565b9150604084013590509250925092565b60008060008060808587031215611ca457600080fd5b611cad85611bd8565b9350611cbb60208601611bd8565b925060408501359150606085013567ffffffffffffffff811115611cde57600080fd5b8501601f81018713611cef57600080fd5b611cfe87823560208401611b62565b91505092959194509250565b60008060408385031215611d1d57600080fd5b611d2683611bd8565b9150611c4960208401611bf4565b60008060408385031215611d4757600080fd5b611d5083611bd8565b946020939093013593505050565b600060208284031215611d7057600080fd5b610fbf82611bf4565b600060208284031215611d8b57600080fd5b8135610fbf816121b2565b600060208284031215611da857600080fd5b8151610fbf816121b2565b600060208284031215611dc557600080fd5b813567ffffffffffffffff811115611ddc57600080fd5b8201601f81018413611ded57600080fd5b6112c084823560208401611b62565b600060208284031215611e0e57600080fd5b5035919050565b60008060408385031215611e2857600080fd5b82359150611c4960208401611bd8565b60008151808452611e508160208601602086016120ee565b601f01601f19169290920160200192915050565b600084516020611e778285838a016120ee565b855191840191611e8a8184848a016120ee565b8554920191600090600181811c9080831680611ea757607f831692505b858310811415611ec557634e487b7160e01b85526022600452602485fd5b808015611ed95760018114611eea57611f17565b60ff19851688528388019550611f17565b60008b81526020902060005b85811015611f0f5781548a820152908401908801611ef6565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5b90830184611e38565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f9d57835183529284019291840191600101611f81565b50909695505050505050565b602081526000610fbf6020830184611e38565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b600082198211156120b3576120b3612170565b500190565b60008160001904831182151516156120d2576120d2612170565b500290565b6000828210156120e9576120e9612170565b500390565b60005b838110156121095781810151838201526020016120f1565b83811115610e415750506000910152565b600181811c9082168061212e57607f821691505b6020821081141561214f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561216957612169612170565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109a257600080fdfea2646970667358221220b79e0c60fff32c06340f88f317fd88c2549c80c6d0c858022ac214a5f3e7c3cb64736f6c63430008070033697066733a2f2f516d543575564c62546f696f547832726a4461696d51764361446272634a576232485364345534323735716572472f48696464656e2e6a736f6e
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146105c9578063e0a80853146105df578063e985e9c5146105ff578063efbd73f414610648578063f2fde38b1461066857600080fd5b8063a45ba8e714610554578063b071401b14610569578063b88d4fde14610589578063c87b56dd146105a957600080fd5b80638da5cb5b116100e75780638da5cb5b146104d857806394354fd0146104f657806395d89b411461050c578063a0712d6814610521578063a22cb4651461053457600080fd5b80636352211e1461046357806370a0823114610483578063715018a6146104a35780637ec4a659146104b857600080fd5b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb146103e057806351830227146104005780635503a0e81461041f5780635c975abb1461043457806362b99ad41461044e57600080fd5b80633ccfd60b1461035e57806342842e0e14610373578063438b63001461039357806344a0d68a146103c057600080fd5b806313faede6116101e257806313faede6146102c557806316ba10e0146102e957806316c38b3c1461030957806318160ddd1461032957806323b872dd1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611d79565b610688565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106da565b6040516102409190611fa9565b34801561027757600080fd5b5061028b610286366004611dfc565b61076c565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611d34565b610793565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004611db3565b6108ae565b34801561031557600080fd5b506102c3610324366004611d5e565b6108cd565b34801561033557600080fd5b506102db6108e8565b34801561034a57600080fd5b506102c3610359366004611c52565b6108f8565b34801561036a57600080fd5b506102c3610929565b34801561037f57600080fd5b506102c361038e366004611c52565b6109a5565b34801561039f57600080fd5b506103b36103ae366004611c04565b6109c0565b6040516102409190611f65565b3480156103cc57600080fd5b506102c36103db366004611dfc565b610aa1565b3480156103ec57600080fd5b506102c36103fb366004611db3565b610aae565b34801561040c57600080fd5b50600e5461023490610100900460ff1681565b34801561042b57600080fd5b5061025e610ac9565b34801561044057600080fd5b50600e546102349060ff1681565b34801561045a57600080fd5b5061025e610b57565b34801561046f57600080fd5b5061028b61047e366004611dfc565b610b64565b34801561048f57600080fd5b506102db61049e366004611c04565b610bc4565b3480156104af57600080fd5b506102c3610c4a565b3480156104c457600080fd5b506102c36104d3366004611db3565b610c5e565b3480156104e457600080fd5b506006546001600160a01b031661028b565b34801561050257600080fd5b506102db600d5481565b34801561051857600080fd5b5061025e610c79565b6102c361052f366004611dfc565b610c88565b34801561054057600080fd5b506102c361054f366004611d0a565b610dea565b34801561056057600080fd5b5061025e610df5565b34801561057557600080fd5b506102c3610584366004611dfc565b610e02565b34801561059557600080fd5b506102c36105a4366004611c8e565b610e0f565b3480156105b557600080fd5b5061025e6105c4366004611dfc565b610e47565b3480156105d557600080fd5b506102db600c5481565b3480156105eb57600080fd5b506102c36105fa366004611d5e565b610fc6565b34801561060b57600080fd5b5061023461061a366004611c1f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065457600080fd5b506102c3610663366004611e15565b610fe8565b34801561067457600080fd5b506102c3610683366004611c04565b6110ac565b60006001600160e01b031982166380ac58cd60e01b14806106b957506001600160e01b03198216635b5e139f60e01b145b806106d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e99061211a565b80601f01602080910402602001604051908101604052809291908181526020018280546107159061211a565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b600061077782611122565b506000908152600460205260409020546001600160a01b031690565b600061079e82610b64565b9050806001600160a01b0316836001600160a01b031614156108115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061082d575061082d813361061a565b61089f5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610808565b6108a98383611181565b505050565b6108b66111ef565b80516108c9906009906020840190611ac9565b5050565b6108d56111ef565b600e805460ff1916911515919091179055565b60006108f360075490565b905090565b6109023382611249565b61091e5760405162461bcd60e51b815260040161080890611fbc565b6108a98383836112c8565b6109316111ef565b60006109456006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461098f576040519150601f19603f3d011682016040523d82523d6000602084013e610994565b606091505b50509050806109a257600080fd5b50565b6108a983838360405180602001604052806000815250610e0f565b606060006109cd83610bc4565b905060008167ffffffffffffffff8111156109ea576109ea61219c565b604051908082528060200260200182016040528015610a13578160200160208202803683370190505b509050600160005b8381108015610a2c5750600c548211155b15610a97576000610a3c83610b64565b9050866001600160a01b0316816001600160a01b03161415610a845782848381518110610a6b57610a6b612186565b602090810291909101015281610a8081612155565b9250505b82610a8e81612155565b93505050610a1b565b5090949350505050565b610aa96111ef565b600b55565b610ab66111ef565b80516108c990600a906020840190611ac9565b60098054610ad69061211a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b029061211a565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b505050505081565b60088054610ad69061211a565b6000818152600260205260408120546001600160a01b0316806106d45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610808565b60006001600160a01b038216610c2e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610808565b506001600160a01b031660009081526003602052604090205490565b610c526111ef565b610c5c6000611439565b565b610c666111ef565b80516108c9906008906020840190611ac9565b6060600180546106e99061211a565b80600081118015610c9b5750600d548111155b610cde5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610808565b600c5481610ceb60075490565b610cf591906120a0565b1115610d3a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610808565b600e5460ff1615610d8d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610808565b81600b54610d9b91906120b8565b341015610de05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610808565b6108c9338361148b565b6108c93383836114c8565b600a8054610ad69061211a565b610e0a6111ef565b600d55565b610e193383611249565b610e355760405162461bcd60e51b815260040161080890611fbc565b610e4184848484611597565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ec65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610808565b600e54610100900460ff16610f6757600a8054610ee29061211a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e9061211a565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b50505050509050919050565b6000610f716115ca565b90506000815111610f915760405180602001604052806000815250610fbf565b80610f9b846115d9565b6009604051602001610faf93929190611e64565b6040516020818303038152906040525b9392505050565b610fce6111ef565b600e80549115156101000261ff0019909216919091179055565b81600081118015610ffb5750600d548111155b61103e5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610808565b600c548161104b60075490565b61105591906120a0565b111561109a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610808565b6110a26111ef565b6108a9828461148b565b6110b46111ef565b6001600160a01b0381166111195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610808565b6109a281611439565b6000818152600260205260409020546001600160a01b03166109a25760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610808565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111b682610b64565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b03163314610c5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610808565b60008061125583610b64565b9050806001600160a01b0316846001600160a01b0316148061129c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112c05750836001600160a01b03166112b58461076c565b6001600160a01b0316145b949350505050565b826001600160a01b03166112db82610b64565b6001600160a01b0316146113015760405162461bcd60e51b81526004016108089061205b565b6001600160a01b0382166113635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610808565b6113708383836001611676565b826001600160a01b031661138382610b64565b6001600160a01b0316146113a95760405162461bcd60e51b81526004016108089061205b565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108a9576114a4600780546001019055565b6114b6836114b160075490565b6116fe565b806114c081612155565b91505061148e565b816001600160a01b0316836001600160a01b0316141561152a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610808565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115a28484846112c8565b6115ae84848484611718565b610e415760405162461bcd60e51b815260040161080890612009565b6060600880546106e99061211a565b606060006115e683611825565b600101905060008167ffffffffffffffff8111156116065761160661219c565b6040519080825280601f01601f191660200182016040528015611630576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846116695761166e565b61163a565b509392505050565b6001811115610e41576001600160a01b038416156116bc576001600160a01b038416600090815260036020526040812080548392906116b69084906120d7565b90915550505b6001600160a01b03831615610e41576001600160a01b038316600090815260036020526040812080548392906116f39084906120a0565b909155505050505050565b6108c98282604051806020016040528060008152506118fd565b60006001600160a01b0384163b1561181a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061175c903390899088908890600401611f28565b602060405180830381600087803b15801561177657600080fd5b505af19250505080156117a6575060408051601f3d908101601f191682019092526117a391810190611d96565b60015b611800573d8080156117d4576040519150601f19603f3d011682016040523d82523d6000602084013e6117d9565b606091505b5080516117f85760405162461bcd60e51b815260040161080890612009565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c0565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118645772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611890576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118ae57662386f26fc10000830492506010015b6305f5e10083106118c6576305f5e100830492506008015b61271083106118da57612710830492506004015b606483106118ec576064830492506002015b600a83106106d45760010192915050565b6119078383611930565b6119146000848484611718565b6108a95760405162461bcd60e51b815260040161080890612009565b6001600160a01b0382166119865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610808565b6000818152600260205260409020546001600160a01b0316156119eb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610808565b6119f9600083836001611676565b6000818152600260205260409020546001600160a01b031615611a5e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610808565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ad59061211a565b90600052602060002090601f016020900481019282611af75760008555611b3d565b82601f10611b1057805160ff1916838001178555611b3d565b82800160010185558215611b3d579182015b82811115611b3d578251825591602001919060010190611b22565b50611b49929150611b4d565b5090565b5b80821115611b495760008155600101611b4e565b600067ffffffffffffffff80841115611b7d57611b7d61219c565b604051601f8501601f19908116603f01168101908282118183101715611ba557611ba561219c565b81604052809350858152868686011115611bbe57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bef57600080fd5b919050565b80358015158114611bef57600080fd5b600060208284031215611c1657600080fd5b610fbf82611bd8565b60008060408385031215611c3257600080fd5b611c3b83611bd8565b9150611c4960208401611bd8565b90509250929050565b600080600060608486031215611c6757600080fd5b611c7084611bd8565b9250611c7e60208501611bd8565b9150604084013590509250925092565b60008060008060808587031215611ca457600080fd5b611cad85611bd8565b9350611cbb60208601611bd8565b925060408501359150606085013567ffffffffffffffff811115611cde57600080fd5b8501601f81018713611cef57600080fd5b611cfe87823560208401611b62565b91505092959194509250565b60008060408385031215611d1d57600080fd5b611d2683611bd8565b9150611c4960208401611bf4565b60008060408385031215611d4757600080fd5b611d5083611bd8565b946020939093013593505050565b600060208284031215611d7057600080fd5b610fbf82611bf4565b600060208284031215611d8b57600080fd5b8135610fbf816121b2565b600060208284031215611da857600080fd5b8151610fbf816121b2565b600060208284031215611dc557600080fd5b813567ffffffffffffffff811115611ddc57600080fd5b8201601f81018413611ded57600080fd5b6112c084823560208401611b62565b600060208284031215611e0e57600080fd5b5035919050565b60008060408385031215611e2857600080fd5b82359150611c4960208401611bd8565b60008151808452611e508160208601602086016120ee565b601f01601f19169290920160200192915050565b600084516020611e778285838a016120ee565b855191840191611e8a8184848a016120ee565b8554920191600090600181811c9080831680611ea757607f831692505b858310811415611ec557634e487b7160e01b85526022600452602485fd5b808015611ed95760018114611eea57611f17565b60ff19851688528388019550611f17565b60008b81526020902060005b85811015611f0f5781548a820152908401908801611ef6565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5b90830184611e38565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f9d57835183529284019291840191600101611f81565b50909695505050505050565b602081526000610fbf6020830184611e38565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b600082198211156120b3576120b3612170565b500190565b60008160001904831182151516156120d2576120d2612170565b500290565b6000828210156120e9576120e9612170565b500390565b60005b838110156121095781810151838201526020016120f1565b83811115610e415750506000910152565b600181811c9082168061212e57607f821691505b6020821081141561214f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561216957612169612170565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109a257600080fdfea2646970667358221220b79e0c60fff32c06340f88f317fd88c2549c80c6d0c858022ac214a5f3e7c3cb64736f6c63430008070033
Deployed Bytecode Sourcemap
55942:4026:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40009:305;;;;;;;;;;-1:-1:-1;40009:305:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;40009:305:0;;;;;;;;40937:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42449:171::-;;;;;;;;;;-1:-1:-1;42449:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;42449:171:0;6563:203:1;41967:416:0;;;;;;;;;;-1:-1:-1;41967:416:0;;;;;:::i;:::-;;:::i;:::-;;56213:31;;;;;;;;;;;;;;;;;;;15356:25:1;;;15344:2;15329:18;56213:31:0;15210:177:1;58992:100:0;;;;;;;;;;-1:-1:-1;58992:100:0;;;;;:::i;:::-;;:::i;59098:77::-;;;;;;;;;;-1:-1:-1;59098:77:0;;;;;:::i;:::-;;:::i;56794:89::-;;;;;;;;;;;;;:::i;43149:335::-;;;;;;;;;;-1:-1:-1;43149:335:0;;;;;:::i;:::-;;:::i;59181:464::-;;;;;;;;;;;;;:::i;43555:185::-;;;;;;;;;;-1:-1:-1;43555:185:0;;;;;:::i;:::-;;:::i;57304:635::-;;;;;;;;;;-1:-1:-1;57304:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58532:74::-;;;;;;;;;;-1:-1:-1;58532:74:0;;;;;:::i;:::-;;:::i;58748:132::-;;;;;;;;;;-1:-1:-1;58748:132:0;;;;;:::i;:::-;;:::i;56360:28::-;;;;;;;;;;-1:-1:-1;56360:28:0;;;;;;;;;;;56136:33;;;;;;;;;;;;;:::i;56329:26::-;;;;;;;;;;-1:-1:-1;56329:26:0;;;;;;;;56103:28;;;;;;;;;;;;;:::i;40647:223::-;;;;;;;;;;-1:-1:-1;40647:223:0;;;;;:::i;:::-;;:::i;40378:207::-;;;;;;;;;;-1:-1:-1;40378:207:0;;;;;:::i;:::-;;:::i;19440:103::-;;;;;;;;;;;;;:::i;58886:100::-;;;;;;;;;;-1:-1:-1;58886:100:0;;;;;:::i;:::-;;:::i;18792:87::-;;;;;;;;;;-1:-1:-1;18865:6:0;;-1:-1:-1;;;;;18865:6:0;18792:87;;56285:37;;;;;;;;;;;;;;;;41106:104;;;;;;;;;;;;;:::i;56889:247::-;;;;;;:::i;:::-;;:::i;42692:155::-;;;;;;;;;;-1:-1:-1;42692:155:0;;;;;:::i;:::-;;:::i;56174:31::-;;;;;;;;;;;;;:::i;58612:130::-;;;;;;;;;;-1:-1:-1;58612:130:0;;;;;:::i;:::-;;:::i;43811:322::-;;;;;;;;;;-1:-1:-1;43811:322:0;;;;;:::i;:::-;;:::i;57945:494::-;;;;;;;;;;-1:-1:-1;57945:494:0;;;;;:::i;:::-;;:::i;56249:31::-;;;;;;;;;;;;;;;;58445:81;;;;;;;;;;-1:-1:-1;58445:81:0;;;;;:::i;:::-;;:::i;42918:164::-;;;;;;;;;;-1:-1:-1;42918:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43039:25:0;;;43015:4;43039:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42918:164;57143:155;;;;;;;;;;-1:-1:-1;57143:155:0;;;;;:::i;:::-;;:::i;19698:201::-;;;;;;;;;;-1:-1:-1;19698:201:0;;;;;:::i;:::-;;:::i;40009:305::-;40111:4;-1:-1:-1;;;;;;40148:40:0;;-1:-1:-1;;;40148:40:0;;:105;;-1:-1:-1;;;;;;;40205:48:0;;-1:-1:-1;;;40205:48:0;40148:105;:158;;;-1:-1:-1;;;;;;;;;;32630:40:0;;;40270:36;40128:178;40009:305;-1:-1:-1;;40009:305:0:o;40937:100::-;40991:13;41024:5;41017:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40937:100;:::o;42449:171::-;42525:7;42545:23;42560:7;42545:14;:23::i;:::-;-1:-1:-1;42588:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42588:24:0;;42449:171::o;41967:416::-;42048:13;42064:23;42079:7;42064:14;:23::i;:::-;42048:39;;42112:5;-1:-1:-1;;;;;42106:11:0;:2;-1:-1:-1;;;;;42106:11:0;;;42098:57;;;;-1:-1:-1;;;42098:57:0;;13883:2:1;42098:57:0;;;13865:21:1;13922:2;13902:18;;;13895:30;13961:34;13941:18;;;13934:62;-1:-1:-1;;;14012:18:1;;;14005:31;14053:19;;42098:57:0;;;;;;;;;17423:10;-1:-1:-1;;;;;42190:21:0;;;;:62;;-1:-1:-1;42215:37:0;42232:5;17423:10;42918:164;:::i;42215:37::-;42168:173;;;;-1:-1:-1;;;42168:173:0;;14634:2:1;42168:173:0;;;14616:21:1;14673:2;14653:18;;;14646:30;14712:34;14692:18;;;14685:62;14783:31;14763:18;;;14756:59;14832:19;;42168:173:0;14432:425:1;42168:173:0;42354:21;42363:2;42367:7;42354:8;:21::i;:::-;42037:346;41967:416;;:::o;58992:100::-;18678:13;:11;:13::i;:::-;59064:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58992:100:::0;:::o;59098:77::-;18678:13;:11;:13::i;:::-;59154:6:::1;:15:::0;;-1:-1:-1;;59154:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59098:77::o;56794:89::-;56838:7;56861:16;:6;964:14;;872:114;56861:16;56854:23;;56794:89;:::o;43149:335::-;43344:41;17423:10;43377:7;43344:18;:41::i;:::-;43336:99;;;;-1:-1:-1;;;43336:99:0;;;;;;;:::i;:::-;43448:28;43458:4;43464:2;43468:7;43448:9;:28::i;59181:464::-;18678:13;:11;:13::i;:::-;59467:7:::1;59488;18865:6:::0;;-1:-1:-1;;;;;18865:6:0;;18792:87;59488:7:::1;-1:-1:-1::0;;;;;59480:21:0::1;59509;59480:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59466:69;;;59550:2;59542:11;;;::::0;::::1;;59218:427;59181:464::o:0;43555:185::-;43693:39;43710:4;43716:2;43720:7;43693:39;;;;;;;;;;;;:16;:39::i;57304:635::-;57379:16;57407:23;57433:17;57443:6;57433:9;:17::i;:::-;57407:43;;57457:30;57504:15;57490:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57490:30:0;-1:-1:-1;57457:63:0;-1:-1:-1;57552:1:0;57527:22;57596:309;57621:15;57603;:33;:64;;;;;57658:9;;57640:14;:27;;57603:64;57596:309;;;57678:25;57706:23;57714:14;57706:7;:23::i;:::-;57678:51;;57765:6;-1:-1:-1;;;;;57744:27:0;:17;-1:-1:-1;;;;;57744:27:0;;57740:131;;;57817:14;57784:13;57798:15;57784:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;57844:17;;;;:::i;:::-;;;;57740:131;57881:16;;;;:::i;:::-;;;;57669:236;57596:309;;;-1:-1:-1;57920:13:0;;57304:635;-1:-1:-1;;;;57304:635:0:o;58532:74::-;18678:13;:11;:13::i;:::-;58588:4:::1;:12:::0;58532:74::o;58748:132::-;18678:13;:11;:13::i;:::-;58836:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;56136:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56103:28::-;;;;;;;:::i;40647:223::-;40719:7;45534:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45534:16:0;;40783:56;;;;-1:-1:-1;;;40783:56:0;;13530:2:1;40783:56:0;;;13512:21:1;13569:2;13549:18;;;13542:30;-1:-1:-1;;;13588:18:1;;;13581:54;13652:18;;40783:56:0;13328:348:1;40378:207:0;40450:7;-1:-1:-1;;;;;40478:19:0;;40470:73;;;;-1:-1:-1;;;40470:73:0;;11630:2:1;40470:73:0;;;11612:21:1;11669:2;11649:18;;;11642:30;11708:34;11688:18;;;11681:62;-1:-1:-1;;;11759:18:1;;;11752:39;11808:19;;40470:73:0;11428:405:1;40470:73:0;-1:-1:-1;;;;;;40561:16:0;;;;;:9;:16;;;;;;;40378:207::o;19440:103::-;18678:13;:11;:13::i;:::-;19505:30:::1;19532:1;19505:18;:30::i;:::-;19440:103::o:0;58886:100::-;18678:13;:11;:13::i;:::-;58958:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;41106:104::-:0;41162:13;41195:7;41188:14;;;;;:::i;56889:247::-;56954:11;56628:1;56614:11;:15;:52;;;;;56648:18;;56633:11;:33;;56614:52;56606:85;;;;-1:-1:-1;;;56606:85:0;;10522:2:1;56606:85:0;;;10504:21:1;10561:2;10541:18;;;10534:30;-1:-1:-1;;;10580:18:1;;;10573:50;10640:18;;56606:85:0;10320:344:1;56606:85:0;56740:9;;56725:11;56706:16;:6;964:14;;872:114;56706:16;:30;;;;:::i;:::-;:43;;56698:76;;;;-1:-1:-1;;;56698:76:0;;14285:2:1;56698:76:0;;;14267:21:1;14324:2;14304:18;;;14297:30;-1:-1:-1;;;14343:18:1;;;14336:50;14403:18;;56698:76:0;14083:344:1;56698:76:0;56983:6:::1;::::0;::::1;;56982:7;56974:43;;;::::0;-1:-1:-1;;;56974:43:0;;12762:2:1;56974:43:0::1;::::0;::::1;12744:21:1::0;12801:2;12781:18;;;12774:30;12840:25;12820:18;;;12813:53;12883:18;;56974:43:0::1;12560:347:1::0;56974:43:0::1;57052:11;57045:4;;:18;;;;:::i;:::-;57032:9;:31;;57024:63;;;::::0;-1:-1:-1;;;57024:63:0;;15064:2:1;57024:63:0::1;::::0;::::1;15046:21:1::0;15103:2;15083:18;;;15076:30;-1:-1:-1;;;15122:18:1;;;15115:49;15181:18;;57024:63:0::1;14862:343:1::0;57024:63:0::1;57096:34;57106:10;57118:11;57096:9;:34::i;42692:155::-:0;42787:52;17423:10;42820:8;42830;42787:18;:52::i;56174:31::-;;;;;;;:::i;58612:130::-;18678:13;:11;:13::i;:::-;58696:18:::1;:40:::0;58612:130::o;43811:322::-;43985:41;17423:10;44018:7;43985:18;:41::i;:::-;43977:99;;;;-1:-1:-1;;;43977:99:0;;;;;;;:::i;:::-;44087:38;44101:4;44107:2;44111:7;44120:4;44087:13;:38::i;:::-;43811:322;;;;:::o;57945:494::-;45936:4;45534:16;;;:7;:16;;;;;;58044:13;;-1:-1:-1;;;;;45534:16:0;58069:98;;;;-1:-1:-1;;;58069:98:0;;13114:2:1;58069:98:0;;;13096:21:1;13153:2;13133:18;;;13126:30;13192:34;13172:18;;;13165:62;-1:-1:-1;;;13243:18:1;;;13236:45;13298:19;;58069:98:0;12912:411:1;58069:98:0;58180:8;;;;;;;58176:64;;58215:17;58208:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57945:494;;;:::o;58176:64::-;58248:28;58279:10;:8;:10::i;:::-;58248:41;;58334:1;58309:14;58303:28;:32;:130;;;;;;;;;;;;;;;;;58371:14;58387:19;:8;:17;:19::i;:::-;58408:9;58354:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58303:130;58296:137;57945:494;-1:-1:-1;;;57945:494:0:o;58445:81::-;18678:13;:11;:13::i;:::-;58503:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;58503:17:0;;::::1;::::0;;;::::1;::::0;;58445:81::o;57143:155::-;57229:11;56628:1;56614:11;:15;:52;;;;;56648:18;;56633:11;:33;;56614:52;56606:85;;;;-1:-1:-1;;;56606:85:0;;10522:2:1;56606:85:0;;;10504:21:1;10561:2;10541:18;;;10534:30;-1:-1:-1;;;10580:18:1;;;10573:50;10640:18;;56606:85:0;10320:344:1;56606:85:0;56740:9;;56725:11;56706:16;:6;964:14;;872:114;56706:16;:30;;;;:::i;:::-;:43;;56698:76;;;;-1:-1:-1;;;56698:76:0;;14285:2:1;56698:76:0;;;14267:21:1;14324:2;14304:18;;;14297:30;-1:-1:-1;;;14343:18:1;;;14336:50;14403:18;;56698:76:0;14083:344:1;56698:76:0;18678:13:::1;:11;:13::i;:::-;57259:33:::2;57269:9;57280:11;57259:9;:33::i;19698:201::-:0;18678:13;:11;:13::i;:::-;-1:-1:-1;;;;;19787:22:0;::::1;19779:73;;;::::0;-1:-1:-1;;;19779:73:0;;9352:2:1;19779:73:0::1;::::0;::::1;9334:21:1::0;9391:2;9371:18;;;9364:30;9430:34;9410:18;;;9403:62;-1:-1:-1;;;9481:18:1;;;9474:36;9527:19;;19779:73:0::1;9150:402:1::0;19779:73:0::1;19863:28;19882:8;19863:18;:28::i;52268:135::-:0;45936:4;45534:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45534:16:0;52342:53;;;;-1:-1:-1;;;52342:53:0;;13530:2:1;52342:53:0;;;13512:21:1;13569:2;13549:18;;;13542:30;-1:-1:-1;;;13588:18:1;;;13581:54;13652:18;;52342:53:0;13328:348:1;51547:174:0;51622:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;51622:29:0;-1:-1:-1;;;;;51622:29:0;;;;;;;;:24;;51676:23;51622:24;51676:14;:23::i;:::-;-1:-1:-1;;;;;51667:46:0;;;;;;;;;;;51547:174;;:::o;18957:132::-;18865:6;;-1:-1:-1;;;;;18865:6:0;17423:10;19021:23;19013:68;;;;-1:-1:-1;;;19013:68:0;;12401:2:1;19013:68:0;;;12383:21:1;;;12420:18;;;12413:30;12479:34;12459:18;;;12452:62;12531:18;;19013:68:0;12199:356:1;46166:264:0;46259:4;46276:13;46292:23;46307:7;46292:14;:23::i;:::-;46276:39;;46345:5;-1:-1:-1;;;;;46334:16:0;:7;-1:-1:-1;;;;;46334:16:0;;:52;;;-1:-1:-1;;;;;;43039:25:0;;;43015:4;43039:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46354:32;46334:87;;;;46414:7;-1:-1:-1;;;;;46390:31:0;:20;46402:7;46390:11;:20::i;:::-;-1:-1:-1;;;;;46390:31:0;;46334:87;46326:96;46166:264;-1:-1:-1;;;;46166:264:0:o;50165:1263::-;50324:4;-1:-1:-1;;;;;50297:31:0;:23;50312:7;50297:14;:23::i;:::-;-1:-1:-1;;;;;50297:31:0;;50289:81;;;;-1:-1:-1;;;50289:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50389:16:0;;50381:65;;;;-1:-1:-1;;;50381:65:0;;10871:2:1;50381:65:0;;;10853:21:1;10910:2;10890:18;;;10883:30;10949:34;10929:18;;;10922:62;-1:-1:-1;;;11000:18:1;;;10993:34;11044:19;;50381:65:0;10669:400:1;50381:65:0;50459:42;50480:4;50486:2;50490:7;50499:1;50459:20;:42::i;:::-;50631:4;-1:-1:-1;;;;;50604:31:0;:23;50619:7;50604:14;:23::i;:::-;-1:-1:-1;;;;;50604:31:0;;50596:81;;;;-1:-1:-1;;;50596:81:0;;;;;;;:::i;:::-;50749:24;;;;:15;:24;;;;;;;;50742:31;;-1:-1:-1;;;;;;50742:31:0;;;;;;-1:-1:-1;;;;;51225:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;51225:20:0;;;51260:13;;;;;;;;;:18;;50742:31;51260:18;;;51300:16;;;:7;:16;;;;;;:21;;;;;;;;;;51339:27;;50765:7;;51339:27;;;42037:346;41967:416;;:::o;20059:191::-;20152:6;;;-1:-1:-1;;;;;20169:17:0;;;-1:-1:-1;;;;;;20169:17:0;;;;;;;20202:40;;20152:6;;;20169:17;20152:6;;20202:40;;20133:16;;20202:40;20122:128;20059:191;:::o;59651:204::-;59731:9;59726:124;59750:11;59746:1;:15;59726:124;;;59777:18;:6;1083:19;;1101:1;1083:19;;;994:127;59777:18;59804:38;59814:9;59825:16;:6;964:14;;872:114;59825:16;59804:9;:38::i;:::-;59763:3;;;;:::i;:::-;;;;59726:124;;51864:315;52019:8;-1:-1:-1;;;;;52010:17:0;:5;-1:-1:-1;;;;;52010:17:0;;;52002:55;;;;-1:-1:-1;;;52002:55:0;;11276:2:1;52002:55:0;;;11258:21:1;11315:2;11295:18;;;11288:30;11354:27;11334:18;;;11327:55;11399:18;;52002:55:0;11074:349:1;52002:55:0;-1:-1:-1;;;;;52068:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;52068:46:0;;;;;;;;;;52130:41;;8041::1;;;52130::0;;8014:18:1;52130:41:0;;;;;;;51864:315;;;:::o;45014:313::-;45170:28;45180:4;45186:2;45190:7;45170:9;:28::i;:::-;45217:47;45240:4;45246:2;45250:7;45259:4;45217:22;:47::i;:::-;45209:110;;;;-1:-1:-1;;;45209:110:0;;;;;;;:::i;59861:104::-;59921:13;59950:9;59943:16;;;;;:::i;14770:716::-;14826:13;14877:14;14894:17;14905:5;14894:10;:17::i;:::-;14914:1;14894:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14953:18:0;-1:-1:-1;14930:41:0;-1:-1:-1;15095:28:0;;;15111:2;15095:28;15152:288;-1:-1:-1;;15184:5:0;-1:-1:-1;;;15321:2:0;15310:14;;15305:30;15184:5;15292:44;15382:2;15373:11;;;-1:-1:-1;15407:10:0;15403:21;;15419:5;;15403:21;15152:288;;;-1:-1:-1;15461:6:0;14770:716;-1:-1:-1;;;14770:716:0:o;54552:410::-;54742:1;54730:9;:13;54726:229;;;-1:-1:-1;;;;;54764:18:0;;;54760:87;;-1:-1:-1;;;;;54803:15:0;;;;;;:9;:15;;;;;:28;;54822:9;;54803:15;:28;;54822:9;;54803:28;:::i;:::-;;;;-1:-1:-1;;54760:87:0;-1:-1:-1;;;;;54865:16:0;;;54861:83;;-1:-1:-1;;;;;54902:13:0;;;;;;:9;:13;;;;;:26;;54919:9;;54902:13;:26;;54919:9;;54902:26;:::i;:::-;;;;-1:-1:-1;;54552:410:0;;;;:::o;46772:110::-;46848:26;46858:2;46862:7;46848:26;;;;;;;;;;;;:9;:26::i;52967:853::-;53121:4;-1:-1:-1;;;;;53142:13:0;;21785:19;:23;53138:675;;53178:71;;-1:-1:-1;;;53178:71:0;;-1:-1:-1;;;;;53178:36:0;;;;;:71;;17423:10;;53229:4;;53235:7;;53244:4;;53178:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53178:71:0;;;;;;;;-1:-1:-1;;53178:71:0;;;;;;;;;;;;:::i;:::-;;;53174:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53419:13:0;;53415:328;;53462:60;;-1:-1:-1;;;53462:60:0;;;;;;;:::i;53415:328::-;53693:6;53687:13;53678:6;53674:2;53670:15;53663:38;53174:584;-1:-1:-1;;;;;;53300:51:0;-1:-1:-1;;;53300:51:0;;-1:-1:-1;53293:58:0;;53138:675;-1:-1:-1;53797:4:0;52967:853;;;;;;:::o;11636:922::-;11689:7;;-1:-1:-1;;;11767:15:0;;11763:102;;-1:-1:-1;;;11803:15:0;;;-1:-1:-1;11847:2:0;11837:12;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;-1:-1:-1;11963:2:0;11953:12;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;-1:-1:-1;12079:2:0;12069:12;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;-1:-1:-1;12193:1:0;12183:11;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;-1:-1:-1;12306:1:0;12296:11;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;-1:-1:-1;12419:1:0;12409:11;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;12544:6;11636:922;-1:-1:-1;;11636:922:0:o;47109:319::-;47238:18;47244:2;47248:7;47238:5;:18::i;:::-;47289:53;47320:1;47324:2;47328:7;47337:4;47289:22;:53::i;:::-;47267:153;;;;-1:-1:-1;;;47267:153:0;;;;;;;:::i;47764:942::-;-1:-1:-1;;;;;47844:16:0;;47836:61;;;;-1:-1:-1;;;47836:61:0;;12040:2:1;47836:61:0;;;12022:21:1;;;12059:18;;;12052:30;12118:34;12098:18;;;12091:62;12170:18;;47836:61:0;11838:356:1;47836:61:0;45936:4;45534:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45534:16:0;45960:31;47908:58;;;;-1:-1:-1;;;47908:58:0;;10165:2:1;47908:58:0;;;10147:21:1;10204:2;10184:18;;;10177:30;10243;10223:18;;;10216:58;10291:18;;47908:58:0;9963:352:1;47908:58:0;47979:48;48008:1;48012:2;48016:7;48025:1;47979:20;:48::i;:::-;45936:4;45534:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45534:16:0;45960:31;48117:58;;;;-1:-1:-1;;;48117:58:0;;10165:2:1;48117:58:0;;;10147:21:1;10204:2;10184:18;;;10177:30;10243;10223:18;;;10216:58;10291:18;;48117:58:0;9963:352:1;48117:58:0;-1:-1:-1;;;;;48524:13:0;;;;;;:9;:13;;;;;;;;:18;;48541:1;48524:18;;;48566:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48566:21:0;;;;;48605:33;48574:7;;48524:13;;48605:33;;48524:13;;48605:33;59064:22:::1;58992:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;15465:1;15458:14;;;15502:4;15489:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;8317:409::-;8519:2;8501:21;;;8558:2;8538:18;;;8531:30;8597:34;8592:2;8577:18;;8570:62;-1:-1:-1;;;8663:2:1;8648:18;;8641:43;8716:3;8701:19;;8317:409::o;8731:414::-;8933:2;8915:21;;;8972:2;8952:18;;;8945:30;9011:34;9006:2;8991:18;;8984:62;-1:-1:-1;;;9077:2:1;9062:18;;9055:48;9135:3;9120:19;;8731:414::o;9557:401::-;9759:2;9741:21;;;9798:2;9778:18;;;9771:30;9837:34;9832:2;9817:18;;9810:62;-1:-1:-1;;;9903:2:1;9888:18;;9881:35;9948:3;9933:19;;9557:401::o;15518:128::-;15558:3;15589:1;15585:6;15582:1;15579:13;15576:39;;;15595:18;;:::i;:::-;-1:-1:-1;15631:9:1;;15518:128::o;15651:168::-;15691:7;15757:1;15753;15749:6;15745:14;15742:1;15739:21;15734:1;15727:9;15720:17;15716:45;15713:71;;;15764:18;;:::i;:::-;-1:-1:-1;15804:9:1;;15651:168::o;15824:125::-;15864:4;15892:1;15889;15886:8;15883:34;;;15897:18;;:::i;:::-;-1:-1:-1;15934:9:1;;15824:125::o;15954:258::-;16026:1;16036:113;16050:6;16047:1;16044:13;16036:113;;;16126:11;;;16120:18;16107:11;;;16100:39;16072:2;16065:10;16036:113;;;16167:6;16164:1;16161:13;16158:48;;;-1:-1:-1;;16202:1:1;16184:16;;16177:27;15954:258::o;16217:380::-;16296:1;16292:12;;;;16339;;;16360:61;;16414:4;16406:6;16402:17;16392:27;;16360:61;16467:2;16459:6;16456:14;16436:18;16433:38;16430:161;;;16513:10;16508:3;16504:20;16501:1;16494:31;16548:4;16545:1;16538:15;16576:4;16573:1;16566:15;16430:161;;16217:380;;;:::o;16602:135::-;16641:3;-1:-1:-1;;16662:17:1;;16659:43;;;16682:18;;:::i;:::-;-1:-1:-1;16729:1:1;16718:13;;16602:135::o;16742:127::-;16803:10;16798:3;16794:20;16791:1;16784:31;16834:4;16831:1;16824:15;16858:4;16855:1;16848:15;17006:127;17067:10;17062:3;17058:20;17055:1;17048:31;17098:4;17095:1;17088:15;17122:4;17119:1;17112:15;17138:127;17199:10;17194:3;17190:20;17187:1;17180:31;17230:4;17227:1;17220:15;17254:4;17251:1;17244:15;17270:131;-1:-1:-1;;;;;;17344:32:1;;17334:43;;17324:71;;17391:1;17388;17381:12
Swarm Source
ipfs://b79e0c60fff32c06340f88f317fd88c2549c80c6d0c858022ac214a5f3e7c3cb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.