ERC-721
Overview
Max Total Supply
694 WLDT
Holders
141
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WLDTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
WildTigers
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-30 */ // SPDX-License-Identifier: MIT // File operator-filter-registry/src/lib/[email protected] pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed( address registrant, address operator ) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe( address registrant, address subscription ) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries( address registrant, address registrantToCopy ) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator( address registrant, address operator, bool filtered ) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators( address registrant, address[] calldata operators, bool filtered ) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash( address registrant, bytes32 codehash, bool filtered ) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes( address registrant, bytes32[] calldata codeHashes, bool filtered ) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe( address registrant, address registrantToSubscribe ) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers( address registrant ) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt( address registrant, uint256 index ) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf( address registrant, address registrantToCopy ) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered( address registrant, address operator ) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered( address registrant, address operatorWithCode ) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered( address registrant, bytes32 codeHash ) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators( address addr ) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes( address addr ) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt( address registrant, uint256 index ) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt( address registrant, uint256 index ) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe( address(this), subscriptionOrRegistrantToCopy ); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries( address(this), subscriptionOrRegistrantToCopy ); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), operator ) ) { revert OperatorNotAllowed(operator); } } } } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved( uint256 tokenId ) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll( address owner, address operator ) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt( uint256 a, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string( abi.encodePacked( value < 0 ? "-" : "", toString(SignedMath.abs(value)) ) ); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString( uint256 value, uint256 length ) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal( string memory a, string memory b ) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCallWithValue( target, data, 0, "Address: low-level call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data ) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data ) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert( bytes memory returndata, string memory errorMessage ) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot( bytes32 slot ) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot( bytes32 slot ) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot( bytes32 slot ) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot( bytes32 slot ) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot( bytes32 slot ) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot( string storage store ) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot( bytes32 slot ) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot( bytes storage store ) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } } // File solidity-bits/contracts/[email protected] /** _____ ___ ___ __ ____ _ __ / ___/____ / (_)___/ (_) /___ __ / __ )(_) /______ \__ \/ __ \/ / / __ / / __/ / / / / __ / / __/ ___/ ___/ / /_/ / / / /_/ / / /_/ /_/ / / /_/ / / /_(__ ) /____/\____/_/_/\__,_/_/\__/\__, / /_____/_/\__/____/ /____/ - npm: https://www.npmjs.com/package/solidity-bits - github: https://github.com/estarriolvetch/solidity-bits */ pragma solidity ^0.8.0; library BitScan { uint256 private constant DEBRUIJN_256 = 0x818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff; bytes private constant LOOKUP_TABLE_256 = hex"0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8"; /** @dev Isolate the least significant set bit. */ function isolateLS1B256(uint256 bb) internal pure returns (uint256) { require(bb > 0); unchecked { return bb & (0 - bb); } } /** @dev Isolate the most significant set bit. */ function isolateMS1B256(uint256 bb) internal pure returns (uint256) { require(bb > 0); unchecked { bb |= bb >> 128; bb |= bb >> 64; bb |= bb >> 32; bb |= bb >> 16; bb |= bb >> 8; bb |= bb >> 4; bb |= bb >> 2; bb |= bb >> 1; return (bb >> 1) + 1; } } /** @dev Find the index of the lest significant set bit. (trailing zero count) */ function bitScanForward256(uint256 bb) internal pure returns (uint8) { unchecked { return uint8( LOOKUP_TABLE_256[(isolateLS1B256(bb) * DEBRUIJN_256) >> 248] ); } } /** @dev Find the index of the most significant set bit. */ function bitScanReverse256(uint256 bb) internal pure returns (uint8) { unchecked { return 255 - uint8( LOOKUP_TABLE_256[ ((isolateMS1B256(bb) * DEBRUIJN_256) >> 248) ] ); } } function log2(uint256 bb) internal pure returns (uint8) { unchecked { return uint8( LOOKUP_TABLE_256[(isolateMS1B256(bb) * DEBRUIJN_256) >> 248] ); } } } // File solidity-bits/contracts/[email protected] /** _____ ___ ___ __ ____ _ __ / ___/____ / (_)___/ (_) /___ __ / __ )(_) /______ \__ \/ __ \/ / / __ / / __/ / / / / __ / / __/ ___/ ___/ / /_/ / / / /_/ / / /_/ /_/ / / /_/ / / /_(__ ) /____/\____/_/_/\__,_/_/\__/\__, / /_____/_/\__/____/ /____/ - npm: https://www.npmjs.com/package/solidity-bits - github: https://github.com/estarriolvetch/solidity-bits */ pragma solidity ^0.8.0; /** * @dev This Library is a modified version of Openzeppelin's BitMaps library. * Functions of finding the index of the closest set bit from a given index are added. * The indexing of each bucket is modifed to count from the MSB to the LSB instead of from the LSB to the MSB. * The modification of indexing makes finding the closest previous set bit more efficient in gas usage. */ /** * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential. * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor]. */ library BitMaps { using BitScan for uint256; uint256 private constant MASK_INDEX_ZERO = (1 << 255); uint256 private constant MASK_FULL = type(uint256).max; struct BitMap { mapping(uint256 => uint256) _data; } /** * @dev Returns whether the bit at `index` is set. */ function get( BitMap storage bitmap, uint256 index ) internal view returns (bool) { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); return bitmap._data[bucket] & mask != 0; } /** * @dev Sets the bit at `index` to the boolean `value`. */ function setTo(BitMap storage bitmap, uint256 index, bool value) internal { if (value) { set(bitmap, index); } else { unset(bitmap, index); } } /** * @dev Sets the bit at `index`. */ function set(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); bitmap._data[bucket] |= mask; } /** * @dev Unsets the bit at `index`. */ function unset(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = MASK_INDEX_ZERO >> (index & 0xff); bitmap._data[bucket] &= ~mask; } /** * @dev Consecutively sets `amount` of bits starting from the bit at `startIndex`. */ function setBatch( BitMap storage bitmap, uint256 startIndex, uint256 amount ) internal { uint256 bucket = startIndex >> 8; uint256 bucketStartIndex = (startIndex & 0xff); unchecked { if (bucketStartIndex + amount < 256) { bitmap._data[bucket] |= (MASK_FULL << (256 - amount)) >> bucketStartIndex; } else { bitmap._data[bucket] |= MASK_FULL >> bucketStartIndex; amount -= (256 - bucketStartIndex); bucket++; while (amount > 256) { bitmap._data[bucket] = MASK_FULL; amount -= 256; bucket++; } bitmap._data[bucket] |= MASK_FULL << (256 - amount); } } } /** * @dev Consecutively unsets `amount` of bits starting from the bit at `startIndex`. */ function unsetBatch( BitMap storage bitmap, uint256 startIndex, uint256 amount ) internal { uint256 bucket = startIndex >> 8; uint256 bucketStartIndex = (startIndex & 0xff); unchecked { if (bucketStartIndex + amount < 256) { bitmap._data[bucket] &= ~((MASK_FULL << (256 - amount)) >> bucketStartIndex); } else { bitmap._data[bucket] &= ~(MASK_FULL >> bucketStartIndex); amount -= (256 - bucketStartIndex); bucket++; while (amount > 256) { bitmap._data[bucket] = 0; amount -= 256; bucket++; } bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount)); } } } /** * @dev Find the closest index of the set bit before `index`. */ function scanForward( BitMap storage bitmap, uint256 index ) internal view returns (uint256 setBitIndex) { uint256 bucket = index >> 8; // index within the bucket uint256 bucketIndex = (index & 0xff); // load a bitboard from the bitmap. uint256 bb = bitmap._data[bucket]; // offset the bitboard to scan from `bucketIndex`. bb = bb >> (0xff ^ bucketIndex); // bb >> (255 - bucketIndex) if (bb > 0) { unchecked { setBitIndex = (bucket << 8) | (bucketIndex - bb.bitScanForward256()); } } else { while (true) { require( bucket > 0, "BitMaps: The set bit before the index doesn't exist." ); unchecked { bucket--; } // No offset. Always scan from the least significiant bit now. bb = bitmap._data[bucket]; if (bb > 0) { unchecked { setBitIndex = (bucket << 8) | (255 - bb.bitScanForward256()); break; } } } } } function getBucket( BitMap storage bitmap, uint256 bucket ) internal view returns (uint256) { return bitmap._data[bucket]; } } // File erc721psi/contracts/[email protected] /** ______ _____ _____ ______ ___ __ _ _ _ | ____| __ \ / ____|____ |__ \/_ | || || | | |__ | |__) | | / / ) || | \| |/ | | __| | _ /| | / / / / | |\_ _/ | |____| | \ \| |____ / / / /_ | | | | |______|_| \_\\_____|/_/ |____||_| |_| - github: https://github.com/estarriolvetch/ERC721Psi - npm: https://www.npmjs.com/package/erc721psi */ pragma solidity ^0.8.0; contract ERC721Psi is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; using BitMaps for BitMaps.BitMap; BitMaps.BitMap private _batchHead; string private _name; string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) internal _owners; uint256 private _currentIndex; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal pure virtual returns (uint256) { // It will become modifiable in the future versions return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { return _currentIndex - _startTokenId(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf( address owner ) public view virtual override returns (uint) { require( owner != address(0), "ERC721Psi: balance query for the zero address" ); uint count; for (uint i = _startTokenId(); i < _nextTokenId(); ++i) { if (_exists(i)) { if (owner == ownerOf(i)) { ++count; } } } return count; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf( uint256 tokenId ) public view virtual override returns (address) { (address owner, ) = _ownerAndBatchHeadOf(tokenId); return owner; } function _ownerAndBatchHeadOf( uint256 tokenId ) internal view returns (address owner, uint256 tokenIdBatchHead) { require( _exists(tokenId), "ERC721Psi: owner query for nonexistent token" ); tokenIdBatchHead = _getBatchHead(tokenId); owner = _owners[tokenIdBatchHead]; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Psi: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721Psi: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721Psi: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view virtual override returns (address) { require( _exists(tokenId), "ERC721Psi: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public virtual override { require(operator != _msgSender(), "ERC721Psi: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll( address owner, address operator ) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Psi: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Psi: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, 1, _data), "ERC721Psi: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _nextTokenId() && _startTokenId() <= tokenId; } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner( address spender, uint256 tokenId ) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721Psi: operator query for nonexistent token" ); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ""); } function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { uint256 nextTokenId = _nextTokenId(); _mint(to, quantity); require( _checkOnERC721Received( address(0), to, nextTokenId, quantity, _data ), "ERC721Psi: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 quantity) internal virtual { uint256 nextTokenId = _nextTokenId(); require(quantity > 0, "ERC721Psi: quantity must be greater 0"); require(to != address(0), "ERC721Psi: mint to the zero address"); _beforeTokenTransfers(address(0), to, nextTokenId, quantity); _currentIndex += quantity; _owners[nextTokenId] = to; _batchHead.set(nextTokenId); _afterTokenTransfers(address(0), to, nextTokenId, quantity); // Emit events for ( uint256 tokenId = nextTokenId; tokenId < nextTokenId + quantity; tokenId++ ) { emit Transfer(address(0), to, tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { (address owner, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf( tokenId ); require(owner == from, "ERC721Psi: transfer of token that is not own"); require(to != address(0), "ERC721Psi: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId); uint256 subsequentTokenId = tokenId + 1; if ( !_batchHead.get(subsequentTokenId) && subsequentTokenId < _nextTokenId() ) { _owners[subsequentTokenId] = from; _batchHead.set(subsequentTokenId); } _owners[tokenId] = to; if (tokenId != tokenIdBatchHead) { _batchHead.set(tokenId); } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param startTokenId uint256 the first ID of the tokens to be transferred * @param quantity uint256 amount of the tokens to be transfered. * @param _data bytes optional data to send along with the call * @return r bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 startTokenId, uint256 quantity, bytes memory _data ) private returns (bool r) { if (to.isContract()) { r = true; for ( uint256 tokenId = startTokenId; tokenId < startTokenId + quantity; tokenId++ ) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { r = r && retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721Psi: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } return r; } else { return true; } } function _getBatchHead( uint256 tokenId ) internal view returns (uint256 tokenIdBatchHead) { tokenIdBatchHead = _batchHead.scanForward(tokenId); } function totalSupply() public view virtual returns (uint256) { return _totalMinted(); } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * This function is compatiable with ERC721AQueryable. */ function tokensOfOwner( address owner ) external view virtual returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); for ( uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i ) { if (_exists(i)) { if (ownerOf(i) == owner) { tokenIds[tokenIdsIdx++] = i; } } } return tokenIds; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface oldContract { function ownerOf(uint256 tokenId) external view returns (address owner); function totalSupply() external view returns (uint256); } pragma solidity ^0.8.0; contract WildTigers is DefaultOperatorFilterer, ERC721Psi, Ownable { uint256 public constant PUBLIC_MINT_PRICE = 0.025 ether; uint256 public constant WHITELIST_MINT_PRICE = 0.015 ether; uint256 public constant MAX_SUPPLY = 4444; string public baseURI = "ipfs://QmNmfv1FNNgP4DxKzC2zTeLgdbeeRMVhQeZxQsqyphGxeY/"; uint256 public mintStartTime = 1690761600; // July 31 2023 00:00:00 GMT 1690761600 address public oldContractAddress = address(0x4db8Cf5e58A36D7c5B38a723a39Cbd8A992ccF66); uint256 public oldContractTotalSupply = 0; uint256 public oldContractAirdropped = 0; mapping(address => uint) public whitelistedAddresses; constructor() ERC721Psi("Wild Tigers", "WLDT") { oldContractTotalSupply = oldContract(oldContractAddress).totalSupply(); } function airdropOld(uint256 quantityToAirdrop) external onlyOwner { require( oldContractAirdropped + quantityToAirdrop <= oldContractTotalSupply, "Airdrop exceeds old contract supply!" ); for (uint256 i = 0; i < quantityToAirdrop; i++) { _safeMint( oldContract(oldContractAddress).ownerOf( oldContractAirdropped + i + 1 ), 1 ); } oldContractAirdropped += quantityToAirdrop; } function mint(uint256 _mintAmount) external payable { require( totalSupply() + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!" ); require( block.timestamp >= mintStartTime, "Minting has not started yet!" ); if (whitelistedAddresses[msg.sender] == 1) { require( msg.value >= WHITELIST_MINT_PRICE * _mintAmount, "Insufficient funds to mint!" ); } else { require( msg.value >= PUBLIC_MINT_PRICE * _mintAmount, "Insufficient funds to mint!" ); } // _safeMint's second argument now takes in a quantity, not a tokenId. (same as ERC721A) _safeMint(msg.sender, _mintAmount); } function setMintStartTime(uint256 _mintStartTime) external onlyOwner { mintStartTime = _mintStartTime; } function addToWhitelist( address[] calldata _whitelister ) external onlyOwner { for (uint256 i = 0; i < _whitelister.length; i++) { require( whitelistedAddresses[_whitelister[i]] == 0, "Address already whitelisted" ); whitelistedAddresses[_whitelister[i]] = 1; } } function removeFromWhitelist( address[] calldata _whitelister ) external onlyOwner { for (uint256 i = 0; i < _whitelister.length; i++) { require( whitelistedAddresses[_whitelister[i]] > 0, "Address not present in whitelist" ); whitelistedAddresses[_whitelister[i]] = 0; } } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function _startTokenId() internal pure virtual override returns (uint256) { return 1; } function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string( abi.encodePacked(_baseURI(), Strings.toString(tokenId), ".json") ); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelister","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantityToAirdrop","type":"uint256"}],"name":"airdropOld","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldContractAirdropped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldContractTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelister","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintStartTime","type":"uint256"}],"name":"setMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052603660808181529062002d2260a039600890620000229082620003b0565b506364c6f980600955600a80546001600160a01b031916734db8cf5e58a36d7c5b38a723a39cbd8a992ccf661790556000600b819055600c553480156200006857600080fd5b50604080518082018252600b81526a57696c642054696765727360a81b6020808301919091528251808401909352600483526315d3111560e21b9083015290733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b15620002035780156200015157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200013257600080fd5b505af115801562000147573d6000803e3d6000fd5b5050505062000203565b6001600160a01b03821615620001a25760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000117565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001e957600080fd5b505af1158015620001fe573d6000803e3d6000fd5b505050505b5060019050620002148382620003b0565b506002620002238282620003b0565b50506001600455506200023633620002b9565b600a60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b091906200047c565b600b5562000496565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200033657607f821691505b6020821081036200035757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ab57600081815260208120601f850160051c81016020861015620003865750805b601f850160051c820191505b81811015620003a75782815560010162000392565b5050505b505050565b81516001600160401b03811115620003cc57620003cc6200030b565b620003e481620003dd845462000321565b846200035d565b602080601f8311600181146200041c5760008415620004035750858301515b600019600386901b1c1916600185901b178555620003a7565b600085815260208120601f198616915b828110156200044d578886015182559484019460019091019084016200042c565b50858210156200046c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200048f57600080fd5b5051919050565b61287c80620004a66000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063d5b3621b1161006f578063d5b3621b146105b6578063df85b4b2146105d6578063e985e9c5146105f6578063f2fde38b14610616578063f437af541461063657600080fd5b8063a22cb4651461053b578063aca9938d1461055b578063b88d4fde14610576578063c87b56dd1461059657600080fd5b80638462151c116100e75780638462151c146104b25780638da5cb5b146104df578063931e2e49146104fd57806395d89b4114610513578063a0712d681461052857600080fd5b80636c0360eb1461044857806370a082311461045d578063715018a61461047d5780637f6497831461049257600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103b7578063564d0485146103d75780635dc5152d146103f75780636352211e1461040d5780636bde26271461042d57600080fd5b80633ccfd60b1461034057806341f434341461035557806342842e0e14610377578063548db1741461039757600080fd5b8063095ea7b3116101d7578063095ea7b3146102d357806318160ddd146102f557806323b872dd1461030a57806332cb6b0c1461032a57600080fd5b806301ffc9a71461020957806306c933d81461023e57806306fdde0314610279578063081812fc1461029b575b600080fd5b34801561021557600080fd5b50610229610224366004612011565b61064c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061026b61025936600461204a565b600d6020526000908152604090205481565b604051908152602001610235565b34801561028557600080fd5b5061028e61069e565b60405161023591906120b7565b3480156102a757600080fd5b506102bb6102b63660046120ca565b610730565b6040516001600160a01b039091168152602001610235565b3480156102df57600080fd5b506102f36102ee3660046120e3565b6107c0565b005b34801561030157600080fd5b5061026b6107d9565b34801561031657600080fd5b506102f361032536600461210f565b6107e8565b34801561033657600080fd5b5061026b61115c81565b34801561034c57600080fd5b506102f3610813565b34801561036157600080fd5b506102bb6daaeb6d7670e522a718067333cd4e81565b34801561038357600080fd5b506102f361039236600461210f565b610870565b3480156103a357600080fd5b506102f36103b2366004612150565b610895565b3480156103c357600080fd5b506102f36103d2366004612251565b6109be565b3480156103e357600080fd5b506102f36103f23660046120ca565b6109f4565b34801561040357600080fd5b5061026b600b5481565b34801561041957600080fd5b506102bb6104283660046120ca565b610b57565b34801561043957600080fd5b5061026b6658d15e1762800081565b34801561045457600080fd5b5061028e610b6b565b34801561046957600080fd5b5061026b61047836600461204a565b610bf9565b34801561048957600080fd5b506102f3610cc8565b34801561049e57600080fd5b506102f36104ad366004612150565b610cfe565b3480156104be57600080fd5b506104d26104cd36600461204a565b610e1e565b604051610235919061229a565b3480156104eb57600080fd5b506007546001600160a01b03166102bb565b34801561050957600080fd5b5061026b60095481565b34801561051f57600080fd5b5061028e610ee5565b6102f36105363660046120ca565b610ef4565b34801561054757600080fd5b506102f36105563660046122ec565b61108a565b34801561056757600080fd5b5061026b66354a6ba7a1800081565b34801561058257600080fd5b506102f3610591366004612325565b61109e565b3480156105a257600080fd5b5061028e6105b13660046120ca565b6110cb565b3480156105c257600080fd5b506102f36105d13660046120ca565b611172565b3480156105e257600080fd5b50600a546102bb906001600160a01b031681565b34801561060257600080fd5b506102296106113660046123a5565b6111a1565b34801561062257600080fd5b506102f361063136600461204a565b6111cf565b34801561064257600080fd5b5061026b600c5481565b60006001600160e01b031982166380ac58cd60e01b148061067d57506001600160e01b03198216635b5e139f60e01b145b8061069857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106ad906123d3565b80601f01602080910402602001604051908101604052809291908181526020018280546106d9906123d3565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b600061073b82611267565b6107a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b816107ca81611283565b6107d4838361133c565b505050565b60006107e361144e565b905090565b826001600160a01b03811633146108025761080233611283565b61080d84848461145f565b50505050565b6007546001600160a01b0316331461083d5760405162461bcd60e51b815260040161079b9061240d565b6040514790339082156108fc029083906000818181858888f1935050505015801561086c573d6000803e3d6000fd5b5050565b826001600160a01b038116331461088a5761088a33611283565b61080d848484611490565b6007546001600160a01b031633146108bf5760405162461bcd60e51b815260040161079b9061240d565b60005b818110156107d4576000600d60008585858181106108e2576108e2612442565b90506020020160208101906108f7919061204a565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116109655760405162461bcd60e51b815260206004820181905260248201527f41646472657373206e6f742070726573656e7420696e2077686974656c697374604482015260640161079b565b6000600d600085858581811061097d5761097d612442565b9050602002016020810190610992919061204a565b6001600160a01b03168152602081019190915260400160002055806109b68161246e565b9150506108c2565b6007546001600160a01b031633146109e85760405162461bcd60e51b815260040161079b9061240d565b600861086c82826124cd565b6007546001600160a01b03163314610a1e5760405162461bcd60e51b815260040161079b9061240d565b600b5481600c54610a2f919061258d565b1115610a895760405162461bcd60e51b8152602060048201526024808201527f41697264726f702065786365656473206f6c6420636f6e747261637420737570604482015263706c792160e01b606482015260840161079b565b60005b81811015610b3c57600a54600c54610b2a916001600160a01b031690636352211e90610ab990859061258d565b610ac490600161258d565b6040518263ffffffff1660e01b8152600401610ae291815260200190565b602060405180830381865afa158015610aff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2391906125a0565b60016114ab565b80610b348161246e565b915050610a8c565b5080600c6000828254610b4f919061258d565b909155505050565b600080610b63836114c5565b509392505050565b60088054610b78906123d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba4906123d3565b8015610bf15780601f10610bc657610100808354040283529160200191610bf1565b820191906000526020600020905b815481529060010190602001808311610bd457829003601f168201915b505050505081565b60006001600160a01b038216610c675760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b606482015260840161079b565b600060015b600454811015610cc157610c7f81611267565b15610cb157610c8d81610b57565b6001600160a01b0316846001600160a01b031603610cb157610cae8261246e565b91505b610cba8161246e565b9050610c6c565b5092915050565b6007546001600160a01b03163314610cf25760405162461bcd60e51b815260040161079b9061240d565b610cfc600061155c565b565b6007546001600160a01b03163314610d285760405162461bcd60e51b815260040161079b9061240d565b60005b818110156107d457600d6000848484818110610d4957610d49612442565b9050602002016020810190610d5e919061204a565b6001600160a01b0316815260208101919091526040016000205415610dc55760405162461bcd60e51b815260206004820152601b60248201527f4164647265737320616c72656164792077686974656c69737465640000000000604482015260640161079b565b6001600d6000858585818110610ddd57610ddd612442565b9050602002016020810190610df2919061204a565b6001600160a01b0316815260208101919091526040016000205580610e168161246e565b915050610d2b565b6060600080610e2c84610bf9565b905060008167ffffffffffffffff811115610e4957610e496121c5565b604051908082528060200260200182016040528015610e72578160200160208202803683370190505b50905060015b828414610edc57610e8881611267565b15610ed457856001600160a01b0316610ea082610b57565b6001600160a01b031603610ed45780828580600101965081518110610ec757610ec7612442565b6020026020010181815250505b600101610e78565b50949350505050565b6060600280546106ad906123d3565b61115c81610f006107d9565b610f0a919061258d565b1115610f4f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161079b565b600954421015610fa15760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720686173206e6f742073746172746564207965742100000000604482015260640161079b565b336000908152600d602052604090205460010361101d57610fc98166354a6ba7a180006125bd565b3410156110185760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e74210000000000604482015260640161079b565b61107d565b61102e816658d15e176280006125bd565b34101561107d5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e74210000000000604482015260640161079b565b61108733826114ab565b50565b8161109481611283565b6107d483836115ae565b836001600160a01b03811633146110b8576110b833611283565b6110c485858585611672565b5050505050565b60606110d682611267565b61113a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079b565b6111426116a4565b61114b836116b3565b60405160200161115c9291906125d4565b6040516020818303038152906040529050919050565b6007546001600160a01b0316331461119c5760405162461bcd60e51b815260040161079b9061240d565b600955565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6007546001600160a01b031633146111f95760405162461bcd60e51b815260040161079b9061240d565b6001600160a01b03811661125e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079b565b6110878161155c565b600061127260045490565b821080156106985750506001111590565b6daaeb6d7670e522a718067333cd4e3b1561108757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113149190612613565b61108757604051633b79c77360e21b81526001600160a01b038216600482015260240161079b565b600061134782610b57565b9050806001600160a01b0316836001600160a01b0316036113b65760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b606482015260840161079b565b336001600160a01b03821614806113d257506113d281336111a1565b6114445760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000606482015260840161079b565b6107d48383611746565b600060016004546107e39190612630565b61146933826117b4565b6114855760405162461bcd60e51b815260040161079b90612643565b6107d4838383611881565b6107d48383836040518060200160405280600081525061109e565b61086c828260405180602001604052806000815250611a6e565b6000806114d183611267565b6115325760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079b565b61153b83611aaf565b6000818152600360205260409020546001600160a01b031694909350915050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036116065760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c657200000000604482015260640161079b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61167c33836117b4565b6116985760405162461bcd60e51b815260040161079b90612643565b61080d84848484611abb565b6060600880546106ad906123d3565b606060006116c083611ad4565b600101905060008167ffffffffffffffff8111156116e0576116e06121c5565b6040519080825280601f01601f19166020018201604052801561170a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461171457509392505050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061177b82610b57565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117bf82611267565b6118235760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079b565b600061182e83610b57565b9050806001600160a01b0316846001600160a01b031614806118695750836001600160a01b031661185e84610730565b6001600160a01b0316145b80611879575061187981856111a1565b949350505050565b60008061188d836114c5565b91509150846001600160a01b0316826001600160a01b0316146119075760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b606482015260840161079b565b6001600160a01b03841661196d5760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b606482015260840161079b565b611978600084611746565b600061198584600161258d565b600881901c600090815260208190526040902054909150600160ff1b60ff83161c161580156119b5575060045481105b156119eb57600081815260036020526040812080546001600160a01b0319166001600160a01b0389161790556119eb9082611bac565b600084815260036020526040902080546001600160a01b0319166001600160a01b038716179055818414611a2457611a24600085611bac565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611a7960045490565b9050611a858484611bd8565b611a93600085838686611d4a565b61080d5760405162461bcd60e51b815260040161079b90612697565b60006106988183611e81565b611ac6848484611881565b611a93848484600185611d4a565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611b135772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611b3f576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611b5d57662386f26fc10000830492506010015b6305f5e1008310611b75576305f5e100830492506008015b6127108310611b8957612710830492506004015b60648310611b9b576064830492506002015b600a83106106985760010192915050565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b6000611be360045490565b905060008211611c435760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b606482015260840161079b565b6001600160a01b038316611ca55760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b606482015260840161079b565b8160046000828254611cb7919061258d565b9091555050600081815260036020526040812080546001600160a01b0319166001600160a01b038616179055611ced9082611bac565b805b611cf9838361258d565b81101561080d5760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480611d428161246e565b915050611cef565b60006001600160a01b0385163b15611e7457506001835b611d6b848661258d565b811015611e6e57604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290611da49033908b90869089906004016126ec565b6020604051808303816000875af1925050508015611ddf575060408051601f3d908101601f19168201909252611ddc91810190612729565b60015b611e3c573d808015611e0d576040519150601f19603f3d011682016040523d82523d6000602084013e611e12565b606091505b508051600003611e345760405162461bcd60e51b815260040161079b90612697565b805181602001fd5b828015611e5957506001600160e01b03198116630a85bd0160e11b145b92505080611e668161246e565b915050611d61565b50611e78565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c8015611ec357611eb181611f79565b60ff168203600884901b179350611f70565b60008311611f305760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b606482015260840161079b565b506000199091016000818152602086905260409020549091908015611f6b57611f5881611f79565b60ff0360ff16600884901b179350611f70565b611ec3565b50505092915050565b60006040518061012001604052806101008152602001612747610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff611fc285611fe3565b02901c81518110611fd557611fd5612442565b016020015160f81c92915050565b6000808211611ff157600080fd5b5060008190031690565b6001600160e01b03198116811461108757600080fd5b60006020828403121561202357600080fd5b813561202e81611ffb565b9392505050565b6001600160a01b038116811461108757600080fd5b60006020828403121561205c57600080fd5b813561202e81612035565b60005b8381101561208257818101518382015260200161206a565b50506000910152565b600081518084526120a3816020860160208601612067565b601f01601f19169290920160200192915050565b60208152600061202e602083018461208b565b6000602082840312156120dc57600080fd5b5035919050565b600080604083850312156120f657600080fd5b823561210181612035565b946020939093013593505050565b60008060006060848603121561212457600080fd5b833561212f81612035565b9250602084013561213f81612035565b929592945050506040919091013590565b6000806020838503121561216357600080fd5b823567ffffffffffffffff8082111561217b57600080fd5b818501915085601f83011261218f57600080fd5b81358181111561219e57600080fd5b8660208260051b85010111156121b357600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121f6576121f66121c5565b604051601f8501601f19908116603f0116810190828211818310171561221e5761221e6121c5565b8160405280935085815286868601111561223757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561226357600080fd5b813567ffffffffffffffff81111561227a57600080fd5b8201601f8101841361228b57600080fd5b611879848235602084016121db565b6020808252825182820181905260009190848201906040850190845b818110156122d2578351835292840192918401916001016122b6565b50909695505050505050565b801515811461108757600080fd5b600080604083850312156122ff57600080fd5b823561230a81612035565b9150602083013561231a816122de565b809150509250929050565b6000806000806080858703121561233b57600080fd5b843561234681612035565b9350602085013561235681612035565b925060408501359150606085013567ffffffffffffffff81111561237957600080fd5b8501601f8101871361238a57600080fd5b612399878235602084016121db565b91505092959194509250565b600080604083850312156123b857600080fd5b82356123c381612035565b9150602083013561231a81612035565b600181811c908216806123e757607f821691505b60208210810361240757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161248057612480612458565b5060010190565b601f8211156107d457600081815260208120601f850160051c810160208610156124ae5750805b601f850160051c820191505b81811015611a66578281556001016124ba565b815167ffffffffffffffff8111156124e7576124e76121c5565b6124fb816124f584546123d3565b84612487565b602080601f83116001811461253057600084156125185750858301515b600019600386901b1c1916600185901b178555611a66565b600085815260208120601f198616915b8281101561255f57888601518255948401946001909101908401612540565b508582101561257d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561069857610698612458565b6000602082840312156125b257600080fd5b815161202e81612035565b808202811582820484141761069857610698612458565b600083516125e6818460208801612067565b8351908301906125fa818360208801612067565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561262557600080fd5b815161202e816122de565b8181038181111561069857610698612458565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271f9083018461208b565b9695505050505050565b60006020828403121561273b57600080fd5b815161202e81611ffb56fe0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a26469706673582212201e0304009604c9f8a81b3a3fceeb033e8022e79039382faa03e31ab8edae6dac64736f6c63430008120033697066733a2f2f516d4e6d667631464e4e67503444784b7a43327a54654c6764626565524d566851655a78517371797068477865592f
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063d5b3621b1161006f578063d5b3621b146105b6578063df85b4b2146105d6578063e985e9c5146105f6578063f2fde38b14610616578063f437af541461063657600080fd5b8063a22cb4651461053b578063aca9938d1461055b578063b88d4fde14610576578063c87b56dd1461059657600080fd5b80638462151c116100e75780638462151c146104b25780638da5cb5b146104df578063931e2e49146104fd57806395d89b4114610513578063a0712d681461052857600080fd5b80636c0360eb1461044857806370a082311461045d578063715018a61461047d5780637f6497831461049257600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103b7578063564d0485146103d75780635dc5152d146103f75780636352211e1461040d5780636bde26271461042d57600080fd5b80633ccfd60b1461034057806341f434341461035557806342842e0e14610377578063548db1741461039757600080fd5b8063095ea7b3116101d7578063095ea7b3146102d357806318160ddd146102f557806323b872dd1461030a57806332cb6b0c1461032a57600080fd5b806301ffc9a71461020957806306c933d81461023e57806306fdde0314610279578063081812fc1461029b575b600080fd5b34801561021557600080fd5b50610229610224366004612011565b61064c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061026b61025936600461204a565b600d6020526000908152604090205481565b604051908152602001610235565b34801561028557600080fd5b5061028e61069e565b60405161023591906120b7565b3480156102a757600080fd5b506102bb6102b63660046120ca565b610730565b6040516001600160a01b039091168152602001610235565b3480156102df57600080fd5b506102f36102ee3660046120e3565b6107c0565b005b34801561030157600080fd5b5061026b6107d9565b34801561031657600080fd5b506102f361032536600461210f565b6107e8565b34801561033657600080fd5b5061026b61115c81565b34801561034c57600080fd5b506102f3610813565b34801561036157600080fd5b506102bb6daaeb6d7670e522a718067333cd4e81565b34801561038357600080fd5b506102f361039236600461210f565b610870565b3480156103a357600080fd5b506102f36103b2366004612150565b610895565b3480156103c357600080fd5b506102f36103d2366004612251565b6109be565b3480156103e357600080fd5b506102f36103f23660046120ca565b6109f4565b34801561040357600080fd5b5061026b600b5481565b34801561041957600080fd5b506102bb6104283660046120ca565b610b57565b34801561043957600080fd5b5061026b6658d15e1762800081565b34801561045457600080fd5b5061028e610b6b565b34801561046957600080fd5b5061026b61047836600461204a565b610bf9565b34801561048957600080fd5b506102f3610cc8565b34801561049e57600080fd5b506102f36104ad366004612150565b610cfe565b3480156104be57600080fd5b506104d26104cd36600461204a565b610e1e565b604051610235919061229a565b3480156104eb57600080fd5b506007546001600160a01b03166102bb565b34801561050957600080fd5b5061026b60095481565b34801561051f57600080fd5b5061028e610ee5565b6102f36105363660046120ca565b610ef4565b34801561054757600080fd5b506102f36105563660046122ec565b61108a565b34801561056757600080fd5b5061026b66354a6ba7a1800081565b34801561058257600080fd5b506102f3610591366004612325565b61109e565b3480156105a257600080fd5b5061028e6105b13660046120ca565b6110cb565b3480156105c257600080fd5b506102f36105d13660046120ca565b611172565b3480156105e257600080fd5b50600a546102bb906001600160a01b031681565b34801561060257600080fd5b506102296106113660046123a5565b6111a1565b34801561062257600080fd5b506102f361063136600461204a565b6111cf565b34801561064257600080fd5b5061026b600c5481565b60006001600160e01b031982166380ac58cd60e01b148061067d57506001600160e01b03198216635b5e139f60e01b145b8061069857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106ad906123d3565b80601f01602080910402602001604051908101604052809291908181526020018280546106d9906123d3565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b600061073b82611267565b6107a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b816107ca81611283565b6107d4838361133c565b505050565b60006107e361144e565b905090565b826001600160a01b03811633146108025761080233611283565b61080d84848461145f565b50505050565b6007546001600160a01b0316331461083d5760405162461bcd60e51b815260040161079b9061240d565b6040514790339082156108fc029083906000818181858888f1935050505015801561086c573d6000803e3d6000fd5b5050565b826001600160a01b038116331461088a5761088a33611283565b61080d848484611490565b6007546001600160a01b031633146108bf5760405162461bcd60e51b815260040161079b9061240d565b60005b818110156107d4576000600d60008585858181106108e2576108e2612442565b90506020020160208101906108f7919061204a565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116109655760405162461bcd60e51b815260206004820181905260248201527f41646472657373206e6f742070726573656e7420696e2077686974656c697374604482015260640161079b565b6000600d600085858581811061097d5761097d612442565b9050602002016020810190610992919061204a565b6001600160a01b03168152602081019190915260400160002055806109b68161246e565b9150506108c2565b6007546001600160a01b031633146109e85760405162461bcd60e51b815260040161079b9061240d565b600861086c82826124cd565b6007546001600160a01b03163314610a1e5760405162461bcd60e51b815260040161079b9061240d565b600b5481600c54610a2f919061258d565b1115610a895760405162461bcd60e51b8152602060048201526024808201527f41697264726f702065786365656473206f6c6420636f6e747261637420737570604482015263706c792160e01b606482015260840161079b565b60005b81811015610b3c57600a54600c54610b2a916001600160a01b031690636352211e90610ab990859061258d565b610ac490600161258d565b6040518263ffffffff1660e01b8152600401610ae291815260200190565b602060405180830381865afa158015610aff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2391906125a0565b60016114ab565b80610b348161246e565b915050610a8c565b5080600c6000828254610b4f919061258d565b909155505050565b600080610b63836114c5565b509392505050565b60088054610b78906123d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba4906123d3565b8015610bf15780601f10610bc657610100808354040283529160200191610bf1565b820191906000526020600020905b815481529060010190602001808311610bd457829003601f168201915b505050505081565b60006001600160a01b038216610c675760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b606482015260840161079b565b600060015b600454811015610cc157610c7f81611267565b15610cb157610c8d81610b57565b6001600160a01b0316846001600160a01b031603610cb157610cae8261246e565b91505b610cba8161246e565b9050610c6c565b5092915050565b6007546001600160a01b03163314610cf25760405162461bcd60e51b815260040161079b9061240d565b610cfc600061155c565b565b6007546001600160a01b03163314610d285760405162461bcd60e51b815260040161079b9061240d565b60005b818110156107d457600d6000848484818110610d4957610d49612442565b9050602002016020810190610d5e919061204a565b6001600160a01b0316815260208101919091526040016000205415610dc55760405162461bcd60e51b815260206004820152601b60248201527f4164647265737320616c72656164792077686974656c69737465640000000000604482015260640161079b565b6001600d6000858585818110610ddd57610ddd612442565b9050602002016020810190610df2919061204a565b6001600160a01b0316815260208101919091526040016000205580610e168161246e565b915050610d2b565b6060600080610e2c84610bf9565b905060008167ffffffffffffffff811115610e4957610e496121c5565b604051908082528060200260200182016040528015610e72578160200160208202803683370190505b50905060015b828414610edc57610e8881611267565b15610ed457856001600160a01b0316610ea082610b57565b6001600160a01b031603610ed45780828580600101965081518110610ec757610ec7612442565b6020026020010181815250505b600101610e78565b50949350505050565b6060600280546106ad906123d3565b61115c81610f006107d9565b610f0a919061258d565b1115610f4f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161079b565b600954421015610fa15760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720686173206e6f742073746172746564207965742100000000604482015260640161079b565b336000908152600d602052604090205460010361101d57610fc98166354a6ba7a180006125bd565b3410156110185760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e74210000000000604482015260640161079b565b61107d565b61102e816658d15e176280006125bd565b34101561107d5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e74210000000000604482015260640161079b565b61108733826114ab565b50565b8161109481611283565b6107d483836115ae565b836001600160a01b03811633146110b8576110b833611283565b6110c485858585611672565b5050505050565b60606110d682611267565b61113a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079b565b6111426116a4565b61114b836116b3565b60405160200161115c9291906125d4565b6040516020818303038152906040529050919050565b6007546001600160a01b0316331461119c5760405162461bcd60e51b815260040161079b9061240d565b600955565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6007546001600160a01b031633146111f95760405162461bcd60e51b815260040161079b9061240d565b6001600160a01b03811661125e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079b565b6110878161155c565b600061127260045490565b821080156106985750506001111590565b6daaeb6d7670e522a718067333cd4e3b1561108757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113149190612613565b61108757604051633b79c77360e21b81526001600160a01b038216600482015260240161079b565b600061134782610b57565b9050806001600160a01b0316836001600160a01b0316036113b65760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b606482015260840161079b565b336001600160a01b03821614806113d257506113d281336111a1565b6114445760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000606482015260840161079b565b6107d48383611746565b600060016004546107e39190612630565b61146933826117b4565b6114855760405162461bcd60e51b815260040161079b90612643565b6107d4838383611881565b6107d48383836040518060200160405280600081525061109e565b61086c828260405180602001604052806000815250611a6e565b6000806114d183611267565b6115325760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079b565b61153b83611aaf565b6000818152600360205260409020546001600160a01b031694909350915050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036116065760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c657200000000604482015260640161079b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61167c33836117b4565b6116985760405162461bcd60e51b815260040161079b90612643565b61080d84848484611abb565b6060600880546106ad906123d3565b606060006116c083611ad4565b600101905060008167ffffffffffffffff8111156116e0576116e06121c5565b6040519080825280601f01601f19166020018201604052801561170a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461171457509392505050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061177b82610b57565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117bf82611267565b6118235760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079b565b600061182e83610b57565b9050806001600160a01b0316846001600160a01b031614806118695750836001600160a01b031661185e84610730565b6001600160a01b0316145b80611879575061187981856111a1565b949350505050565b60008061188d836114c5565b91509150846001600160a01b0316826001600160a01b0316146119075760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b606482015260840161079b565b6001600160a01b03841661196d5760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b606482015260840161079b565b611978600084611746565b600061198584600161258d565b600881901c600090815260208190526040902054909150600160ff1b60ff83161c161580156119b5575060045481105b156119eb57600081815260036020526040812080546001600160a01b0319166001600160a01b0389161790556119eb9082611bac565b600084815260036020526040902080546001600160a01b0319166001600160a01b038716179055818414611a2457611a24600085611bac565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611a7960045490565b9050611a858484611bd8565b611a93600085838686611d4a565b61080d5760405162461bcd60e51b815260040161079b90612697565b60006106988183611e81565b611ac6848484611881565b611a93848484600185611d4a565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611b135772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611b3f576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611b5d57662386f26fc10000830492506010015b6305f5e1008310611b75576305f5e100830492506008015b6127108310611b8957612710830492506004015b60648310611b9b576064830492506002015b600a83106106985760010192915050565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b6000611be360045490565b905060008211611c435760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b606482015260840161079b565b6001600160a01b038316611ca55760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b606482015260840161079b565b8160046000828254611cb7919061258d565b9091555050600081815260036020526040812080546001600160a01b0319166001600160a01b038616179055611ced9082611bac565b805b611cf9838361258d565b81101561080d5760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480611d428161246e565b915050611cef565b60006001600160a01b0385163b15611e7457506001835b611d6b848661258d565b811015611e6e57604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290611da49033908b90869089906004016126ec565b6020604051808303816000875af1925050508015611ddf575060408051601f3d908101601f19168201909252611ddc91810190612729565b60015b611e3c573d808015611e0d576040519150601f19603f3d011682016040523d82523d6000602084013e611e12565b606091505b508051600003611e345760405162461bcd60e51b815260040161079b90612697565b805181602001fd5b828015611e5957506001600160e01b03198116630a85bd0160e11b145b92505080611e668161246e565b915050611d61565b50611e78565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c8015611ec357611eb181611f79565b60ff168203600884901b179350611f70565b60008311611f305760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b606482015260840161079b565b506000199091016000818152602086905260409020549091908015611f6b57611f5881611f79565b60ff0360ff16600884901b179350611f70565b611ec3565b50505092915050565b60006040518061012001604052806101008152602001612747610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff611fc285611fe3565b02901c81518110611fd557611fd5612442565b016020015160f81c92915050565b6000808211611ff157600080fd5b5060008190031690565b6001600160e01b03198116811461108757600080fd5b60006020828403121561202357600080fd5b813561202e81611ffb565b9392505050565b6001600160a01b038116811461108757600080fd5b60006020828403121561205c57600080fd5b813561202e81612035565b60005b8381101561208257818101518382015260200161206a565b50506000910152565b600081518084526120a3816020860160208601612067565b601f01601f19169290920160200192915050565b60208152600061202e602083018461208b565b6000602082840312156120dc57600080fd5b5035919050565b600080604083850312156120f657600080fd5b823561210181612035565b946020939093013593505050565b60008060006060848603121561212457600080fd5b833561212f81612035565b9250602084013561213f81612035565b929592945050506040919091013590565b6000806020838503121561216357600080fd5b823567ffffffffffffffff8082111561217b57600080fd5b818501915085601f83011261218f57600080fd5b81358181111561219e57600080fd5b8660208260051b85010111156121b357600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121f6576121f66121c5565b604051601f8501601f19908116603f0116810190828211818310171561221e5761221e6121c5565b8160405280935085815286868601111561223757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561226357600080fd5b813567ffffffffffffffff81111561227a57600080fd5b8201601f8101841361228b57600080fd5b611879848235602084016121db565b6020808252825182820181905260009190848201906040850190845b818110156122d2578351835292840192918401916001016122b6565b50909695505050505050565b801515811461108757600080fd5b600080604083850312156122ff57600080fd5b823561230a81612035565b9150602083013561231a816122de565b809150509250929050565b6000806000806080858703121561233b57600080fd5b843561234681612035565b9350602085013561235681612035565b925060408501359150606085013567ffffffffffffffff81111561237957600080fd5b8501601f8101871361238a57600080fd5b612399878235602084016121db565b91505092959194509250565b600080604083850312156123b857600080fd5b82356123c381612035565b9150602083013561231a81612035565b600181811c908216806123e757607f821691505b60208210810361240757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161248057612480612458565b5060010190565b601f8211156107d457600081815260208120601f850160051c810160208610156124ae5750805b601f850160051c820191505b81811015611a66578281556001016124ba565b815167ffffffffffffffff8111156124e7576124e76121c5565b6124fb816124f584546123d3565b84612487565b602080601f83116001811461253057600084156125185750858301515b600019600386901b1c1916600185901b178555611a66565b600085815260208120601f198616915b8281101561255f57888601518255948401946001909101908401612540565b508582101561257d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561069857610698612458565b6000602082840312156125b257600080fd5b815161202e81612035565b808202811582820484141761069857610698612458565b600083516125e6818460208801612067565b8351908301906125fa818360208801612067565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561262557600080fd5b815161202e816122de565b8181038181111561069857610698612458565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271f9083018461208b565b9695505050505050565b60006020828403121561273b57600080fd5b815161202e81611ffb56fe0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a26469706673582212201e0304009604c9f8a81b3a3fceeb033e8022e79039382faa03e31ab8edae6dac64736f6c63430008120033
Deployed Bytecode Sourcemap
83456:5060:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65896:321;;;;;;;;;;-1:-1:-1;65896:321:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;65896:321:0;;;;;;;;84089:52;;;;;;;;;;-1:-1:-1;84089:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1126:25:1;;;1114:2;1099:18;84089:52:0;980:177:1;67448:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;69064:277::-;;;;;;;;;;-1:-1:-1;69064:277:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2267:32:1;;;2249:51;;2237:2;2222:18;69064:277:0;2103:203:1;87666:182:0;;;;;;;;;;-1:-1:-1;87666:182:0;;;;;:::i;:::-;;:::i;:::-;;79007:101;;;;;;;;;;;;;:::i;87856:197::-;;;;;;;;;;-1:-1:-1;87856:197:0;;;;;:::i;:::-;;:::i;83657:41::-;;;;;;;;;;;;83694:4;83657:41;;87304:145;;;;;;;;;;;;;:::i;8231:143::-;;;;;;;;;;;;186:42;8231:143;;88061:205;;;;;;;;;;-1:-1:-1;88061:205:0;;;;;:::i;:::-;;:::i;86195:383::-;;;;;;;;;;-1:-1:-1;86195:383:0;;;;;:::i;:::-;;:::i;86702:106::-;;;;;;;;;;-1:-1:-1;86702:106:0;;;;;:::i;:::-;;:::i;84294:549::-;;;;;;;;;;-1:-1:-1;84294:549:0;;;;;:::i;:::-;;:::i;83992:41::-;;;;;;;;;;;;;;;;66833:188;;;;;;;;;;-1:-1:-1;66833:188:0;;;;;:::i;:::-;;:::i;83530:55::-;;;;;;;;;;;;83574:11;83530:55;;83705:89;;;;;;;;;;;;;:::i;66281:490::-;;;;;;;;;;-1:-1:-1;66281:490:0;;;;;:::i;:::-;;:::i;82404:103::-;;;;;;;;;;;;;:::i;85813:374::-;;;;;;;;;;-1:-1:-1;85813:374:0;;;;;:::i;:::-;;:::i;79404:680::-;;;;;;;;;;-1:-1:-1;79404:680:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;81745:87::-;;;;;;;;;;-1:-1:-1;81818:6:0;;-1:-1:-1;;;;;81818:6:0;81745:87;;83801:41;;;;;;;;;;;;;;;;67617:104;;;;;;;;;;;;;:::i;84851:828::-;;;;;;:::i;:::-;;:::i;87457:201::-;;;;;;;;;;-1:-1:-1;87457:201:0;;;;;:::i;:::-;;:::i;83592:58::-;;;;;;;;;;;;83639:11;83592:58;;88274:239;;;;;;;;;;-1:-1:-1;88274:239:0;;;;;:::i;:::-;;:::i;86925:371::-;;;;;;;;;;-1:-1:-1;86925:371:0;;;;;:::i;:::-;;:::i;85687:118::-;;;;;;;;;;-1:-1:-1;85687:118:0;;;;;:::i;:::-;;:::i;83889:96::-;;;;;;;;;;-1:-1:-1;83889:96:0;;;;-1:-1:-1;;;;;83889:96:0;;;69807:189;;;;;;;;;;-1:-1:-1;69807:189:0;;;;;:::i;:::-;;:::i;82662:238::-;;;;;;;;;;-1:-1:-1;82662:238:0;;;;;:::i;:::-;;:::i;84040:40::-;;;;;;;;;;;;;;;;65896:321;66014:4;-1:-1:-1;;;;;;66051:40:0;;-1:-1:-1;;;66051:40:0;;:105;;-1:-1:-1;;;;;;;66108:48:0;;-1:-1:-1;;;66108:48:0;66051:105;:158;;;-1:-1:-1;;;;;;;;;;19677:40:0;;;66173:36;66031:178;65896:321;-1:-1:-1;;65896:321:0:o;67448:100::-;67502:13;67535:5;67528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67448:100;:::o;69064:277::-;69156:7;69198:16;69206:7;69198;:16::i;:::-;69176:113;;;;-1:-1:-1;;;69176:113:0;;8103:2:1;69176:113:0;;;8085:21:1;8142:2;8122:18;;;8115:30;8181:34;8161:18;;;8154:62;-1:-1:-1;;;8232:18:1;;;8225:45;8287:19;;69176:113:0;;;;;;;;;-1:-1:-1;69309:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;69309:24:0;;69064:277::o;87666:182::-;87787:8;10147:30;10168:8;10147:20;:30::i;:::-;87808:32:::1;87822:8;87832:7;87808:13;:32::i;:::-;87666:182:::0;;;:::o;79007:101::-;79059:7;79086:14;:12;:14::i;:::-;79079:21;;79007:101;:::o;87856:197::-;87991:4;-1:-1:-1;;;;;9873:18:0;;9881:10;9873:18;9869:83;;9908:32;9929:10;9908:20;:32::i;:::-;88008:37:::1;88027:4;88033:2;88037:7;88008:18;:37::i;:::-;87856:197:::0;;;;:::o;87304:145::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;87404:37:::1;::::0;87372:21:::1;::::0;87412:10:::1;::::0;87404:37;::::1;;;::::0;87372:21;;87354:15:::1;87404:37:::0;87354:15;87404:37;87372:21;87412:10;87404:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;87343:106;87304:145::o:0;88061:205::-;88200:4;-1:-1:-1;;;;;9873:18:0;;9881:10;9873:18;9869:83;;9908:32;9929:10;9908:20;:32::i;:::-;88217:41:::1;88240:4;88246:2;88250:7;88217:22;:41::i;86195:383::-:0;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;86308:9:::1;86303:268;86323:23:::0;;::::1;86303:268;;;86434:1;86394:20;:37;86415:12;;86428:1;86415:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;86394:37:0::1;-1:-1:-1::0;;;;;86394:37:0::1;;;;;;;;;;;;;:41;86368:135;;;::::0;-1:-1:-1;;;86368:135:0;;9012:2:1;86368:135:0::1;::::0;::::1;8994:21:1::0;;;9031:18;;;9024:30;9090:34;9070:18;;;9063:62;9142:18;;86368:135:0::1;8810:356:1::0;86368:135:0::1;86558:1;86518:20;:37;86539:12;;86552:1;86539:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;86518:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;86518:37:0;:41;86348:3;::::1;::::0;::::1;:::i;:::-;;;;86303:268;;86702:106:::0;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;86779:7:::1;:21;86789:11:::0;86779:7;:21:::1;:::i;84294:549::-:0;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;84438:22:::1;;84417:17;84393:21;;:41;;;;:::i;:::-;:67;;84371:153;;;::::0;-1:-1:-1;;;84371:153:0;;11979:2:1;84371:153:0::1;::::0;::::1;11961:21:1::0;12018:2;11998:18;;;11991:30;12057:34;12037:18;;;12030:62;-1:-1:-1;;;12108:18:1;;;12101:34;12152:19;;84371:153:0::1;11777:400:1::0;84371:153:0::1;84540:9;84535:248;84559:17;84555:1;:21;84535:248;;;84638:18;::::0;84688:21:::1;::::0;84598:173:::1;::::0;-1:-1:-1;;;;;84638:18:0::1;::::0;84626:39:::1;::::0;84688:25:::1;::::0;84712:1;;84688:25:::1;:::i;:::-;:29;::::0;84716:1:::1;84688:29;:::i;:::-;84626:110;;;;;;;;;;;;;1126:25:1::0;;1114:2;1099:18;;980:177;84626:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;84755:1;84598:9;:173::i;:::-;84578:3:::0;::::1;::::0;::::1;:::i;:::-;;;;84535:248;;;;84818:17;84793:21;;:42;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;84294:549:0:o;66833:188::-;66921:7;66942:13;66961:29;66982:7;66961:20;:29::i;:::-;-1:-1:-1;66941:49:0;66833:188;-1:-1:-1;;;66833:188:0:o;83705:89::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66281:490::-;66369:4;-1:-1:-1;;;;;66408:19:0;;66386:114;;;;-1:-1:-1;;;66386:114:0;;12640:2:1;66386:114:0;;;12622:21:1;12679:2;12659:18;;;12652:30;12718:34;12698:18;;;12691:62;-1:-1:-1;;;12769:18:1;;;12762:43;12822:19;;66386:114:0;12438:409:1;66386:114:0;66513:10;86908:1;66534:207;65584:13;;66565:1;:18;66534:207;;;66609:10;66617:1;66609:7;:10::i;:::-;66605:125;;;66653:10;66661:1;66653:7;:10::i;:::-;-1:-1:-1;;;;;66644:19:0;:5;-1:-1:-1;;;;;66644:19:0;;66640:75;;66688:7;;;:::i;:::-;;;66640:75;66585:3;;;:::i;:::-;;;66534:207;;;-1:-1:-1;66758:5:0;66281:490;-1:-1:-1;;66281:490:0:o;82404:103::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;82469:30:::1;82496:1;82469:18;:30::i;:::-;82404:103::o:0;85813:374::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;85921:9:::1;85916:264;85936:23:::0;;::::1;85916:264;;;86007:20;:37;86028:12;;86041:1;86028:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;86007:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;86007:37:0;;:42;85981:131:::1;;;::::0;-1:-1:-1;;;85981:131:0;;13054:2:1;85981:131:0::1;::::0;::::1;13036:21:1::0;13093:2;13073:18;;;13066:30;13132:29;13112:18;;;13105:57;13179:18;;85981:131:0::1;12852:351:1::0;85981:131:0::1;86167:1;86127:20;:37;86148:12;;86161:1;86148:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;86127:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;86127:37:0;:41;85961:3;::::1;::::0;::::1;:::i;:::-;;;;85916:264;;79404:680:::0;79489:16;79543:19;79577:22;79602:16;79612:5;79602:9;:16::i;:::-;79577:41;;79633:25;79675:14;79661:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79661:29:0;-1:-1:-1;79633:57:0;-1:-1:-1;86908:1:0;79705:331;79789:14;79774:11;:29;79705:331;;79864:10;79872:1;79864:7;:10::i;:::-;79860:161;;;79917:5;-1:-1:-1;;;;;79903:19:0;:10;79911:1;79903:7;:10::i;:::-;-1:-1:-1;;;;;79903:19:0;;79899:103;;79977:1;79951:8;79960:13;;;;;;79951:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;79899:103;79822:3;;79705:331;;;-1:-1:-1;80057:8:0;79404:680;-1:-1:-1;;;;79404:680:0:o;67617:104::-;67673:13;67706:7;67699:14;;;;;:::i;84851:828::-;83694:4;84952:11;84936:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;84914:111;;;;-1:-1:-1;;;84914:111:0;;13410:2:1;84914:111:0;;;13392:21:1;13449:2;13429:18;;;13422:30;-1:-1:-1;;;13468:18:1;;;13461:50;13528:18;;84914:111:0;13208:344:1;84914:111:0;85077:13;;85058:15;:32;;85036:110;;;;-1:-1:-1;;;85036:110:0;;13759:2:1;85036:110:0;;;13741:21:1;13798:2;13778:18;;;13771:30;13837;13817:18;;;13810:58;13885:18;;85036:110:0;13557:352:1;85036:110:0;85182:10;85161:32;;;;:20;:32;;;;;;85197:1;85161:37;85157:372;;85254:34;85277:11;83639;85254:34;:::i;:::-;85241:9;:47;;85215:136;;;;-1:-1:-1;;;85215:136:0;;14289:2:1;85215:136:0;;;14271:21:1;14328:2;14308:18;;;14301:30;14367:29;14347:18;;;14340:57;14414:18;;85215:136:0;14087:351:1;85215:136:0;85157:372;;;85423:31;85443:11;83574;85423:31;:::i;:::-;85410:9;:44;;85384:133;;;;-1:-1:-1;;;85384:133:0;;14289:2:1;85384:133:0;;;14271:21:1;14328:2;14308:18;;;14301:30;14367:29;14347:18;;;14340:57;14414:18;;85384:133:0;14087:351:1;85384:133:0;85637:34;85647:10;85659:11;85637:9;:34::i;:::-;84851:828;:::o;87457:201::-;87586:8;10147:30;10168:8;10147:20;:30::i;:::-;87607:43:::1;87631:8;87641;87607:23;:43::i;88274:239::-:0;88441:4;-1:-1:-1;;;;;9873:18:0;;9881:10;9873:18;9869:83;;9908:32;9929:10;9908:20;:32::i;:::-;88458:47:::1;88481:4;88487:2;88491:7;88500:4;88458:22;:47::i;:::-;88274:239:::0;;;;;:::o;86925:371::-;87014:13;87062:16;87070:7;87062;:16::i;:::-;87040:113;;;;-1:-1:-1;;;87040:113:0;;14645:2:1;87040:113:0;;;14627:21:1;14684:2;14664:18;;;14657:30;14723:34;14703:18;;;14696:62;-1:-1:-1;;;14774:18:1;;;14767:45;14829:19;;87040:113:0;14443:411:1;87040:113:0;87226:10;:8;:10::i;:::-;87238:25;87255:7;87238:16;:25::i;:::-;87209:64;;;;;;;;;:::i;:::-;;;;;;;;;;;;;87164:124;;86925:371;;;:::o;85687:118::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;85767:13:::1;:30:::0;85687:118::o;69807:189::-;-1:-1:-1;;;;;69953:25:0;;;69929:4;69953:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;69807:189::o;82662:238::-;81818:6;;-1:-1:-1;;;;;81818:6:0;49896:10;81973:23;81965:68;;;;-1:-1:-1;;;81965:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;82765:22:0;::::1;82743:110;;;::::0;-1:-1:-1;;;82743:110:0;;15729:2:1;82743:110:0::1;::::0;::::1;15711:21:1::0;15768:2;15748:18;;;15741:30;15807:34;15787:18;;;15780:62;-1:-1:-1;;;15858:18:1;;;15851:36;15904:19;;82743:110:0::1;15527:402:1::0;82743:110:0::1;82864:28;82883:8;82864:18;:28::i;72632:151::-:0;72697:4;72731:14;65584:13;;;65502:103;72731:14;72721:7;:24;:54;;;;-1:-1:-1;;86908:1:0;72749:26;;;72632:151::o;10290:740::-;186:42;10481:45;:49;10477:546;;10798:128;;-1:-1:-1;;;10798:128:0;;10871:4;10798:128;;;16146:34:1;-1:-1:-1;;;;;16216:15:1;;16196:18;;;16189:43;186:42:0;;10798;;16081:18:1;;10798:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10775:237;;10968:28;;-1:-1:-1;;;10968:28:0;;-1:-1:-1;;;;;2267:32:1;;10968:28:0;;;2249:51:1;2222:18;;10968:28:0;2103:203:1;68588:410:0;68669:13;68685:16;68693:7;68685;:16::i;:::-;68669:32;;68726:5;-1:-1:-1;;;;;68720:11:0;:2;-1:-1:-1;;;;;68720:11:0;;68712:60;;;;-1:-1:-1;;;68712:60:0;;16695:2:1;68712:60:0;;;16677:21:1;16734:2;16714:18;;;16707:30;16773:34;16753:18;;;16746:62;-1:-1:-1;;;16824:18:1;;;16817:34;16868:19;;68712:60:0;16493:400:1;68712:60:0;49896:10;-1:-1:-1;;;;;68807:21:0;;;;:62;;-1:-1:-1;68832:37:0;68849:5;49896:10;69807:189;:::i;68832:37::-;68785:171;;;;-1:-1:-1;;;68785:171:0;;17100:2:1;68785:171:0;;;17082:21:1;17139:2;17119:18;;;17112:30;17178:34;17158:18;;;17151:62;17249:29;17229:18;;;17222:57;17296:19;;68785:171:0;16898:423:1;68785:171:0;68969:21;68978:2;68982:7;68969:8;:21::i;65703:121::-;65758:7;86908:1;65785:13;;:31;;;;:::i;70063:379::-;70272:41;49896:10;70305:7;70272:18;:41::i;:::-;70250:143;;;;-1:-1:-1;;;70250:143:0;;;;;;;:::i;:::-;70406:28;70416:4;70422:2;70426:7;70406:9;:28::i;70513:185::-;70651:39;70668:4;70674:2;70678:7;70651:39;;;;;;;;;;;;:16;:39::i;73745:112::-;73822:27;73832:2;73836:8;73822:27;;;;;;;;;;;;:9;:27::i;67029:352::-;67115:13;67130:24;67189:16;67197:7;67189;:16::i;:::-;67167:110;;;;-1:-1:-1;;;67167:110:0;;18082:2:1;67167:110:0;;;18064:21:1;18121:2;18101:18;;;18094:30;18160:34;18140:18;;;18133:62;-1:-1:-1;;;18211:18:1;;;18204:42;18263:19;;67167:110:0;17880:408:1;67167:110:0;67307:22;67321:7;67307:13;:22::i;:::-;67348:25;;;;:7;:25;;;;;;-1:-1:-1;;;;;67348:25:0;;67288:41;;-1:-1:-1;67029:352:0;-1:-1:-1;;67029:352:0:o;83060:191::-;83153:6;;;-1:-1:-1;;;;;83170:17:0;;;-1:-1:-1;;;;;;83170:17:0;;;;;;;83203:40;;83153:6;;;83170:17;83153:6;;83203:40;;83134:16;;83203:40;83123:128;83060:191;:::o;69413:323::-;49896:10;-1:-1:-1;;;;;69541:24:0;;;69533:65;;;;-1:-1:-1;;;69533:65:0;;18495:2:1;69533:65:0;;;18477:21:1;18534:2;18514:18;;;18507:30;18573;18553:18;;;18546:58;18621:18;;69533:65:0;18293:352:1;69533:65:0;49896:10;69611:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;69611:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;69611:53:0;;;;;;;;;;69680:48;;540:41:1;;;69611:42:0;;49896:10;69680:48;;513:18:1;69680:48:0;;;;;;;69413:323;;:::o;70769:368::-;70958:41;49896:10;70991:7;70958:18;:41::i;:::-;70936:143;;;;-1:-1:-1;;;70936:143:0;;;;;;;:::i;:::-;71090:39;71104:4;71110:2;71114:7;71123:5;71090:13;:39::i;86586:108::-;86646:13;86679:7;86672:14;;;;;:::i;34973:716::-;35029:13;35080:14;35097:17;35108:5;35097:10;:17::i;:::-;35117:1;35097:21;35080:38;;35133:20;35167:6;35156:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35156:18:0;-1:-1:-1;35133:41:0;-1:-1:-1;35298:28:0;;;35314:2;35298:28;35355:288;-1:-1:-1;;35387:5:0;-1:-1:-1;;;35524:2:0;35513:14;;35508:30;35387:5;35495:44;35585:2;35576:11;;;-1:-1:-1;35606:21:0;35355:288;35606:21;-1:-1:-1;35664:6:0;34973:716;-1:-1:-1;;;34973:716:0:o;76622:167::-;76697:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;76697:29:0;-1:-1:-1;;;;;76697:29:0;;;;;;;;:24;;76751:16;76697:24;76751:7;:16::i;:::-;-1:-1:-1;;;;;76742:39:0;;;;;;;;;;;76622:167;;:::o;72950:432::-;73068:4;73107:16;73115:7;73107;:16::i;:::-;73085:113;;;;-1:-1:-1;;;73085:113:0;;18984:2:1;73085:113:0;;;18966:21:1;19023:2;19003:18;;;18996:30;19062:34;19042:18;;;19035:62;-1:-1:-1;;;19113:18:1;;;19106:45;19168:19;;73085:113:0;18782:411:1;73085:113:0;73209:13;73225:16;73233:7;73225;:16::i;:::-;73209:32;;73271:5;-1:-1:-1;;;;;73260:16:0;:7;-1:-1:-1;;;;;73260:16:0;;:64;;;;73317:7;-1:-1:-1;;;;;73293:31:0;:20;73305:7;73293:11;:20::i;:::-;-1:-1:-1;;;;;73293:31:0;;73260:64;:113;;;;73341:32;73358:5;73365:7;73341:16;:32::i;:::-;73252:122;72950:432;-1:-1:-1;;;;72950:432:0:o;75449:1055::-;75574:13;75589:24;75617:53;75652:7;75617:20;:53::i;:::-;75573:97;;;;75700:4;-1:-1:-1;;;;;75691:13:0;:5;-1:-1:-1;;;;;75691:13:0;;75683:70;;;;-1:-1:-1;;;75683:70:0;;19400:2:1;75683:70:0;;;19382:21:1;19439:2;19419:18;;;19412:30;19478:34;19458:18;;;19451:62;-1:-1:-1;;;19529:18:1;;;19522:42;19581:19;;75683:70:0;19198:408:1;75683:70:0;-1:-1:-1;;;;;75772:16:0;;75764:68;;;;-1:-1:-1;;;75764:68:0;;19813:2:1;75764:68:0;;;19795:21:1;19852:2;19832:18;;;19825:30;19891:34;19871:18;;;19864:62;-1:-1:-1;;;19942:18:1;;;19935:37;19989:19;;75764:68:0;19611:403:1;75764:68:0;75953:29;75970:1;75974:7;75953:8;:29::i;:::-;75995:25;76023:11;:7;76033:1;76023:11;:::i;:::-;59166:1;59157:10;;;76066;59244:20;;;;;;;;;;;59157:10;;-1:-1:-1;;;;59221:4:0;59213:12;;59193:33;59244:27;:32;;;76065:85;;-1:-1:-1;65584:13:0;;76116:17;:34;76065:85;76047:223;;;76177:26;;;;:7;:26;;;;;:33;;-1:-1:-1;;;;;;76177:33:0;-1:-1:-1;;;;;76177:33:0;;;;;76225;;76177:26;76225:14;:33::i;:::-;76282:16;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;76282:21:0;-1:-1:-1;;;;;76282:21:0;;;;;76318:27;;;76314:83;;76362:23;:10;76377:7;76362:14;:23::i;:::-;76433:7;76429:2;-1:-1:-1;;;;;76414:27:0;76423:4;-1:-1:-1;;;;;76414:27:0;;;;;;;;;;;76454:42;75562:942;;;75449:1055;;;:::o;73865:487::-;73996:19;74018:14;65584:13;;;65502:103;74018:14;73996:36;;74043:19;74049:2;74053:8;74043:5;:19::i;:::-;74095:168;74144:1;74165:2;74186:11;74216:8;74243:5;74095:22;:168::i;:::-;74073:271;;;;-1:-1:-1;;;74073:271:0;;;;;;;:::i;78825:174::-;78904:24;78960:31;78904:24;78983:7;78960:22;:31::i;72019:358::-;72176:28;72186:4;72192:2;72196:7;72176:9;:28::i;:::-;72237:51;72260:4;72266:2;72270:7;72279:1;72282:5;72237:22;:51::i;30346:948::-;30399:7;;-1:-1:-1;;;30477:17:0;;30473:106;;-1:-1:-1;;;30515:17:0;;;-1:-1:-1;30561:2:0;30551:12;30473:106;30606:8;30597:5;:17;30593:106;;30644:8;30635:17;;;-1:-1:-1;30681:2:0;30671:12;30593:106;30726:8;30717:5;:17;30713:106;;30764:8;30755:17;;;-1:-1:-1;30801:2:0;30791:12;30713:106;30846:7;30837:5;:16;30833:103;;30883:7;30874:16;;;-1:-1:-1;30919:1:0;30909:11;30833:103;30963:7;30954:5;:16;30950:103;;31000:7;30991:16;;;-1:-1:-1;31036:1:0;31026:11;30950:103;31080:7;31071:5;:16;31067:103;;31117:7;31108:16;;;-1:-1:-1;31153:1:0;31143:11;31067:103;31197:7;31188:5;:16;31184:68;;31235:1;31225:11;31280:6;30346:948;-1:-1:-1;;30346:948:0:o;59636:204::-;59733:1;59724:10;;;59707:14;59804:20;;;;;;;;;;;;:28;;-1:-1:-1;;;59788:4:0;59780:12;;;59760:33;;;;59804:28;;;;;59636:204::o;74360:752::-;74433:19;74455:14;65584:13;;;65502:103;74455:14;74433:36;;74501:1;74490:8;:12;74482:62;;;;-1:-1:-1;;;74482:62:0;;20643:2:1;74482:62:0;;;20625:21:1;20682:2;20662:18;;;20655:30;20721:34;20701:18;;;20694:62;-1:-1:-1;;;20772:18:1;;;20765:35;20817:19;;74482:62:0;20441:401:1;74482:62:0;-1:-1:-1;;;;;74563:16:0;;74555:64;;;;-1:-1:-1;;;74555:64:0;;21049:2:1;74555:64:0;;;21031:21:1;21088:2;21068:18;;;21061:30;21127:34;21107:18;;;21100:62;-1:-1:-1;;;21178:18:1;;;21171:33;21221:19;;74555:64:0;20847:399:1;74555:64:0;74720:8;74703:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;74739:20:0;;;;:7;:20;;;;;:25;;-1:-1:-1;;;;;;74739:25:0;-1:-1:-1;;;;;74739:25:0;;;;;74775:27;;74739:20;74775:14;:27::i;:::-;74946:11;74909:196;74982:22;74996:8;74982:11;:22;:::i;:::-;74972:7;:32;74909:196;;;75060:33;;75085:7;;-1:-1:-1;;;;;75060:33:0;;;75077:1;;75060:33;;75077:1;;75060:33;75019:9;;;;:::i;:::-;;;;74909:196;;77443:1374;77630:6;-1:-1:-1;;;;;77653:13:0;;40362:19;:23;77649:1161;;-1:-1:-1;77689:4:0;77749:12;77708:1024;77790:23;77805:8;77790:12;:23;:::i;:::-;77780:7;:33;77708:1024;;;77901:195;;-1:-1:-1;;;77901:195:0;;-1:-1:-1;;;;;77901:36:0;;;;;:195;;49896:10;;78003:4;;78034:7;;78068:5;;77901:195;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77901:195:0;;;;;;;;-1:-1:-1;;77901:195:0;;;;;;;;;;;;:::i;:::-;;;77876:841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78347:6;:13;78364:1;78347:18;78343:355;;78394:119;;-1:-1:-1;;;78394:119:0;;;;;;;:::i;78343:355::-;78640:6;78634:13;78625:6;78621:2;78617:15;78610:38;77876:841;78190:1;:81;;;;-1:-1:-1;;;;;;;78220:51:0;;-1:-1:-1;;;78220:51:0;78190:81;78161:110;;78114:177;77832:9;;;;:::i;:::-;;;;77708:1024;;;;78746:8;;77649:1161;-1:-1:-1;78794:4:0;77649:1161;77443:1374;;;;;;;:::o;62206:1392::-;62371:1;62362:10;;;62313:19;62528:20;;;;;;;;;;;62313:19;;62362:10;62452:4;62444:12;;;;62633:18;;;62626:26;62698:6;;62694:897;;62837:22;:2;:20;:22::i;:::-;62823:36;;:11;:36;62796:1;62786:6;:11;;62785:75;62750:110;;62694:897;;;62979:1;62970:6;:10;62940:136;;;;-1:-1:-1;;;62940:136:0;;22201:2:1;62940:136:0;;;22183:21:1;22240:2;22220:18;;;22213:30;22279:34;22259:18;;;22252:62;-1:-1:-1;;;22330:18:1;;;22323:50;22390:19;;62940:136:0;21999:416:1;62940:136:0;-1:-1:-1;;;63128:8:0;;;63259:12;:20;;;;;;;;;;;63128:8;;-1:-1:-1;63304:6:0;;63300:265;;63467:22;:2;:20;:22::i;:::-;63461:3;:28;63415:75;;63426:1;63416:6;:11;;63415:75;63372:118;;63517:5;;63300:265;62908:672;;;62334:1264;;;62206:1392;;;;:::o;56540:255::-;56602:5;56697:16;;;;;;;;;;;;;;;;;56753:3;55064:64;56715:18;56730:2;56715:14;:18::i;:::-;:33;56714:42;;56697:60;;;;;;;;:::i;:::-;;;;;;;;56540:255;-1:-1:-1;;56540:255:0:o;55783:169::-;55842:7;55875:1;55870:2;:6;55862:15;;;;;;-1:-1:-1;55926:1:0;:6;;;55920:13;;55783:169::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:131::-;-1:-1:-1;;;;;667:31:1;;657:42;;647:70;;713:1;710;703:12;728:247;787:6;840:2;828:9;819:7;815:23;811:32;808:52;;;856:1;853;846:12;808:52;895:9;882:23;914:31;939:5;914:31;:::i;1162:250::-;1247:1;1257:113;1271:6;1268:1;1265:13;1257:113;;;1347:11;;;1341:18;1328:11;;;1321:39;1293:2;1286:10;1257:113;;;-1:-1:-1;;1404:1:1;1386:16;;1379:27;1162:250::o;1417:271::-;1459:3;1497:5;1491:12;1524:6;1519:3;1512:19;1540:76;1609:6;1602:4;1597:3;1593:14;1586:4;1579:5;1575:16;1540:76;:::i;:::-;1670:2;1649:15;-1:-1:-1;;1645:29:1;1636:39;;;;1677:4;1632:50;;1417:271;-1:-1:-1;;1417:271:1:o;1693:220::-;1842:2;1831:9;1824:21;1805:4;1862:45;1903:2;1892:9;1888:18;1880:6;1862:45;:::i;1918:180::-;1977:6;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;-1:-1:-1;2069:23:1;;1918:180;-1:-1:-1;1918:180:1:o;2311:315::-;2379:6;2387;2440:2;2428:9;2419:7;2415:23;2411:32;2408:52;;;2456:1;2453;2446:12;2408:52;2495:9;2482:23;2514:31;2539:5;2514:31;:::i;:::-;2564:5;2616:2;2601:18;;;;2588:32;;-1:-1:-1;;;2311:315:1:o;2631:456::-;2708:6;2716;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2832:9;2819:23;2851:31;2876:5;2851:31;:::i;:::-;2901:5;-1:-1:-1;2958:2:1;2943:18;;2930:32;2971:33;2930:32;2971:33;:::i;:::-;2631:456;;3023:7;;-1:-1:-1;;;3077:2:1;3062:18;;;;3049:32;;2631:456::o;3331:615::-;3417:6;3425;3478:2;3466:9;3457:7;3453:23;3449:32;3446:52;;;3494:1;3491;3484:12;3446:52;3534:9;3521:23;3563:18;3604:2;3596:6;3593:14;3590:34;;;3620:1;3617;3610:12;3590:34;3658:6;3647:9;3643:22;3633:32;;3703:7;3696:4;3692:2;3688:13;3684:27;3674:55;;3725:1;3722;3715:12;3674:55;3765:2;3752:16;3791:2;3783:6;3780:14;3777:34;;;3807:1;3804;3797:12;3777:34;3860:7;3855:2;3845:6;3842:1;3838:14;3834:2;3830:23;3826:32;3823:45;3820:65;;;3881:1;3878;3871:12;3820:65;3912:2;3904:11;;;;;3934:6;;-1:-1:-1;3331:615:1;;-1:-1:-1;;;;3331:615:1:o;3951:127::-;4012:10;4007:3;4003:20;4000:1;3993:31;4043:4;4040:1;4033:15;4067:4;4064:1;4057:15;4083:632;4148:5;4178:18;4219:2;4211:6;4208:14;4205:40;;;4225:18;;:::i;:::-;4300:2;4294:9;4268:2;4354:15;;-1:-1:-1;;4350:24:1;;;4376:2;4346:33;4342:42;4330:55;;;4400:18;;;4420:22;;;4397:46;4394:72;;;4446:18;;:::i;:::-;4486:10;4482:2;4475:22;4515:6;4506:15;;4545:6;4537;4530:22;4585:3;4576:6;4571:3;4567:16;4564:25;4561:45;;;4602:1;4599;4592:12;4561:45;4652:6;4647:3;4640:4;4632:6;4628:17;4615:44;4707:1;4700:4;4691:6;4683;4679:19;4675:30;4668:41;;;;4083:632;;;;;:::o;4720:451::-;4789:6;4842:2;4830:9;4821:7;4817:23;4813:32;4810:52;;;4858:1;4855;4848:12;4810:52;4898:9;4885:23;4931:18;4923:6;4920:30;4917:50;;;4963:1;4960;4953:12;4917:50;4986:22;;5039:4;5031:13;;5027:27;-1:-1:-1;5017:55:1;;5068:1;5065;5058:12;5017:55;5091:74;5157:7;5152:2;5139:16;5134:2;5130;5126:11;5091:74;:::i;5176:632::-;5347:2;5399:21;;;5469:13;;5372:18;;;5491:22;;;5318:4;;5347:2;5570:15;;;;5544:2;5529:18;;;5318:4;5613:169;5627:6;5624:1;5621:13;5613:169;;;5688:13;;5676:26;;5757:15;;;;5722:12;;;;5649:1;5642:9;5613:169;;;-1:-1:-1;5799:3:1;;5176:632;-1:-1:-1;;;;;;5176:632:1:o;5813:118::-;5899:5;5892:13;5885:21;5878:5;5875:32;5865:60;;5921:1;5918;5911:12;5936:382;6001:6;6009;6062:2;6050:9;6041:7;6037:23;6033:32;6030:52;;;6078:1;6075;6068:12;6030:52;6117:9;6104:23;6136:31;6161:5;6136:31;:::i;:::-;6186:5;-1:-1:-1;6243:2:1;6228:18;;6215:32;6256:30;6215:32;6256:30;:::i;:::-;6305:7;6295:17;;;5936:382;;;;;:::o;6323:795::-;6418:6;6426;6434;6442;6495:3;6483:9;6474:7;6470:23;6466:33;6463:53;;;6512:1;6509;6502:12;6463:53;6551:9;6538:23;6570:31;6595:5;6570:31;:::i;:::-;6620:5;-1:-1:-1;6677:2:1;6662:18;;6649:32;6690:33;6649:32;6690:33;:::i;:::-;6742:7;-1:-1:-1;6796:2:1;6781:18;;6768:32;;-1:-1:-1;6851:2:1;6836:18;;6823:32;6878:18;6867:30;;6864:50;;;6910:1;6907;6900:12;6864:50;6933:22;;6986:4;6978:13;;6974:27;-1:-1:-1;6964:55:1;;7015:1;7012;7005:12;6964:55;7038:74;7104:7;7099:2;7086:16;7081:2;7077;7073:11;7038:74;:::i;:::-;7028:84;;;6323:795;;;;;;;:::o;7123:388::-;7191:6;7199;7252:2;7240:9;7231:7;7227:23;7223:32;7220:52;;;7268:1;7265;7258:12;7220:52;7307:9;7294:23;7326:31;7351:5;7326:31;:::i;:::-;7376:5;-1:-1:-1;7433:2:1;7418:18;;7405:32;7446:33;7405:32;7446:33;:::i;7516:380::-;7595:1;7591:12;;;;7638;;;7659:61;;7713:4;7705:6;7701:17;7691:27;;7659:61;7766:2;7758:6;7755:14;7735:18;7732:38;7729:161;;7812:10;7807:3;7803:20;7800:1;7793:31;7847:4;7844:1;7837:15;7875:4;7872:1;7865:15;7729:161;;7516:380;;;:::o;8317:356::-;8519:2;8501:21;;;8538:18;;;8531:30;8597:34;8592:2;8577:18;;8570:62;8664:2;8649:18;;8317:356::o;8678:127::-;8739:10;8734:3;8730:20;8727:1;8720:31;8770:4;8767:1;8760:15;8794:4;8791:1;8784:15;9171:127;9232:10;9227:3;9223:20;9220:1;9213:31;9263:4;9260:1;9253:15;9287:4;9284:1;9277:15;9303:135;9342:3;9363:17;;;9360:43;;9383:18;;:::i;:::-;-1:-1:-1;9430:1:1;9419:13;;9303:135::o;9569:545::-;9671:2;9666:3;9663:11;9660:448;;;9707:1;9732:5;9728:2;9721:17;9777:4;9773:2;9763:19;9847:2;9835:10;9831:19;9828:1;9824:27;9818:4;9814:38;9883:4;9871:10;9868:20;9865:47;;;-1:-1:-1;9906:4:1;9865:47;9961:2;9956:3;9952:12;9949:1;9945:20;9939:4;9935:31;9925:41;;10016:82;10034:2;10027:5;10024:13;10016:82;;;10079:17;;;10060:1;10049:13;10016:82;;10290:1352;10416:3;10410:10;10443:18;10435:6;10432:30;10429:56;;;10465:18;;:::i;:::-;10494:97;10584:6;10544:38;10576:4;10570:11;10544:38;:::i;:::-;10538:4;10494:97;:::i;:::-;10646:4;;10710:2;10699:14;;10727:1;10722:663;;;;11429:1;11446:6;11443:89;;;-1:-1:-1;11498:19:1;;;11492:26;11443:89;-1:-1:-1;;10247:1:1;10243:11;;;10239:24;10235:29;10225:40;10271:1;10267:11;;;10222:57;11545:81;;10692:944;;10722:663;9516:1;9509:14;;;9553:4;9540:18;;-1:-1:-1;;10758:20:1;;;10876:236;10890:7;10887:1;10884:14;10876:236;;;10979:19;;;10973:26;10958:42;;11071:27;;;;11039:1;11027:14;;;;10906:19;;10876:236;;;10880:3;11140:6;11131:7;11128:19;11125:201;;;11201:19;;;11195:26;-1:-1:-1;;11284:1:1;11280:14;;;11296:3;11276:24;11272:37;11268:42;11253:58;11238:74;;11125:201;-1:-1:-1;;;;;11372:1:1;11356:14;;;11352:22;11339:36;;-1:-1:-1;10290:1352:1:o;11647:125::-;11712:9;;;11733:10;;;11730:36;;;11746:18;;:::i;12182:251::-;12252:6;12305:2;12293:9;12284:7;12280:23;12276:32;12273:52;;;12321:1;12318;12311:12;12273:52;12353:9;12347:16;12372:31;12397:5;12372:31;:::i;13914:168::-;13987:9;;;14018;;14035:15;;;14029:22;;14015:37;14005:71;;14056:18;;:::i;14859:663::-;15139:3;15177:6;15171:13;15193:66;15252:6;15247:3;15240:4;15232:6;15228:17;15193:66;:::i;:::-;15322:13;;15281:16;;;;15344:70;15322:13;15281:16;15391:4;15379:17;;15344:70;:::i;:::-;-1:-1:-1;;;15436:20:1;;15465:22;;;15514:1;15503:13;;14859:663;-1:-1:-1;;;;14859:663:1:o;16243:245::-;16310:6;16363:2;16351:9;16342:7;16338:23;16334:32;16331:52;;;16379:1;16376;16369:12;16331:52;16411:9;16405:16;16430:28;16452:5;16430:28;:::i;17326:128::-;17393:9;;;17414:11;;;17411:37;;;17428:18;;:::i;17459:416::-;17661:2;17643:21;;;17700:2;17680:18;;;17673:30;17739:34;17734:2;17719:18;;17712:62;-1:-1:-1;;;17805:2:1;17790:18;;17783:50;17865:3;17850:19;;17459:416::o;20019:417::-;20221:2;20203:21;;;20260:2;20240:18;;;20233:30;20299:34;20294:2;20279:18;;20272:62;-1:-1:-1;;;20365:2:1;20350:18;;20343:51;20426:3;20411:19;;20019:417::o;21251:489::-;-1:-1:-1;;;;;21520:15:1;;;21502:34;;21572:15;;21567:2;21552:18;;21545:43;21619:2;21604:18;;21597:34;;;21667:3;21662:2;21647:18;;21640:31;;;21445:4;;21688:46;;21714:19;;21706:6;21688:46;:::i;:::-;21680:54;21251:489;-1:-1:-1;;;;;;21251:489:1:o;21745:249::-;21814:6;21867:2;21855:9;21846:7;21842:23;21838:32;21835:52;;;21883:1;21880;21873:12;21835:52;21915:9;21909:16;21934:30;21958:5;21934:30;:::i
Swarm Source
ipfs://1e0304009604c9f8a81b3a3fceeb033e8022e79039382faa03e31ab8edae6dac
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.