ERC-721
Overview
Max Total Supply
1,919 KM
Holders
956
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 KMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KUMAN
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-07 */ // File: operator-filter-registry/src/lib/Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: operator-filter-registry/src/IOperatorFilterRegistry.sol 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/OperatorFilterer.sol 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/DefaultOperatorFilterer.sol 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) {} } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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`, * 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 be 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * `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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/k.sol pragma solidity ^0.8.17; contract KUMAN is ERC721A, DefaultOperatorFilterer, Ownable{ using Strings for uint256; uint256 public constant MAX_SUPPLY = 1919; uint256 public publicPrice = 0.002 ether; uint256 public WLPrice = 0 ether; uint256 public maxBalance = 2; uint256 public maxMint = 2; bool public _publicActive = false; bool public _WLActive = false; bytes32 public merkleRoot; bool public _revealed = false; string public notRevealedUri; string baseURI; string public baseExtension = ".json"; mapping(address => bool) public _mintedAddress; mapping(uint256 => string) private _tokenURIs; struct curse{ uint time; string content; } curse[] public curseList; constructor( string memory initBaseURI, string memory initNotRevealedUri ) ERC721A("KUMAN", "KM") { setBaseURI(initBaseURI); setNotRevealedURI(initNotRevealedUri); } event addCurse(uint curseNumber); function writeCurse(uint256 tokenId,string calldata _content) public{ require( _revealed, "blindbox is not revealed"); require( tokenId < totalSupply(), "NFT limit exceeded"); require( ownerOf(tokenId) == msg.sender, "not owner"); curse memory info; info.time= block.timestamp; info.content=_content; emit addCurse(curseList.length); curseList.push(info); } function getCurseNumber() public view returns (uint){ return curseList.length; } function getCurseContent(uint _index) public view returns (string memory){ require(_index < curseList.length, "index error"); return curseList[_index].content; } function getCurseTime(uint _index) public view returns (uint){ require(_index < curseList.length, "index error"); return curseList[_index].time; } function mintOwner(uint256 tokenQuantity) public onlyOwner { _safeMint(msg.sender, tokenQuantity); } function mintWL(bytes32[] calldata proof) public { require(_WLActive, "whitelist sale need to be activated"); require(!_mintedAddress[msg.sender], "already minted"); require( MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "not in whitelist" ); require( totalSupply() + 2 <= MAX_SUPPLY, "max NFT limit exceeded" ); _safeMint(msg.sender, 2); _mintedAddress[msg.sender] = true; } function mintPublic(uint256 tokenQuantity) public payable { require( _publicActive, "public sale has not started yet"); require( tx.origin == msg.sender, "called by contract"); require( tokenQuantity <= maxMint, "max mint amount per session exceeded"); require( totalSupply() + tokenQuantity <= MAX_SUPPLY, "max NFT limit exceeded" ); require( balanceOf(msg.sender) + tokenQuantity <= maxBalance, "max balance exceeded" ); require(tokenQuantity * publicPrice <= msg.value, "not enough ether"); _safeMint(msg.sender, tokenQuantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query failed"); if (_revealed == false) { return notRevealedUri; } string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); if (bytes(base).length == 0) { return _tokenURI; } if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return string(abi.encodePacked(base, tokenId.toString(), baseExtension)); } function setRoot(bytes32 _root) public onlyOwner { merkleRoot = _root; } function publicSwitch() public onlyOwner { _publicActive = !_publicActive; } function whitelistSwitch() public onlyOwner { _WLActive = !_WLActive; } function revealSwitch() public onlyOwner { _revealed = !_revealed; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setPublicPrice(uint256 _publicPrice) public onlyOwner { publicPrice = _publicPrice; } function setWLPrice(uint256 _WLPrice) public onlyOwner { WLPrice = _WLPrice; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setMaxBalance(uint256 _maxBalance) public onlyOwner { maxBalance = _maxBalance; } function setMaxMint(uint256 _maxMint) public onlyOwner { maxMint = _maxMint; } function withdraw(address to) public onlyOwner { uint256 balance = address(this).balance; payable(to).transfer(balance); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from){ super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"curseNumber","type":"uint256"}],"name":"addCurse","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":"WLPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_WLActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"curseList","outputs":[{"internalType":"uint256","name":"time","type":"uint256"},{"internalType":"string","name":"content","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":"uint256","name":"_index","type":"uint256"}],"name":"getCurseContent","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurseNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getCurseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealSwitch","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":"payable","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":"payable","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WLPrice","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_content","type":"string"}],"name":"writeCurse","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66071afd498d00006009556000600a556002600b819055600c55600d805461ffff19169055600f805460ff1916905560c06040526005608090815264173539b7b760d91b60a052601290620000559082620003fa565b503480156200006357600080fd5b5060405162002d5e38038062002d5e833981016040819052620000869162000575565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600581526020016425aaa6a0a760d91b815250604051806040016040528060028152602001614b4d60f01b8152508160029081620000e79190620003fa565b506003620000f68282620003fa565b506000805550506daaeb6d7670e522a718067333cd4e3b15620002425780156200019057604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017157600080fd5b505af115801562000186573d6000803e3d6000fd5b5050505062000242565b6001600160a01b03821615620001e15760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000156565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022857600080fd5b505af11580156200023d573d6000803e3d6000fd5b505050505b50620002509050336200026e565b6200025b82620002c0565b6200026681620002dc565b5050620005df565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002ca620002f4565b6011620002d88282620003fa565b5050565b620002e6620002f4565b6010620002d88282620003fa565b6008546001600160a01b03163314620003535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200038057607f821691505b602082108103620003a157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f557600081815260208120601f850160051c81016020861015620003d05750805b601f850160051c820191505b81811015620003f157828155600101620003dc565b5050505b505050565b81516001600160401b0381111562000416576200041662000355565b6200042e816200042784546200036b565b84620003a7565b602080601f8311600181146200046657600084156200044d5750858301515b600019600386901b1c1916600185901b178555620003f1565b600085815260208120601f198616915b82811015620004975788860151825594840194600190910190840162000476565b5085821015620004b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620004d857600080fd5b81516001600160401b0380821115620004f557620004f562000355565b604051601f8301601f19908116603f0116810190828211818310171562000520576200052062000355565b816040528381526020925086838588010111156200053d57600080fd5b600091505b8382101562000561578582018301518183018401529082019062000542565b600093810190920192909252949350505050565b600080604083850312156200058957600080fd5b82516001600160401b0380821115620005a157600080fd5b620005af86838701620004c6565b93506020850151915080821115620005c657600080fd5b50620005d585828601620004c6565b9150509250929050565b61276f80620005ef6000396000f3fe6080604052600436106102c85760003560e01c80637501f74111610175578063c6682862116100dc578063e020b28711610095578063f2c4ce1e1161006f578063f2c4ce1e1461080c578063f2fde38b1461082c578063f6a5b8e61461084c578063fd3d1a021461086c57600080fd5b8063e020b287146107ba578063e985e9c5146107d9578063efd0cbf9146107f957600080fd5b8063c668286214610710578063c87b56dd14610725578063d63bdf6714610745578063d9b792401461075a578063da3ef23f1461077a578063dab5f3401461079a57600080fd5b8063b0a04d3d1161012e578063b0a04d3d14610662578063b278d67214610678578063b88d4fde14610698578063ba6c396c146106ab578063bcd25ee5146106db578063c6275255146106f057600080fd5b80637501f741146105c35780638da5cb5b146105d957806395d89b41146105f75780639d51d9b71461060c578063a22cb4651461062c578063a945bf801461064c57600080fd5b806333f88d2211610234578063547520fe116101ed5780636ebeac85116101c75780636ebeac851461055e57806370a0823114610578578063715018a61461059857806373ad468a146105ad57600080fd5b8063547520fe146104fe57806355f804b31461051e5780636352211e1461053e57600080fd5b806333f88d22146104545780633f165a7e1461047457806341f434341461048957806342842e0e146104ab578063472c9990146104be57806351cff8d9146104de57600080fd5b8063095ea7b311610286578063095ea7b3146103c557806318160ddd146103d857806323b872dd146103fb5780632a2888c31461040e5780632eb4a7ab1461042857806332cb6b0c1461043e57600080fd5b80623629ea146102cd57806301ffc9a7146103045780630578f97d1461033457806306fdde0314610356578063081812fc14610378578063081c8c44146103b0575b600080fd5b3480156102d957600080fd5b506102ed6102e8366004612025565b610881565b6040516102fb92919061208e565b60405180910390f35b34801561031057600080fd5b5061032461031f3660046120bd565b610939565b60405190151581526020016102fb565b34801561034057600080fd5b5061035461034f3660046120da565b61098b565b005b34801561036257600080fd5b5061036b610b83565b6040516102fb919061214f565b34801561038457600080fd5b50610398610393366004612025565b610c15565b6040516001600160a01b0390911681526020016102fb565b3480156103bc57600080fd5b5061036b610c59565b6103546103d336600461217e565b610ce7565b3480156103e457600080fd5b50600154600054035b6040519081526020016102fb565b6103546104093660046121a8565b610d00565b34801561041a57600080fd5b50600d546103249060ff1681565b34801561043457600080fd5b506103ed600e5481565b34801561044a57600080fd5b506103ed61077f81565b34801561046057600080fd5b5061035461046f366004612025565b610d2b565b34801561048057600080fd5b50610354610d40565b34801561049557600080fd5b506103986daaeb6d7670e522a718067333cd4e81565b6103546104b93660046121a8565b610d5c565b3480156104ca57600080fd5b506103546104d93660046121e4565b610d81565b3480156104ea57600080fd5b506103546104f9366004612260565b610f72565b34801561050a57600080fd5b50610354610519366004612025565b610fb2565b34801561052a57600080fd5b50610354610539366004612307565b610fbf565b34801561054a57600080fd5b50610398610559366004612025565b610fd7565b34801561056a57600080fd5b50600f546103249060ff1681565b34801561058457600080fd5b506103ed610593366004612260565b610fe2565b3480156105a457600080fd5b50610354611031565b3480156105b957600080fd5b506103ed600b5481565b3480156105cf57600080fd5b506103ed600c5481565b3480156105e557600080fd5b506008546001600160a01b0316610398565b34801561060357600080fd5b5061036b611045565b34801561061857600080fd5b50610354610627366004612025565b611054565b34801561063857600080fd5b5061035461064736600461235e565b611061565b34801561065857600080fd5b506103ed60095481565b34801561066e57600080fd5b506103ed600a5481565b34801561068457600080fd5b506103ed610693366004612025565b611075565b6103546106a6366004612395565b6110e3565b3480156106b757600080fd5b506103246106c6366004612260565b60136020526000908152604090205460ff1681565b3480156106e757600080fd5b50610354611110565b3480156106fc57600080fd5b5061035461070b366004612025565b611135565b34801561071c57600080fd5b5061036b611142565b34801561073157600080fd5b5061036b610740366004612025565b61114f565b34801561075157600080fd5b5061035461133f565b34801561076657600080fd5b5061036b610775366004612025565b61135b565b34801561078657600080fd5b50610354610795366004612307565b6113cc565b3480156107a657600080fd5b506103546107b5366004612025565b6113e0565b3480156107c657600080fd5b50600d5461032490610100900460ff1681565b3480156107e557600080fd5b506103246107f4366004612411565b6113ed565b610354610807366004612025565b61141b565b34801561081857600080fd5b50610354610827366004612307565b61161d565b34801561083857600080fd5b50610354610847366004612260565b611631565b34801561085857600080fd5b50610354610867366004612025565b6116a7565b34801561087857600080fd5b506015546103ed565b6015818154811061089157600080fd5b600091825260209091206002909102018054600182018054919350906108b690612444565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290612444565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905082565b60006301ffc9a760e01b6001600160e01b03198316148061096a57506380ac58cd60e01b6001600160e01b03198316145b806109855750635b5e139f60e01b6001600160e01b03198316145b92915050565b600d54610100900460ff166109f35760405162461bcd60e51b815260206004820152602360248201527f77686974656c6973742073616c65206e65656420746f206265206163746976616044820152621d195960ea1b60648201526084015b60405180910390fd5b3360009081526013602052604090205460ff1615610a445760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b60448201526064016109ea565b610ab982828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206116b4565b610af85760405162461bcd60e51b815260206004820152601060248201526f1b9bdd081a5b881dda1a5d195b1a5cdd60821b60448201526064016109ea565b61077f610b086001546000540390565b610b13906002612494565b1115610b5a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109ea565b610b653360026116ca565b5050336000908152601360205260409020805460ff19166001179055565b606060028054610b9290612444565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbe90612444565b8015610c0b5780601f10610be057610100808354040283529160200191610c0b565b820191906000526020600020905b815481529060010190602001808311610bee57829003601f168201915b5050505050905090565b6000610c20826116e4565b610c3d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60108054610c6690612444565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290612444565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b505050505081565b81610cf18161170b565b610cfb83836117c4565b505050565b826001600160a01b0381163314610d1a57610d1a3361170b565b610d25848484611864565b50505050565b610d336119fd565b610d3d33826116ca565b50565b610d486119fd565b600f805460ff19811660ff90911615179055565b826001600160a01b0381163314610d7657610d763361170b565b610d25848484611a57565b600f5460ff16610dd35760405162461bcd60e51b815260206004820152601860248201527f626c696e64626f78206973206e6f742072657665616c6564000000000000000060448201526064016109ea565b600154600054038310610e1d5760405162461bcd60e51b8152602060048201526012602482015271139195081b1a5b5a5d08195e18d95959195960721b60448201526064016109ea565b33610e2784610fd7565b6001600160a01b031614610e695760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b60448201526064016109ea565b604080518082019091526000815260606020820152428152604080516020601f850181900481028201810190925283815290849084908190840183828082843760009201919091525050505060208201526015546040517f6539e84398ef7d96bdbc0b3b5e32d6e625bfe4b2e2f65a38e5af429bd74d2b6291610eef9190815260200190565b60405180910390a160158054600181018255600091909152815160029091027f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475810191825560208301518392917f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4760190610f6990826124ed565b50505050505050565b610f7a6119fd565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610cfb573d6000803e3d6000fd5b610fba6119fd565b600c55565b610fc76119fd565b6011610fd382826124ed565b5050565b600061098582611a72565b60006001600160a01b03821661100b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6110396119fd565b6110436000611ae0565b565b606060038054610b9290612444565b61105c6119fd565b600b55565b8161106b8161170b565b610cfb8383611b32565b60155460009082106110b75760405162461bcd60e51b815260206004820152600b60248201526a34b73232bc1032b93937b960a91b60448201526064016109ea565b601582815481106110ca576110ca6125ad565b9060005260206000209060020201600001549050919050565b836001600160a01b03811633146110fd576110fd3361170b565b61110985858585611b9e565b5050505050565b6111186119fd565b600d805461ff001981166101009182900460ff1615909102179055565b61113d6119fd565b600955565b60128054610c6690612444565b606061115a826116e4565b6111995760405162461bcd60e51b815260206004820152601060248201526f155492481c5d595c9e4819985a5b195960821b60448201526064016109ea565b600f5460ff16151560000361123a57601080546111b590612444565b80601f01602080910402602001604051908101604052809291908181526020018280546111e190612444565b801561122e5780601f106112035761010080835404028352916020019161122e565b820191906000526020600020905b81548152906001019060200180831161121157829003601f168201915b50505050509050919050565b6000828152601460205260408120805461125390612444565b80601f016020809104026020016040519081016040528092919081815260200182805461127f90612444565b80156112cc5780601f106112a1576101008083540402835291602001916112cc565b820191906000526020600020905b8154815290600101906020018083116112af57829003601f168201915b5050505050905060006112dd611be2565b905080516000036112ef575092915050565b8151156113215780826040516020016113099291906125c3565b60405160208183030381529060405292505050919050565b8061132b85611bf1565b6012604051602001611309939291906125f2565b6113476119fd565b600d805460ff19811660ff90911615179055565b601554606090821061139d5760405162461bcd60e51b815260206004820152600b60248201526a34b73232bc1032b93937b960a91b60448201526064016109ea565b601582815481106113b0576113b06125ad565b906000526020600020906002020160010180546111b590612444565b6113d46119fd565b6012610fd382826124ed565b6113e86119fd565b600e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600d5460ff1661146d5760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016109ea565b3233146114b15760405162461bcd60e51b815260206004820152601260248201527118d85b1b195908189e4818dbdb9d1c9858dd60721b60448201526064016109ea565b600c5481111561150f5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016109ea565b61077f816115206001546000540390565b61152a9190612494565b11156115715760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109ea565b600b548161157e33610fe2565b6115889190612494565b11156115cd5760405162461bcd60e51b81526020600482015260146024820152731b585e0818985b185b98d948195e18d95959195960621b60448201526064016109ea565b34600954826115dc9190612692565b1115610d335760405162461bcd60e51b815260206004820152601060248201526f3737ba1032b737bab3b41032ba3432b960811b60448201526064016109ea565b6116256119fd565b6010610fd382826124ed565b6116396119fd565b6001600160a01b03811661169e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ea565b610d3d81611ae0565b6116af6119fd565b600a55565b6000826116c18584611c84565b14949350505050565b610fd3828260405180602001604052806000815250611cd1565b6000805482108015610985575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610d3d57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611778573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179c91906126a9565b610d3d57604051633b79c77360e21b81526001600160a01b03821660048201526024016109ea565b60006117cf82610fd7565b9050336001600160a01b03821614611808576117eb81336113ed565b611808576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061186f82611a72565b9050836001600160a01b0316816001600160a01b0316146118a25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176118ef576118d286336113ed565b6118ef57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661191657604051633a954ecd60e21b815260040160405180910390fd5b801561192157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036119b3576001840160008181526004602052604081205490036119b15760005481146119b15760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146110435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ea565b610cfb838383604051806020016040528060008152506110e3565b600081600054811015611ac75760008181526004602052604081205490600160e01b82169003611ac5575b80600003611abe575060001901600081815260046020526040902054611a9d565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611ba9848484610d00565b6001600160a01b0383163b15610d2557611bc584848484611d37565b610d25576040516368d2bf6b60e11b815260040160405180910390fd5b606060118054610b9290612444565b60606000611bfe83611e23565b600101905060008167ffffffffffffffff811115611c1e57611c1e61227b565b6040519080825280601f01601f191660200182016040528015611c48576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611c5257509392505050565b600081815b8451811015611cc957611cb582868381518110611ca857611ca86125ad565b6020026020010151611efb565b915080611cc1816126c6565b915050611c89565b509392505050565b611cdb8383611f27565b6001600160a01b0383163b15610cfb576000548281035b611d056000868380600101945086611d37565b611d22576040516368d2bf6b60e11b815260040160405180910390fd5b818110611cf257816000541461110957600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d6c9033908990889088906004016126df565b6020604051808303816000875af1925050508015611da7575060408051601f3d908101601f19168201909252611da49181019061271c565b60015b611e05573d808015611dd5576040519150601f19603f3d011682016040523d82523d6000602084013e611dda565b606091505b508051600003611dfd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611e625772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611e8e576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611eac57662386f26fc10000830492506010015b6305f5e1008310611ec4576305f5e100830492506008015b6127108310611ed857612710830492506004015b60648310611eea576064830492506002015b600a83106109855760010192915050565b6000818310611f17576000828152602084905260409020611abe565b5060009182526020526040902090565b6000805490829003611f4c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611ffb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611fc3565b508160000361201c57604051622e076360e81b815260040160405180910390fd5b60005550505050565b60006020828403121561203757600080fd5b5035919050565b60005b83811015612059578181015183820152602001612041565b50506000910152565b6000815180845261207a81602086016020860161203e565b601f01601f19169290920160200192915050565b828152604060208201526000611e1b6040830184612062565b6001600160e01b031981168114610d3d57600080fd5b6000602082840312156120cf57600080fd5b8135611abe816120a7565b600080602083850312156120ed57600080fd5b823567ffffffffffffffff8082111561210557600080fd5b818501915085601f83011261211957600080fd5b81358181111561212857600080fd5b8660208260051b850101111561213d57600080fd5b60209290920196919550909350505050565b602081526000611abe6020830184612062565b80356001600160a01b038116811461217957600080fd5b919050565b6000806040838503121561219157600080fd5b61219a83612162565b946020939093013593505050565b6000806000606084860312156121bd57600080fd5b6121c684612162565b92506121d460208501612162565b9150604084013590509250925092565b6000806000604084860312156121f957600080fd5b83359250602084013567ffffffffffffffff8082111561221857600080fd5b818601915086601f83011261222c57600080fd5b81358181111561223b57600080fd5b87602082850101111561224d57600080fd5b6020830194508093505050509250925092565b60006020828403121561227257600080fd5b611abe82612162565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156122ac576122ac61227b565b604051601f8501601f19908116603f011681019082821181831017156122d4576122d461227b565b816040528093508581528686860111156122ed57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561231957600080fd5b813567ffffffffffffffff81111561233057600080fd5b8201601f8101841361234157600080fd5b611e1b84823560208401612291565b8015158114610d3d57600080fd5b6000806040838503121561237157600080fd5b61237a83612162565b9150602083013561238a81612350565b809150509250929050565b600080600080608085870312156123ab57600080fd5b6123b485612162565b93506123c260208601612162565b925060408501359150606085013567ffffffffffffffff8111156123e557600080fd5b8501601f810187136123f657600080fd5b61240587823560208401612291565b91505092959194509250565b6000806040838503121561242457600080fd5b61242d83612162565b915061243b60208401612162565b90509250929050565b600181811c9082168061245857607f821691505b60208210810361247857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156109855761098561247e565b601f821115610cfb57600081815260208120601f850160051c810160208610156124ce5750805b601f850160051c820191505b818110156119f5578281556001016124da565b815167ffffffffffffffff8111156125075761250761227b565b61251b816125158454612444565b846124a7565b602080601f83116001811461255057600084156125385750858301515b600019600386901b1c1916600185901b1785556119f5565b600085815260208120601f198616915b8281101561257f57888601518255948401946001909101908401612560565b508582101561259d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b600083516125d581846020880161203e565b8351908301906125e981836020880161203e565b01949350505050565b6000845160206126058285838a0161203e565b8551918401916126188184848a0161203e565b855492019160009061262981612444565b60018281168015612641576001811461265657612682565b60ff1984168752821515830287019450612682565b896000528560002060005b8481101561267a57815489820152908301908701612661565b505082870194505b50929a9950505050505050505050565b80820281158282048414176109855761098561247e565b6000602082840312156126bb57600080fd5b8151611abe81612350565b6000600182016126d8576126d861247e565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271290830184612062565b9695505050505050565b60006020828403121561272e57600080fd5b8151611abe816120a756fea2646970667358221220884379d209562129d9a87e83b3fb2e6907c75bc611f2f538aae660b1c01db90664736f6c634300081200330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102c85760003560e01c80637501f74111610175578063c6682862116100dc578063e020b28711610095578063f2c4ce1e1161006f578063f2c4ce1e1461080c578063f2fde38b1461082c578063f6a5b8e61461084c578063fd3d1a021461086c57600080fd5b8063e020b287146107ba578063e985e9c5146107d9578063efd0cbf9146107f957600080fd5b8063c668286214610710578063c87b56dd14610725578063d63bdf6714610745578063d9b792401461075a578063da3ef23f1461077a578063dab5f3401461079a57600080fd5b8063b0a04d3d1161012e578063b0a04d3d14610662578063b278d67214610678578063b88d4fde14610698578063ba6c396c146106ab578063bcd25ee5146106db578063c6275255146106f057600080fd5b80637501f741146105c35780638da5cb5b146105d957806395d89b41146105f75780639d51d9b71461060c578063a22cb4651461062c578063a945bf801461064c57600080fd5b806333f88d2211610234578063547520fe116101ed5780636ebeac85116101c75780636ebeac851461055e57806370a0823114610578578063715018a61461059857806373ad468a146105ad57600080fd5b8063547520fe146104fe57806355f804b31461051e5780636352211e1461053e57600080fd5b806333f88d22146104545780633f165a7e1461047457806341f434341461048957806342842e0e146104ab578063472c9990146104be57806351cff8d9146104de57600080fd5b8063095ea7b311610286578063095ea7b3146103c557806318160ddd146103d857806323b872dd146103fb5780632a2888c31461040e5780632eb4a7ab1461042857806332cb6b0c1461043e57600080fd5b80623629ea146102cd57806301ffc9a7146103045780630578f97d1461033457806306fdde0314610356578063081812fc14610378578063081c8c44146103b0575b600080fd5b3480156102d957600080fd5b506102ed6102e8366004612025565b610881565b6040516102fb92919061208e565b60405180910390f35b34801561031057600080fd5b5061032461031f3660046120bd565b610939565b60405190151581526020016102fb565b34801561034057600080fd5b5061035461034f3660046120da565b61098b565b005b34801561036257600080fd5b5061036b610b83565b6040516102fb919061214f565b34801561038457600080fd5b50610398610393366004612025565b610c15565b6040516001600160a01b0390911681526020016102fb565b3480156103bc57600080fd5b5061036b610c59565b6103546103d336600461217e565b610ce7565b3480156103e457600080fd5b50600154600054035b6040519081526020016102fb565b6103546104093660046121a8565b610d00565b34801561041a57600080fd5b50600d546103249060ff1681565b34801561043457600080fd5b506103ed600e5481565b34801561044a57600080fd5b506103ed61077f81565b34801561046057600080fd5b5061035461046f366004612025565b610d2b565b34801561048057600080fd5b50610354610d40565b34801561049557600080fd5b506103986daaeb6d7670e522a718067333cd4e81565b6103546104b93660046121a8565b610d5c565b3480156104ca57600080fd5b506103546104d93660046121e4565b610d81565b3480156104ea57600080fd5b506103546104f9366004612260565b610f72565b34801561050a57600080fd5b50610354610519366004612025565b610fb2565b34801561052a57600080fd5b50610354610539366004612307565b610fbf565b34801561054a57600080fd5b50610398610559366004612025565b610fd7565b34801561056a57600080fd5b50600f546103249060ff1681565b34801561058457600080fd5b506103ed610593366004612260565b610fe2565b3480156105a457600080fd5b50610354611031565b3480156105b957600080fd5b506103ed600b5481565b3480156105cf57600080fd5b506103ed600c5481565b3480156105e557600080fd5b506008546001600160a01b0316610398565b34801561060357600080fd5b5061036b611045565b34801561061857600080fd5b50610354610627366004612025565b611054565b34801561063857600080fd5b5061035461064736600461235e565b611061565b34801561065857600080fd5b506103ed60095481565b34801561066e57600080fd5b506103ed600a5481565b34801561068457600080fd5b506103ed610693366004612025565b611075565b6103546106a6366004612395565b6110e3565b3480156106b757600080fd5b506103246106c6366004612260565b60136020526000908152604090205460ff1681565b3480156106e757600080fd5b50610354611110565b3480156106fc57600080fd5b5061035461070b366004612025565b611135565b34801561071c57600080fd5b5061036b611142565b34801561073157600080fd5b5061036b610740366004612025565b61114f565b34801561075157600080fd5b5061035461133f565b34801561076657600080fd5b5061036b610775366004612025565b61135b565b34801561078657600080fd5b50610354610795366004612307565b6113cc565b3480156107a657600080fd5b506103546107b5366004612025565b6113e0565b3480156107c657600080fd5b50600d5461032490610100900460ff1681565b3480156107e557600080fd5b506103246107f4366004612411565b6113ed565b610354610807366004612025565b61141b565b34801561081857600080fd5b50610354610827366004612307565b61161d565b34801561083857600080fd5b50610354610847366004612260565b611631565b34801561085857600080fd5b50610354610867366004612025565b6116a7565b34801561087857600080fd5b506015546103ed565b6015818154811061089157600080fd5b600091825260209091206002909102018054600182018054919350906108b690612444565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290612444565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905082565b60006301ffc9a760e01b6001600160e01b03198316148061096a57506380ac58cd60e01b6001600160e01b03198316145b806109855750635b5e139f60e01b6001600160e01b03198316145b92915050565b600d54610100900460ff166109f35760405162461bcd60e51b815260206004820152602360248201527f77686974656c6973742073616c65206e65656420746f206265206163746976616044820152621d195960ea1b60648201526084015b60405180910390fd5b3360009081526013602052604090205460ff1615610a445760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b60448201526064016109ea565b610ab982828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206116b4565b610af85760405162461bcd60e51b815260206004820152601060248201526f1b9bdd081a5b881dda1a5d195b1a5cdd60821b60448201526064016109ea565b61077f610b086001546000540390565b610b13906002612494565b1115610b5a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109ea565b610b653360026116ca565b5050336000908152601360205260409020805460ff19166001179055565b606060028054610b9290612444565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbe90612444565b8015610c0b5780601f10610be057610100808354040283529160200191610c0b565b820191906000526020600020905b815481529060010190602001808311610bee57829003601f168201915b5050505050905090565b6000610c20826116e4565b610c3d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60108054610c6690612444565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290612444565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b505050505081565b81610cf18161170b565b610cfb83836117c4565b505050565b826001600160a01b0381163314610d1a57610d1a3361170b565b610d25848484611864565b50505050565b610d336119fd565b610d3d33826116ca565b50565b610d486119fd565b600f805460ff19811660ff90911615179055565b826001600160a01b0381163314610d7657610d763361170b565b610d25848484611a57565b600f5460ff16610dd35760405162461bcd60e51b815260206004820152601860248201527f626c696e64626f78206973206e6f742072657665616c6564000000000000000060448201526064016109ea565b600154600054038310610e1d5760405162461bcd60e51b8152602060048201526012602482015271139195081b1a5b5a5d08195e18d95959195960721b60448201526064016109ea565b33610e2784610fd7565b6001600160a01b031614610e695760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b60448201526064016109ea565b604080518082019091526000815260606020820152428152604080516020601f850181900481028201810190925283815290849084908190840183828082843760009201919091525050505060208201526015546040517f6539e84398ef7d96bdbc0b3b5e32d6e625bfe4b2e2f65a38e5af429bd74d2b6291610eef9190815260200190565b60405180910390a160158054600181018255600091909152815160029091027f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475810191825560208301518392917f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4760190610f6990826124ed565b50505050505050565b610f7a6119fd565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610cfb573d6000803e3d6000fd5b610fba6119fd565b600c55565b610fc76119fd565b6011610fd382826124ed565b5050565b600061098582611a72565b60006001600160a01b03821661100b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6110396119fd565b6110436000611ae0565b565b606060038054610b9290612444565b61105c6119fd565b600b55565b8161106b8161170b565b610cfb8383611b32565b60155460009082106110b75760405162461bcd60e51b815260206004820152600b60248201526a34b73232bc1032b93937b960a91b60448201526064016109ea565b601582815481106110ca576110ca6125ad565b9060005260206000209060020201600001549050919050565b836001600160a01b03811633146110fd576110fd3361170b565b61110985858585611b9e565b5050505050565b6111186119fd565b600d805461ff001981166101009182900460ff1615909102179055565b61113d6119fd565b600955565b60128054610c6690612444565b606061115a826116e4565b6111995760405162461bcd60e51b815260206004820152601060248201526f155492481c5d595c9e4819985a5b195960821b60448201526064016109ea565b600f5460ff16151560000361123a57601080546111b590612444565b80601f01602080910402602001604051908101604052809291908181526020018280546111e190612444565b801561122e5780601f106112035761010080835404028352916020019161122e565b820191906000526020600020905b81548152906001019060200180831161121157829003601f168201915b50505050509050919050565b6000828152601460205260408120805461125390612444565b80601f016020809104026020016040519081016040528092919081815260200182805461127f90612444565b80156112cc5780601f106112a1576101008083540402835291602001916112cc565b820191906000526020600020905b8154815290600101906020018083116112af57829003601f168201915b5050505050905060006112dd611be2565b905080516000036112ef575092915050565b8151156113215780826040516020016113099291906125c3565b60405160208183030381529060405292505050919050565b8061132b85611bf1565b6012604051602001611309939291906125f2565b6113476119fd565b600d805460ff19811660ff90911615179055565b601554606090821061139d5760405162461bcd60e51b815260206004820152600b60248201526a34b73232bc1032b93937b960a91b60448201526064016109ea565b601582815481106113b0576113b06125ad565b906000526020600020906002020160010180546111b590612444565b6113d46119fd565b6012610fd382826124ed565b6113e86119fd565b600e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600d5460ff1661146d5760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016109ea565b3233146114b15760405162461bcd60e51b815260206004820152601260248201527118d85b1b195908189e4818dbdb9d1c9858dd60721b60448201526064016109ea565b600c5481111561150f5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016109ea565b61077f816115206001546000540390565b61152a9190612494565b11156115715760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109ea565b600b548161157e33610fe2565b6115889190612494565b11156115cd5760405162461bcd60e51b81526020600482015260146024820152731b585e0818985b185b98d948195e18d95959195960621b60448201526064016109ea565b34600954826115dc9190612692565b1115610d335760405162461bcd60e51b815260206004820152601060248201526f3737ba1032b737bab3b41032ba3432b960811b60448201526064016109ea565b6116256119fd565b6010610fd382826124ed565b6116396119fd565b6001600160a01b03811661169e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ea565b610d3d81611ae0565b6116af6119fd565b600a55565b6000826116c18584611c84565b14949350505050565b610fd3828260405180602001604052806000815250611cd1565b6000805482108015610985575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610d3d57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611778573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179c91906126a9565b610d3d57604051633b79c77360e21b81526001600160a01b03821660048201526024016109ea565b60006117cf82610fd7565b9050336001600160a01b03821614611808576117eb81336113ed565b611808576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061186f82611a72565b9050836001600160a01b0316816001600160a01b0316146118a25760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176118ef576118d286336113ed565b6118ef57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661191657604051633a954ecd60e21b815260040160405180910390fd5b801561192157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036119b3576001840160008181526004602052604081205490036119b15760005481146119b15760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146110435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ea565b610cfb838383604051806020016040528060008152506110e3565b600081600054811015611ac75760008181526004602052604081205490600160e01b82169003611ac5575b80600003611abe575060001901600081815260046020526040902054611a9d565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611ba9848484610d00565b6001600160a01b0383163b15610d2557611bc584848484611d37565b610d25576040516368d2bf6b60e11b815260040160405180910390fd5b606060118054610b9290612444565b60606000611bfe83611e23565b600101905060008167ffffffffffffffff811115611c1e57611c1e61227b565b6040519080825280601f01601f191660200182016040528015611c48576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611c5257509392505050565b600081815b8451811015611cc957611cb582868381518110611ca857611ca86125ad565b6020026020010151611efb565b915080611cc1816126c6565b915050611c89565b509392505050565b611cdb8383611f27565b6001600160a01b0383163b15610cfb576000548281035b611d056000868380600101945086611d37565b611d22576040516368d2bf6b60e11b815260040160405180910390fd5b818110611cf257816000541461110957600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d6c9033908990889088906004016126df565b6020604051808303816000875af1925050508015611da7575060408051601f3d908101601f19168201909252611da49181019061271c565b60015b611e05573d808015611dd5576040519150601f19603f3d011682016040523d82523d6000602084013e611dda565b606091505b508051600003611dfd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611e625772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611e8e576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611eac57662386f26fc10000830492506010015b6305f5e1008310611ec4576305f5e100830492506008015b6127108310611ed857612710830492506004015b60648310611eea576064830492506002015b600a83106109855760010192915050565b6000818310611f17576000828152602084905260409020611abe565b5060009182526020526040902090565b6000805490829003611f4c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611ffb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611fc3565b508160000361201c57604051622e076360e81b815260040160405180910390fd5b60005550505050565b60006020828403121561203757600080fd5b5035919050565b60005b83811015612059578181015183820152602001612041565b50506000910152565b6000815180845261207a81602086016020860161203e565b601f01601f19169290920160200192915050565b828152604060208201526000611e1b6040830184612062565b6001600160e01b031981168114610d3d57600080fd5b6000602082840312156120cf57600080fd5b8135611abe816120a7565b600080602083850312156120ed57600080fd5b823567ffffffffffffffff8082111561210557600080fd5b818501915085601f83011261211957600080fd5b81358181111561212857600080fd5b8660208260051b850101111561213d57600080fd5b60209290920196919550909350505050565b602081526000611abe6020830184612062565b80356001600160a01b038116811461217957600080fd5b919050565b6000806040838503121561219157600080fd5b61219a83612162565b946020939093013593505050565b6000806000606084860312156121bd57600080fd5b6121c684612162565b92506121d460208501612162565b9150604084013590509250925092565b6000806000604084860312156121f957600080fd5b83359250602084013567ffffffffffffffff8082111561221857600080fd5b818601915086601f83011261222c57600080fd5b81358181111561223b57600080fd5b87602082850101111561224d57600080fd5b6020830194508093505050509250925092565b60006020828403121561227257600080fd5b611abe82612162565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156122ac576122ac61227b565b604051601f8501601f19908116603f011681019082821181831017156122d4576122d461227b565b816040528093508581528686860111156122ed57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561231957600080fd5b813567ffffffffffffffff81111561233057600080fd5b8201601f8101841361234157600080fd5b611e1b84823560208401612291565b8015158114610d3d57600080fd5b6000806040838503121561237157600080fd5b61237a83612162565b9150602083013561238a81612350565b809150509250929050565b600080600080608085870312156123ab57600080fd5b6123b485612162565b93506123c260208601612162565b925060408501359150606085013567ffffffffffffffff8111156123e557600080fd5b8501601f810187136123f657600080fd5b61240587823560208401612291565b91505092959194509250565b6000806040838503121561242457600080fd5b61242d83612162565b915061243b60208401612162565b90509250929050565b600181811c9082168061245857607f821691505b60208210810361247857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156109855761098561247e565b601f821115610cfb57600081815260208120601f850160051c810160208610156124ce5750805b601f850160051c820191505b818110156119f5578281556001016124da565b815167ffffffffffffffff8111156125075761250761227b565b61251b816125158454612444565b846124a7565b602080601f83116001811461255057600084156125385750858301515b600019600386901b1c1916600185901b1785556119f5565b600085815260208120601f198616915b8281101561257f57888601518255948401946001909101908401612560565b508582101561259d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b600083516125d581846020880161203e565b8351908301906125e981836020880161203e565b01949350505050565b6000845160206126058285838a0161203e565b8551918401916126188184848a0161203e565b855492019160009061262981612444565b60018281168015612641576001811461265657612682565b60ff1984168752821515830287019450612682565b896000528560002060005b8481101561267a57815489820152908301908701612661565b505082870194505b50929a9950505050505050505050565b80820281158282048414176109855761098561247e565b6000602082840312156126bb57600080fd5b8151611abe81612350565b6000600182016126d8576126d861247e565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271290830184612062565b9695505050505050565b60006020828403121561272e57600080fd5b8151611abe816120a756fea2646970667358221220884379d209562129d9a87e83b3fb2e6907c75bc611f2f538aae660b1c01db90664736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
90946:6467:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91694:24;;;;;;;;;;-1:-1:-1;91694:24:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;57845:639;;;;;;;;;;-1:-1:-1;57845:639:0;;;;;:::i;:::-;;:::i;:::-;;;1577:14:1;;1570:22;1552:41;;1540:2;1525:18;57845:639:0;1412:187:1;93060:550:0;;;;;;;;;;-1:-1:-1;93060:550:0;;;;;:::i;:::-;;:::i;:::-;;58747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;65238:218::-;;;;;;;;;;-1:-1:-1;65238:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2613:32:1;;;2595:51;;2583:2;2568:18;65238:218:0;2449:203:1;91413:28:0;;;;;;;;;;;;;:::i;96639:165::-;;;;;;:::i;:::-;;:::i;54498:323::-;;;;;;;;;;-1:-1:-1;54772:12:0;;54559:7;54756:13;:28;54498:323;;;3240:25:1;;;3228:2;3213:18;54498:323:0;3094:177:1;96812:171:0;;;;;;:::i;:::-;;:::i;91258:33::-;;;;;;;;;;-1:-1:-1;91258:33:0;;;;;;;;91336:25;;;;;;;;;;;;;;;;91048:41;;;;;;;;;;;;91085:4;91048:41;;92934:114;;;;;;;;;;-1:-1:-1;92934:114:0;;;;;:::i;:::-;;:::i;95286:82::-;;;;;;;;;;;;;:::i;7735:143::-;;;;;;;;;;;;151:42;7735:143;;96991:179;;;;;;:::i;:::-;;:::i;91988:448::-;;;;;;;;;;-1:-1:-1;91988:448:0;;;;;:::i;:::-;;:::i;96302:145::-;;;;;;;;;;-1:-1:-1;96302:145:0;;;;;:::i;:::-;;:::i;96202:92::-;;;;;;;;;;-1:-1:-1;96202:92:0;;;;;:::i;:::-;;:::i;95492:104::-;;;;;;;;;;-1:-1:-1;95492:104:0;;;;;:::i;:::-;;:::i;60140:152::-;;;;;;;;;;-1:-1:-1;60140:152:0;;;;;:::i;:::-;;:::i;91373:29::-;;;;;;;;;;-1:-1:-1;91373:29:0;;;;;;;;55682:233;;;;;;;;;;-1:-1:-1;55682:233:0;;;;;:::i;:::-;;:::i;38624:103::-;;;;;;;;;;;;;:::i;91184:29::-;;;;;;;;;;;;;;;;91221:26;;;;;;;;;;;;;;;;37976:87;;;;;;;;;;-1:-1:-1;38049:6:0;;-1:-1:-1;;;;;38049:6:0;37976:87;;58923:104;;;;;;;;;;;;;:::i;96090:::-;;;;;;;;;;-1:-1:-1;96090:104:0;;;;;:::i;:::-;;:::i;96455:176::-;;;;;;;;;;-1:-1:-1;96455:176:0;;;;;:::i;:::-;;:::i;91096:40::-;;;;;;;;;;;;;;;;91144:32;;;;;;;;;;;;;;;;92757:169;;;;;;;;;;-1:-1:-1;92757:169:0;;;;;:::i;:::-;;:::i;97178:230::-;;;;;;:::i;:::-;;:::i;91517:46::-;;;;;;;;;;-1:-1:-1;91517:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;95193:85;;;;;;;;;;;;;:::i;95604:108::-;;;;;;;;;;-1:-1:-1;95604:108:0;;;;;:::i;:::-;;:::i;91469:37::-;;;;;;;;;;;;;:::i;94315:678::-;;;;;;;;;;-1:-1:-1;94315:678:0;;;;;:::i;:::-;;:::i;95095:90::-;;;;;;;;;;;;;:::i;92555:194::-;;;;;;;;;;-1:-1:-1;92555:194:0;;;;;:::i;:::-;;:::i;95954:128::-;;;;;;;;;;-1:-1:-1;95954:128:0;;;;;:::i;:::-;;:::i;95001:86::-;;;;;;;;;;-1:-1:-1;95001:86:0;;;;;:::i;:::-;;:::i;91299:29::-;;;;;;;;;;-1:-1:-1;91299:29:0;;;;;;;;;;;66187:164;;;;;;;;;;-1:-1:-1;66187:164:0;;;;;:::i;:::-;;:::i;93618:689::-;;;;;;:::i;:::-;;:::i;95820:126::-;;;;;;;;;;-1:-1:-1;95820:126:0;;;;;:::i;:::-;;:::i;38882:201::-;;;;;;;;;;-1:-1:-1;38882:201:0;;;;;:::i;:::-;;:::i;95720:92::-;;;;;;;;;;-1:-1:-1;95720:92:0;;;;;:::i;:::-;;:::i;92444:103::-;;;;;;;;;;-1:-1:-1;92514:9:0;:16;92444:103;;91694:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;91694:24:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57845:639::-;57930:4;-1:-1:-1;;;;;;;;;58254:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;58331:25:0;;;58254:102;:179;;;-1:-1:-1;;;;;;;;;;58408:25:0;;;58254:179;58234:199;57845:639;-1:-1:-1;;57845:639:0:o;93060:550::-;93128:9;;;;;;;93120:57;;;;-1:-1:-1;;;93120:57:0;;8263:2:1;93120:57:0;;;8245:21:1;8302:2;8282:18;;;8275:30;8341:34;8321:18;;;8314:62;-1:-1:-1;;;8392:18:1;;;8385:33;8435:19;;93120:57:0;;;;;;;;;93212:10;93197:26;;;;:14;:26;;;;;;;;93196:27;93188:54;;;;-1:-1:-1;;;93188:54:0;;8667:2:1;93188:54:0;;;8649:21:1;8706:2;8686:18;;;8679:30;-1:-1:-1;;;8725:18:1;;;8718:44;8779:18;;93188:54:0;8465:338:1;93188:54:0;93276:78;93295:5;;93276:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;93302:10:0;;93324:28;;-1:-1:-1;;93341:10:0;8957:2:1;8953:15;8949:53;93324:28:0;;;8937:66:1;93302:10:0;;-1:-1:-1;9019:12:1;;;-1:-1:-1;93324:28:0;;;;;;;;;;;;93314:39;;;;;;93276:18;:78::i;:::-;93254:145;;;;-1:-1:-1;;;93254:145:0;;9244:2:1;93254:145:0;;;9226:21:1;9283:2;9263:18;;;9256:30;-1:-1:-1;;;9302:18:1;;;9295:46;9358:18;;93254:145:0;9042:340:1;93254:145:0;91085:4;93435:13;54772:12;;54559:7;54756:13;:28;;54498:323;93435:13;:17;;93451:1;93435:17;:::i;:::-;:31;;93413:103;;;;-1:-1:-1;;;93413:103:0;;9851:2:1;93413:103:0;;;9833:21:1;9890:2;9870:18;;;9863:30;-1:-1:-1;;;9909:18:1;;;9902:52;9971:18;;93413:103:0;9649:346:1;93413:103:0;93533:24;93543:10;93555:1;93533:9;:24::i;:::-;-1:-1:-1;;93584:10:0;93569:26;;;;:14;:26;;;;;:33;;-1:-1:-1;;93569:33:0;93598:4;93569:33;;;93060:550::o;58747:100::-;58801:13;58834:5;58827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58747:100;:::o;65238:218::-;65314:7;65339:16;65347:7;65339;:16::i;:::-;65334:64;;65364:34;;-1:-1:-1;;;65364:34:0;;;;;;;;;;;65334:64;-1:-1:-1;65418:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;65418:30:0;;65238:218::o;91413:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;96639:165::-;96743:8;9517:30;9538:8;9517:20;:30::i;:::-;96764:32:::1;96778:8;96788:7;96764:13;:32::i;:::-;96639:165:::0;;;:::o;96812:171::-;96921:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;96938:37:::1;96957:4;96963:2;96967:7;96938:18;:37::i;:::-;96812:171:::0;;;;:::o;92934:114::-;37862:13;:11;:13::i;:::-;93004:36:::1;93014:10;93026:13;93004:9;:36::i;:::-;92934:114:::0;:::o;95286:82::-;37862:13;:11;:13::i;:::-;95351:9:::1;::::0;;-1:-1:-1;;95338:22:0;::::1;95351:9;::::0;;::::1;95350:10;95338:22;::::0;;95286:82::o;96991:179::-;97104:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;97121:41:::1;97144:4;97150:2;97154:7;97121:22;:41::i;91988:448::-:0;92076:9;;;;92067:47;;;;-1:-1:-1;;;92067:47:0;;10202:2:1;92067:47:0;;;10184:21:1;10241:2;10221:18;;;10214:30;10280:26;10260:18;;;10253:54;10324:18;;92067:47:0;10000:348:1;92067:47:0;54772:12;;54559:7;54756:13;:28;92134:7;:23;92125:55;;;;-1:-1:-1;;;92125:55:0;;10555:2:1;92125:55:0;;;10537:21:1;10594:2;10574:18;;;10567:30;-1:-1:-1;;;10613:18:1;;;10606:48;10671:18;;92125:55:0;10353:342:1;92125:55:0;92220:10;92200:16;92208:7;92200;:16::i;:::-;-1:-1:-1;;;;;92200:30:0;;92191:53;;;;-1:-1:-1;;;92191:53:0;;10902:2:1;92191:53:0;;;10884:21:1;10941:1;10921:18;;;10914:29;-1:-1:-1;;;10959:18:1;;;10952:39;11008:18;;92191:53:0;10700:332:1;92191:53:0;-1:-1:-1;;;;;;;;;;;;;;;;;92294:15:0;92283:26;;92320:21;;;;;;;;;;;;;;;;;;;;;;;92333:8;;;;;;92320:21;;92333:8;;;;92320:21;;;;;;;;;-1:-1:-1;;;;92320:12:0;;;:21;92366:9;:16;92357:26;;;;;;3240:25:1;;;3228:2;3213:18;;3094:177;92357:26:0;;;;;;;;92399:9;:20;;;;;;;-1:-1:-1;92399:20:0;;;;;;;;;;;;;;;;;;;;92414:4;;92399:20;;;;;;;;:::i;:::-;;;;92056:380;91988:448;;;:::o;96302:145::-;37862:13;:11;:13::i;:::-;96410:29:::1;::::0;96378:21:::1;::::0;-1:-1:-1;;;;;96410:20:0;::::1;::::0;:29;::::1;;;::::0;96378:21;;96360:15:::1;96410:29:::0;96360:15;96410:29;96378:21;96410:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;96202:92:::0;37862:13;:11;:13::i;:::-;96268:7:::1;:18:::0;96202:92::o;95492:104::-;37862:13;:11;:13::i;:::-;95567:7:::1;:21;95577:11:::0;95567:7;:21:::1;:::i;:::-;;95492:104:::0;:::o;60140:152::-;60212:7;60255:27;60274:7;60255:18;:27::i;55682:233::-;55754:7;-1:-1:-1;;;;;55778:19:0;;55774:60;;55806:28;;-1:-1:-1;;;55806:28:0;;;;;;;;;;;55774:60;-1:-1:-1;;;;;;55852:25:0;;;;;:18;:25;;;;;;49841:13;55852:55;;55682:233::o;38624:103::-;37862:13;:11;:13::i;:::-;38689:30:::1;38716:1;38689:18;:30::i;:::-;38624:103::o:0;58923:104::-;58979:13;59012:7;59005:14;;;;;:::i;96090:104::-;37862:13;:11;:13::i;:::-;96162:10:::1;:24:::0;96090:104::o;96455:176::-;96559:8;9517:30;9538:8;9517:20;:30::i;:::-;96580:43:::1;96604:8;96614;96580:23;:43::i;92757:169::-:0;92846:9;:16;92813:4;;92837:25;;92829:49;;;;-1:-1:-1;;;92829:49:0;;13443:2:1;92829:49:0;;;13425:21:1;13482:2;13462:18;;;13455:30;-1:-1:-1;;;13501:18:1;;;13494:41;13552:18;;92829:49:0;13241:335:1;92829:49:0;92896:9;92906:6;92896:17;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;92889:29;;92757:169;;;:::o;97178:230::-;97337:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;97353:47:::1;97376:4;97382:2;97386:7;97395:4;97353:22;:47::i;:::-;97178:230:::0;;;;;:::o;95193:85::-;37862:13;:11;:13::i;:::-;95261:9:::1;::::0;;-1:-1:-1;;95248:22:0;::::1;95261:9;::::0;;;::::1;;;95260:10;95248:22:::0;;::::1;;::::0;;95193:85::o;95604:108::-;37862:13;:11;:13::i;:::-;95678:11:::1;:26:::0;95604:108::o;91469:37::-;;;;;;;:::i;94315:678::-;94433:13;94472:16;94480:7;94472;:16::i;:::-;94464:45;;;;-1:-1:-1;;;94464:45:0;;13915:2:1;94464:45:0;;;13897:21:1;13954:2;13934:18;;;13927:30;-1:-1:-1;;;13973:18:1;;;13966:46;14029:18;;94464:45:0;13713:340:1;94464:45:0;94524:9;;;;:18;;:9;:18;94520:72;;94566:14;94559:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94315:678;;;:::o;94520:72::-;94602:23;94628:19;;;:10;:19;;;;;94602:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94658:18;94679:10;:8;:10::i;:::-;94658:31;;94710:4;94704:18;94726:1;94704:23;94700:72;;-1:-1:-1;94751:9:0;94315:678;-1:-1:-1;;94315:678:0:o;94700:72::-;94786:23;;:27;94782:108;;94861:4;94867:9;94844:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94830:48;;;;94315:678;;;:::o;94782:108::-;94944:4;94950:18;:7;:16;:18::i;:::-;94970:13;94927:57;;;;;;;;;;:::i;95095:90::-;37862:13;:11;:13::i;:::-;95164::::1;::::0;;-1:-1:-1;;95147:30:0;::::1;95164:13;::::0;;::::1;95163:14;95147:30;::::0;;95095:90::o;92555:194::-;92656:9;:16;92614:13;;92647:25;;92639:49;;;;-1:-1:-1;;;92639:49:0;;13443:2:1;92639:49:0;;;13425:21:1;13482:2;13462:18;;;13455:30;-1:-1:-1;;;13501:18:1;;;13494:41;13552:18;;92639:49:0;13241:335:1;92639:49:0;92707:9;92717:6;92707:17;;;;;;;;:::i;:::-;;;;;;;;;;;:25;;92700:32;;;;;:::i;95954:128::-;37862:13;:11;:13::i;:::-;96041::::1;:33;96057:17:::0;96041:13;:33:::1;:::i;95001:86::-:0;37862:13;:11;:13::i;:::-;95061:10:::1;:18:::0;95001:86::o;66187:164::-;-1:-1:-1;;;;;66308:25:0;;;66284:4;66308:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;66187:164::o;93618:689::-;93704:13;;;;93695:58;;;;-1:-1:-1;;;93695:58:0;;16022:2:1;93695:58:0;;;16004:21:1;16061:2;16041:18;;;16034:30;16100:33;16080:18;;;16073:61;16151:18;;93695:58:0;15820:355:1;93695:58:0;93773:9;93786:10;93773:23;93764:55;;;;-1:-1:-1;;;93764:55:0;;16382:2:1;93764:55:0;;;16364:21:1;16421:2;16401:18;;;16394:30;-1:-1:-1;;;16440:18:1;;;16433:48;16498:18;;93764:55:0;16180:342:1;93764:55:0;93856:7;;93839:13;:24;;93830:74;;;;-1:-1:-1;;;93830:74:0;;16729:2:1;93830:74:0;;;16711:21:1;16768:2;16748:18;;;16741:30;16807:34;16787:18;;;16780:62;-1:-1:-1;;;16858:18:1;;;16851:34;16902:19;;93830:74:0;16527:400:1;93830:74:0;91085:4;93953:13;93937;54772:12;;54559:7;54756:13;:28;;54498:323;93937:13;:29;;;;:::i;:::-;:43;;93915:115;;;;-1:-1:-1;;;93915:115:0;;9851:2:1;93915:115:0;;;9833:21:1;9890:2;9870:18;;;9863:30;-1:-1:-1;;;9909:18:1;;;9902:52;9971:18;;93915:115:0;9649:346:1;93915:115:0;94113:10;;94096:13;94071:21;94081:10;94071:9;:21::i;:::-;:38;;;;:::i;:::-;:52;;94049:123;;;;-1:-1:-1;;;94049:123:0;;17134:2:1;94049:123:0;;;17116:21:1;17173:2;17153:18;;;17146:30;-1:-1:-1;;;17192:18:1;;;17185:50;17252:18;;94049:123:0;16932:344:1;94049:123:0;94222:9;94207:11;;94191:13;:27;;;;:::i;:::-;:40;;94183:69;;;;-1:-1:-1;;;94183:69:0;;17656:2:1;94183:69:0;;;17638:21:1;17695:2;17675:18;;;17668:30;-1:-1:-1;;;17714:18:1;;;17707:46;17770:18;;94183:69:0;17454:340:1;95820:126:0;37862:13;:11;:13::i;:::-;95906:14:::1;:32;95923:15:::0;95906:14;:32:::1;:::i;38882:201::-:0;37862:13;:11;:13::i;:::-;-1:-1:-1;;;;;38971:22:0;::::1;38963:73;;;::::0;-1:-1:-1;;;38963:73:0;;18001:2:1;38963:73:0::1;::::0;::::1;17983:21:1::0;18040:2;18020:18;;;18013:30;18079:34;18059:18;;;18052:62;-1:-1:-1;;;18130:18:1;;;18123:36;18176:19;;38963:73:0::1;17799:402:1::0;38963:73:0::1;39047:28;39066:8;39047:18;:28::i;95720:92::-:0;37862:13;:11;:13::i;:::-;95786:7:::1;:18:::0;95720:92::o;12310:190::-;12435:4;12488;12459:25;12472:5;12479:4;12459:12;:25::i;:::-;:33;;12310:190;-1:-1:-1;;;;12310:190:0:o;82749:112::-;82826:27;82836:2;82840:8;82826:27;;;;;;;;;;;;:9;:27::i;66609:282::-;66674:4;66764:13;;66754:7;:23;66711:153;;;;-1:-1:-1;;66815:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;66815:44:0;:49;;66609:282::o;9660:647::-;151:42;9851:45;:49;9847:453;;10150:67;;-1:-1:-1;;;10150:67:0;;10201:4;10150:67;;;18418:34:1;-1:-1:-1;;;;;18488:15:1;;18468:18;;;18461:43;151:42:0;;10150;;18353:18:1;;10150:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10145:144;;10245:28;;-1:-1:-1;;;10245:28:0;;-1:-1:-1;;;;;2613:32:1;;10245:28:0;;;2595:51:1;2568:18;;10245:28:0;2449:203:1;64671:408:0;64760:13;64776:16;64784:7;64776;:16::i;:::-;64760:32;-1:-1:-1;89004:10:0;-1:-1:-1;;;;;64809:28:0;;;64805:175;;64857:44;64874:5;89004:10;66187:164;:::i;64857:44::-;64852:128;;64929:35;;-1:-1:-1;;;64929:35:0;;;;;;;;;;;64852:128;64992:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;64992:35:0;-1:-1:-1;;;;;64992:35:0;;;;;;;;;65043:28;;64992:24;;65043:28;;;;;;;64749:330;64671:408;;:::o;68877:2825::-;69019:27;69049;69068:7;69049:18;:27::i;:::-;69019:57;;69134:4;-1:-1:-1;;;;;69093:45:0;69109:19;-1:-1:-1;;;;;69093:45:0;;69089:86;;69147:28;;-1:-1:-1;;;69147:28:0;;;;;;;;;;;69089:86;69189:27;67985:24;;;:15;:24;;;;;68213:26;;89004:10;67610:30;;;-1:-1:-1;;;;;67303:28:0;;67588:20;;;67585:56;69375:180;;69468:43;69485:4;89004:10;66187:164;:::i;69468:43::-;69463:92;;69520:35;;-1:-1:-1;;;69520:35:0;;;;;;;;;;;69463:92;-1:-1:-1;;;;;69572:16:0;;69568:52;;69597:23;;-1:-1:-1;;;69597:23:0;;;;;;;;;;;69568:52;69769:15;69766:160;;;69909:1;69888:19;69881:30;69766:160;-1:-1:-1;;;;;70306:24:0;;;;;;;:18;:24;;;;;;70304:26;;-1:-1:-1;;70304:26:0;;;70375:22;;;;;;;;;70373:24;;-1:-1:-1;70373:24:0;;;63529:11;63504:23;63500:41;63487:63;-1:-1:-1;;;63487:63:0;70668:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;70963:47:0;;:52;;70959:627;;71068:1;71058:11;;71036:19;71191:30;;;:17;:30;;;;;;:35;;71187:384;;71329:13;;71314:11;:28;71310:242;;71476:30;;;;:17;:30;;;;;:52;;;71310:242;71017:569;70959:627;71633:7;71629:2;-1:-1:-1;;;;;71614:27:0;71623:4;-1:-1:-1;;;;;71614:27:0;;;;;;;;;;;71652:42;69008:2694;;;68877:2825;;;:::o;38141:132::-;38049:6;;-1:-1:-1;;;;;38049:6:0;89004:10;38205:23;38197:68;;;;-1:-1:-1;;;38197:68:0;;18967:2:1;38197:68:0;;;18949:21:1;;;18986:18;;;18979:30;19045:34;19025:18;;;19018:62;19097:18;;38197:68:0;18765:356:1;71798:193:0;71944:39;71961:4;71967:2;71971:7;71944:39;;;;;;;;;;;;:16;:39::i;61295:1275::-;61362:7;61397;61499:13;;61492:4;:20;61488:1015;;;61537:14;61554:23;;;:17;:23;;;;;;;-1:-1:-1;;;61643:24:0;;:29;;61639:845;;62308:113;62315:6;62325:1;62315:11;62308:113;;-1:-1:-1;;;62386:6:0;62368:25;;;;:17;:25;;;;;;62308:113;;;62454:6;61295:1275;-1:-1:-1;;;61295:1275:0:o;61639:845::-;61514:989;61488:1015;62531:31;;-1:-1:-1;;;62531:31:0;;;;;;;;;;;39243:191;39336:6;;;-1:-1:-1;;;;;39353:17:0;;;-1:-1:-1;;;;;;39353:17:0;;;;;;;39386:40;;39336:6;;;39353:17;39336:6;;39386:40;;39317:16;;39386:40;39306:128;39243:191;:::o;65796:234::-;89004:10;65891:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;65891:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;65891:60:0;;;;;;;;;;65967:55;;1552:41:1;;;65891:49:0;;89004:10;65967:55;;1525:18:1;65967:55:0;;;;;;;65796:234;;:::o;72589:407::-;72764:31;72777:4;72783:2;72787:7;72764:12;:31::i;:::-;-1:-1:-1;;;;;72810:14:0;;;:19;72806:183;;72849:56;72880:4;72886:2;72890:7;72899:5;72849:30;:56::i;:::-;72844:145;;72933:40;;-1:-1:-1;;;72933:40:0;;;;;;;;;;;95376:108;95436:13;95469:7;95462:14;;;;;:::i;33954:716::-;34010:13;34061:14;34078:17;34089:5;34078:10;:17::i;:::-;34098:1;34078:21;34061:38;;34114:20;34148:6;34137:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34137:18:0;-1:-1:-1;34114:41:0;-1:-1:-1;34279:28:0;;;34295:2;34279:28;34336:288;-1:-1:-1;;34368:5:0;-1:-1:-1;;;34505:2:0;34494:14;;34489:30;34368:5;34476:44;34566:2;34557:11;;;-1:-1:-1;34587:21:0;34336:288;34587:21;-1:-1:-1;34645:6:0;33954:716;-1:-1:-1;;;33954:716:0:o;13177:296::-;13260:7;13303:4;13260:7;13318:118;13342:5;:12;13338:1;:16;13318:118;;;13391:33;13401:12;13415:5;13421:1;13415:8;;;;;;;;:::i;:::-;;;;;;;13391:9;:33::i;:::-;13376:48;-1:-1:-1;13356:3:0;;;;:::i;:::-;;;;13318:118;;;-1:-1:-1;13453:12:0;13177:296;-1:-1:-1;;;13177:296:0:o;81976:689::-;82107:19;82113:2;82117:8;82107:5;:19::i;:::-;-1:-1:-1;;;;;82168:14:0;;;:19;82164:483;;82208:11;82222:13;82270:14;;;82303:233;82334:62;82373:1;82377:2;82381:7;;;;;;82390:5;82334:30;:62::i;:::-;82329:167;;82432:40;;-1:-1:-1;;;82432:40:0;;;;;;;;;;;82329:167;82531:3;82523:5;:11;82303:233;;82618:3;82601:13;;:20;82597:34;;82623:8;;;75080:716;75264:88;;-1:-1:-1;;;75264:88:0;;75243:4;;-1:-1:-1;;;;;75264:45:0;;;;;:88;;89004:10;;75331:4;;75337:7;;75346:5;;75264:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75264:88:0;;;;;;;;-1:-1:-1;;75264:88:0;;;;;;;;;;;;:::i;:::-;;;75260:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75547:6;:13;75564:1;75547:18;75543:235;;75593:40;;-1:-1:-1;;;75593:40:0;;;;;;;;;;;75543:235;75736:6;75730:13;75721:6;75717:2;75713:15;75706:38;75260:529;-1:-1:-1;;;;;;75423:64:0;-1:-1:-1;;;75423:64:0;;-1:-1:-1;75260:529:0;75080:716;;;;;;:::o;30820:922::-;30873:7;;-1:-1:-1;;;30951:15:0;;30947:102;;-1:-1:-1;;;30987:15:0;;;-1:-1:-1;31031:2:0;31021:12;30947:102;31076:6;31067:5;:15;31063:102;;31112:6;31103:15;;;-1:-1:-1;31147:2:0;31137:12;31063:102;31192:6;31183:5;:15;31179:102;;31228:6;31219:15;;;-1:-1:-1;31263:2:0;31253:12;31179:102;31308:5;31299;:14;31295:99;;31343:5;31334:14;;;-1:-1:-1;31377:1:0;31367:11;31295:99;31421:5;31412;:14;31408:99;;31456:5;31447:14;;;-1:-1:-1;31490:1:0;31480:11;31408:99;31534:5;31525;:14;31521:99;;31569:5;31560:14;;;-1:-1:-1;31603:1:0;31593:11;31521:99;31647:5;31638;:14;31634:66;;31683:1;31673:11;31728:6;30820:922;-1:-1:-1;;30820:922:0:o;20217:149::-;20280:7;20311:1;20307;:5;:51;;20442:13;20536:15;;;20572:4;20565:15;;;20619:4;20603:21;;20307:51;;;-1:-1:-1;20442:13:0;20536:15;;;20572:4;20565:15;20619:4;20603:21;;;20217:149::o;76258:2966::-;76331:20;76354:13;;;76382;;;76378:44;;76404:18;;-1:-1:-1;;;76404:18:0;;;;;;;;;;;76378:44;-1:-1:-1;;;;;76910:22:0;;;;;;:18;:22;;;;49979:2;76910:22;;;:71;;76948:32;76936:45;;76910:71;;;77224:31;;;:17;:31;;;;;-1:-1:-1;63960:15:0;;63934:24;63930:46;63529:11;63504:23;63500:41;63497:52;63487:63;;77224:173;;77459:23;;;;77224:31;;76910:22;;78224:25;76910:22;;78077:335;78738:1;78724:12;78720:20;78678:346;78779:3;78770:7;78767:16;78678:346;;78997:7;78987:8;78984:1;78957:25;78954:1;78951;78946:59;78832:1;78819:15;78678:346;;;78682:77;79057:8;79069:1;79057:13;79053:45;;79079:19;;-1:-1:-1;;;79079:19:0;;;;;;;;;;;79053:45;79115:13;:19;-1:-1:-1;96639:165:0;;;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:250::-;284:1;294:113;308:6;305:1;302:13;294:113;;;384:11;;;378:18;365:11;;;358:39;330:2;323:10;294:113;;;-1:-1:-1;;441:1:1;423:16;;416:27;199:250::o;454:271::-;496:3;534:5;528:12;561:6;556:3;549:19;577:76;646:6;639:4;634:3;630:14;623:4;616:5;612:16;577:76;:::i;:::-;707:2;686:15;-1:-1:-1;;682:29:1;673:39;;;;714:4;669:50;;454:271;-1:-1:-1;;454:271:1:o;730:291::-;907:6;896:9;889:25;950:2;945;934:9;930:18;923:30;870:4;970:45;1011:2;1000:9;996:18;988:6;970:45;:::i;1026:131::-;-1:-1:-1;;;;;;1100:32:1;;1090:43;;1080:71;;1147:1;1144;1137:12;1162:245;1220:6;1273:2;1261:9;1252:7;1248:23;1244:32;1241:52;;;1289:1;1286;1279:12;1241:52;1328:9;1315:23;1347:30;1371:5;1347:30;:::i;1604:615::-;1690:6;1698;1751:2;1739:9;1730:7;1726:23;1722:32;1719:52;;;1767:1;1764;1757:12;1719:52;1807:9;1794:23;1836:18;1877:2;1869:6;1866:14;1863:34;;;1893:1;1890;1883:12;1863:34;1931:6;1920:9;1916:22;1906:32;;1976:7;1969:4;1965:2;1961:13;1957:27;1947:55;;1998:1;1995;1988:12;1947:55;2038:2;2025:16;2064:2;2056:6;2053:14;2050:34;;;2080:1;2077;2070:12;2050:34;2133:7;2128:2;2118:6;2115:1;2111:14;2107:2;2103:23;2099:32;2096:45;2093:65;;;2154:1;2151;2144:12;2093:65;2185:2;2177:11;;;;;2207:6;;-1:-1:-1;1604:615:1;;-1:-1:-1;;;;1604:615:1:o;2224:220::-;2373:2;2362:9;2355:21;2336:4;2393:45;2434:2;2423:9;2419:18;2411:6;2393:45;:::i;2657:173::-;2725:20;;-1:-1:-1;;;;;2774:31:1;;2764:42;;2754:70;;2820:1;2817;2810:12;2754:70;2657:173;;;:::o;2835:254::-;2903:6;2911;2964:2;2952:9;2943:7;2939:23;2935:32;2932:52;;;2980:1;2977;2970:12;2932:52;3003:29;3022:9;3003:29;:::i;:::-;2993:39;3079:2;3064:18;;;;3051:32;;-1:-1:-1;;;2835:254:1:o;3276:328::-;3353:6;3361;3369;3422:2;3410:9;3401:7;3397:23;3393:32;3390:52;;;3438:1;3435;3428:12;3390:52;3461:29;3480:9;3461:29;:::i;:::-;3451:39;;3509:38;3543:2;3532:9;3528:18;3509:38;:::i;:::-;3499:48;;3594:2;3583:9;3579:18;3566:32;3556:42;;3276:328;;;;;:::o;4030:660::-;4110:6;4118;4126;4179:2;4167:9;4158:7;4154:23;4150:32;4147:52;;;4195:1;4192;4185:12;4147:52;4231:9;4218:23;4208:33;;4292:2;4281:9;4277:18;4264:32;4315:18;4356:2;4348:6;4345:14;4342:34;;;4372:1;4369;4362:12;4342:34;4410:6;4399:9;4395:22;4385:32;;4455:7;4448:4;4444:2;4440:13;4436:27;4426:55;;4477:1;4474;4467:12;4426:55;4517:2;4504:16;4543:2;4535:6;4532:14;4529:34;;;4559:1;4556;4549:12;4529:34;4604:7;4599:2;4590:6;4586:2;4582:15;4578:24;4575:37;4572:57;;;4625:1;4622;4615:12;4572:57;4656:2;4652;4648:11;4638:21;;4678:6;4668:16;;;;;4030:660;;;;;:::o;4695:186::-;4754:6;4807:2;4795:9;4786:7;4782:23;4778:32;4775:52;;;4823:1;4820;4813:12;4775:52;4846:29;4865:9;4846:29;:::i;4886:127::-;4947:10;4942:3;4938:20;4935:1;4928:31;4978:4;4975:1;4968:15;5002:4;4999:1;4992:15;5018:632;5083:5;5113:18;5154:2;5146:6;5143:14;5140:40;;;5160:18;;:::i;:::-;5235:2;5229:9;5203:2;5289:15;;-1:-1:-1;;5285:24:1;;;5311:2;5281:33;5277:42;5265:55;;;5335:18;;;5355:22;;;5332:46;5329:72;;;5381:18;;:::i;:::-;5421:10;5417:2;5410:22;5450:6;5441:15;;5480:6;5472;5465:22;5520:3;5511:6;5506:3;5502:16;5499:25;5496:45;;;5537:1;5534;5527:12;5496:45;5587:6;5582:3;5575:4;5567:6;5563:17;5550:44;5642:1;5635:4;5626:6;5618;5614:19;5610:30;5603:41;;;;5018:632;;;;;:::o;5655:451::-;5724:6;5777:2;5765:9;5756:7;5752:23;5748:32;5745:52;;;5793:1;5790;5783:12;5745:52;5833:9;5820:23;5866:18;5858:6;5855:30;5852:50;;;5898:1;5895;5888:12;5852:50;5921:22;;5974:4;5966:13;;5962:27;-1:-1:-1;5952:55:1;;6003:1;6000;5993:12;5952:55;6026:74;6092:7;6087:2;6074:16;6069:2;6065;6061:11;6026:74;:::i;6111:118::-;6197:5;6190:13;6183:21;6176:5;6173:32;6163:60;;6219:1;6216;6209:12;6234:315;6299:6;6307;6360:2;6348:9;6339:7;6335:23;6331:32;6328:52;;;6376:1;6373;6366:12;6328:52;6399:29;6418:9;6399:29;:::i;:::-;6389:39;;6478:2;6467:9;6463:18;6450:32;6491:28;6513:5;6491:28;:::i;:::-;6538:5;6528:15;;;6234:315;;;;;:::o;6554:667::-;6649:6;6657;6665;6673;6726:3;6714:9;6705:7;6701:23;6697:33;6694:53;;;6743:1;6740;6733:12;6694:53;6766:29;6785:9;6766:29;:::i;:::-;6756:39;;6814:38;6848:2;6837:9;6833:18;6814:38;:::i;:::-;6804:48;;6899:2;6888:9;6884:18;6871:32;6861:42;;6954:2;6943:9;6939:18;6926:32;6981:18;6973:6;6970:30;6967:50;;;7013:1;7010;7003:12;6967:50;7036:22;;7089:4;7081:13;;7077:27;-1:-1:-1;7067:55:1;;7118:1;7115;7108:12;7067:55;7141:74;7207:7;7202:2;7189:16;7184:2;7180;7176:11;7141:74;:::i;:::-;7131:84;;;6554:667;;;;;;;:::o;7411:260::-;7479:6;7487;7540:2;7528:9;7519:7;7515:23;7511:32;7508:52;;;7556:1;7553;7546:12;7508:52;7579:29;7598:9;7579:29;:::i;:::-;7569:39;;7627:38;7661:2;7650:9;7646:18;7627:38;:::i;:::-;7617:48;;7411:260;;;;;:::o;7676:380::-;7755:1;7751:12;;;;7798;;;7819:61;;7873:4;7865:6;7861:17;7851:27;;7819:61;7926:2;7918:6;7915:14;7895:18;7892:38;7889:161;;7972:10;7967:3;7963:20;7960:1;7953:31;8007:4;8004:1;7997:15;8035:4;8032:1;8025:15;7889:161;;7676:380;;;:::o;9387:127::-;9448:10;9443:3;9439:20;9436:1;9429:31;9479:4;9476:1;9469:15;9503:4;9500:1;9493:15;9519:125;9584:9;;;9605:10;;;9602:36;;;9618:18;;:::i;11163:545::-;11265:2;11260:3;11257:11;11254:448;;;11301:1;11326:5;11322:2;11315:17;11371:4;11367:2;11357:19;11441:2;11429:10;11425:19;11422:1;11418:27;11412:4;11408:38;11477:4;11465:10;11462:20;11459:47;;;-1:-1:-1;11500:4:1;11459:47;11555:2;11550:3;11546:12;11543:1;11539:20;11533:4;11529:31;11519:41;;11610:82;11628:2;11621:5;11618:13;11610:82;;;11673:17;;;11654:1;11643:13;11610:82;;11884:1352;12010:3;12004:10;12037:18;12029:6;12026:30;12023:56;;;12059:18;;:::i;:::-;12088:97;12178:6;12138:38;12170:4;12164:11;12138:38;:::i;:::-;12132:4;12088:97;:::i;:::-;12240:4;;12304:2;12293:14;;12321:1;12316:663;;;;13023:1;13040:6;13037:89;;;-1:-1:-1;13092:19:1;;;13086:26;13037:89;-1:-1:-1;;11841:1:1;11837:11;;;11833:24;11829:29;11819:40;11865:1;11861:11;;;11816:57;13139:81;;12286:944;;12316:663;11110:1;11103:14;;;11147:4;11134:18;;-1:-1:-1;;12352:20:1;;;12470:236;12484:7;12481:1;12478:14;12470:236;;;12573:19;;;12567:26;12552:42;;12665:27;;;;12633:1;12621:14;;;;12500:19;;12470:236;;;12474:3;12734:6;12725:7;12722:19;12719:201;;;12795:19;;;12789:26;-1:-1:-1;;12878:1:1;12874:14;;;12890:3;12870:24;12866:37;12862:42;12847:58;12832:74;;12719:201;-1:-1:-1;;;;;12966:1:1;12950:14;;;12946:22;12933:36;;-1:-1:-1;11884:1352:1:o;13581:127::-;13642:10;13637:3;13633:20;13630:1;13623:31;13673:4;13670:1;13663:15;13697:4;13694:1;13687:15;14058:496;14237:3;14275:6;14269:13;14291:66;14350:6;14345:3;14338:4;14330:6;14326:17;14291:66;:::i;:::-;14420:13;;14379:16;;;;14442:70;14420:13;14379:16;14489:4;14477:17;;14442:70;:::i;:::-;14528:20;;14058:496;-1:-1:-1;;;;14058:496:1:o;14559:1256::-;14783:3;14821:6;14815:13;14847:4;14860:64;14917:6;14912:3;14907:2;14899:6;14895:15;14860:64;:::i;:::-;14987:13;;14946:16;;;;15009:68;14987:13;14946:16;15044:15;;;15009:68;:::i;:::-;15166:13;;15099:20;;;15139:1;;15204:36;15166:13;15204:36;:::i;:::-;15259:1;15276:18;;;15303:141;;;;15458:1;15453:337;;;;15269:521;;15303:141;-1:-1:-1;;15338:24:1;;15324:39;;15415:16;;15408:24;15394:39;;15383:51;;;-1:-1:-1;15303:141:1;;15453:337;15484:6;15481:1;15474:17;15532:2;15529:1;15519:16;15557:1;15571:169;15585:8;15582:1;15579:15;15571:169;;;15667:14;;15652:13;;;15645:37;15710:16;;;;15602:10;;15571:169;;;15575:3;;15771:8;15764:5;15760:20;15753:27;;15269:521;-1:-1:-1;15806:3:1;;14559:1256;-1:-1:-1;;;;;;;;;;14559:1256:1:o;17281:168::-;17354:9;;;17385;;17402:15;;;17396:22;;17382:37;17372:71;;17423:18;;:::i;18515:245::-;18582:6;18635:2;18623:9;18614:7;18610:23;18606:32;18603:52;;;18651:1;18648;18641:12;18603:52;18683:9;18677:16;18702:28;18724:5;18702:28;:::i;19258:135::-;19297:3;19318:17;;;19315:43;;19338:18;;:::i;:::-;-1:-1:-1;19385:1:1;19374:13;;19258:135::o;19398:489::-;-1:-1:-1;;;;;19667:15:1;;;19649:34;;19719:15;;19714:2;19699:18;;19692:43;19766:2;19751:18;;19744:34;;;19814:3;19809:2;19794:18;;19787:31;;;19592:4;;19835:46;;19861:19;;19853:6;19835:46;:::i;:::-;19827:54;19398:489;-1:-1:-1;;;;;;19398:489:1:o;19892:249::-;19961:6;20014:2;20002:9;19993:7;19989:23;19985:32;19982:52;;;20030:1;20027;20020:12;19982:52;20062:9;20056:16;20081:30;20105:5;20081:30;:::i
Swarm Source
ipfs://884379d209562129d9a87e83b3fb2e6907c75bc611f2f538aae660b1c01db906
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.