ERC-721
Overview
Max Total Supply
0 LD
Holders
22
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 LDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
LOVEDIMENSION
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-18 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @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 (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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 (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; /** * @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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; /** * @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 address zero. * * 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 (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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 towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (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 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 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. uint256 twos = denominator & (0 - denominator); 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 (unsignedRoundsUp(rounding) && 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 * towards zero. * * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @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), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) 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 FailedInnerCall(); } } } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.20; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the Merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates Merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** *@dev The multiproof provided is not valid. */ error MerkleProofInvalidMultiproof(); /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} */ function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Sorts the pair (a, b) and hashes the result. */ function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } } // File: @openzeppelin/contracts/finance/PaymentSplitter.sol // OpenZeppelin Contracts (last updated v4.8.0) (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the * time of contract deployment and can't be updated thereafter. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20 token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(account); require(payment != 0, "PaymentSplitter: account is not due payment"); // _totalReleased is the sum of all values in _released. // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow. _totalReleased += payment; unchecked { _released[account] += payment; } Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(token, account); require(payment != 0, "PaymentSplitter: account is not due payment"); // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token]. // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment" // cannot overflow. _erc20TotalReleased[token] += payment; unchecked { _erc20Released[token][account] += payment; } SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: contracts/LOVEDIMENSION.sol /* . ,,,,,*(%&@@@@@@& ,,,,/@@@@@@@@@@@@@@@@@@@&@@@@& ,,,@@@@@@@@@@@@@@@@@@@@&@@@@@@* .* . .,,,,,,*(#%&&@@@@@@@@ . ,,,@@@@@@@@@@@@@@@&&@@@@# , ,,,,,,#@@@@@@@@@@@@@@@@@@@@@@@@@%,/* ,,,@@@@@@@@@%&@@@@ . ,,,,,,&@@@@@@@@@@@, .... .,,,,,,@@@@@@@@@(&% ,,@@@&(@@@@ ,,,,,%@@@@@@@@@@@@@@@@@@@*** ,,,,@@@@@@@@ ,,,(@@@. ,,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#* ,,,&@@@@@@. , ,,%@@ , ,,,,(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#&/ ,,,@@@/@@. ,,@@%&@% ,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%# ,,@@,@% ,,@@ , ,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*@% . ,,@@#., ,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*@& ,,*(* ,,,#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ .,%/,. ,,,(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ,,*,. ,,@*@ ,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ,,**, ,,,/,/, ,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@ ,@/.. ,,,@/**. .,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(#@(/*. ,,,@,*,.. ,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,*((. . ,,,@@//,. .,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,/%, . ,,,@@@*(*. *,&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(*%&. ,@@ ,,,@@@*%* ,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&*%&% ,,,@@, . ,,@@@@@@# , ,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*%@@. ,,,@@@@, ,,@@@@@@@% , ,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&*&@@ ,,,@@@@@@%. .,,%@@ ,,@@@@@@@@@, ,,&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(#@@& ,,,@@@@@@@*&( ,,@@@@@@*(( ,,@@@@@@@,@, ,,,%@@@@@@@@@@@@@@@@@@@@@@@@@@@%(@@@ ,,,@@@@@@@@@&&/ , ,,,@@@@@@@@#@@, , ,,@@@@@@@@,@ ,,,,@@@@@@@@@@@@@@@@@@@@%#@@@ ,,,,@@@@@@@@@@@%#,*, ,,,@@@@@@@@&, ,,@@@@@@@@@@@% ,,,,,@@@@@@@@@@@@#@@@@ , ,,,,@@@@@@@@@@@@@@,,*,, ,*,,*@@@@/, ,,@@@@@@@@@@@@**% ,,@@@@#@@@@( . ,,,,@@@@@@@@@@@@@@@@,/#(, ... *,,@@@@@@@@@@@@@@/&@@@@ .,,,,,,,#@&@@@@@ , .,,,,@@@@@@@@@@@@@@@@&/&@@, ,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&@@@@@@. .. *,,,,,&@@@@@@@@@@@@@@@@@@@@@. ,*,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ , *. ,,*%#%&@@, .* .. ,,,,*%#%&&@@@@@@@@. .*. */ pragma solidity ^0.8.22; contract LOVEDIMENSION is Ownable, ERC721, PaymentSplitter { using Strings for uint; enum Step { Off, On } string public baseURI; Step public sellingStep; uint256 public MAX_SUPPLY = 888; uint256 public freeMintStartId = 501; uint256 public freeMintEndId = 888; uint256 public paidMintStartId = 1; uint256 public paidMintEndId = 500; uint256 public freeMintCurrentId = freeMintStartId; uint256 public paidMintCurrentId = paidMintStartId; uint public MAX_PER_WALLET_PUBLIC = 10; uint public MAX_PER_WALLET_WL = 20; uint public MAX_PER_WALLET_FREE = 2; uint public freeSalePrice = 0 ether; uint public wlSalePrice = 0.0222 ether; uint public publicSalePrice = 0.0333 ether; uint256 public saleStartTime = 1713655200; uint256 public saleStartTimeWL = 1713538800; uint256 public saleStartTimeFree = 1713538800; bytes32 public merkleRootWL; mapping(address => uint) public amountNFTsperWalletPUBLIC; mapping(address => uint) public amountNFTsperWalletWL; mapping(address => uint) public amountNFTsperWalletFREE; uint private teamLength; uint96 royaltyFeesInBips; address royaltyReceiver; constructor(uint96 _royaltyFeesInBips, address[] memory _team, uint[] memory _teamShares, string memory _baseURI, address _initialOwner, address _fundsReceiver) ERC721("LOVE DIMENSION", "LD") PaymentSplitter(_team, _teamShares) Ownable(_initialOwner) { baseURI = _baseURI; teamLength = _team.length; royaltyFeesInBips = _royaltyFeesInBips; royaltyReceiver = _fundsReceiver; sellingStep = Step.On; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function whitelistMint(address _account, uint _quantity, bytes32[] calldata _proof) external payable { require(sellingStep == Step.On, "Sale is stopped"); require(block.timestamp > saleStartTimeWL, "Whitelist sale is not activated"); require(isWhiteListed(_account, _proof), "Not whitelisted"); require(amountNFTsperWalletWL[_account] + _quantity <= MAX_PER_WALLET_WL, "Max per wallet limit reached"); require(paidMintCurrentId + _quantity - 1 <= paidMintEndId, "Exceeded paid mint supply"); require(msg.value >= wlSalePrice * _quantity, "Not enought funds"); amountNFTsperWalletWL[_account] += _quantity; for(uint256 i = 0; i < _quantity; i++) { _safeMint(_account, paidMintCurrentId++); } } function publicSaleMint(address _account, uint _quantity) external payable { require(sellingStep == Step.On, "Sale is stopeed"); require(block.timestamp > saleStartTime, "Public sale is not activated"); require(paidMintCurrentId + _quantity - 1 <= paidMintEndId, "Exceeded paid mint supply"); require(amountNFTsperWalletPUBLIC[_account] + _quantity <= MAX_PER_WALLET_PUBLIC, "Max per wallet limit reached"); require(msg.value >= publicSalePrice * _quantity, "Not enough funds"); amountNFTsperWalletPUBLIC[_account] += _quantity; for(uint256 i = 0; i < _quantity; i++) { _safeMint(_account, paidMintCurrentId++); } } function freeMint(address _account, uint _quantity, bytes32[] calldata _proof) external payable { require(sellingStep == Step.On, "Sale is stopped"); require(block.timestamp > saleStartTimeFree, "Whitelist sale is not activated"); require(isWhiteListed(_account, _proof), "Not whitelisted"); require(amountNFTsperWalletFREE[_account] + _quantity <= MAX_PER_WALLET_FREE, "Max per wallet limit reached"); require(freeMintCurrentId + _quantity - 1 <= freeMintEndId, "Exceeded free mint supply"); require(msg.value >= freeSalePrice * _quantity, "Not enought funds"); amountNFTsperWalletFREE[_account] += _quantity; for(uint256 i = 0; i < _quantity; i++) { _safeMint(_account, freeMintCurrentId++); } } function giftPaid(address _to, uint _quantity) external onlyOwner { require(paidMintCurrentId + _quantity - 1 <= freeMintEndId, "Exceeded free mint supply"); for(uint256 i = 0; i < _quantity; i++) { _safeMint(_to, paidMintCurrentId++); } } function giftFree(address _to, uint _quantity) external onlyOwner { require(freeMintCurrentId + _quantity - 1 <= freeMintEndId, "Exceeded free mint supply"); for(uint256 i = 0; i < _quantity; i++) { _safeMint(_to, freeMintCurrentId++); } } function lowerSupply (uint _MAX_SUPPLY) external onlyOwner{ require(_MAX_SUPPLY < MAX_SUPPLY, "Cannot increase supply!"); MAX_SUPPLY = _MAX_SUPPLY; } function setMaxPerWalletWL(uint _MAX_PER_WALLET_WL) external onlyOwner { MAX_PER_WALLET_WL = _MAX_PER_WALLET_WL; } function setMaxPerWalletFREE(uint _MAX_PER_WALLET_FREE) external onlyOwner { MAX_PER_WALLET_FREE = _MAX_PER_WALLET_FREE; } function setMaxPerWalletPUBLIC(uint _MAX_PER_WALLET_PUBLIC) external onlyOwner { MAX_PER_WALLET_PUBLIC = _MAX_PER_WALLET_PUBLIC; } function setWLSalePrice(uint _wlSalePrice) external onlyOwner { wlSalePrice = _wlSalePrice; } function setFreeSalePrice(uint _freeSalePrice) external onlyOwner { freeSalePrice = _freeSalePrice; } function setPublicSalePrice(uint _publicSalePrice) external onlyOwner { publicSalePrice = _publicSalePrice; } function setBaseUri(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setStep(uint _step) external onlyOwner { sellingStep = Step(_step); } function setSaleStartTime(uint256 _startTime) external onlyOwner { saleStartTime = _startTime; } function setSaleStartTimeWL(uint256 _startTimeWL) external onlyOwner { saleStartTimeWL = _startTimeWL; } function setSaleStartTimeFree(uint256 _saleStartTimeFree) external onlyOwner { saleStartTimeFree = _saleStartTimeFree; } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(ownerOf(_tokenId) != address(0), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json")); } //Whitelist function setMerkleRootWL(bytes32 _merkleRootWL) external onlyOwner { merkleRootWL = _merkleRootWL; } function isWhiteListed(address _account, bytes32[] calldata _proof) internal view returns(bool) { return _verifyWL(leaf(_account), _proof); } function leaf(address _account) internal pure returns(bytes32) { return keccak256(abi.encodePacked(_account)); } function _verifyWL(bytes32 _leaf, bytes32[] memory _proof) internal view returns(bool) { return MerkleProof.verify(_proof, merkleRootWL, _leaf); } function royaltyInfo ( uint256 _tokenId, uint256 _salePrice ) external view returns ( address receiver, uint256 royaltyAmount ){ return (royaltyReceiver, calculateRoyalty(_salePrice)); } function calculateRoyalty(uint256 _salePrice) view public returns (uint256){ return(_salePrice / 10000) * royaltyFeesInBips; } function setRoyaltyInfo (address _receiver, uint96 _royaltyFeesInBips) public onlyOwner { royaltyReceiver = _receiver; royaltyFeesInBips = _royaltyFeesInBips; } //ReleaseALL function releaseAll() external onlyOwner { for(uint i = 0 ; i < teamLength ; i++) { release(payable(payee(i))); } } receive() override external payable { revert('Only if you mint'); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"},{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"address","name":"_fundsReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletFREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletPUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"calculateRoyalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintEndId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintStartId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"giftFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"giftPaid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"lowerSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidMintCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidMintEndId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidMintStartId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartTimeFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartTimeWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum LOVEDIMENSION.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSalePrice","type":"uint256"}],"name":"setFreeSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_WALLET_FREE","type":"uint256"}],"name":"setMaxPerWalletFREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_WALLET_PUBLIC","type":"uint256"}],"name":"setMaxPerWalletPUBLIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_WALLET_WL","type":"uint256"}],"name":"setMaxPerWalletWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootWL","type":"bytes32"}],"name":"setMerkleRootWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTimeFree","type":"uint256"}],"name":"setSaleStartTimeFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimeWL","type":"uint256"}],"name":"setSaleStartTimeWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlSalePrice","type":"uint256"}],"name":"setWLSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526103786010556101f560115561037860125560016013556101f4601455601154601555601354601655600a601755601460185560026019555f601a55664edec84a038000601b5566764e2c6f054000601c556366244da0601d5563662286f0601e5563662286f0601f553480156200007a575f80fd5b5060405162003975380380620039758339810160408190526200009d91620006ea565b84846040518060400160405280600e81526020016d2627ab22902224a6a2a729a4a7a760911b81525060405180604001604052806002815260200161131160f21b815250855f6001600160a01b0316816001600160a01b0316036200011c57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6200012781620002c0565b50600162000136838262000842565b50600262000145828262000842565b5050508051825114620001b65760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b606482015260840162000113565b5f825111620002085760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000113565b5f5b825181101562000267576200025e8382815181106200022d576200022d6200090e565b60200260200101518383815181106200024a576200024a6200090e565b60200260200101516200030f60201b60201c565b6001016200020a565b50600e91506200027a9050848262000842565b5093516024555050506001600160a01b03166c01000000000000000000000000026001600160601b039190911617602555600f8054600160ff1990911617905562000948565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200037c5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000113565b5f8111620003cd5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000113565b6001600160a01b0382165f9081526009602052604090205415620004485760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000113565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0384169081179091555f908152600960205260409020819055600754620004b190829062000922565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715620005395762000539620004fa565b604052919050565b5f6001600160401b038211156200055c576200055c620004fa565b5060051b60200190565b80516001600160a01b03811681146200057d575f80fd5b919050565b5f82601f83011262000592575f80fd5b81516020620005ab620005a58362000541565b6200050e565b8083825260208201915060208460051b870101935086841115620005cd575f80fd5b602086015b84811015620005f457620005e68162000566565b8352918301918301620005d2565b509695505050505050565b5f82601f8301126200060f575f80fd5b8151602062000622620005a58362000541565b8083825260208201915060208460051b87010193508684111562000644575f80fd5b602086015b84811015620005f4578051835291830191830162000649565b5f82601f83011262000672575f80fd5b81516001600160401b038111156200068e576200068e620004fa565b6020620006a4601f8301601f191682016200050e565b8281528582848701011115620006b8575f80fd5b5f5b83811015620006d7578581018301518282018401528201620006ba565b505f928101909101919091529392505050565b5f805f805f8060c0878903121562000700575f80fd5b86516001600160601b038116811462000717575f80fd5b60208801519096506001600160401b038082111562000734575f80fd5b620007428a838b0162000582565b9650604089015191508082111562000758575f80fd5b620007668a838b01620005ff565b955060608901519150808211156200077c575f80fd5b506200078b89828a0162000662565b9350506200079c6080880162000566565b9150620007ac60a0880162000566565b90509295509295509295565b600181811c90821680620007cd57607f821691505b602082108103620007ec57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200083d57805f5260205f20601f840160051c81016020851015620008195750805b601f840160051c820191505b818110156200083a575f815560010162000825565b50505b505050565b81516001600160401b038111156200085e576200085e620004fa565b62000876816200086f8454620007b8565b84620007f2565b602080601f831160018114620008ac575f8415620008945750858301515b5f19600386901b1c1916600185901b17855562000906565b5f85815260208120601f198616915b82811015620008dc57888601518255948401946001909101908401620008bb565b5085821015620008fa57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156200094257634e487b7160e01b5f52601160045260245ffd5b92915050565b61301f80620009565f395ff3fe608060405260043610610403575f3560e01c8063791a251911610215578063b779c0b81161011e578063d6492d81116100a8578063e985e9c511610078578063e985e9c514610c38578063f147b88f14610c57578063f2fde38b14610c6c578063f33cb7d014610c8b578063f8dcbddb14610ca0575f80fd5b8063d6492d8114610bb0578063d79779b214610bc5578063e33b7de314610bf9578063e453366a14610c0d575f80fd5b8063c7153816116100ee578063c715381614610af9578063c87b56dd14610b18578063cbccefb214610b37578063ce7c2ac214610b5d578063cf5a09fd14610b91575f80fd5b8063b779c0b814610a7d578063b88d4fde14610a9c578063c1612d4114610abb578063c45ac05014610ada575f80fd5b80639852595c1161019f578063a2e696131161016f578063a2e69613146109f8578063a3f8eace14610a17578063ac5ae11b14610a36578063ad3e31b714610a49578063b460c3be14610a68575f80fd5b80639852595c146109715780639b6860c8146109a5578063a0bcfc7f146109ba578063a22cb465146109d9575f80fd5b80638da5cb5b116101e55780638da5cb5b146108d65780638e2d4bfd146108f25780638eb478a614610907578063952aeab81461093257806395d89b411461095d575f80fd5b8063791a2519146108645780637cb1af6a14610883578063828122ab146108a25780638b83209b146108b7575f80fd5b80633a98ef39116103175780635be7fde8116102a15780636bc609f9116102715780636bc609f9146107e95780636c0360eb1461080857806370a082311461081c578063715018a61461083b578063734c66bd1461084f575f80fd5b80635be7fde81461078c5780635dcf7bda146107a05780636352211e146107b557806364affb40146107d4575f80fd5b80634b11faaf116102e75780634b11faaf146107135780634d32615814610726578063525f8a5c1461073957806354238a671461075857806355cf59121461076d575f80fd5b80633a98ef391461067d578063406072a91461069157806342842e0e146106d557806348b75044146106f4575f80fd5b80630f9a4ac91161039857806323b872dd1161036857806323b872dd146105d75780632a55205a146105f65780632f50bfc81461063457806332cb6b0c1461065357806334bb95dc14610668575f80fd5b80630f9a4ac914610579578063191655871461058e5780631b8254ae146105ad5780631cbaee2d146105c2575f80fd5b806306fdde03116103d357806306fdde03146104e35780630805943914610504578063081812fc14610523578063095ea7b31461055a575f80fd5b806301d96c541461044c57806301ffc9a7146104745780630232fc17146104a357806302fa7c47146104c4575f80fd5b366104485760405162461bcd60e51b815260206004820152601060248201526f13db9b1e481a59881e5bdd481b5a5b9d60821b60448201526064015b60405180910390fd5b5f80fd5b348015610457575f80fd5b5061046160125481565b6040519081526020015b60405180910390f35b34801561047f575f80fd5b5061049361048e3660046127f0565b610cbf565b604051901515815260200161046b565b3480156104ae575f80fd5b506104c26104bd36600461280b565b610d10565b005b3480156104cf575f80fd5b506104c26104de366004612836565b610d1d565b3480156104ee575f80fd5b506104f7610d54565b60405161046b91906128c5565b34801561050f575f80fd5b506104c261051e36600461280b565b610de4565b34801561052e575f80fd5b5061054261053d36600461280b565b610df1565b6040516001600160a01b03909116815260200161046b565b348015610565575f80fd5b506104c26105743660046128d7565b610e18565b348015610584575f80fd5b50610461601e5481565b348015610599575f80fd5b506104c26105a8366004612901565b610e27565b3480156105b8575f80fd5b5061046160155481565b3480156105cd575f80fd5b50610461601d5481565b3480156105e2575f80fd5b506104c26105f136600461291c565b610f09565b348015610601575f80fd5b5061061561061036600461295a565b610f92565b604080516001600160a01b03909316835260208301919091520161046b565b34801561063f575f80fd5b506104c261064e3660046128d7565b610fbd565b34801561065e575f80fd5b5061046160105481565b348015610673575f80fd5b5061046160195481565b348015610688575f80fd5b50600754610461565b34801561069c575f80fd5b506104616106ab36600461297a565b6001600160a01b039182165f908152600d6020908152604080832093909416825291909152205490565b3480156106e0575f80fd5b506104c26106ef36600461291c565b611035565b3480156106ff575f80fd5b506104c261070e36600461297a565b61104f565b6104c26107213660046129a6565b61115b565b6104c26107343660046129a6565b6113a4565b348015610744575f80fd5b506104c261075336600461280b565b6115ba565b348015610763575f80fd5b5061046160165481565b348015610778575f80fd5b506104c261078736600461280b565b6115c7565b348015610797575f80fd5b506104c26115d4565b3480156107ab575f80fd5b50610461601f5481565b3480156107c0575f80fd5b506105426107cf36600461280b565b6115ff565b3480156107df575f80fd5b5061046160175481565b3480156107f4575f80fd5b506104c261080336600461280b565b611609565b348015610813575f80fd5b506104f7611616565b348015610827575f80fd5b50610461610836366004612901565b6116a2565b348015610846575f80fd5b506104c26116e7565b34801561085a575f80fd5b50610461601b5481565b34801561086f575f80fd5b506104c261087e36600461280b565b6116fa565b34801561088e575f80fd5b506104c261089d36600461280b565b611707565b3480156108ad575f80fd5b5061046160185481565b3480156108c2575f80fd5b506105426108d136600461280b565b611714565b3480156108e1575f80fd5b505f546001600160a01b0316610542565b3480156108fd575f80fd5b5061046160115481565b348015610912575f80fd5b50610461610921366004612901565b60216020525f908152604090205481565b34801561093d575f80fd5b5061046161094c366004612901565b60226020525f908152604090205481565b348015610968575f80fd5b506104f7611742565b34801561097c575f80fd5b5061046161098b366004612901565b6001600160a01b03165f908152600a602052604090205490565b3480156109b0575f80fd5b50610461601c5481565b3480156109c5575f80fd5b506104c26109d4366004612ab2565b611751565b3480156109e4575f80fd5b506104c26109f3366004612b04565b611765565b348015610a03575f80fd5b50610461610a1236600461280b565b611770565b348015610a22575f80fd5b50610461610a31366004612901565b611794565b6104c2610a443660046128d7565b6117da565b348015610a54575f80fd5b506104c2610a6336600461280b565b6119d2565b348015610a73575f80fd5b5061046160145481565b348015610a88575f80fd5b506104c2610a9736600461280b565b6119df565b348015610aa7575f80fd5b506104c2610ab6366004612b30565b6119ec565b348015610ac6575f80fd5b506104c2610ad536600461280b565b611a03565b348015610ae5575f80fd5b50610461610af436600461297a565b611a10565b348015610b04575f80fd5b506104c2610b1336600461280b565b611ad7565b348015610b23575f80fd5b506104f7610b3236600461280b565b611b35565b348015610b42575f80fd5b50600f54610b509060ff1681565b60405161046b9190612bbf565b348015610b68575f80fd5b50610461610b77366004612901565b6001600160a01b03165f9081526009602052604090205490565b348015610b9c575f80fd5b506104c2610bab3660046128d7565b611be1565b348015610bbb575f80fd5b5061046160205481565b348015610bd0575f80fd5b50610461610bdf366004612901565b6001600160a01b03165f908152600c602052604090205490565b348015610c04575f80fd5b50600854610461565b348015610c18575f80fd5b50610461610c27366004612901565b60236020525f908152604090205481565b348015610c43575f80fd5b50610493610c5236600461297a565b611c4b565b348015610c62575f80fd5b5061046160135481565b348015610c77575f80fd5b506104c2610c86366004612901565b611c78565b348015610c96575f80fd5b50610461601a5481565b348015610cab575f80fd5b506104c2610cba36600461280b565b611cb2565b5f6001600160e01b031982166380ac58cd60e01b1480610cef57506001600160e01b03198216635b5e139f60e01b145b80610d0a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b610d18611cef565b601955565b610d25611cef565b6001600160601b03166001600160a01b03909116600160601b026bffffffffffffffffffffffff191617602555565b606060018054610d6390612be5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8f90612be5565b8015610dda5780601f10610db157610100808354040283529160200191610dda565b820191905f5260205f20905b815481529060010190602001808311610dbd57829003601f168201915b5050505050905090565b610dec611cef565b601b55565b5f610dfb82611d1b565b505f828152600560205260409020546001600160a01b0316610d0a565b610e23828233611d53565b5050565b6001600160a01b0381165f90815260096020526040902054610e5b5760405162461bcd60e51b815260040161043f90612c1d565b5f610e6582611794565b9050805f03610e865760405162461bcd60e51b815260040161043f90612c63565b8060085f828254610e979190612cc2565b90915550506001600160a01b0382165f908152600a60205260409020805482019055610ec38282611d60565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6001600160a01b038216610f3257604051633250574960e11b81525f600482015260240161043f565b5f610f3e838333611df3565b9050836001600160a01b0316816001600160a01b031614610f8c576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161043f565b50505050565b6025545f908190600160601b90046001600160a01b0316610fb284611770565b915091509250929050565b610fc5611cef565b601254600182601654610fd89190612cc2565b610fe29190612cd5565b11156110005760405162461bcd60e51b815260040161043f90612ce8565b5f5b818110156110305760168054611028918591905f61101f83612d1f565b91905055611ee5565b600101611002565b505050565b61103083838360405180602001604052805f8152506119ec565b6001600160a01b0381165f908152600960205260409020546110835760405162461bcd60e51b815260040161043f90612c1d565b5f61108e8383611a10565b9050805f036110af5760405162461bcd60e51b815260040161043f90612c63565b6001600160a01b0383165f908152600c6020526040812080548392906110d6908490612cc2565b90915550506001600160a01b038084165f908152600d60209081526040808320938616835292905220805482019055611110838383611efe565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b6001600f5460ff16600181111561117457611174612bab565b146111b35760405162461bcd60e51b815260206004820152600f60248201526e14d85b19481a5cc81cdd1bdc1c1959608a1b604482015260640161043f565b601e5442116112045760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f742061637469766174656400604482015260640161043f565b61120f848383611f50565b61124d5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161043f565b6018546001600160a01b0385165f90815260226020526040902054611273908590612cc2565b11156112915760405162461bcd60e51b815260040161043f90612d37565b6014546001846016546112a49190612cc2565b6112ae9190612cd5565b11156112f85760405162461bcd60e51b815260206004820152601960248201527845786365656465642070616964206d696e7420737570706c7960381b604482015260640161043f565b82601b546113069190612d6e565b3410156113495760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b604482015260640161043f565b6001600160a01b0384165f9081526022602052604081208054859290611370908490612cc2565b909155505f90505b8381101561139d5760168054611395918791905f61101f83612d1f565b600101611378565b5050505050565b6001600f5460ff1660018111156113bd576113bd612bab565b146113fc5760405162461bcd60e51b815260206004820152600f60248201526e14d85b19481a5cc81cdd1bdc1c1959608a1b604482015260640161043f565b601f54421161144d5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f742061637469766174656400604482015260640161043f565b611458848383611f50565b6114965760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161043f565b6019546001600160a01b0385165f908152602360205260409020546114bc908590612cc2565b11156114da5760405162461bcd60e51b815260040161043f90612d37565b6012546001846015546114ed9190612cc2565b6114f79190612cd5565b11156115155760405162461bcd60e51b815260040161043f90612ce8565b82601a546115239190612d6e565b3410156115665760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b604482015260640161043f565b6001600160a01b0384165f908152602360205260408120805485929061158d908490612cc2565b909155505f90505b8381101561139d57601580546115b2918791905f61101f83612d1f565b600101611595565b6115c2611cef565b601d55565b6115cf611cef565b601755565b6115dc611cef565b5f5b6024548110156115fc576115f46105a882611714565b6001016115de565b50565b5f610d0a82611d1b565b611611611cef565b601a55565b600e805461162390612be5565b80601f016020809104026020016040519081016040528092919081815260200182805461164f90612be5565b801561169a5780601f106116715761010080835404028352916020019161169a565b820191905f5260205f20905b81548152906001019060200180831161167d57829003601f168201915b505050505081565b5f6001600160a01b0382166116cc576040516322718ad960e21b81525f600482015260240161043f565b506001600160a01b03165f9081526004602052604090205490565b6116ef611cef565b6116f85f611fce565b565b611702611cef565b601c55565b61170f611cef565b601e55565b5f600b828154811061172857611728612d85565b5f918252602090912001546001600160a01b031692915050565b606060028054610d6390612be5565b611759611cef565b600e610e238282612ddd565b610e2333838361201d565b6025545f906001600160601b031661178a61271084612e9d565b610d0a9190612d6e565b5f8061179f60085490565b6117a99047612cc2565b90506117d383826117ce866001600160a01b03165f908152600a602052604090205490565b6120bb565b9392505050565b6001600f5460ff1660018111156117f3576117f3612bab565b146118325760405162461bcd60e51b815260206004820152600f60248201526e14d85b19481a5cc81cdd1bdc195959608a1b604482015260640161043f565b601d5442116118835760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f742061637469766174656400000000604482015260640161043f565b6014546001826016546118969190612cc2565b6118a09190612cd5565b11156118ea5760405162461bcd60e51b815260206004820152601960248201527845786365656465642070616964206d696e7420737570706c7960381b604482015260640161043f565b6017546001600160a01b0383165f90815260216020526040902054611910908390612cc2565b111561192e5760405162461bcd60e51b815260040161043f90612d37565b80601c5461193c9190612d6e565b34101561197e5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b604482015260640161043f565b6001600160a01b0382165f90815260216020526040812080548392906119a5908490612cc2565b909155505f90505b8181101561103057601680546119ca918591905f61101f83612d1f565b6001016119ad565b6119da611cef565b602055565b6119e7611cef565b601f55565b6119f7848484610f09565b610f8c848484846120f8565b611a0b611cef565b601855565b6001600160a01b0382165f908152600c602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611a6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a909190612ebc565b611a9a9190612cc2565b6001600160a01b038086165f908152600d6020908152604080832093881683529290522054909150611acf90849083906120bb565b949350505050565b611adf611cef565b6010548110611b305760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420696e63726561736520737570706c7921000000000000000000604482015260640161043f565b601055565b60605f611b41836115ff565b6001600160a01b031603611baf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161043f565b600e611bba83612217565b604051602001611bcb929190612ed3565b6040516020818303038152906040529050919050565b611be9611cef565b601254600182601554611bfc9190612cc2565b611c069190612cd5565b1115611c245760405162461bcd60e51b815260040161043f90612ce8565b5f5b818110156110305760158054611c43918591905f61101f83612d1f565b600101611c26565b6001600160a01b039182165f90815260066020908152604080832093909416825291909152205460ff1690565b611c80611cef565b6001600160a01b038116611ca957604051631e4fbdf760e01b81525f600482015260240161043f565b6115fc81611fce565b611cba611cef565b806001811115611ccc57611ccc612bab565b600f805460ff191660018381811115611ce757611ce7612bab565b021790555050565b5f546001600160a01b031633146116f85760405163118cdaa760e01b815233600482015260240161043f565b5f818152600360205260408120546001600160a01b031680610d0a57604051637e27328960e01b81526004810184905260240161043f565b61103083838360016122a7565b80471015611d835760405163cd78605960e01b815230600482015260240161043f565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611dcc576040519150601f19603f3d011682016040523d82523d5f602084013e611dd1565b606091505b505090508061103057604051630a12f52160e11b815260040160405180910390fd5b5f828152600360205260408120546001600160a01b0390811690831615611e1f57611e1f8184866123ab565b6001600160a01b03811615611e5957611e3a5f855f806122a7565b6001600160a01b0381165f90815260046020526040902080545f190190555b6001600160a01b03851615611e87576001600160a01b0385165f908152600460205260409020805460010190555b5f8481526003602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b610e23828260405180602001604052805f81525061240f565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611030908490612425565b5f611acf611f96856040516bffffffffffffffffffffffff19606083901b1660208201525f90603401604051602081830303815290604052805190602001209050919050565b8484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525061248692505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821661204f57604051630b61174360e31b81526001600160a01b038316600482015260240161043f565b6001600160a01b038381165f81815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6007546001600160a01b0384165f90815260096020526040812054909183916120e49086612d6e565b6120ee9190612e9d565b611acf9190612cd5565b6001600160a01b0383163b15610f8c57604051630a85bd0160e11b81526001600160a01b0384169063150b7a029061213a903390889087908790600401612f66565b6020604051808303815f875af1925050508015612174575060408051601f3d908101601f1916820190925261217191810190612f98565b60015b6121db573d8080156121a1576040519150601f19603f3d011682016040523d82523d5f602084013e6121a6565b606091505b5080515f036121d357604051633250574960e11b81526001600160a01b038516600482015260240161043f565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461139d57604051633250574960e11b81526001600160a01b038516600482015260240161043f565b60605f61222383612494565b60010190505f8167ffffffffffffffff81111561224257612242612a2b565b6040519080825280601f01601f19166020018201604052801561226c576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461227657509392505050565b80806122bb57506001600160a01b03821615155b1561237c575f6122ca84611d1b565b90506001600160a01b038316158015906122f65750826001600160a01b0316816001600160a01b031614155b801561230957506123078184611c4b565b155b156123325760405163a9fbf51f60e01b81526001600160a01b038416600482015260240161043f565b811561237a5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260056020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6123b683838361256b565b611030576001600160a01b0383166123e457604051637e27328960e01b81526004810182905260240161043f565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161043f565b61241983836125cc565b6110305f8484846120f8565b5f6124396001600160a01b0384168361262d565b905080515f1415801561245d57508080602001905181019061245b9190612fb3565b155b1561103057604051635274afe760e01b81526001600160a01b038416600482015260240161043f565b5f6117d3826020548561263a565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106124d25772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106124fe576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061251c57662386f26fc10000830492506010015b6305f5e1008310612534576305f5e100830492506008015b612710831061254857612710830492506004015b6064831061255a576064830492506002015b600a8310610d0a5760010192915050565b5f6001600160a01b03831615801590611acf5750826001600160a01b0316846001600160a01b031614806125a457506125a48484611c4b565b80611acf5750505f908152600560205260409020546001600160a01b03908116911614919050565b6001600160a01b0382166125f557604051633250574960e11b81525f600482015260240161043f565b5f61260183835f611df3565b90506001600160a01b03811615611030576040516339e3563760e11b81525f600482015260240161043f565b60606117d383835f61264f565b5f8261264685846126e8565b14949350505050565b6060814710156126745760405163cd78605960e01b815230600482015260240161043f565b5f80856001600160a01b0316848660405161268f9190612fce565b5f6040518083038185875af1925050503d805f81146126c9576040519150601f19603f3d011682016040523d82523d5f602084013e6126ce565b606091505b50915091506126de86838361272a565b9695505050505050565b5f81815b8451811015612722576127188286838151811061270b5761270b612d85565b6020026020010151612786565b91506001016126ec565b509392505050565b60608261273f5761273a826127b2565b6117d3565b815115801561275657506001600160a01b0384163b155b1561277f57604051639996b31560e01b81526001600160a01b038516600482015260240161043f565b50806117d3565b5f8183106127a0575f8281526020849052604090206117d3565b5f8381526020839052604090206117d3565b8051156127c25780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b0319811681146115fc575f80fd5b5f60208284031215612800575f80fd5b81356117d3816127db565b5f6020828403121561281b575f80fd5b5035919050565b6001600160a01b03811681146115fc575f80fd5b5f8060408385031215612847575f80fd5b823561285281612822565b915060208301356001600160601b038116811461286d575f80fd5b809150509250929050565b5f5b8381101561289257818101518382015260200161287a565b50505f910152565b5f81518084526128b1816020860160208601612878565b601f01601f19169290920160200192915050565b602081525f6117d3602083018461289a565b5f80604083850312156128e8575f80fd5b82356128f381612822565b946020939093013593505050565b5f60208284031215612911575f80fd5b81356117d381612822565b5f805f6060848603121561292e575f80fd5b833561293981612822565b9250602084013561294981612822565b929592945050506040919091013590565b5f806040838503121561296b575f80fd5b50508035926020909101359150565b5f806040838503121561298b575f80fd5b823561299681612822565b9150602083013561286d81612822565b5f805f80606085870312156129b9575f80fd5b84356129c481612822565b935060208501359250604085013567ffffffffffffffff808211156129e7575f80fd5b818701915087601f8301126129fa575f80fd5b813581811115612a08575f80fd5b8860208260051b8501011115612a1c575f80fd5b95989497505060200194505050565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115612a5957612a59612a2b565b604051601f8501601f19908116603f01168101908282118183101715612a8157612a81612a2b565b81604052809350858152868686011115612a99575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215612ac2575f80fd5b813567ffffffffffffffff811115612ad8575f80fd5b8201601f81018413612ae8575f80fd5b611acf84823560208401612a3f565b80151581146115fc575f80fd5b5f8060408385031215612b15575f80fd5b8235612b2081612822565b9150602083013561286d81612af7565b5f805f8060808587031215612b43575f80fd5b8435612b4e81612822565b93506020850135612b5e81612822565b925060408501359150606085013567ffffffffffffffff811115612b80575f80fd5b8501601f81018713612b90575f80fd5b612b9f87823560208401612a3f565b91505092959194509250565b634e487b7160e01b5f52602160045260245ffd5b6020810160028310612bdf57634e487b7160e01b5f52602160045260245ffd5b91905290565b600181811c90821680612bf957607f821691505b602082108103612c1757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610d0a57610d0a612cae565b81810381811115610d0a57610d0a612cae565b60208082526019908201527f45786365656465642066726565206d696e7420737570706c7900000000000000604082015260600190565b5f60018201612d3057612d30612cae565b5060010190565b6020808252601c908201527f4d6178207065722077616c6c6574206c696d6974207265616368656400000000604082015260600190565b8082028115828204841417610d0a57610d0a612cae565b634e487b7160e01b5f52603260045260245ffd5b601f82111561103057805f5260205f20601f840160051c81016020851015612dbe5750805b601f840160051c820191505b8181101561139d575f8155600101612dca565b815167ffffffffffffffff811115612df757612df7612a2b565b612e0b81612e058454612be5565b84612d99565b602080601f831160018114612e3e575f8415612e275750858301515b5f19600386901b1c1916600185901b178555612e95565b5f85815260208120601f198616915b82811015612e6c57888601518255948401946001909101908401612e4d565b5085821015612e8957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f82612eb757634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612ecc575f80fd5b5051919050565b5f808454612ee081612be5565b60018281168015612ef85760018114612f0d57612f39565b60ff1984168752821515830287019450612f39565b885f526020805f205f5b85811015612f305781548a820152908401908201612f17565b50505082870194505b505050508351612f4d818360208801612878565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906126de9083018461289a565b5f60208284031215612fa8575f80fd5b81516117d3816127db565b5f60208284031215612fc3575f80fd5b81516117d381612af7565b5f8251612fdf818460208701612878565b919091019291505056fea26469706673582212200d84e87346d6c321fb33605a00c47a096f46451be7d864cded7789a936d7067664736f6c6343000817003300000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000a17a9ec3d10b3209d8f7df2e094043cc4ff99160000000000000000000000000782e23ec139b146873139193493f8f2288a1de700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000782e23ec139b146873139193493f8f2288a1de7000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963756f677771616e366a62376a64616c6c6733336b7779736874737a706873746d706777696c66777871637068656b7761676e712f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610403575f3560e01c8063791a251911610215578063b779c0b81161011e578063d6492d81116100a8578063e985e9c511610078578063e985e9c514610c38578063f147b88f14610c57578063f2fde38b14610c6c578063f33cb7d014610c8b578063f8dcbddb14610ca0575f80fd5b8063d6492d8114610bb0578063d79779b214610bc5578063e33b7de314610bf9578063e453366a14610c0d575f80fd5b8063c7153816116100ee578063c715381614610af9578063c87b56dd14610b18578063cbccefb214610b37578063ce7c2ac214610b5d578063cf5a09fd14610b91575f80fd5b8063b779c0b814610a7d578063b88d4fde14610a9c578063c1612d4114610abb578063c45ac05014610ada575f80fd5b80639852595c1161019f578063a2e696131161016f578063a2e69613146109f8578063a3f8eace14610a17578063ac5ae11b14610a36578063ad3e31b714610a49578063b460c3be14610a68575f80fd5b80639852595c146109715780639b6860c8146109a5578063a0bcfc7f146109ba578063a22cb465146109d9575f80fd5b80638da5cb5b116101e55780638da5cb5b146108d65780638e2d4bfd146108f25780638eb478a614610907578063952aeab81461093257806395d89b411461095d575f80fd5b8063791a2519146108645780637cb1af6a14610883578063828122ab146108a25780638b83209b146108b7575f80fd5b80633a98ef39116103175780635be7fde8116102a15780636bc609f9116102715780636bc609f9146107e95780636c0360eb1461080857806370a082311461081c578063715018a61461083b578063734c66bd1461084f575f80fd5b80635be7fde81461078c5780635dcf7bda146107a05780636352211e146107b557806364affb40146107d4575f80fd5b80634b11faaf116102e75780634b11faaf146107135780634d32615814610726578063525f8a5c1461073957806354238a671461075857806355cf59121461076d575f80fd5b80633a98ef391461067d578063406072a91461069157806342842e0e146106d557806348b75044146106f4575f80fd5b80630f9a4ac91161039857806323b872dd1161036857806323b872dd146105d75780632a55205a146105f65780632f50bfc81461063457806332cb6b0c1461065357806334bb95dc14610668575f80fd5b80630f9a4ac914610579578063191655871461058e5780631b8254ae146105ad5780631cbaee2d146105c2575f80fd5b806306fdde03116103d357806306fdde03146104e35780630805943914610504578063081812fc14610523578063095ea7b31461055a575f80fd5b806301d96c541461044c57806301ffc9a7146104745780630232fc17146104a357806302fa7c47146104c4575f80fd5b366104485760405162461bcd60e51b815260206004820152601060248201526f13db9b1e481a59881e5bdd481b5a5b9d60821b60448201526064015b60405180910390fd5b5f80fd5b348015610457575f80fd5b5061046160125481565b6040519081526020015b60405180910390f35b34801561047f575f80fd5b5061049361048e3660046127f0565b610cbf565b604051901515815260200161046b565b3480156104ae575f80fd5b506104c26104bd36600461280b565b610d10565b005b3480156104cf575f80fd5b506104c26104de366004612836565b610d1d565b3480156104ee575f80fd5b506104f7610d54565b60405161046b91906128c5565b34801561050f575f80fd5b506104c261051e36600461280b565b610de4565b34801561052e575f80fd5b5061054261053d36600461280b565b610df1565b6040516001600160a01b03909116815260200161046b565b348015610565575f80fd5b506104c26105743660046128d7565b610e18565b348015610584575f80fd5b50610461601e5481565b348015610599575f80fd5b506104c26105a8366004612901565b610e27565b3480156105b8575f80fd5b5061046160155481565b3480156105cd575f80fd5b50610461601d5481565b3480156105e2575f80fd5b506104c26105f136600461291c565b610f09565b348015610601575f80fd5b5061061561061036600461295a565b610f92565b604080516001600160a01b03909316835260208301919091520161046b565b34801561063f575f80fd5b506104c261064e3660046128d7565b610fbd565b34801561065e575f80fd5b5061046160105481565b348015610673575f80fd5b5061046160195481565b348015610688575f80fd5b50600754610461565b34801561069c575f80fd5b506104616106ab36600461297a565b6001600160a01b039182165f908152600d6020908152604080832093909416825291909152205490565b3480156106e0575f80fd5b506104c26106ef36600461291c565b611035565b3480156106ff575f80fd5b506104c261070e36600461297a565b61104f565b6104c26107213660046129a6565b61115b565b6104c26107343660046129a6565b6113a4565b348015610744575f80fd5b506104c261075336600461280b565b6115ba565b348015610763575f80fd5b5061046160165481565b348015610778575f80fd5b506104c261078736600461280b565b6115c7565b348015610797575f80fd5b506104c26115d4565b3480156107ab575f80fd5b50610461601f5481565b3480156107c0575f80fd5b506105426107cf36600461280b565b6115ff565b3480156107df575f80fd5b5061046160175481565b3480156107f4575f80fd5b506104c261080336600461280b565b611609565b348015610813575f80fd5b506104f7611616565b348015610827575f80fd5b50610461610836366004612901565b6116a2565b348015610846575f80fd5b506104c26116e7565b34801561085a575f80fd5b50610461601b5481565b34801561086f575f80fd5b506104c261087e36600461280b565b6116fa565b34801561088e575f80fd5b506104c261089d36600461280b565b611707565b3480156108ad575f80fd5b5061046160185481565b3480156108c2575f80fd5b506105426108d136600461280b565b611714565b3480156108e1575f80fd5b505f546001600160a01b0316610542565b3480156108fd575f80fd5b5061046160115481565b348015610912575f80fd5b50610461610921366004612901565b60216020525f908152604090205481565b34801561093d575f80fd5b5061046161094c366004612901565b60226020525f908152604090205481565b348015610968575f80fd5b506104f7611742565b34801561097c575f80fd5b5061046161098b366004612901565b6001600160a01b03165f908152600a602052604090205490565b3480156109b0575f80fd5b50610461601c5481565b3480156109c5575f80fd5b506104c26109d4366004612ab2565b611751565b3480156109e4575f80fd5b506104c26109f3366004612b04565b611765565b348015610a03575f80fd5b50610461610a1236600461280b565b611770565b348015610a22575f80fd5b50610461610a31366004612901565b611794565b6104c2610a443660046128d7565b6117da565b348015610a54575f80fd5b506104c2610a6336600461280b565b6119d2565b348015610a73575f80fd5b5061046160145481565b348015610a88575f80fd5b506104c2610a9736600461280b565b6119df565b348015610aa7575f80fd5b506104c2610ab6366004612b30565b6119ec565b348015610ac6575f80fd5b506104c2610ad536600461280b565b611a03565b348015610ae5575f80fd5b50610461610af436600461297a565b611a10565b348015610b04575f80fd5b506104c2610b1336600461280b565b611ad7565b348015610b23575f80fd5b506104f7610b3236600461280b565b611b35565b348015610b42575f80fd5b50600f54610b509060ff1681565b60405161046b9190612bbf565b348015610b68575f80fd5b50610461610b77366004612901565b6001600160a01b03165f9081526009602052604090205490565b348015610b9c575f80fd5b506104c2610bab3660046128d7565b611be1565b348015610bbb575f80fd5b5061046160205481565b348015610bd0575f80fd5b50610461610bdf366004612901565b6001600160a01b03165f908152600c602052604090205490565b348015610c04575f80fd5b50600854610461565b348015610c18575f80fd5b50610461610c27366004612901565b60236020525f908152604090205481565b348015610c43575f80fd5b50610493610c5236600461297a565b611c4b565b348015610c62575f80fd5b5061046160135481565b348015610c77575f80fd5b506104c2610c86366004612901565b611c78565b348015610c96575f80fd5b50610461601a5481565b348015610cab575f80fd5b506104c2610cba36600461280b565b611cb2565b5f6001600160e01b031982166380ac58cd60e01b1480610cef57506001600160e01b03198216635b5e139f60e01b145b80610d0a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b610d18611cef565b601955565b610d25611cef565b6001600160601b03166001600160a01b03909116600160601b026bffffffffffffffffffffffff191617602555565b606060018054610d6390612be5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8f90612be5565b8015610dda5780601f10610db157610100808354040283529160200191610dda565b820191905f5260205f20905b815481529060010190602001808311610dbd57829003601f168201915b5050505050905090565b610dec611cef565b601b55565b5f610dfb82611d1b565b505f828152600560205260409020546001600160a01b0316610d0a565b610e23828233611d53565b5050565b6001600160a01b0381165f90815260096020526040902054610e5b5760405162461bcd60e51b815260040161043f90612c1d565b5f610e6582611794565b9050805f03610e865760405162461bcd60e51b815260040161043f90612c63565b8060085f828254610e979190612cc2565b90915550506001600160a01b0382165f908152600a60205260409020805482019055610ec38282611d60565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6001600160a01b038216610f3257604051633250574960e11b81525f600482015260240161043f565b5f610f3e838333611df3565b9050836001600160a01b0316816001600160a01b031614610f8c576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161043f565b50505050565b6025545f908190600160601b90046001600160a01b0316610fb284611770565b915091509250929050565b610fc5611cef565b601254600182601654610fd89190612cc2565b610fe29190612cd5565b11156110005760405162461bcd60e51b815260040161043f90612ce8565b5f5b818110156110305760168054611028918591905f61101f83612d1f565b91905055611ee5565b600101611002565b505050565b61103083838360405180602001604052805f8152506119ec565b6001600160a01b0381165f908152600960205260409020546110835760405162461bcd60e51b815260040161043f90612c1d565b5f61108e8383611a10565b9050805f036110af5760405162461bcd60e51b815260040161043f90612c63565b6001600160a01b0383165f908152600c6020526040812080548392906110d6908490612cc2565b90915550506001600160a01b038084165f908152600d60209081526040808320938616835292905220805482019055611110838383611efe565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b6001600f5460ff16600181111561117457611174612bab565b146111b35760405162461bcd60e51b815260206004820152600f60248201526e14d85b19481a5cc81cdd1bdc1c1959608a1b604482015260640161043f565b601e5442116112045760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f742061637469766174656400604482015260640161043f565b61120f848383611f50565b61124d5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161043f565b6018546001600160a01b0385165f90815260226020526040902054611273908590612cc2565b11156112915760405162461bcd60e51b815260040161043f90612d37565b6014546001846016546112a49190612cc2565b6112ae9190612cd5565b11156112f85760405162461bcd60e51b815260206004820152601960248201527845786365656465642070616964206d696e7420737570706c7960381b604482015260640161043f565b82601b546113069190612d6e565b3410156113495760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b604482015260640161043f565b6001600160a01b0384165f9081526022602052604081208054859290611370908490612cc2565b909155505f90505b8381101561139d5760168054611395918791905f61101f83612d1f565b600101611378565b5050505050565b6001600f5460ff1660018111156113bd576113bd612bab565b146113fc5760405162461bcd60e51b815260206004820152600f60248201526e14d85b19481a5cc81cdd1bdc1c1959608a1b604482015260640161043f565b601f54421161144d5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f742061637469766174656400604482015260640161043f565b611458848383611f50565b6114965760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161043f565b6019546001600160a01b0385165f908152602360205260409020546114bc908590612cc2565b11156114da5760405162461bcd60e51b815260040161043f90612d37565b6012546001846015546114ed9190612cc2565b6114f79190612cd5565b11156115155760405162461bcd60e51b815260040161043f90612ce8565b82601a546115239190612d6e565b3410156115665760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b604482015260640161043f565b6001600160a01b0384165f908152602360205260408120805485929061158d908490612cc2565b909155505f90505b8381101561139d57601580546115b2918791905f61101f83612d1f565b600101611595565b6115c2611cef565b601d55565b6115cf611cef565b601755565b6115dc611cef565b5f5b6024548110156115fc576115f46105a882611714565b6001016115de565b50565b5f610d0a82611d1b565b611611611cef565b601a55565b600e805461162390612be5565b80601f016020809104026020016040519081016040528092919081815260200182805461164f90612be5565b801561169a5780601f106116715761010080835404028352916020019161169a565b820191905f5260205f20905b81548152906001019060200180831161167d57829003601f168201915b505050505081565b5f6001600160a01b0382166116cc576040516322718ad960e21b81525f600482015260240161043f565b506001600160a01b03165f9081526004602052604090205490565b6116ef611cef565b6116f85f611fce565b565b611702611cef565b601c55565b61170f611cef565b601e55565b5f600b828154811061172857611728612d85565b5f918252602090912001546001600160a01b031692915050565b606060028054610d6390612be5565b611759611cef565b600e610e238282612ddd565b610e2333838361201d565b6025545f906001600160601b031661178a61271084612e9d565b610d0a9190612d6e565b5f8061179f60085490565b6117a99047612cc2565b90506117d383826117ce866001600160a01b03165f908152600a602052604090205490565b6120bb565b9392505050565b6001600f5460ff1660018111156117f3576117f3612bab565b146118325760405162461bcd60e51b815260206004820152600f60248201526e14d85b19481a5cc81cdd1bdc195959608a1b604482015260640161043f565b601d5442116118835760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f742061637469766174656400000000604482015260640161043f565b6014546001826016546118969190612cc2565b6118a09190612cd5565b11156118ea5760405162461bcd60e51b815260206004820152601960248201527845786365656465642070616964206d696e7420737570706c7960381b604482015260640161043f565b6017546001600160a01b0383165f90815260216020526040902054611910908390612cc2565b111561192e5760405162461bcd60e51b815260040161043f90612d37565b80601c5461193c9190612d6e565b34101561197e5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b604482015260640161043f565b6001600160a01b0382165f90815260216020526040812080548392906119a5908490612cc2565b909155505f90505b8181101561103057601680546119ca918591905f61101f83612d1f565b6001016119ad565b6119da611cef565b602055565b6119e7611cef565b601f55565b6119f7848484610f09565b610f8c848484846120f8565b611a0b611cef565b601855565b6001600160a01b0382165f908152600c602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611a6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a909190612ebc565b611a9a9190612cc2565b6001600160a01b038086165f908152600d6020908152604080832093881683529290522054909150611acf90849083906120bb565b949350505050565b611adf611cef565b6010548110611b305760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420696e63726561736520737570706c7921000000000000000000604482015260640161043f565b601055565b60605f611b41836115ff565b6001600160a01b031603611baf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161043f565b600e611bba83612217565b604051602001611bcb929190612ed3565b6040516020818303038152906040529050919050565b611be9611cef565b601254600182601554611bfc9190612cc2565b611c069190612cd5565b1115611c245760405162461bcd60e51b815260040161043f90612ce8565b5f5b818110156110305760158054611c43918591905f61101f83612d1f565b600101611c26565b6001600160a01b039182165f90815260066020908152604080832093909416825291909152205460ff1690565b611c80611cef565b6001600160a01b038116611ca957604051631e4fbdf760e01b81525f600482015260240161043f565b6115fc81611fce565b611cba611cef565b806001811115611ccc57611ccc612bab565b600f805460ff191660018381811115611ce757611ce7612bab565b021790555050565b5f546001600160a01b031633146116f85760405163118cdaa760e01b815233600482015260240161043f565b5f818152600360205260408120546001600160a01b031680610d0a57604051637e27328960e01b81526004810184905260240161043f565b61103083838360016122a7565b80471015611d835760405163cd78605960e01b815230600482015260240161043f565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611dcc576040519150601f19603f3d011682016040523d82523d5f602084013e611dd1565b606091505b505090508061103057604051630a12f52160e11b815260040160405180910390fd5b5f828152600360205260408120546001600160a01b0390811690831615611e1f57611e1f8184866123ab565b6001600160a01b03811615611e5957611e3a5f855f806122a7565b6001600160a01b0381165f90815260046020526040902080545f190190555b6001600160a01b03851615611e87576001600160a01b0385165f908152600460205260409020805460010190555b5f8481526003602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b610e23828260405180602001604052805f81525061240f565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611030908490612425565b5f611acf611f96856040516bffffffffffffffffffffffff19606083901b1660208201525f90603401604051602081830303815290604052805190602001209050919050565b8484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525061248692505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821661204f57604051630b61174360e31b81526001600160a01b038316600482015260240161043f565b6001600160a01b038381165f81815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6007546001600160a01b0384165f90815260096020526040812054909183916120e49086612d6e565b6120ee9190612e9d565b611acf9190612cd5565b6001600160a01b0383163b15610f8c57604051630a85bd0160e11b81526001600160a01b0384169063150b7a029061213a903390889087908790600401612f66565b6020604051808303815f875af1925050508015612174575060408051601f3d908101601f1916820190925261217191810190612f98565b60015b6121db573d8080156121a1576040519150601f19603f3d011682016040523d82523d5f602084013e6121a6565b606091505b5080515f036121d357604051633250574960e11b81526001600160a01b038516600482015260240161043f565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461139d57604051633250574960e11b81526001600160a01b038516600482015260240161043f565b60605f61222383612494565b60010190505f8167ffffffffffffffff81111561224257612242612a2b565b6040519080825280601f01601f19166020018201604052801561226c576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461227657509392505050565b80806122bb57506001600160a01b03821615155b1561237c575f6122ca84611d1b565b90506001600160a01b038316158015906122f65750826001600160a01b0316816001600160a01b031614155b801561230957506123078184611c4b565b155b156123325760405163a9fbf51f60e01b81526001600160a01b038416600482015260240161043f565b811561237a5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260056020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6123b683838361256b565b611030576001600160a01b0383166123e457604051637e27328960e01b81526004810182905260240161043f565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161043f565b61241983836125cc565b6110305f8484846120f8565b5f6124396001600160a01b0384168361262d565b905080515f1415801561245d57508080602001905181019061245b9190612fb3565b155b1561103057604051635274afe760e01b81526001600160a01b038416600482015260240161043f565b5f6117d3826020548561263a565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106124d25772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106124fe576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061251c57662386f26fc10000830492506010015b6305f5e1008310612534576305f5e100830492506008015b612710831061254857612710830492506004015b6064831061255a576064830492506002015b600a8310610d0a5760010192915050565b5f6001600160a01b03831615801590611acf5750826001600160a01b0316846001600160a01b031614806125a457506125a48484611c4b565b80611acf5750505f908152600560205260409020546001600160a01b03908116911614919050565b6001600160a01b0382166125f557604051633250574960e11b81525f600482015260240161043f565b5f61260183835f611df3565b90506001600160a01b03811615611030576040516339e3563760e11b81525f600482015260240161043f565b60606117d383835f61264f565b5f8261264685846126e8565b14949350505050565b6060814710156126745760405163cd78605960e01b815230600482015260240161043f565b5f80856001600160a01b0316848660405161268f9190612fce565b5f6040518083038185875af1925050503d805f81146126c9576040519150601f19603f3d011682016040523d82523d5f602084013e6126ce565b606091505b50915091506126de86838361272a565b9695505050505050565b5f81815b8451811015612722576127188286838151811061270b5761270b612d85565b6020026020010151612786565b91506001016126ec565b509392505050565b60608261273f5761273a826127b2565b6117d3565b815115801561275657506001600160a01b0384163b155b1561277f57604051639996b31560e01b81526001600160a01b038516600482015260240161043f565b50806117d3565b5f8183106127a0575f8281526020849052604090206117d3565b5f8381526020839052604090206117d3565b8051156127c25780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b0319811681146115fc575f80fd5b5f60208284031215612800575f80fd5b81356117d3816127db565b5f6020828403121561281b575f80fd5b5035919050565b6001600160a01b03811681146115fc575f80fd5b5f8060408385031215612847575f80fd5b823561285281612822565b915060208301356001600160601b038116811461286d575f80fd5b809150509250929050565b5f5b8381101561289257818101518382015260200161287a565b50505f910152565b5f81518084526128b1816020860160208601612878565b601f01601f19169290920160200192915050565b602081525f6117d3602083018461289a565b5f80604083850312156128e8575f80fd5b82356128f381612822565b946020939093013593505050565b5f60208284031215612911575f80fd5b81356117d381612822565b5f805f6060848603121561292e575f80fd5b833561293981612822565b9250602084013561294981612822565b929592945050506040919091013590565b5f806040838503121561296b575f80fd5b50508035926020909101359150565b5f806040838503121561298b575f80fd5b823561299681612822565b9150602083013561286d81612822565b5f805f80606085870312156129b9575f80fd5b84356129c481612822565b935060208501359250604085013567ffffffffffffffff808211156129e7575f80fd5b818701915087601f8301126129fa575f80fd5b813581811115612a08575f80fd5b8860208260051b8501011115612a1c575f80fd5b95989497505060200194505050565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115612a5957612a59612a2b565b604051601f8501601f19908116603f01168101908282118183101715612a8157612a81612a2b565b81604052809350858152868686011115612a99575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215612ac2575f80fd5b813567ffffffffffffffff811115612ad8575f80fd5b8201601f81018413612ae8575f80fd5b611acf84823560208401612a3f565b80151581146115fc575f80fd5b5f8060408385031215612b15575f80fd5b8235612b2081612822565b9150602083013561286d81612af7565b5f805f8060808587031215612b43575f80fd5b8435612b4e81612822565b93506020850135612b5e81612822565b925060408501359150606085013567ffffffffffffffff811115612b80575f80fd5b8501601f81018713612b90575f80fd5b612b9f87823560208401612a3f565b91505092959194509250565b634e487b7160e01b5f52602160045260245ffd5b6020810160028310612bdf57634e487b7160e01b5f52602160045260245ffd5b91905290565b600181811c90821680612bf957607f821691505b602082108103612c1757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610d0a57610d0a612cae565b81810381811115610d0a57610d0a612cae565b60208082526019908201527f45786365656465642066726565206d696e7420737570706c7900000000000000604082015260600190565b5f60018201612d3057612d30612cae565b5060010190565b6020808252601c908201527f4d6178207065722077616c6c6574206c696d6974207265616368656400000000604082015260600190565b8082028115828204841417610d0a57610d0a612cae565b634e487b7160e01b5f52603260045260245ffd5b601f82111561103057805f5260205f20601f840160051c81016020851015612dbe5750805b601f840160051c820191505b8181101561139d575f8155600101612dca565b815167ffffffffffffffff811115612df757612df7612a2b565b612e0b81612e058454612be5565b84612d99565b602080601f831160018114612e3e575f8415612e275750858301515b5f19600386901b1c1916600185901b178555612e95565b5f85815260208120601f198616915b82811015612e6c57888601518255948401946001909101908401612e4d565b5085821015612e8957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f82612eb757634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612ecc575f80fd5b5051919050565b5f808454612ee081612be5565b60018281168015612ef85760018114612f0d57612f39565b60ff1984168752821515830287019450612f39565b885f526020805f205f5b85811015612f305781548a820152908401908201612f17565b50505082870194505b505050508351612f4d818360208801612878565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906126de9083018461289a565b5f60208284031215612fa8575f80fd5b81516117d3816127db565b5f60208284031215612fc3575f80fd5b81516117d381612af7565b5f8251612fdf818460208701612878565b919091019291505056fea26469706673582212200d84e87346d6c321fb33605a00c47a096f46451be7d864cded7789a936d7067664736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000a17a9ec3d10b3209d8f7df2e094043cc4ff99160000000000000000000000000782e23ec139b146873139193493f8f2288a1de700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000782e23ec139b146873139193493f8f2288a1de7000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963756f677771616e366a62376a64616c6c6733336b7779736874737a706873746d706777696c66777871637068656b7761676e712f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _royaltyFeesInBips (uint96): 1000
Arg [1] : _team (address[]): 0x0782e23eC139b146873139193493F8F2288A1DE7
Arg [2] : _teamShares (uint256[]): 100
Arg [3] : _baseURI (string): ipfs://bafybeicuogwqan6jb7jdallg33kwyshtszphstmpgwilfwxqcphekwagnq/
Arg [4] : _initialOwner (address): 0x0a17A9EC3d10B3209d8f7dF2e094043cC4Ff9916
Arg [5] : _fundsReceiver (address): 0x0782e23eC139b146873139193493F8F2288A1DE7
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000a17a9ec3d10b3209d8f7df2e094043cc4ff9916
Arg [5] : 0000000000000000000000000782e23ec139b146873139193493f8f2288a1de7
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000782e23ec139b146873139193493f8f2288a1de7
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [11] : 697066733a2f2f6261667962656963756f677771616e366a62376a64616c6c67
Arg [12] : 33336b7779736874737a706873746d706777696c66777871637068656b776167
Arg [13] : 6e712f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
100851:8092:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108904:26;;-1:-1:-1;;;108904:26:0;;216:2:1;108904:26:0;;;198:21:1;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:46;330:18;;108904:26:0;;;;;;;;100851:8092;;;;101145:34;;;;;;;;;;;;;;;;;;;505:25:1;;;493:2;478:18;101145:34:0;;;;;;;;66897:305;;;;;;;;;;-1:-1:-1;66897:305:0;;;;;:::i;:::-;;:::i;:::-;;;1092:14:1;;1085:22;1067:41;;1055:2;1040:18;66897:305:0;927:187:1;105937:136:0;;;;;;;;;;-1:-1:-1;105937:136:0;;;;;:::i;:::-;;:::i;:::-;;108489:183;;;;;;;;;;-1:-1:-1;108489:183:0;;;;;:::i;:::-;;:::i;67728:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;106233:107::-;;;;;;;;;;-1:-1:-1;106233:107:0;;;;;:::i;:::-;;:::i;68900:158::-;;;;;;;;;;-1:-1:-1;68900:158:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2800:32:1;;;2782:51;;2770:2;2755:18;68900:158:0;2636:203:1;68719:115:0;;;;;;;;;;-1:-1:-1;68719:115:0;;;;;:::i;:::-;;:::i;101704:43::-;;;;;;;;;;;;;;;;89364:671;;;;;;;;;;-1:-1:-1;89364:671:0;;;;;:::i;:::-;;:::i;101270:50::-;;;;;;;;;;;;;;;;101656:41;;;;;;;;;;;;;;;;69569:588;;;;;;;;;;-1:-1:-1;69569:588:0;;;;;:::i;:::-;;:::i;108091:242::-;;;;;;;;;;-1:-1:-1;108091:242:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4330:32:1;;;4312:51;;4394:2;4379:18;;4372:34;;;;4285:18;108091:242:0;4138:274:1;105037:284:0;;;;;;;;;;-1:-1:-1;105037:284:0;;;;;:::i;:::-;;:::i;101064:31::-;;;;;;;;;;;;;;;;101472:35;;;;;;;;;;;;;;;;86974:91;;;;;;;;;;-1:-1:-1;87045:12:0;;86974:91;;88103:135;;;;;;;;;;-1:-1:-1;88103:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;88200:21:0;;;88173:7;88200:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;88103:135;70228:134;;;;;;;;;;-1:-1:-1;70228:134:0;;;;;:::i;:::-;;:::i;90303:792::-;;;;;;;;;;-1:-1:-1;90303:792:0;;;;;:::i;:::-;;:::i;102718:791::-;;;;;;:::i;:::-;;:::i;104232:797::-;;;;;;:::i;:::-;;:::i;106810:110::-;;;;;;;;;;-1:-1:-1;106810:110:0;;;;;:::i;:::-;;:::i;101327:50::-;;;;;;;;;;;;;;;;106081:144;;;;;;;;;;-1:-1:-1;106081:144:0;;;;;:::i;:::-;;:::i;108698:151::-;;;;;;;;;;;;;:::i;101754:45::-;;;;;;;;;;;;;;;;67541:120;;;;;;;;;;-1:-1:-1;67541:120:0;;;;;:::i;:::-;;:::i;101386:38::-;;;;;;;;;;;;;;;;106348:115;;;;;;;;;;-1:-1:-1;106348:115:0;;;;;:::i;:::-;;:::i;101002:21::-;;;;;;;;;;;;;:::i;67266:213::-;;;;;;;;;;-1:-1:-1;67266:213:0;;;;;:::i;:::-;;:::i;94538:103::-;;;;;;;;;;;;;:::i;101560:38::-;;;;;;;;;;;;;;;;106471:123;;;;;;;;;;-1:-1:-1;106471:123:0;;;;;:::i;:::-;;:::i;106928:118::-;;;;;;;;;;-1:-1:-1;106928:118:0;;;;;:::i;:::-;;:::i;101431:34::-;;;;;;;;;;;;;;;;88329:100;;;;;;;;;;-1:-1:-1;88329:100:0;;;;;:::i;:::-;;:::i;93863:87::-;;;;;;;;;;-1:-1:-1;93909:7:0;93936:6;-1:-1:-1;;;;;93936:6:0;93863:87;;101102:36;;;;;;;;;;;;;;;;101844:57;;;;;;;;;;-1:-1:-1;101844:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;101908:53;;;;;;;;;;-1:-1:-1;101908:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;67888:95;;;;;;;;;;;;;:::i;87825:109::-;;;;;;;;;;-1:-1:-1;87825:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;87908:18:0;87881:7;87908:18;;;:9;:18;;;;;;;87825:109;101605:42;;;;;;;;;;;;;;;;106602:100;;;;;;;;;;-1:-1:-1;106602:100:0;;;;;:::i;:::-;;:::i;69130:146::-;;;;;;;;;;-1:-1:-1;69130:146:0;;;;;:::i;:::-;;:::i;108341:140::-;;;;;;;;;;-1:-1:-1;108341:140:0;;;;;:::i;:::-;;:::i;88519:225::-;;;;;;;;;;-1:-1:-1;88519:225:0;;;;;:::i;:::-;;:::i;103517:706::-;;;;;;:::i;:::-;;:::i;107504:114::-;;;;;;;;;;-1:-1:-1;107504:114:0;;;;;:::i;:::-;;:::i;101227:34::-;;;;;;;;;;;;;;;;107054:134;;;;;;;;;;-1:-1:-1;107054:134:0;;;;;:::i;:::-;;:::i;70433:211::-;;;;;;;;;;-1:-1:-1;70433:211:0;;;;;:::i;:::-;;:::i;105801:128::-;;;;;;;;;;-1:-1:-1;105801:128:0;;;;;:::i;:::-;;:::i;88904:260::-;;;;;;;;;;-1:-1:-1;88904:260:0;;;;;:::i;:::-;;:::i;105621:172::-;;;;;;;;;;-1:-1:-1;105621:172:0;;;;;:::i;:::-;;:::i;107198:281::-;;;;;;;;;;-1:-1:-1;107198:281:0;;;;;:::i;:::-;;:::i;101032:23::-;;;;;;;;;;-1:-1:-1;101032:23:0;;;;;;;;;;;;;;;:::i;87621:105::-;;;;;;;;;;-1:-1:-1;87621:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;87702:16:0;87675:7;87702:16;;;:7;:16;;;;;;;87621:105;105329:284;;;;;;;;;;-1:-1:-1;105329:284:0;;;;;:::i;:::-;;:::i;101808:27::-;;;;;;;;;;;;;;;;87411:119;;;;;;;;;;-1:-1:-1;87411:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;87496:26:0;87469:7;87496:26;;;:19;:26;;;;;;;87411:119;87159:95;;;;;;;;;;-1:-1:-1;87232:14:0;;87159:95;;101968:55;;;;;;;;;;-1:-1:-1;101968:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;69347:155;;;;;;;;;;-1:-1:-1;69347:155:0;;;;;:::i;:::-;;:::i;101186:34::-;;;;;;;;;;;;;;;;94796:220;;;;;;;;;;-1:-1:-1;94796:220:0;;;;;:::i;:::-;;:::i;101518:35::-;;;;;;;;;;;;;;;;106710:92;;;;;;;;;;-1:-1:-1;106710:92:0;;;;;:::i;:::-;;:::i;66897:305::-;66999:4;-1:-1:-1;;;;;;67036:40:0;;-1:-1:-1;;;67036:40:0;;:105;;-1:-1:-1;;;;;;;67093:48:0;;-1:-1:-1;;;67093:48:0;67036:105;:158;;;-1:-1:-1;;;;;;;;;;9607:40:0;;;67158:36;67016:178;66897:305;-1:-1:-1;;66897:305:0:o;105937:136::-;93749:13;:11;:13::i;:::-;106023:19:::1;:42:::0;105937:136::o;108489:183::-;93749:13;:11;:13::i;:::-;-1:-1:-1;;;;;108626:38:0::1;-1:-1:-1::0;;;;;108588:27:0;;::::1;-1:-1:-1::0;;;108588:27:0::1;-1:-1:-1::0;;108626:38:0;::::1;108588:15;108626:38:::0;108489:183::o;67728:91::-;67773:13;67806:5;67799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67728:91;:::o;106233:107::-;93749:13;:11;:13::i;:::-;106306:11:::1;:26:::0;106233:107::o;68900:158::-;68967:7;68987:22;69001:7;68987:13;:22::i;:::-;-1:-1:-1;71476:7:0;71503:24;;;:15;:24;;;;;;-1:-1:-1;;;;;71503:24:0;69029:21;71406:129;68719:115;68791:35;68800:2;68804:7;65410:10;68791:8;:35::i;:::-;68719:115;;:::o;89364:671::-;-1:-1:-1;;;;;89440:16:0;;89459:1;89440:16;;;:7;:16;;;;;;89432:71;;;;-1:-1:-1;;;89432:71:0;;;;;;;:::i;:::-;89516:15;89534:19;89545:7;89534:10;:19::i;:::-;89516:37;;89574:7;89585:1;89574:12;89566:68;;;;-1:-1:-1;;;89566:68:0;;;;;;;:::i;:::-;89847:7;89829:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;89890:18:0;;;;;;:9;:18;;;;;:29;;;;;;89943:35;89900:7;89912;89943:17;:35::i;:::-;89994:33;;;-1:-1:-1;;;;;4330:32:1;;4312:51;;4394:2;4379:18;;4372:34;;;89994:33:0;;4285:18:1;89994:33:0;;;;;;;89421:614;89364:671;:::o;69569:588::-;-1:-1:-1;;;;;69664:16:0;;69660:89;;69704:33;;-1:-1:-1;;;69704:33:0;;69734:1;69704:33;;;2782:51:1;2755:18;;69704:33:0;2636:203:1;69660:89:0;69970:21;69994:34;70002:2;70006:7;65410:10;69994:7;:34::i;:::-;69970:58;;70060:4;-1:-1:-1;;;;;70043:21:0;:13;-1:-1:-1;;;;;70043:21:0;;70039:111;;70088:50;;-1:-1:-1;;;70088:50:0;;-1:-1:-1;;;;;11947:15:1;;;70088:50:0;;;11929:34:1;11979:18;;;11972:34;;;12042:15;;12022:18;;;12015:43;11864:18;;70088:50:0;11689:375:1;70039:111:0;69649:508;69569:588;;;:::o;108091:242::-;108278:15;;108202:16;;;;-1:-1:-1;;;108278:15:0;;-1:-1:-1;;;;;108278:15:0;108295:28;108312:10;108295:16;:28::i;:::-;108270:54;;;;108091:242;;;;;:::o;105037:284::-;93749:13;:11;:13::i;:::-;105159::::1;;105154:1;105142:9;105122:17;;:29;;;;:::i;:::-;:33;;;;:::i;:::-;:50;;105114:88;;;;-1:-1:-1::0;;;105114:88:0::1;;;;;;;:::i;:::-;105217:9;105213:101;105236:9;105232:1;:13;105213:101;;;105282:17;:19:::0;;105267:35:::1;::::0;105277:3;;105282:19;:17:::1;:19;::::0;::::1;:::i;:::-;;;;;105267:9;:35::i;:::-;105247:3;;105213:101;;;;105037:284:::0;;:::o;70228:134::-;70315:39;70332:4;70338:2;70342:7;70315:39;;;;;;;;;;;;:16;:39::i;90303:792::-;-1:-1:-1;;;;;90385:16:0;;90404:1;90385:16;;;:7;:16;;;;;;90377:71;;;;-1:-1:-1;;;90377:71:0;;;;;;;:::i;:::-;90461:15;90479:26;90490:5;90497:7;90479:10;:26::i;:::-;90461:44;;90526:7;90537:1;90526:12;90518:68;;;;-1:-1:-1;;;90518:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;90841:26:0;;;;;;:19;:26;;;;;:37;;90871:7;;90841:26;:37;;90871:7;;90841:37;:::i;:::-;;;;-1:-1:-1;;;;;;;90914:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;:41;;;;;;90979:47;90929:5;90936:7;90948;90979:22;:47::i;:::-;91042:45;;;-1:-1:-1;;;;;4330:32:1;;;4312:51;;4394:2;4379:18;;4372:34;;;91042:45:0;;;;;4285:18:1;91042:45:0;;;;;;;90366:729;90303:792;;:::o;102718:791::-;102854:7;102839:11;;;;;:22;;;;;;;:::i;:::-;;102831:50;;;;-1:-1:-1;;;102831:50:0;;12898:2:1;102831:50:0;;;12880:21:1;12937:2;12917:18;;;12910:30;-1:-1:-1;;;12956:18:1;;;12949:45;13011:18;;102831:50:0;12696:339:1;102831:50:0;102918:15;;102900;:33;102892:77;;;;-1:-1:-1;;;102892:77:0;;13242:2:1;102892:77:0;;;13224:21:1;13281:2;13261:18;;;13254:30;13320:33;13300:18;;;13293:61;13371:18;;102892:77:0;13040:355:1;102892:77:0;102988:31;103002:8;103012:6;;102988:13;:31::i;:::-;102980:59;;;;-1:-1:-1;;;102980:59:0;;13602:2:1;102980:59:0;;;13584:21:1;13641:2;13621:18;;;13614:30;-1:-1:-1;;;13660:18:1;;;13653:45;13715:18;;102980:59:0;13400:339:1;102980:59:0;103105:17;;-1:-1:-1;;;;;103058:31:0;;;;;;:21;:31;;;;;;:43;;103092:9;;103058:43;:::i;:::-;:64;;103050:105;;;;-1:-1:-1;;;103050:105:0;;;;;;;:::i;:::-;103211:13;;103206:1;103194:9;103174:17;;:29;;;;:::i;:::-;:33;;;;:::i;:::-;:50;;103166:88;;;;-1:-1:-1;;;103166:88:0;;14303:2:1;103166:88:0;;;14285:21:1;14342:2;14322:18;;;14315:30;-1:-1:-1;;;14361:18:1;;;14354:55;14426:18;;103166:88:0;14101:349:1;103166:88:0;103300:9;103286:11;;:23;;;;:::i;:::-;103273:9;:36;;103265:66;;;;-1:-1:-1;;;103265:66:0;;14830:2:1;103265:66:0;;;14812:21:1;14869:2;14849:18;;;14842:30;-1:-1:-1;;;14888:18:1;;;14881:47;14945:18;;103265:66:0;14628:341:1;103265:66:0;-1:-1:-1;;;;;103342:31:0;;;;;;:21;:31;;;;;:44;;103377:9;;103342:31;:44;;103377:9;;103342:44;:::i;:::-;;;;-1:-1:-1;103400:9:0;;-1:-1:-1;103396:106:0;103419:9;103415:1;:13;103396:106;;;103470:17;:19;;103450:40;;103460:8;;103470:19;:17;:19;;;:::i;103450:40::-;103430:3;;103396:106;;;;102718:791;;;;:::o;104232:797::-;104363:7;104348:11;;;;;:22;;;;;;;:::i;:::-;;104340:50;;;;-1:-1:-1;;;104340:50:0;;12898:2:1;104340:50:0;;;12880:21:1;12937:2;12917:18;;;12910:30;-1:-1:-1;;;12956:18:1;;;12949:45;13011:18;;104340:50:0;12696:339:1;104340:50:0;104427:17;;104409:15;:35;104401:79;;;;-1:-1:-1;;;104401:79:0;;13242:2:1;104401:79:0;;;13224:21:1;13281:2;13261:18;;;13254:30;13320:33;13300:18;;;13293:61;13371:18;;104401:79:0;13040:355:1;104401:79:0;104499:31;104513:8;104523:6;;104499:13;:31::i;:::-;104491:59;;;;-1:-1:-1;;;104491:59:0;;13602:2:1;104491:59:0;;;13584:21:1;13641:2;13621:18;;;13614:30;-1:-1:-1;;;13660:18:1;;;13653:45;13715:18;;104491:59:0;13400:339:1;104491:59:0;104618:19;;-1:-1:-1;;;;;104569:33:0;;;;;;:23;:33;;;;;;:45;;104605:9;;104569:45;:::i;:::-;:68;;104561:109;;;;-1:-1:-1;;;104561:109:0;;;;;;;:::i;:::-;104726:13;;104721:1;104709:9;104689:17;;:29;;;;:::i;:::-;:33;;;;:::i;:::-;:50;;104681:88;;;;-1:-1:-1;;;104681:88:0;;;;;;;:::i;:::-;104817:9;104801:13;;:25;;;;:::i;:::-;104788:9;:38;;104780:68;;;;-1:-1:-1;;;104780:68:0;;14830:2:1;104780:68:0;;;14812:21:1;14869:2;14849:18;;;14842:30;-1:-1:-1;;;14888:18:1;;;14881:47;14945:18;;104780:68:0;14628:341:1;104780:68:0;-1:-1:-1;;;;;104859:33:0;;;;;;:23;:33;;;;;:46;;104896:9;;104859:33;:46;;104896:9;;104859:46;:::i;:::-;;;;-1:-1:-1;104920:9:0;;-1:-1:-1;104916:106:0;104939:9;104935:1;:13;104916:106;;;104990:17;:19;;104970:40;;104980:8;;104990:19;:17;:19;;;:::i;104970:40::-;104950:3;;104916:106;;106810:110;93749:13;:11;:13::i;:::-;106886::::1;:26:::0;106810:110::o;106081:144::-;93749:13;:11;:13::i;:::-;106171:21:::1;:46:::0;106081:144::o;108698:151::-;93749:13;:11;:13::i;:::-;108754:6:::1;108750:92;108771:10;;108767:1;:14;108750:92;;;108804:26;108820:8;108826:1;108820:5;:8::i;108804:26::-;108784:3;;108750:92;;;;108698:151::o:0;67541:120::-;67604:7;67631:22;67645:7;67631:13;:22::i;106348:115::-;93749:13;:11;:13::i;:::-;106425::::1;:30:::0;106348:115::o;101002:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67266:213::-;67329:7;-1:-1:-1;;;;;67353:19:0;;67349:89;;67396:30;;-1:-1:-1;;;67396:30:0;;67423:1;67396:30;;;2782:51:1;2755:18;;67396:30:0;2636:203:1;67349:89:0;-1:-1:-1;;;;;;67455:16:0;;;;;:9;:16;;;;;;;67266:213::o;94538:103::-;93749:13;:11;:13::i;:::-;94603:30:::1;94630:1;94603:18;:30::i;:::-;94538:103::o:0;106471:123::-;93749:13;:11;:13::i;:::-;106552:15:::1;:34:::0;106471:123::o;106928:118::-;93749:13;:11;:13::i;:::-;107008:15:::1;:30:::0;106928:118::o;88329:100::-;88380:7;88407;88415:5;88407:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;88407:14:0;;88329:100;-1:-1:-1;;88329:100:0:o;67888:95::-;67935:13;67968:7;67961:14;;;;;:::i;106602:100::-;93749:13;:11;:13::i;:::-;106676:7:::1;:18;106686:8:::0;106676:7;:18:::1;:::i;69130:146::-:0;69216:52;65410:10;69249:8;69259;69216:18;:52::i;108341:140::-;108456:17;;108408:7;;-1:-1:-1;;;;;108456:17:0;108434:18;108447:5;108434:10;:18;:::i;:::-;108433:40;;;;:::i;88519:225::-;88577:7;88597:21;88645:15;87232:14;;;87159:95;88645:15;88621:39;;:21;:39;:::i;:::-;88597:63;;88678:58;88694:7;88703:13;88718:17;88727:7;-1:-1:-1;;;;;87908:18:0;87881:7;87908:18;;;:9;:18;;;;;;;87825:109;88718:17;88678:15;:58::i;:::-;88671:65;88519:225;-1:-1:-1;;;88519:225:0:o;103517:706::-;103627:7;103612:11;;;;;:22;;;;;;;:::i;:::-;;103604:50;;;;-1:-1:-1;;;103604:50:0;;17832:2:1;103604:50:0;;;17814:21:1;17871:2;17851:18;;;17844:30;-1:-1:-1;;;17890:18:1;;;17883:45;17945:18;;103604:50:0;17630:339:1;103604:50:0;103691:13;;103673:15;:31;103665:72;;;;-1:-1:-1;;;103665:72:0;;18176:2:1;103665:72:0;;;18158:21:1;18215:2;18195:18;;;18188:30;18254;18234:18;;;18227:58;18302:18;;103665:72:0;17974:352:1;103665:72:0;103793:13;;103788:1;103776:9;103756:17;;:29;;;;:::i;:::-;:33;;;;:::i;:::-;:50;;103748:88;;;;-1:-1:-1;;;103748:88:0;;14303:2:1;103748:88:0;;;14285:21:1;14342:2;14322:18;;;14315:30;-1:-1:-1;;;14361:18:1;;;14354:55;14426:18;;103748:88:0;14101:349:1;103748:88:0;103906:21;;-1:-1:-1;;;;;103855:35:0;;;;;;:25;:35;;;;;;:47;;103893:9;;103855:47;:::i;:::-;:72;;103847:113;;;;-1:-1:-1;;;103847:113:0;;;;;;;:::i;:::-;104010:9;103992:15;;:27;;;;:::i;:::-;103979:9;:40;;103971:69;;;;-1:-1:-1;;;103971:69:0;;18533:2:1;103971:69:0;;;18515:21:1;18572:2;18552:18;;;18545:30;-1:-1:-1;;;18591:18:1;;;18584:46;18647:18;;103971:69:0;18331:340:1;103971:69:0;-1:-1:-1;;;;;104051:35:0;;;;;;:25;:35;;;;;:48;;104090:9;;104051:35;:48;;104090:9;;104051:48;:::i;:::-;;;;-1:-1:-1;104114:9:0;;-1:-1:-1;104110:106:0;104133:9;104129:1;:13;104110:106;;;104184:17;:19;;104164:40;;104174:8;;104184:19;:17;:19;;;:::i;104164:40::-;104144:3;;104110:106;;107504:114;93749:13;:11;:13::i;:::-;107582:12:::1;:28:::0;107504:114::o;107054:134::-;93749:13;:11;:13::i;:::-;107142:17:::1;:38:::0;107054:134::o;70433:211::-;70547:31;70560:4;70566:2;70570:7;70547:12;:31::i;:::-;70589:47;70612:4;70618:2;70622:7;70631:4;70589:22;:47::i;105801:128::-;93749:13;:11;:13::i;:::-;105883:17:::1;:38:::0;105801:128::o;88904:260::-;-1:-1:-1;;;;;87496:26:0;;88976:7;87496:26;;;:19;:26;;;;;;88976:7;;89020:30;;-1:-1:-1;;;89020:30:0;;89044:4;89020:30;;;2782:51:1;-1:-1:-1;;;;;89020:15:0;;;;;2755:18:1;;89020:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;88200:21:0;;;88173:7;88200:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;88996:77;;-1:-1:-1;89091:65:0;;89107:7;;88996:77;;88678:15;:58::i;89091:65::-;89084:72;88904:260;-1:-1:-1;;;;88904:260:0:o;105621:172::-;93749:13;:11;:13::i;:::-;105712:10:::1;;105698:11;:24;105690:60;;;::::0;-1:-1:-1;;;105690:60:0;;19067:2:1;105690:60:0::1;::::0;::::1;19049:21:1::0;19106:2;19086:18;;;19079:30;19145:25;19125:18;;;19118:53;19188:18;;105690:60:0::1;18865:347:1::0;105690:60:0::1;105761:10;:24:::0;105621:172::o;107198:281::-;107269:13;107332:1;107303:17;107311:8;107303:7;:17::i;:::-;-1:-1:-1;;;;;107303:31:0;;107295:91;;;;-1:-1:-1;;;107295:91:0;;19419:2:1;107295:91:0;;;19401:21:1;19458:2;19438:18;;;19431:30;19497:34;19477:18;;;19470:62;-1:-1:-1;;;19548:18:1;;;19541:45;19603:19;;107295:91:0;19217:411:1;107295:91:0;107432:7;107441:19;:8;:17;:19::i;:::-;107415:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;107401:70;;107198:281;;;:::o;105329:284::-;93749:13;:11;:13::i;:::-;105451::::1;;105446:1;105434:9;105414:17;;:29;;;;:::i;:::-;:33;;;;:::i;:::-;:50;;105406:88;;;;-1:-1:-1::0;;;105406:88:0::1;;;;;;;:::i;:::-;105509:9;105505:101;105528:9;105524:1;:13;105505:101;;;105574:17;:19:::0;;105559:35:::1;::::0;105569:3;;105574:19;:17:::1;:19;::::0;::::1;:::i;105559:35::-;105539:3;;105505:101;;69347:155:::0;-1:-1:-1;;;;;69459:25:0;;;69435:4;69459:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;69347:155::o;94796:220::-;93749:13;:11;:13::i;:::-;-1:-1:-1;;;;;94881:22:0;::::1;94877:93;;94927:31;::::0;-1:-1:-1;;;94927:31:0;;94955:1:::1;94927:31;::::0;::::1;2782:51:1::0;2755:18;;94927:31:0::1;2636:203:1::0;94877:93:0::1;94980:28;94999:8;94980:18;:28::i;106710:92::-:0;93749:13;:11;:13::i;:::-;106788:5:::1;106783:11;;;;;;;;:::i;:::-;106769;:25:::0;;-1:-1:-1;;106769:25:0::1;::::0;;;;::::1;;;;;;:::i;:::-;;;;;;106710:92:::0;:::o;94028:166::-;93909:7;93936:6;-1:-1:-1;;;;;93936:6:0;65410:10;94088:23;94084:103;;94135:40;;-1:-1:-1;;;94135:40:0;;65410:10;94135:40;;;2782:51:1;2755:18;;94135:40:0;2636:203:1;81875:247:0;81938:7;71261:16;;;:7;:16;;;;;;-1:-1:-1;;;;;71261:16:0;;82002:90;;82049:31;;-1:-1:-1;;;82049:31:0;;;;;505:25:1;;;478:18;;82049:31:0;359:177:1;80107:122:0;80188:33;80197:2;80201:7;80210:4;80216;80188:8;:33::i;37144:340::-;37254:6;37230:21;:30;37226:111;;;37284:41;;-1:-1:-1;;;37284:41:0;;37319:4;37284:41;;;2782:51:1;2755:18;;37284:41:0;2636:203:1;37226:111:0;37350:12;37368:9;-1:-1:-1;;;;;37368:14:0;37390:6;37368:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37349:52;;;37417:7;37412:65;;37448:17;;-1:-1:-1;;;37448:17:0;;;;;;;;;;;74368:824;74454:7;71261:16;;;:7;:16;;;;;;-1:-1:-1;;;;;71261:16:0;;;;74569:18;;;74565:88;;74604:37;74621:4;74627;74633:7;74604:16;:37::i;:::-;-1:-1:-1;;;;;74700:18:0;;;74696:263;;74818:48;74835:1;74839:7;74856:1;74860:5;74818:8;:48::i;:::-;-1:-1:-1;;;;;74912:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;74912:20:0;;;74696:263;-1:-1:-1;;;;;74975:16:0;;;74971:111;;-1:-1:-1;;;;;75037:13:0;;;;;;:9;:13;;;;;:18;;75054:1;75037:18;;;74971:111;75094:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;75094:21:0;-1:-1:-1;;;;;75094:21:0;;;;;;;;;75133:27;;75094:16;;75133:27;;;;;;;75180:4;74368:824;-1:-1:-1;;;;74368:824:0:o;76226:102::-;76294:26;76304:2;76308:7;76294:26;;;;;;;;;;;;:9;:26::i;50049:162::-;50159:43;;;-1:-1:-1;;;;;4330:32:1;;50159:43:0;;;4312:51:1;4379:18;;;;4372:34;;;50159:43:0;;;;;;;;;;4285:18:1;;;;50159:43:0;;;;;;;;-1:-1:-1;;;;;50159:43:0;-1:-1:-1;;;50159:43:0;;;50132:71;;50152:5;;50132:19;:71::i;107626:155::-;107716:4;107740:33;107750:14;107755:8;107880:26;;-1:-1:-1;;22183:2:1;22179:15;;;22175:53;107880:26:0;;;22163:66:1;107843:7:0;;22245:12:1;;107880:26:0;;;;;;;;;;;;107870:37;;;;;;107863:44;;107789:126;;;;107750:14;107766:6;;107740:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;107740:9:0;;-1:-1:-1;;;107740:33:0:i;95176:191::-;95250:16;95269:6;;-1:-1:-1;;;;;95286:17:0;;;-1:-1:-1;;;;;;95286:17:0;;;;;;95319:40;;95269:6;;;;;;;95319:40;;95250:16;95319:40;95239:128;95176:191;:::o;81314:318::-;-1:-1:-1;;;;;81422:22:0;;81418:93;;81468:31;;-1:-1:-1;;;81468:31:0;;-1:-1:-1;;;;;2800:32:1;;81468:31:0;;;2782:51:1;2755:18;;81468:31:0;2636:203:1;81418:93:0;-1:-1:-1;;;;;81521:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;81521:46:0;;;;;;;;;;81583:41;;1067::1;;;81583::0;;1040:18:1;81583:41:0;;;;;;;81314:318;;;:::o;91273:248::-;91483:12;;-1:-1:-1;;;;;91463:16:0;;91419:7;91463:16;;;:7;:16;;;;;;91419:7;;91498:15;;91447:32;;:13;:32;:::i;:::-;91446:49;;;;:::i;:::-;:67;;;;:::i;82672:799::-;-1:-1:-1;;;;;82789:14:0;;;:18;82785:679;;82828:71;;-1:-1:-1;;;82828:71:0;;-1:-1:-1;;;;;82828:36:0;;;;;:71;;65410:10;;82879:4;;82885:7;;82894:4;;82828:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;82828:71:0;;;;;;;;-1:-1:-1;;82828:71:0;;;;;;;;;;;;:::i;:::-;;;82824:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83142:6;:13;83159:1;83142:18;83138:300;;83192:25;;-1:-1:-1;;;83192:25:0;;-1:-1:-1;;;;;2800:32:1;;83192:25:0;;;2782:51:1;2755:18;;83192:25:0;2636:203:1;83138:300:0;83388:6;83382:13;83373:6;83369:2;83365:15;83358:38;82824:629;-1:-1:-1;;;;;;82947:51:0;;-1:-1:-1;;;82947:51:0;82943:132;;83030:25;;-1:-1:-1;;;83030:25:0;;-1:-1:-1;;;;;2800:32:1;;83030:25:0;;;2782:51:1;2755:18;;83030:25:0;2636:203:1;33015:718:0;33071:13;33122:14;33139:17;33150:5;33139:10;:17::i;:::-;33159:1;33139:21;33122:38;;33175:20;33209:6;33198:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33198:18:0;-1:-1:-1;33175:41:0;-1:-1:-1;33340:28:0;;;33356:2;33340:28;33397:290;-1:-1:-1;;33429:5:0;-1:-1:-1;;;33566:2:0;33555:14;;33550:32;33429:5;33537:46;33629:2;33620:11;;;-1:-1:-1;33650:21:0;33397:290;33650:21;-1:-1:-1;33708:6:0;33015:718;-1:-1:-1;;;33015:718:0:o;80417:678::-;80579:9;:31;;;-1:-1:-1;;;;;;80592:18:0;;;;80579:31;80575:471;;;80627:13;80643:22;80657:7;80643:13;:22::i;:::-;80627:38;-1:-1:-1;;;;;;80796:18:0;;;;;;:35;;;80827:4;-1:-1:-1;;;;;80818:13:0;:5;-1:-1:-1;;;;;80818:13:0;;;80796:35;:69;;;;;80836:29;80853:5;80860:4;80836:16;:29::i;:::-;80835:30;80796:69;80792:144;;;80893:27;;-1:-1:-1;;;80893:27:0;;-1:-1:-1;;;;;2800:32:1;;80893:27:0;;;2782:51:1;2755:18;;80893:27:0;2636:203:1;80792:144:0;80956:9;80952:83;;;81011:7;81007:2;-1:-1:-1;;;;;80991:28:0;81000:5;-1:-1:-1;;;;;80991:28:0;;;;;;;;;;;80952:83;80612:434;80575:471;-1:-1:-1;;81058:24:0;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;81058:29:0;-1:-1:-1;;;;;81058:29:0;;;;;;;;;;80417:678::o;72575:376::-;72688:38;72702:5;72709:7;72718;72688:13;:38::i;:::-;72683:261;;-1:-1:-1;;;;;72747:19:0;;72743:190;;72794:31;;-1:-1:-1;;;72794:31:0;;;;;505:25:1;;;478:18;;72794:31:0;359:177:1;72743:190:0;72873:44;;-1:-1:-1;;;72873:44:0;;-1:-1:-1;;;;;4330:32:1;;72873:44:0;;;4312:51:1;4379:18;;;4372:34;;;4285:18;;72873:44:0;4138:274:1;76555:185:0;76650:18;76656:2;76660:7;76650:5;:18::i;:::-;76679:53;76710:1;76714:2;76718:7;76727:4;76679:22;:53::i;52860:638::-;53284:23;53310:33;-1:-1:-1;;;;;53310:27:0;;53338:4;53310:27;:33::i;:::-;53284:59;;53358:10;:17;53379:1;53358:22;;:57;;;;;53396:10;53385:30;;;;;;;;;;;;:::i;:::-;53384:31;53358:57;53354:137;;;53439:40;;-1:-1:-1;;;53439:40:0;;-1:-1:-1;;;;;2800:32:1;;53439:40:0;;;2782:51:1;2755:18;;53439:40:0;2636:203:1;107923:160:0;108004:4;108028:47;108047:6;108055:12;;108069:5;108028:18;:47::i;29419:948::-;29472:7;;-1:-1:-1;;;29550:17:0;;29546:106;;-1:-1:-1;;;29588:17:0;;;-1:-1:-1;29634:2:0;29624:12;29546:106;29679:8;29670:5;:17;29666:106;;29717:8;29708:17;;;-1:-1:-1;29754:2:0;29744:12;29666:106;29799:8;29790:5;:17;29786:106;;29837:8;29828:17;;;-1:-1:-1;29874:2:0;29864:12;29786:106;29919:7;29910:5;:16;29906:103;;29956:7;29947:16;;;-1:-1:-1;29992:1:0;29982:11;29906:103;30036:7;30027:5;:16;30023:103;;30073:7;30064:16;;;-1:-1:-1;30109:1:0;30099:11;30023:103;30153:7;30144:5;:16;30140:103;;30190:7;30181:16;;;-1:-1:-1;30226:1:0;30216:11;30140:103;30270:7;30261:5;:16;30257:68;;30308:1;30298:11;30353:6;29419:948;-1:-1:-1;;29419:948:0:o;71855:276::-;71958:4;-1:-1:-1;;;;;71995:21:0;;;;;;:128;;;72043:7;-1:-1:-1;;;;;72034:16:0;:5;-1:-1:-1;;;;;72034:16:0;;:52;;;;72054:32;72071:5;72078:7;72054:16;:32::i;:::-;72034:88;;;-1:-1:-1;;71476:7:0;71503:24;;;:15;:24;;;;;;-1:-1:-1;;;;;71503:24:0;;;72090:32;;;;;-1:-1:-1;71855:276:0:o;75528:335::-;-1:-1:-1;;;;;75596:16:0;;75592:89;;75636:33;;-1:-1:-1;;;75636:33:0;;75666:1;75636:33;;;2782:51:1;2755:18;;75636:33:0;2636:203:1;75592:89:0;75691:21;75715:32;75723:2;75727:7;75744:1;75715:7;:32::i;:::-;75691:56;-1:-1:-1;;;;;;75762:27:0;;;75758:98;;75813:31;;-1:-1:-1;;;75813:31:0;;75841:1;75813:31;;;2782:51:1;2755:18;;75813:31:0;2636:203:1;38347:153:0;38422:12;38454:38;38476:6;38484:4;38490:1;38454:21;:38::i;55937:156::-;56028:4;56081;56052:25;56065:5;56072:4;56052:12;:25::i;:::-;:33;;55937:156;-1:-1:-1;;;;55937:156:0:o;38835:398::-;38934:12;38987:5;38963:21;:29;38959:110;;;39016:41;;-1:-1:-1;;;39016:41:0;;39051:4;39016:41;;;2782:51:1;2755:18;;39016:41:0;2636:203:1;38959:110:0;39080:12;39094:23;39121:6;-1:-1:-1;;;;;39121:11:0;39140:5;39147:4;39121:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39079:73;;;;39170:55;39197:6;39205:7;39214:10;39170:26;:55::i;:::-;39163:62;38835:398;-1:-1:-1;;;;;;38835:398:0:o;56656:296::-;56739:7;56782:4;56739:7;56797:118;56821:5;:12;56817:1;:16;56797:118;;;56870:33;56880:12;56894:5;56900:1;56894:8;;;;;;;;:::i;:::-;;;;;;;56870:9;:33::i;:::-;56855:48;-1:-1:-1;56835:3:0;;56797:118;;;-1:-1:-1;56932:12:0;56656:296;-1:-1:-1;;;56656:296:0:o;40311:597::-;40459:12;40489:7;40484:417;;40513:19;40521:10;40513:7;:19::i;:::-;40484:417;;;40741:17;;:22;:49;;;;-1:-1:-1;;;;;;40767:18:0;;;:23;40741:49;40737:121;;;40818:24;;-1:-1:-1;;;40818:24:0;;-1:-1:-1;;;;;2800:32:1;;40818:24:0;;;2782:51:1;2755:18;;40818:24:0;2636:203:1;40737:121:0;-1:-1:-1;40879:10:0;40872:17;;64086:149;64149:7;64180:1;64176;:5;:51;;64428:13;64522:15;;;64558:4;64551:15;;;64605:4;64589:21;;64176:51;;;64428:13;64522:15;;;64558:4;64551:15;;;64605:4;64589:21;;64184:20;64360:268;41461:528;41594:17;;:21;41590:392;;41826:10;41820:17;41883:15;41870:10;41866:2;41862:19;41855:44;41590:392;41953:17;;-1:-1:-1;;;41953:17:0;;;;;;;;;;;541:131:1;-1:-1:-1;;;;;;615:32:1;;605:43;;595:71;;662:1;659;652:12;677:245;735:6;788:2;776:9;767:7;763:23;759:32;756:52;;;804:1;801;794:12;756:52;843:9;830:23;862:30;886:5;862:30;:::i;1119:180::-;1178:6;1231:2;1219:9;1210:7;1206:23;1202:32;1199:52;;;1247:1;1244;1237:12;1199:52;-1:-1:-1;1270:23:1;;1119:180;-1:-1:-1;1119:180:1:o;1304:131::-;-1:-1:-1;;;;;1379:31:1;;1369:42;;1359:70;;1425:1;1422;1415:12;1440:435;1507:6;1515;1568:2;1556:9;1547:7;1543:23;1539:32;1536:52;;;1584:1;1581;1574:12;1536:52;1623:9;1610:23;1642:31;1667:5;1642:31;:::i;:::-;1692:5;-1:-1:-1;1749:2:1;1734:18;;1721:32;-1:-1:-1;;;;;1784:40:1;;1772:53;;1762:81;;1839:1;1836;1829:12;1762:81;1862:7;1852:17;;;1440:435;;;;;:::o;1880:250::-;1965:1;1975:113;1989:6;1986:1;1983:13;1975:113;;;2065:11;;;2059:18;2046:11;;;2039:39;2011:2;2004:10;1975:113;;;-1:-1:-1;;2122:1:1;2104:16;;2097:27;1880:250::o;2135:271::-;2177:3;2215:5;2209:12;2242:6;2237:3;2230:19;2258:76;2327:6;2320:4;2315:3;2311:14;2304:4;2297:5;2293:16;2258:76;:::i;:::-;2388:2;2367:15;-1:-1:-1;;2363:29:1;2354:39;;;;2395:4;2350:50;;2135:271;-1:-1:-1;;2135:271:1:o;2411:220::-;2560:2;2549:9;2542:21;2523:4;2580:45;2621:2;2610:9;2606:18;2598:6;2580:45;:::i;2844:315::-;2912:6;2920;2973:2;2961:9;2952:7;2948:23;2944:32;2941:52;;;2989:1;2986;2979:12;2941:52;3028:9;3015:23;3047:31;3072:5;3047:31;:::i;:::-;3097:5;3149:2;3134:18;;;;3121:32;;-1:-1:-1;;;2844:315:1:o;3164:255::-;3231:6;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3339:9;3326:23;3358:31;3383:5;3358:31;:::i;3424:456::-;3501:6;3509;3517;3570:2;3558:9;3549:7;3545:23;3541:32;3538:52;;;3586:1;3583;3576:12;3538:52;3625:9;3612:23;3644:31;3669:5;3644:31;:::i;:::-;3694:5;-1:-1:-1;3751:2:1;3736:18;;3723:32;3764:33;3723:32;3764:33;:::i;:::-;3424:456;;3816:7;;-1:-1:-1;;;3870:2:1;3855:18;;;;3842:32;;3424:456::o;3885:248::-;3953:6;3961;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;-1:-1:-1;;4053:23:1;;;4123:2;4108:18;;;4095:32;;-1:-1:-1;3885:248:1:o;4417:403::-;4500:6;4508;4561:2;4549:9;4540:7;4536:23;4532:32;4529:52;;;4577:1;4574;4567:12;4529:52;4616:9;4603:23;4635:31;4660:5;4635:31;:::i;:::-;4685:5;-1:-1:-1;4742:2:1;4727:18;;4714:32;4755:33;4714:32;4755:33;:::i;4825:818::-;4929:6;4937;4945;4953;5006:2;4994:9;4985:7;4981:23;4977:32;4974:52;;;5022:1;5019;5012:12;4974:52;5061:9;5048:23;5080:31;5105:5;5080:31;:::i;:::-;5130:5;-1:-1:-1;5182:2:1;5167:18;;5154:32;;-1:-1:-1;5237:2:1;5222:18;;5209:32;5260:18;5290:14;;;5287:34;;;5317:1;5314;5307:12;5287:34;5355:6;5344:9;5340:22;5330:32;;5400:7;5393:4;5389:2;5385:13;5381:27;5371:55;;5422:1;5419;5412:12;5371:55;5462:2;5449:16;5488:2;5480:6;5477:14;5474:34;;;5504:1;5501;5494:12;5474:34;5557:7;5552:2;5542:6;5539:1;5535:14;5531:2;5527:23;5523:32;5520:45;5517:65;;;5578:1;5575;5568:12;5517:65;4825:818;;;;-1:-1:-1;;5609:2:1;5601:11;;-1:-1:-1;;;4825:818:1:o;5900:127::-;5961:10;5956:3;5952:20;5949:1;5942:31;5992:4;5989:1;5982:15;6016:4;6013:1;6006:15;6032:632;6097:5;6127:18;6168:2;6160:6;6157:14;6154:40;;;6174:18;;:::i;:::-;6249:2;6243:9;6217:2;6303:15;;-1:-1:-1;;6299:24:1;;;6325:2;6295:33;6291:42;6279:55;;;6349:18;;;6369:22;;;6346:46;6343:72;;;6395:18;;:::i;:::-;6435:10;6431:2;6424:22;6464:6;6455:15;;6494:6;6486;6479:22;6534:3;6525:6;6520:3;6516:16;6513:25;6510:45;;;6551:1;6548;6541:12;6510:45;6601:6;6596:3;6589:4;6581:6;6577:17;6564:44;6656:1;6649:4;6640:6;6632;6628:19;6624:30;6617:41;;;;6032:632;;;;;:::o;6669:451::-;6738:6;6791:2;6779:9;6770:7;6766:23;6762:32;6759:52;;;6807:1;6804;6797:12;6759:52;6847:9;6834:23;6880:18;6872:6;6869:30;6866:50;;;6912:1;6909;6902:12;6866:50;6935:22;;6988:4;6980:13;;6976:27;-1:-1:-1;6966:55:1;;7017:1;7014;7007:12;6966:55;7040:74;7106:7;7101:2;7088:16;7083:2;7079;7075:11;7040:74;:::i;7125:118::-;7211:5;7204:13;7197:21;7190:5;7187:32;7177:60;;7233:1;7230;7223:12;7248:382;7313:6;7321;7374:2;7362:9;7353:7;7349:23;7345:32;7342:52;;;7390:1;7387;7380:12;7342:52;7429:9;7416:23;7448:31;7473:5;7448:31;:::i;:::-;7498:5;-1:-1:-1;7555:2:1;7540:18;;7527:32;7568:30;7527:32;7568:30;:::i;7820:795::-;7915:6;7923;7931;7939;7992:3;7980:9;7971:7;7967:23;7963:33;7960:53;;;8009:1;8006;7999:12;7960:53;8048:9;8035:23;8067:31;8092:5;8067:31;:::i;:::-;8117:5;-1:-1:-1;8174:2:1;8159:18;;8146:32;8187:33;8146:32;8187:33;:::i;:::-;8239:7;-1:-1:-1;8293:2:1;8278:18;;8265:32;;-1:-1:-1;8348:2:1;8333:18;;8320:32;8375:18;8364:30;;8361:50;;;8407:1;8404;8397:12;8361:50;8430:22;;8483:4;8475:13;;8471:27;-1:-1:-1;8461:55:1;;8512:1;8509;8502:12;8461:55;8535:74;8601:7;8596:2;8583:16;8578:2;8574;8570:11;8535:74;:::i;:::-;8525:84;;;7820:795;;;;;;;:::o;8620:127::-;8681:10;8676:3;8672:20;8669:1;8662:31;8712:4;8709:1;8702:15;8736:4;8733:1;8726:15;8752:337;8893:2;8878:18;;8926:1;8915:13;;8905:144;;8971:10;8966:3;8962:20;8959:1;8952:31;9006:4;9003:1;8996:15;9034:4;9031:1;9024:15;8905:144;9058:25;;;8752:337;:::o;9936:380::-;10015:1;10011:12;;;;10058;;;10079:61;;10133:4;10125:6;10121:17;10111:27;;10079:61;10186:2;10178:6;10175:14;10155:18;10152:38;10149:161;;10232:10;10227:3;10223:20;10220:1;10213:31;10267:4;10264:1;10257:15;10295:4;10292:1;10285:15;10149:161;;9936:380;;;:::o;10321:402::-;10523:2;10505:21;;;10562:2;10542:18;;;10535:30;10601:34;10596:2;10581:18;;10574:62;-1:-1:-1;;;10667:2:1;10652:18;;10645:36;10713:3;10698:19;;10321:402::o;10728:407::-;10930:2;10912:21;;;10969:2;10949:18;;;10942:30;11008:34;11003:2;10988:18;;10981:62;-1:-1:-1;;;11074:2:1;11059:18;;11052:41;11125:3;11110:19;;10728:407::o;11140:127::-;11201:10;11196:3;11192:20;11189:1;11182:31;11232:4;11229:1;11222:15;11256:4;11253:1;11246:15;11272:125;11337:9;;;11358:10;;;11355:36;;;11371:18;;:::i;12069:128::-;12136:9;;;12157:11;;;12154:37;;;12171:18;;:::i;12202:349::-;12404:2;12386:21;;;12443:2;12423:18;;;12416:30;12482:27;12477:2;12462:18;;12455:55;12542:2;12527:18;;12202:349::o;12556:135::-;12595:3;12616:17;;;12613:43;;12636:18;;:::i;:::-;-1:-1:-1;12683:1:1;12672:13;;12556:135::o;13744:352::-;13946:2;13928:21;;;13985:2;13965:18;;;13958:30;14024;14019:2;14004:18;;13997:58;14087:2;14072:18;;13744:352::o;14455:168::-;14528:9;;;14559;;14576:15;;;14570:22;;14556:37;14546:71;;14597:18;;:::i;14974:127::-;15035:10;15030:3;15026:20;15023:1;15016:31;15066:4;15063:1;15056:15;15090:4;15087:1;15080:15;15232:518;15334:2;15329:3;15326:11;15323:421;;;15370:5;15367:1;15360:16;15414:4;15411:1;15401:18;15484:2;15472:10;15468:19;15465:1;15461:27;15455:4;15451:38;15520:4;15508:10;15505:20;15502:47;;;-1:-1:-1;15543:4:1;15502:47;15598:2;15593:3;15589:12;15586:1;15582:20;15576:4;15572:31;15562:41;;15653:81;15671:2;15664:5;15661:13;15653:81;;;15730:1;15716:16;;15697:1;15686:13;15653:81;;15926:1345;16052:3;16046:10;16079:18;16071:6;16068:30;16065:56;;;16101:18;;:::i;:::-;16130:97;16220:6;16180:38;16212:4;16206:11;16180:38;:::i;:::-;16174:4;16130:97;:::i;:::-;16282:4;;16339:2;16328:14;;16356:1;16351:663;;;;17058:1;17075:6;17072:89;;;-1:-1:-1;17127:19:1;;;17121:26;17072:89;-1:-1:-1;;15883:1:1;15879:11;;;15875:24;15871:29;15861:40;15907:1;15903:11;;;15858:57;17174:81;;16321:944;;16351:663;15179:1;15172:14;;;15216:4;15203:18;;-1:-1:-1;;16387:20:1;;;16505:236;16519:7;16516:1;16513:14;16505:236;;;16608:19;;;16602:26;16587:42;;16700:27;;;;16668:1;16656:14;;;;16535:19;;16505:236;;;16509:3;16769:6;16760:7;16757:19;16754:201;;;16830:19;;;16824:26;-1:-1:-1;;16913:1:1;16909:14;;;16925:3;16905:24;16901:37;16897:42;16882:58;16867:74;;16754:201;;;17001:1;16992:6;16989:1;16985:14;16981:22;16975:4;16968:36;16321:944;;;;;15926:1345;;:::o;17408:217::-;17448:1;17474;17464:132;;17518:10;17513:3;17509:20;17506:1;17499:31;17553:4;17550:1;17543:15;17581:4;17578:1;17571:15;17464:132;-1:-1:-1;17610:9:1;;17408:217::o;18676:184::-;18746:6;18799:2;18787:9;18778:7;18774:23;18770:32;18767:52;;;18815:1;18812;18805:12;18767:52;-1:-1:-1;18838:16:1;;18676:184;-1:-1:-1;18676:184:1:o;19633:1188::-;19910:3;19939:1;19972:6;19966:13;20002:36;20028:9;20002:36;:::i;:::-;20057:1;20074:17;;;20100:133;;;;20247:1;20242:358;;;;20067:533;;20100:133;-1:-1:-1;;20133:24:1;;20121:37;;20206:14;;20199:22;20187:35;;20178:45;;;-1:-1:-1;20100:133:1;;20242:358;20273:6;20270:1;20263:17;20303:4;20348;20345:1;20335:18;20375:1;20389:165;20403:6;20400:1;20397:13;20389:165;;;20481:14;;20468:11;;;20461:35;20524:16;;;;20418:10;;20389:165;;;20393:3;;;20583:6;20578:3;20574:16;20567:23;;20067:533;;;;;20631:6;20625:13;20647:68;20706:8;20701:3;20694:4;20686:6;20682:17;20647:68;:::i;:::-;-1:-1:-1;;;20737:18:1;;20764:22;;;20813:1;20802:13;;19633:1188;-1:-1:-1;;;;19633:1188:1:o;21036:489::-;-1:-1:-1;;;;;21305:15:1;;;21287:34;;21357:15;;21352:2;21337:18;;21330:43;21404:2;21389:18;;21382:34;;;21452:3;21447:2;21432:18;;21425:31;;;21230:4;;21473:46;;21499:19;;21491:6;21473:46;:::i;21530:249::-;21599:6;21652:2;21640:9;21631:7;21627:23;21623:32;21620:52;;;21668:1;21665;21658:12;21620:52;21700:9;21694:16;21719:30;21743:5;21719:30;:::i;21784:245::-;21851:6;21904:2;21892:9;21883:7;21879:23;21875:32;21872:52;;;21920:1;21917;21910:12;21872:52;21952:9;21946:16;21971:28;21993:5;21971:28;:::i;22268:287::-;22397:3;22435:6;22429:13;22451:66;22510:6;22505:3;22498:4;22490:6;22486:17;22451:66;:::i;:::-;22533:16;;;;;22268:287;-1:-1:-1;;22268:287:1:o
Swarm Source
ipfs://0d84e87346d6c321fb33605a00c47a096f46451be7d864cded7789a936d70676
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.