Overview
TokenID
776
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OP3NMINDS
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-20 */ // Sources flattened with hardhat v2.14.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/common/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File @openzeppelin/contracts/utils/math/[email protected] // 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/[email protected] // 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/cryptography/[email protected] // 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 erc721a/contracts/[email protected] // 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/[email protected] // 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/OP3NMINDS.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.19; error noContract(); error Paused(); error NotActiveYet(); error AllowNotActive(); error MaxSupplyReached(); error NotAllowListed(); error NotEnoughEther(); error MaximumMintsReached(); error TeamAlreadyMinted(); contract OP3NMINDS is ERC721A, Ownable, ERC2981 { using Strings for uint256; uint256 public constant MAX_SUPPLY = 1100; uint256 public constant MAX_PUBLIC_MINT = 10; uint256 public constant MAX_MINDLIST_MINT = 10; uint256 public constant MAX_RILLALIST_MINT = 10; uint256 public constant PUBLIC_SALE_PRICE = 0.045 ether; uint256 public constant MINDLIST_SALE_PRICE = 0.035 ether; uint256 public constant RILLALIST_SALE_PRICE = 0.015 ether; string private baseTokenUri; string public hiddenURI; //deploy smart contract, toggle WL, toggle WL when done, toggle publicSale bool public isRevealed; bool public publicSale; bool public allowListSale; bool public teamMinted; bool public paused; bytes32 private merkleRootRilla; bytes32 private merkleRootMind; mapping(address => uint256) public totalPublicMint; mapping(address => uint256) public totalMindListMint; mapping(address => uint256) public totalRillaListMint; constructor( uint96 _royaltyFeesInBips, address _royaltyAddress, string memory _hiddenURI, bytes32 _merkleRootRilla, bytes32 _merkleRootMind ) ERC721A("OP3NMINDS", "OP3N") { _setDefaultRoyalty(_royaltyAddress, _royaltyFeesInBips); hiddenURI = _hiddenURI; merkleRootRilla = _merkleRootRilla; merkleRootMind = _merkleRootMind; } function mint(uint256 _quantity) external payable { if (paused) revert Paused(); if (!publicSale) revert NotActiveYet(); if (totalSupply() + _quantity > MAX_SUPPLY) revert MaxSupplyReached(); if (totalPublicMint[msg.sender] + _quantity > MAX_PUBLIC_MINT) revert MaximumMintsReached(); if (msg.value < (PUBLIC_SALE_PRICE * _quantity)) revert NotEnoughEther(); totalPublicMint[msg.sender] += _quantity; _mint(msg.sender, _quantity); } function rillalistMint( bytes32[] memory _merkleProof, uint256 _quantity ) external payable { if (paused) revert Paused(); if (!allowListSale) revert AllowNotActive(); if (totalSupply() + _quantity > MAX_SUPPLY) revert MaxSupplyReached(); if (totalRillaListMint[msg.sender] + _quantity > MAX_RILLALIST_MINT) revert MaximumMintsReached(); if (msg.value < (RILLALIST_SALE_PRICE * _quantity)) revert NotEnoughEther(); bytes32 sender = keccak256(abi.encodePacked(msg.sender)); if (MerkleProof.verify(_merkleProof, merkleRootRilla, sender) == false) revert NotAllowListed(); totalRillaListMint[msg.sender] += _quantity; _mint(msg.sender, _quantity); } function mindlistMint( bytes32[] memory _merkleProof, uint256 _quantity ) external payable { if (paused) revert Paused(); if (!allowListSale) revert AllowNotActive(); if (totalSupply() + _quantity > MAX_SUPPLY) revert MaxSupplyReached(); if (totalMindListMint[msg.sender] + _quantity > MAX_MINDLIST_MINT) revert MaximumMintsReached(); if (msg.value < (MINDLIST_SALE_PRICE * _quantity)) revert NotEnoughEther(); bytes32 sender = keccak256(abi.encodePacked(msg.sender)); if (MerkleProof.verify(_merkleProof, merkleRootMind, sender) == false) revert NotAllowListed(); totalMindListMint[msg.sender] += _quantity; _mint(msg.sender, _quantity); } function teamMint() external onlyOwner { if (teamMinted) revert TeamAlreadyMinted(); teamMinted = true; _mint(msg.sender, 10); } function adminMint(address _address, uint256 _amount) external onlyOwner { _mint(_address, _amount); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (!isRevealed) { return hiddenURI; } return bytes(baseTokenUri).length > 0 ? string( abi.encodePacked(baseTokenUri, tokenId.toString(), ".json") ) : ""; } function _startTokenId() internal pure virtual override returns (uint256) { return 1; } function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721A, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } //Only Owner Functions function setRoyaltyInfo( address _receiver, uint96 _royaltyFeesInBips ) external onlyOwner { _setDefaultRoyalty(_receiver, _royaltyFeesInBips); } function setTokenUri(string memory _baseTokenUri) external onlyOwner { baseTokenUri = _baseTokenUri; } function setHiddenUri(string memory _hiddenURI) external onlyOwner { hiddenURI = _hiddenURI; } function setRillaMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRootRilla = _merkleRoot; } function setMindMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRootMind = _merkleRoot; } function getMerkleRoot() external view returns (bytes32) { return merkleRootRilla; } function getMerkleAllowRoot() external view returns (bytes32) { return merkleRootMind; } function toggleAllowListSale() external onlyOwner { allowListSale = !allowListSale; } function togglePublicSale() external onlyOwner { publicSale = !publicSale; } function toggleReveal() external onlyOwner { isRevealed = !isRevealed; } function togglePause() external onlyOwner { paused = !paused; } function withdraw() external onlyOwner { uint256 withdrawAmount_20 = ((address(this).balance) * 20) / 100; (bool sent, ) = payable(0x0E1a590c79aB1f77E6BB70dAF0B4BcF77243bBc7).call{value: withdrawAmount_20}(""); require(sent, "Artist cut not sent"); (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success, "Payment not sent"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"},{"internalType":"address","name":"_royaltyAddress","type":"address"},{"internalType":"string","name":"_hiddenURI","type":"string"},{"internalType":"bytes32","name":"_merkleRootRilla","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootMind","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowNotActive","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MaximumMintsReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotActiveYet","type":"error"},{"inputs":[],"name":"NotAllowListed","type":"error"},{"inputs":[],"name":"NotEnoughEther","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"Paused","type":"error"},{"inputs":[],"name":"TeamAlreadyMinted","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"},{"inputs":[],"name":"MAX_MINDLIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RILLALIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINDLIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RILLALIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleAllowRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mindlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"rillalistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_hiddenURI","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMindMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setRillaMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAllowListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMindListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalRillaListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200299738038062002997833981016040819052620000349162000241565b604051806040016040528060098152602001684f50334e4d494e445360b81b8152506040518060400160405280600481526020016327a819a760e11b8152508160029081620000849190620003f9565b506003620000938282620003f9565b5050600160005550620000a633620000d4565b620000b2848662000126565b600c620000c08482620003f9565b50600e91909155600f5550620004c5915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156200019a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620001f25760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000191565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b634e487b7160e01b600052604160045260246000fd5b600080600080600060a086880312156200025a57600080fd5b85516001600160601b03811681146200027257600080fd5b602087810151919650906001600160a01b03811681146200029257600080fd5b60408801519095506001600160401b0380821115620002b057600080fd5b818901915089601f830112620002c557600080fd5b815181811115620002da57620002da6200022b565b604051601f8201601f19908116603f011681019083821181831017156200030557620003056200022b565b816040528281528c868487010111156200031e57600080fd5b600093505b8284101562000342578484018601518185018701529285019262000323565b6000928101909501919091525050506060870151608090970151959894975095949392505050565b600181811c908216806200037f57607f821691505b602082108103620003a057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f457600081815260208120601f850160051c81016020861015620003cf5750805b601f850160051c820191505b81811015620003f057828155600101620003db565b5050505b505050565b81516001600160401b038111156200041557620004156200022b565b6200042d816200042684546200036a565b84620003a6565b602080601f8311600181146200046557600084156200044c5750858301515b600019600386901b1c1916600185901b178555620003f0565b600085815260208120601f198616915b82811015620004965788860151825594840194600190910190840162000475565b5085821015620004b55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6124c280620004d56000396000f3fe6080604052600436106102e45760003560e01c80635b8ad42911610190578063ae4c3f91116100dc578063e222c7f911610095578063e985e9c51161006f578063e985e9c51461082a578063f154fed81461059e578063f2fde38b1461084a578063f35e6fda1461086a57600080fd5b8063e222c7f9146107d4578063e58306f9146107e9578063e8b5498d1461080957600080fd5b8063ae4c3f9114610737578063b88d4fde1461074a578063ba7a86b81461075d578063c4ae316814610772578063c4f91c9914610787578063c87b56dd146107b457600080fd5b80637b8d9e55116101495780638da5cb5b116101235780638da5cb5b146106d157806395d89b41146106ef578063a0712d6814610704578063a22cb4651461071757600080fd5b80637b8d9e55146106865780637f0a8113146106a15780638cc54e7f146106bc57600080fd5b80635b8ad429146105fa5780635c975abb1461060f5780636352211e1461063157806365f130971461059e57806370a0823114610651578063715018a61461067157600080fd5b80631ecb515f1161024f5780633ccfd60b1161020857806349590657116101e2578063495906571461058957806350b75b0f1461059e57806353922489146105b357806354214f69146105e057600080fd5b80633ccfd60b1461054e578063424281cf1461056357806342842e0e1461057657600080fd5b80631ecb515f1461049257806323b872dd146104a7578063281905c8146104ba5780632a55205a146104da57806332cb6b0c1461051957806333bc1c5c1461052f57600080fd5b8063081812fc116102a1578063081812fc146103bc578063095ea7b3146103f457806309b5be45146104075780631067fcc71461042757806318160ddd146104475780631c16521c1461046557600080fd5b806301ffc9a7146102e957806302fa7c471461031e5780630675b7c61461034057806306fdde03146103605780630761babe1461038257806307e89ec0146103a1575b600080fd5b3480156102f557600080fd5b50610309610304366004611dbb565b61088a565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004611df4565b61089b565b005b34801561034c57600080fd5b5061033e61035b366004611ed6565b6108b1565b34801561036c57600080fd5b506103756108c5565b6040516103159190611f6f565b34801561038e57600080fd5b50600f545b604051908152602001610315565b3480156103ad57600080fd5b50610393669fdf42f6e4800081565b3480156103c857600080fd5b506103dc6103d7366004611f82565b610957565b6040516001600160a01b039091168152602001610315565b61033e610402366004611f9b565b61099b565b34801561041357600080fd5b5061033e610422366004611f82565b610a3b565b34801561043357600080fd5b5061033e610442366004611ed6565b610a48565b34801561045357600080fd5b50610393600154600054036000190190565b34801561047157600080fd5b50610393610480366004611fc5565b60106020526000908152604090205481565b34801561049e57600080fd5b5061033e610a5c565b61033e6104b5366004611fe0565b610a83565b3480156104c657600080fd5b50600d546103099062010000900460ff1681565b3480156104e657600080fd5b506104fa6104f536600461201c565b610c1c565b604080516001600160a01b039093168352602083019190915201610315565b34801561052557600080fd5b5061039361044c81565b34801561053b57600080fd5b50600d5461030990610100900460ff1681565b34801561055a57600080fd5b5061033e610cc8565b61033e61057136600461203e565b610e23565b61033e610584366004611fe0565b610fbb565b34801561059557600080fd5b50600e54610393565b3480156105aa57600080fd5b50610393600a81565b3480156105bf57600080fd5b506103936105ce366004611fc5565b60116020526000908152604090205481565b3480156105ec57600080fd5b50600d546103099060ff1681565b34801561060657600080fd5b5061033e610fd6565b34801561061b57600080fd5b50600d5461030990640100000000900460ff1681565b34801561063d57600080fd5b506103dc61064c366004611f82565b610ff2565b34801561065d57600080fd5b5061039361066c366004611fc5565b610ffd565b34801561067d57600080fd5b5061033e61104c565b34801561069257600080fd5b50610393667c58508723800081565b3480156106ad57600080fd5b5061039366354a6ba7a1800081565b3480156106c857600080fd5b50610375611060565b3480156106dd57600080fd5b506008546001600160a01b03166103dc565b3480156106fb57600080fd5b506103756110ee565b61033e610712366004611f82565b6110fd565b34801561072357600080fd5b5061033e6107323660046120ea565b61122f565b61033e61074536600461203e565b61129b565b61033e61075836600461211b565b611423565b34801561076957600080fd5b5061033e61146d565b34801561077e57600080fd5b5061033e6114be565b34801561079357600080fd5b506103936107a2366004611fc5565b60126020526000908152604090205481565b3480156107c057600080fd5b506103756107cf366004611f82565b6114e9565b3480156107e057600080fd5b5061033e611650565b3480156107f557600080fd5b5061033e610804366004611f9b565b611675565b34801561081557600080fd5b50600d54610309906301000000900460ff1681565b34801561083657600080fd5b50610309610845366004612197565b611687565b34801561085657600080fd5b5061033e610865366004611fc5565b6116b5565b34801561087657600080fd5b5061033e610885366004611f82565b61172b565b600061089582611738565b92915050565b6108a361176d565b6108ad82826117c7565b5050565b6108b961176d565b600b6108ad828261224a565b6060600280546108d4906121ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610900906121ca565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610962826118c4565b61097f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109a682610ff2565b9050336001600160a01b038216146109df576109c28133611687565b6109df576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a4361176d565b600f55565b610a5061176d565b600c6108ad828261224a565b610a6461176d565b600d805462ff0000198116620100009182900460ff1615909102179055565b6000610a8e826118f9565b9050836001600160a01b0316816001600160a01b031614610ac15760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b0e57610af18633611687565b610b0e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b3557604051633a954ecd60e21b815260040160405180910390fd5b8015610b4057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610bd257600184016000818152600460205260408120549003610bd0576000548114610bd05760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c915750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cb0906001600160601b031687612320565b610cba9190612337565b915196919550909350505050565b610cd061176d565b60006064610cdf476014612320565b610ce99190612337565b604051909150600090730e1a590c79ab1f77e6bb70daf0b4bcf77243bbc79083908381818185875af1925050503d8060008114610d42576040519150601f19603f3d011682016040523d82523d6000602084013e610d47565b606091505b5050905080610d935760405162461bcd60e51b8152602060048201526013602482015272105c9d1a5cdd0818dd5d081b9bdd081cd95b9d606a1b60448201526064015b60405180910390fd5b604051600090339047908381818185875af1925050503d8060008114610dd5576040519150601f19603f3d011682016040523d82523d6000602084013e610dda565b606091505b5050905080610e1e5760405162461bcd60e51b815260206004820152601060248201526f14185e5b595b9d081b9bdd081cd95b9d60821b6044820152606401610d8a565b505050565b600d54640100000000900460ff1615610e4f576040516313d0ff5960e31b815260040160405180910390fd5b600d5462010000900460ff16610e785760405163e869d4cd60e01b815260040160405180910390fd5b61044c81610e8d600154600054036000190190565b610e979190612359565b1115610eb65760405163d05cb60960e01b815260040160405180910390fd5b33600090815260126020526040902054600a90610ed4908390612359565b1115610ef357604051630692f86d60e01b815260040160405180910390fd5b610f048166354a6ba7a18000612320565b341015610f2457604051638a0d377960e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f6a83600e548361196f565b1515600003610f8c57604051630e5060e160e21b815260040160405180910390fd5b3360009081526012602052604081208054849290610fab908490612359565b90915550610e1e90503383611985565b610e1e83838360405180602001604052806000815250611423565b610fde61176d565b600d805460ff19811660ff90911615179055565b6000610895826118f9565b60006001600160a01b038216611026576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61105461176d565b61105e6000611a83565b565b600c805461106d906121ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611099906121ca565b80156110e65780601f106110bb576101008083540402835291602001916110e6565b820191906000526020600020905b8154815290600101906020018083116110c957829003601f168201915b505050505081565b6060600380546108d4906121ca565b600d54640100000000900460ff1615611129576040516313d0ff5960e31b815260040160405180910390fd5b600d54610100900460ff1661115157604051635e73968760e01b815260040160405180910390fd5b61044c81611166600154600054036000190190565b6111709190612359565b111561118f5760405163d05cb60960e01b815260040160405180910390fd5b33600090815260106020526040902054600a906111ad908390612359565b11156111cc57604051630692f86d60e01b815260040160405180910390fd5b6111dd81669fdf42f6e48000612320565b3410156111fd57604051638a0d377960e01b815260040160405180910390fd5b336000908152601060205260408120805483929061121c908490612359565b9091555061122c90503382611985565b50565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d54640100000000900460ff16156112c7576040516313d0ff5960e31b815260040160405180910390fd5b600d5462010000900460ff166112f05760405163e869d4cd60e01b815260040160405180910390fd5b61044c81611305600154600054036000190190565b61130f9190612359565b111561132e5760405163d05cb60960e01b815260040160405180910390fd5b33600090815260116020526040902054600a9061134c908390612359565b111561136b57604051630692f86d60e01b815260040160405180910390fd5b61137c81667c585087238000612320565b34101561139c57604051638a0d377960e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506113e283600f548361196f565b151560000361140457604051630e5060e160e21b815260040160405180910390fd5b3360009081526011602052604081208054849290610fab908490612359565b61142e848484610a83565b6001600160a01b0383163b156114675761144a84848484611ad5565b611467576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61147561176d565b600d546301000000900460ff16156114a057604051630d8a755560e11b815260040160405180910390fd5b600d805463ff0000001916630100000017905561105e33600a611985565b6114c661176d565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b60606114f4826118c4565b6115585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d8a565b600d5460ff166115f457600c805461156f906121ca565b80601f016020809104026020016040519081016040528092919081815260200182805461159b906121ca565b80156115e85780601f106115bd576101008083540402835291602001916115e8565b820191906000526020600020905b8154815290600101906020018083116115cb57829003601f168201915b50505050509050919050565b6000600b8054611603906121ca565b90501161161f5760405180602001604052806000815250610895565b600b61162a83611bc1565b60405160200161163b92919061236c565b60405160208183030381529060405292915050565b61165861176d565b600d805461ff001981166101009182900460ff1615909102179055565b61167d61176d565b6108ad8282611985565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6116bd61176d565b6001600160a01b0381166117225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d8a565b61122c81611a83565b61173361176d565b600e55565b60006001600160e01b0319821663152a902d60e11b148061089557506301ffc9a760e01b6001600160e01b0319831614610895565b6008546001600160a01b0316331461105e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d8a565b6127106001600160601b03821611156118355760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610d8a565b6001600160a01b03821661188b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610d8a565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6000816001111580156118d8575060005482105b8015610895575050600090815260046020526040902054600160e01b161590565b60008180600111611956576000548110156119565760008181526004602052604081205490600160e01b82169003611954575b8060000361194d57506000190160008181526004602052604090205461192c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60008261197c8584611c54565b14949350505050565b60008054908290036119aa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611a5957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611a21565b5081600003611a7a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b0a903390899088908890600401612403565b6020604051808303816000875af1925050508015611b45575060408051601f3d908101601f19168201909252611b4291810190612440565b60015b611ba3573d808015611b73576040519150601f19603f3d011682016040523d82523d6000602084013e611b78565b606091505b508051600003611b9b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606000611bce83611ca1565b600101905060008167ffffffffffffffff811115611bee57611bee611e37565b6040519080825280601f01601f191660200182016040528015611c18576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611c2257509392505050565b600081815b8451811015611c9957611c8582868381518110611c7857611c7861245d565b6020026020010151611d79565b915080611c9181612473565b915050611c59565b509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611ce05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611d0c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611d2a57662386f26fc10000830492506010015b6305f5e1008310611d42576305f5e100830492506008015b6127108310611d5657612710830492506004015b60648310611d68576064830492506002015b600a83106108955760010192915050565b6000818310611d9557600082815260208490526040902061194d565b5060009182526020526040902090565b6001600160e01b03198116811461122c57600080fd5b600060208284031215611dcd57600080fd5b813561194d81611da5565b80356001600160a01b0381168114611def57600080fd5b919050565b60008060408385031215611e0757600080fd5b611e1083611dd8565b915060208301356001600160601b0381168114611e2c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e7657611e76611e37565b604052919050565b600067ffffffffffffffff831115611e9857611e98611e37565b611eab601f8401601f1916602001611e4d565b9050828152838383011115611ebf57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ee857600080fd5b813567ffffffffffffffff811115611eff57600080fd5b8201601f81018413611f1057600080fd5b611bb984823560208401611e7e565b60005b83811015611f3a578181015183820152602001611f22565b50506000910152565b60008151808452611f5b816020860160208601611f1f565b601f01601f19169290920160200192915050565b60208152600061194d6020830184611f43565b600060208284031215611f9457600080fd5b5035919050565b60008060408385031215611fae57600080fd5b611fb783611dd8565b946020939093013593505050565b600060208284031215611fd757600080fd5b61194d82611dd8565b600080600060608486031215611ff557600080fd5b611ffe84611dd8565b925061200c60208501611dd8565b9150604084013590509250925092565b6000806040838503121561202f57600080fd5b50508035926020909101359150565b6000806040838503121561205157600080fd5b823567ffffffffffffffff8082111561206957600080fd5b818501915085601f83011261207d57600080fd5b813560208282111561209157612091611e37565b8160051b92506120a2818401611e4d565b82815292840181019281810190898511156120bc57600080fd5b948201945b848610156120da578535825294820194908201906120c1565b9997909101359750505050505050565b600080604083850312156120fd57600080fd5b61210683611dd8565b915060208301358015158114611e2c57600080fd5b6000806000806080858703121561213157600080fd5b61213a85611dd8565b935061214860208601611dd8565b925060408501359150606085013567ffffffffffffffff81111561216b57600080fd5b8501601f8101871361217c57600080fd5b61218b87823560208401611e7e565b91505092959194509250565b600080604083850312156121aa57600080fd5b6121b383611dd8565b91506121c160208401611dd8565b90509250929050565b600181811c908216806121de57607f821691505b6020821081036121fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610e1e57600081815260208120601f850160051c8101602086101561222b5750805b601f850160051c820191505b81811015610c1457828155600101612237565b815167ffffffffffffffff81111561226457612264611e37565b6122788161227284546121ca565b84612204565b602080601f8311600181146122ad57600084156122955750858301515b600019600386901b1c1916600185901b178555610c14565b600085815260208120601f198616915b828110156122dc578886015182559484019460019091019084016122bd565b50858210156122fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108955761089561230a565b60008261235457634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108955761089561230a565b600080845461237a816121ca565b6001828116801561239257600181146123a7576123d6565b60ff19841687528215158302870194506123d6565b8860005260208060002060005b858110156123cd5781548a8201529084019082016123b4565b50505082870194505b5050505083516123ea818360208801611f1f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243690830184611f43565b9695505050505050565b60006020828403121561245257600080fd5b815161194d81611da5565b634e487b7160e01b600052603260045260246000fd5b6000600182016124855761248561230a565b506001019056fea2646970667358221220435db0eff1ec8045ec2d90e19aa57c3ab5b1c7b331b275d89400e5e22f04323c64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000003e80000000000000000000000004e94071aba46ce200ae8cdb44d95fdfffb42f7c100000000000000000000000000000000000000000000000000000000000000a093f344628b66b349e97be15441dbce4db68f66c2b0ef35afabd1e447d1716e05fe966520ea0f44d10160df90bc3c1f5f59ce801e905de89c3cf455cab42997a8000000000000000000000000000000000000000000000000000000000000007468747470733a2f2f636379686a6e7035746a6470337332326a6d357a693235626e63656272706b6237776a7a6433717976366e346d6a6a676a336c712e617277656176652e6e65742f454c4230746632615276334c576b73376c47756861496759765548396b354875474b2d627869556d547463000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e45760003560e01c80635b8ad42911610190578063ae4c3f91116100dc578063e222c7f911610095578063e985e9c51161006f578063e985e9c51461082a578063f154fed81461059e578063f2fde38b1461084a578063f35e6fda1461086a57600080fd5b8063e222c7f9146107d4578063e58306f9146107e9578063e8b5498d1461080957600080fd5b8063ae4c3f9114610737578063b88d4fde1461074a578063ba7a86b81461075d578063c4ae316814610772578063c4f91c9914610787578063c87b56dd146107b457600080fd5b80637b8d9e55116101495780638da5cb5b116101235780638da5cb5b146106d157806395d89b41146106ef578063a0712d6814610704578063a22cb4651461071757600080fd5b80637b8d9e55146106865780637f0a8113146106a15780638cc54e7f146106bc57600080fd5b80635b8ad429146105fa5780635c975abb1461060f5780636352211e1461063157806365f130971461059e57806370a0823114610651578063715018a61461067157600080fd5b80631ecb515f1161024f5780633ccfd60b1161020857806349590657116101e2578063495906571461058957806350b75b0f1461059e57806353922489146105b357806354214f69146105e057600080fd5b80633ccfd60b1461054e578063424281cf1461056357806342842e0e1461057657600080fd5b80631ecb515f1461049257806323b872dd146104a7578063281905c8146104ba5780632a55205a146104da57806332cb6b0c1461051957806333bc1c5c1461052f57600080fd5b8063081812fc116102a1578063081812fc146103bc578063095ea7b3146103f457806309b5be45146104075780631067fcc71461042757806318160ddd146104475780631c16521c1461046557600080fd5b806301ffc9a7146102e957806302fa7c471461031e5780630675b7c61461034057806306fdde03146103605780630761babe1461038257806307e89ec0146103a1575b600080fd5b3480156102f557600080fd5b50610309610304366004611dbb565b61088a565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004611df4565b61089b565b005b34801561034c57600080fd5b5061033e61035b366004611ed6565b6108b1565b34801561036c57600080fd5b506103756108c5565b6040516103159190611f6f565b34801561038e57600080fd5b50600f545b604051908152602001610315565b3480156103ad57600080fd5b50610393669fdf42f6e4800081565b3480156103c857600080fd5b506103dc6103d7366004611f82565b610957565b6040516001600160a01b039091168152602001610315565b61033e610402366004611f9b565b61099b565b34801561041357600080fd5b5061033e610422366004611f82565b610a3b565b34801561043357600080fd5b5061033e610442366004611ed6565b610a48565b34801561045357600080fd5b50610393600154600054036000190190565b34801561047157600080fd5b50610393610480366004611fc5565b60106020526000908152604090205481565b34801561049e57600080fd5b5061033e610a5c565b61033e6104b5366004611fe0565b610a83565b3480156104c657600080fd5b50600d546103099062010000900460ff1681565b3480156104e657600080fd5b506104fa6104f536600461201c565b610c1c565b604080516001600160a01b039093168352602083019190915201610315565b34801561052557600080fd5b5061039361044c81565b34801561053b57600080fd5b50600d5461030990610100900460ff1681565b34801561055a57600080fd5b5061033e610cc8565b61033e61057136600461203e565b610e23565b61033e610584366004611fe0565b610fbb565b34801561059557600080fd5b50600e54610393565b3480156105aa57600080fd5b50610393600a81565b3480156105bf57600080fd5b506103936105ce366004611fc5565b60116020526000908152604090205481565b3480156105ec57600080fd5b50600d546103099060ff1681565b34801561060657600080fd5b5061033e610fd6565b34801561061b57600080fd5b50600d5461030990640100000000900460ff1681565b34801561063d57600080fd5b506103dc61064c366004611f82565b610ff2565b34801561065d57600080fd5b5061039361066c366004611fc5565b610ffd565b34801561067d57600080fd5b5061033e61104c565b34801561069257600080fd5b50610393667c58508723800081565b3480156106ad57600080fd5b5061039366354a6ba7a1800081565b3480156106c857600080fd5b50610375611060565b3480156106dd57600080fd5b506008546001600160a01b03166103dc565b3480156106fb57600080fd5b506103756110ee565b61033e610712366004611f82565b6110fd565b34801561072357600080fd5b5061033e6107323660046120ea565b61122f565b61033e61074536600461203e565b61129b565b61033e61075836600461211b565b611423565b34801561076957600080fd5b5061033e61146d565b34801561077e57600080fd5b5061033e6114be565b34801561079357600080fd5b506103936107a2366004611fc5565b60126020526000908152604090205481565b3480156107c057600080fd5b506103756107cf366004611f82565b6114e9565b3480156107e057600080fd5b5061033e611650565b3480156107f557600080fd5b5061033e610804366004611f9b565b611675565b34801561081557600080fd5b50600d54610309906301000000900460ff1681565b34801561083657600080fd5b50610309610845366004612197565b611687565b34801561085657600080fd5b5061033e610865366004611fc5565b6116b5565b34801561087657600080fd5b5061033e610885366004611f82565b61172b565b600061089582611738565b92915050565b6108a361176d565b6108ad82826117c7565b5050565b6108b961176d565b600b6108ad828261224a565b6060600280546108d4906121ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610900906121ca565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610962826118c4565b61097f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109a682610ff2565b9050336001600160a01b038216146109df576109c28133611687565b6109df576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a4361176d565b600f55565b610a5061176d565b600c6108ad828261224a565b610a6461176d565b600d805462ff0000198116620100009182900460ff1615909102179055565b6000610a8e826118f9565b9050836001600160a01b0316816001600160a01b031614610ac15760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b0e57610af18633611687565b610b0e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b3557604051633a954ecd60e21b815260040160405180910390fd5b8015610b4057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610bd257600184016000818152600460205260408120549003610bd0576000548114610bd05760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c915750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cb0906001600160601b031687612320565b610cba9190612337565b915196919550909350505050565b610cd061176d565b60006064610cdf476014612320565b610ce99190612337565b604051909150600090730e1a590c79ab1f77e6bb70daf0b4bcf77243bbc79083908381818185875af1925050503d8060008114610d42576040519150601f19603f3d011682016040523d82523d6000602084013e610d47565b606091505b5050905080610d935760405162461bcd60e51b8152602060048201526013602482015272105c9d1a5cdd0818dd5d081b9bdd081cd95b9d606a1b60448201526064015b60405180910390fd5b604051600090339047908381818185875af1925050503d8060008114610dd5576040519150601f19603f3d011682016040523d82523d6000602084013e610dda565b606091505b5050905080610e1e5760405162461bcd60e51b815260206004820152601060248201526f14185e5b595b9d081b9bdd081cd95b9d60821b6044820152606401610d8a565b505050565b600d54640100000000900460ff1615610e4f576040516313d0ff5960e31b815260040160405180910390fd5b600d5462010000900460ff16610e785760405163e869d4cd60e01b815260040160405180910390fd5b61044c81610e8d600154600054036000190190565b610e979190612359565b1115610eb65760405163d05cb60960e01b815260040160405180910390fd5b33600090815260126020526040902054600a90610ed4908390612359565b1115610ef357604051630692f86d60e01b815260040160405180910390fd5b610f048166354a6ba7a18000612320565b341015610f2457604051638a0d377960e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f6a83600e548361196f565b1515600003610f8c57604051630e5060e160e21b815260040160405180910390fd5b3360009081526012602052604081208054849290610fab908490612359565b90915550610e1e90503383611985565b610e1e83838360405180602001604052806000815250611423565b610fde61176d565b600d805460ff19811660ff90911615179055565b6000610895826118f9565b60006001600160a01b038216611026576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61105461176d565b61105e6000611a83565b565b600c805461106d906121ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611099906121ca565b80156110e65780601f106110bb576101008083540402835291602001916110e6565b820191906000526020600020905b8154815290600101906020018083116110c957829003601f168201915b505050505081565b6060600380546108d4906121ca565b600d54640100000000900460ff1615611129576040516313d0ff5960e31b815260040160405180910390fd5b600d54610100900460ff1661115157604051635e73968760e01b815260040160405180910390fd5b61044c81611166600154600054036000190190565b6111709190612359565b111561118f5760405163d05cb60960e01b815260040160405180910390fd5b33600090815260106020526040902054600a906111ad908390612359565b11156111cc57604051630692f86d60e01b815260040160405180910390fd5b6111dd81669fdf42f6e48000612320565b3410156111fd57604051638a0d377960e01b815260040160405180910390fd5b336000908152601060205260408120805483929061121c908490612359565b9091555061122c90503382611985565b50565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d54640100000000900460ff16156112c7576040516313d0ff5960e31b815260040160405180910390fd5b600d5462010000900460ff166112f05760405163e869d4cd60e01b815260040160405180910390fd5b61044c81611305600154600054036000190190565b61130f9190612359565b111561132e5760405163d05cb60960e01b815260040160405180910390fd5b33600090815260116020526040902054600a9061134c908390612359565b111561136b57604051630692f86d60e01b815260040160405180910390fd5b61137c81667c585087238000612320565b34101561139c57604051638a0d377960e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506113e283600f548361196f565b151560000361140457604051630e5060e160e21b815260040160405180910390fd5b3360009081526011602052604081208054849290610fab908490612359565b61142e848484610a83565b6001600160a01b0383163b156114675761144a84848484611ad5565b611467576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61147561176d565b600d546301000000900460ff16156114a057604051630d8a755560e11b815260040160405180910390fd5b600d805463ff0000001916630100000017905561105e33600a611985565b6114c661176d565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b60606114f4826118c4565b6115585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d8a565b600d5460ff166115f457600c805461156f906121ca565b80601f016020809104026020016040519081016040528092919081815260200182805461159b906121ca565b80156115e85780601f106115bd576101008083540402835291602001916115e8565b820191906000526020600020905b8154815290600101906020018083116115cb57829003601f168201915b50505050509050919050565b6000600b8054611603906121ca565b90501161161f5760405180602001604052806000815250610895565b600b61162a83611bc1565b60405160200161163b92919061236c565b60405160208183030381529060405292915050565b61165861176d565b600d805461ff001981166101009182900460ff1615909102179055565b61167d61176d565b6108ad8282611985565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6116bd61176d565b6001600160a01b0381166117225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d8a565b61122c81611a83565b61173361176d565b600e55565b60006001600160e01b0319821663152a902d60e11b148061089557506301ffc9a760e01b6001600160e01b0319831614610895565b6008546001600160a01b0316331461105e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d8a565b6127106001600160601b03821611156118355760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610d8a565b6001600160a01b03821661188b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610d8a565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6000816001111580156118d8575060005482105b8015610895575050600090815260046020526040902054600160e01b161590565b60008180600111611956576000548110156119565760008181526004602052604081205490600160e01b82169003611954575b8060000361194d57506000190160008181526004602052604090205461192c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60008261197c8584611c54565b14949350505050565b60008054908290036119aa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611a5957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611a21565b5081600003611a7a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b0a903390899088908890600401612403565b6020604051808303816000875af1925050508015611b45575060408051601f3d908101601f19168201909252611b4291810190612440565b60015b611ba3573d808015611b73576040519150601f19603f3d011682016040523d82523d6000602084013e611b78565b606091505b508051600003611b9b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606000611bce83611ca1565b600101905060008167ffffffffffffffff811115611bee57611bee611e37565b6040519080825280601f01601f191660200182016040528015611c18576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611c2257509392505050565b600081815b8451811015611c9957611c8582868381518110611c7857611c7861245d565b6020026020010151611d79565b915080611c9181612473565b915050611c59565b509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611ce05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611d0c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611d2a57662386f26fc10000830492506010015b6305f5e1008310611d42576305f5e100830492506008015b6127108310611d5657612710830492506004015b60648310611d68576064830492506002015b600a83106108955760010192915050565b6000818310611d9557600082815260208490526040902061194d565b5060009182526020526040902090565b6001600160e01b03198116811461122c57600080fd5b600060208284031215611dcd57600080fd5b813561194d81611da5565b80356001600160a01b0381168114611def57600080fd5b919050565b60008060408385031215611e0757600080fd5b611e1083611dd8565b915060208301356001600160601b0381168114611e2c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e7657611e76611e37565b604052919050565b600067ffffffffffffffff831115611e9857611e98611e37565b611eab601f8401601f1916602001611e4d565b9050828152838383011115611ebf57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ee857600080fd5b813567ffffffffffffffff811115611eff57600080fd5b8201601f81018413611f1057600080fd5b611bb984823560208401611e7e565b60005b83811015611f3a578181015183820152602001611f22565b50506000910152565b60008151808452611f5b816020860160208601611f1f565b601f01601f19169290920160200192915050565b60208152600061194d6020830184611f43565b600060208284031215611f9457600080fd5b5035919050565b60008060408385031215611fae57600080fd5b611fb783611dd8565b946020939093013593505050565b600060208284031215611fd757600080fd5b61194d82611dd8565b600080600060608486031215611ff557600080fd5b611ffe84611dd8565b925061200c60208501611dd8565b9150604084013590509250925092565b6000806040838503121561202f57600080fd5b50508035926020909101359150565b6000806040838503121561205157600080fd5b823567ffffffffffffffff8082111561206957600080fd5b818501915085601f83011261207d57600080fd5b813560208282111561209157612091611e37565b8160051b92506120a2818401611e4d565b82815292840181019281810190898511156120bc57600080fd5b948201945b848610156120da578535825294820194908201906120c1565b9997909101359750505050505050565b600080604083850312156120fd57600080fd5b61210683611dd8565b915060208301358015158114611e2c57600080fd5b6000806000806080858703121561213157600080fd5b61213a85611dd8565b935061214860208601611dd8565b925060408501359150606085013567ffffffffffffffff81111561216b57600080fd5b8501601f8101871361217c57600080fd5b61218b87823560208401611e7e565b91505092959194509250565b600080604083850312156121aa57600080fd5b6121b383611dd8565b91506121c160208401611dd8565b90509250929050565b600181811c908216806121de57607f821691505b6020821081036121fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610e1e57600081815260208120601f850160051c8101602086101561222b5750805b601f850160051c820191505b81811015610c1457828155600101612237565b815167ffffffffffffffff81111561226457612264611e37565b6122788161227284546121ca565b84612204565b602080601f8311600181146122ad57600084156122955750858301515b600019600386901b1c1916600185901b178555610c14565b600085815260208120601f198616915b828110156122dc578886015182559484019460019091019084016122bd565b50858210156122fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108955761089561230a565b60008261235457634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108955761089561230a565b600080845461237a816121ca565b6001828116801561239257600181146123a7576123d6565b60ff19841687528215158302870194506123d6565b8860005260208060002060005b858110156123cd5781548a8201529084019082016123b4565b50505082870194505b5050505083516123ea818360208801611f1f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243690830184611f43565b9695505050505050565b60006020828403121561245257600080fd5b815161194d81611da5565b634e487b7160e01b600052603260045260246000fd5b6000600182016124855761248561230a565b506001019056fea2646970667358221220435db0eff1ec8045ec2d90e19aa57c3ab5b1c7b331b275d89400e5e22f04323c64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000004e94071aba46ce200ae8cdb44d95fdfffb42f7c100000000000000000000000000000000000000000000000000000000000000a093f344628b66b349e97be15441dbce4db68f66c2b0ef35afabd1e447d1716e05fe966520ea0f44d10160df90bc3c1f5f59ce801e905de89c3cf455cab42997a8000000000000000000000000000000000000000000000000000000000000007468747470733a2f2f636379686a6e7035746a6470337332326a6d357a693235626e63656272706b6237776a7a6433717976366e346d6a6a676a336c712e617277656176652e6e65742f454c4230746632615276334c576b73376c47756861496759765548396b354875474b2d627869556d547463000000000000000000000000
-----Decoded View---------------
Arg [0] : _royaltyFeesInBips (uint96): 1000
Arg [1] : _royaltyAddress (address): 0x4E94071ABa46CE200Ae8CDb44D95fDFFfB42F7C1
Arg [2] : _hiddenURI (string): https://ccyhjnp5tjdp3s22jm5zi25bncebrpkb7wjzd3qyv6n4mjjgj3lq.arweave.net/ELB0tf2aRv3LWks7lGuhaIgYvUH9k5HuGK-bxiUmTtc
Arg [3] : _merkleRootRilla (bytes32): 0x93f344628b66b349e97be15441dbce4db68f66c2b0ef35afabd1e447d1716e05
Arg [4] : _merkleRootMind (bytes32): 0xfe966520ea0f44d10160df90bc3c1f5f59ce801e905de89c3cf455cab42997a8
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [1] : 0000000000000000000000004e94071aba46ce200ae8cdb44d95fdfffb42f7c1
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 93f344628b66b349e97be15441dbce4db68f66c2b0ef35afabd1e447d1716e05
Arg [4] : fe966520ea0f44d10160df90bc3c1f5f59ce801e905de89c3cf455cab42997a8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000074
Arg [6] : 68747470733a2f2f636379686a6e7035746a6470337332326a6d357a69323562
Arg [7] : 6e63656272706b6237776a7a6433717976366e346d6a6a676a336c712e617277
Arg [8] : 656176652e6e65742f454c4230746632615276334c576b73376c477568614967
Arg [9] : 59765548396b354875474b2d627869556d547463000000000000000000000000
Deployed Bytecode Sourcemap
87248:6568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91897:187;;;;;;;;;;-1:-1:-1;91897:187:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;91897:187:0;;;;;;;;92120:182;;;;;;;;;;-1:-1:-1;92120:182:0;;;;;:::i;:::-;;:::i;:::-;;92310:116;;;;;;;;;;-1:-1:-1;92310:116:0;;;;;:::i;:::-;;:::i;54801:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;92902:102::-;;;;;;;;;;-1:-1:-1;92982:14:0;;92902:102;;;3323:25:1;;;3311:2;3296:18;92902:102:0;3177:177:1;87543:55:0;;;;;;;;;;;;87587:11;87543:55;;61292:218;;;;;;;;;;-1:-1:-1;61292:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3890:32:1;;;3872:51;;3860:2;3845:18;61292:218:0;3726:203:1;60725:408:0;;;;;;:::i;:::-;;:::i;92674:114::-;;;;;;;;;;-1:-1:-1;92674:114:0;;;;;:::i;:::-;;:::i;92434:108::-;;;;;;;;;;-1:-1:-1;92434:108:0;;;;;:::i;:::-;;:::i;50552:323::-;;;;;;;;;;;;91880:1;50826:12;50613:7;50810:13;:28;-1:-1:-1;;50810:46:0;;50552:323;88106:50;;;;;;;;;;-1:-1:-1;88106:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;93012:99;;;;;;;;;;;;;:::i;64931:2825::-;;;;;;:::i;:::-;;:::i;87941:25::-;;;;;;;;;;-1:-1:-1;87941:25:0;;;;;;;;;;;8196:442;;;;;;;;;;-1:-1:-1;8196:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5347:32:1;;;5329:51;;5411:2;5396:18;;5389:34;;;;5302:18;8196:442:0;5155:274:1;87337:41:0;;;;;;;;;;;;87374:4;87337:41;;87912:22;;;;;;;;;;-1:-1:-1;87912:22:0;;;;;;;;;;;93396:417;;;;;;;;;;;;;:::i;89245:796::-;;;;;;:::i;:::-;;:::i;67852:193::-;;;;;;:::i;:::-;;:::i;92796:98::-;;;;;;;;;;-1:-1:-1;92871:15:0;;92796:98;;87436:46;;;;;;;;;;;;87480:2;87436:46;;88163:52;;;;;;;;;;-1:-1:-1;88163:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;87883:22;;;;;;;;;;-1:-1:-1;87883:22:0;;;;;;;;93217:86;;;;;;;;;;;;;:::i;88002:18::-;;;;;;;;;;-1:-1:-1;88002:18:0;;;;;;;;;;;56194:152;;;;;;;;;;-1:-1:-1;56194:152:0;;;;;:::i;:::-;;:::i;51736:233::-;;;;;;;;;;-1:-1:-1;51736:233:0;;;;;:::i;:::-;;:::i;2853:103::-;;;;;;;;;;;;;:::i;87605:57::-;;;;;;;;;;;;87651:11;87605:57;;87669:58;;;;;;;;;;;;87716:11;87669:58;;87771:23;;;;;;;;;;;;;:::i;2205:87::-;;;;;;;;;;-1:-1:-1;2278:6:0;;-1:-1:-1;;;;;2278:6:0;2205:87;;54977:104;;;;;;;;;;;;;:::i;88709:528::-;;;;;;:::i;:::-;;:::i;61850:234::-;;;;;;;;;;-1:-1:-1;61850:234:0;;;;;:::i;:::-;;:::i;90049:790::-;;;;;;:::i;:::-;;:::i;68643:407::-;;;;;;:::i;:::-;;:::i;90847:160::-;;;;;;;;;;;;;:::i;93311:77::-;;;;;;;;;;;;;:::i;88222:53::-;;;;;;;;;;-1:-1:-1;88222:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;91260:520;;;;;;;;;;-1:-1:-1;91260:520:0;;;;;:::i;:::-;;:::i;93119:90::-;;;;;;;;;;;;;:::i;91015:116::-;;;;;;;;;;-1:-1:-1;91015:116:0;;;;;:::i;:::-;;:::i;87973:22::-;;;;;;;;;;-1:-1:-1;87973:22:0;;;;;;;;;;;62241:164;;;;;;;;;;-1:-1:-1;62241:164:0;;;;;:::i;:::-;;:::i;3111:201::-;;;;;;;;;;-1:-1:-1;3111:201:0;;;;;:::i;:::-;;:::i;92550:116::-;;;;;;;;;;-1:-1:-1;92550:116:0;;;;;:::i;:::-;;:::i;91897:187::-;92016:4;92040:36;92064:11;92040:23;:36::i;:::-;92033:43;91897:187;-1:-1:-1;;91897:187:0:o;92120:182::-;2091:13;:11;:13::i;:::-;92245:49:::1;92264:9;92275:18;92245;:49::i;:::-;92120:182:::0;;:::o;92310:116::-;2091:13;:11;:13::i;:::-;92390:12:::1;:28;92405:13:::0;92390:12;:28:::1;:::i;54801:100::-:0;54855:13;54888:5;54881:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54801:100;:::o;61292:218::-;61368:7;61393:16;61401:7;61393;:16::i;:::-;61388:64;;61418:34;;-1:-1:-1;;;61418:34:0;;;;;;;;;;;61388:64;-1:-1:-1;61472:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;61472:30:0;;61292:218::o;60725:408::-;60814:13;60830:16;60838:7;60830;:16::i;:::-;60814:32;-1:-1:-1;85058:10:0;-1:-1:-1;;;;;60863:28:0;;;60859:175;;60911:44;60928:5;85058:10;62241:164;:::i;60911:44::-;60906:128;;60983:35;;-1:-1:-1;;;60983:35:0;;;;;;;;;;;60906:128;61046:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;61046:35:0;-1:-1:-1;;;;;61046:35:0;;;;;;;;;61097:28;;61046:24;;61097:28;;;;;;;60803:330;60725:408;;:::o;92674:114::-;2091:13;:11;:13::i;:::-;92752:14:::1;:28:::0;92674:114::o;92434:108::-;2091:13;:11;:13::i;:::-;92512:9:::1;:22;92524:10:::0;92512:9;:22:::1;:::i;93012:99::-:0;2091:13;:11;:13::i;:::-;93090::::1;::::0;;-1:-1:-1;;93073:30:0;::::1;93090:13:::0;;;;::::1;;;93089:14;93073:30:::0;;::::1;;::::0;;93012:99::o;64931:2825::-;65073:27;65103;65122:7;65103:18;:27::i;:::-;65073:57;;65188:4;-1:-1:-1;;;;;65147:45:0;65163:19;-1:-1:-1;;;;;65147:45:0;;65143:86;;65201:28;;-1:-1:-1;;;65201:28:0;;;;;;;;;;;65143:86;65243:27;64039:24;;;:15;:24;;;;;64267:26;;85058:10;63664:30;;;-1:-1:-1;;;;;63357:28:0;;63642:20;;;63639:56;65429:180;;65522:43;65539:4;85058:10;62241:164;:::i;65522:43::-;65517:92;;65574:35;;-1:-1:-1;;;65574:35:0;;;;;;;;;;;65517:92;-1:-1:-1;;;;;65626:16:0;;65622:52;;65651:23;;-1:-1:-1;;;65651:23:0;;;;;;;;;;;65622:52;65823:15;65820:160;;;65963:1;65942:19;65935:30;65820:160;-1:-1:-1;;;;;66360:24:0;;;;;;;:18;:24;;;;;;66358:26;;-1:-1:-1;;66358:26:0;;;66429:22;;;;;;;;;66427:24;;-1:-1:-1;66427:24:0;;;59583:11;59558:23;59554:41;59541:63;-1:-1:-1;;;59541:63:0;66722:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;67017:47:0;;:52;;67013:627;;67122:1;67112:11;;67090:19;67245:30;;;:17;:30;;;;;;:35;;67241:384;;67383:13;;67368:11;:28;67364:242;;67530:30;;;;:17;:30;;;;;:52;;;67364:242;67071:569;67013:627;67687:7;67683:2;-1:-1:-1;;;;;67668:27:0;67677:4;-1:-1:-1;;;;;67668:27:0;;;;;;;;;;;67706:42;65062:2694;;;64931:2825;;;:::o;8196:442::-;8293:7;8351:27;;;:17;:27;;;;;;;;8322:56;;;;;;;;;-1:-1:-1;;;;;8322:56:0;;;;;-1:-1:-1;;;8322:56:0;;;-1:-1:-1;;;;;8322:56:0;;;;;;;;8293:7;;8391:92;;-1:-1:-1;8442:29:0;;;;;;;;;8452:19;8442:29;-1:-1:-1;;;;;8442:29:0;;;;-1:-1:-1;;;8442:29:0;;-1:-1:-1;;;;;8442:29:0;;;;;8391:92;8533:23;;;;8495:21;;9004:5;;8520:36;;-1:-1:-1;;;;;8520:36:0;:10;:36;:::i;:::-;8519:58;;;;:::i;:::-;8598:16;;;;;-1:-1:-1;8196:442:0;;-1:-1:-1;;;;8196:442:0:o;93396:417::-;2091:13;:11;:13::i;:::-;93446:25:::1;93507:3;93475:28;93476:21;93501:2;93475:28;:::i;:::-;93474:36;;;;:::i;:::-;93537:86;::::0;93446:64;;-1:-1:-1;93522:9:0::1;::::0;93545:42:::1;::::0;93446:64;;93522:9;93537:86;93522:9;93537:86;93446:64;93545:42;93537:86:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93521:102;;;93642:4;93634:36;;;::::0;-1:-1:-1;;;93634:36:0;;11404:2:1;93634:36:0::1;::::0;::::1;11386:21:1::0;11443:2;11423:18;;;11416:30;-1:-1:-1;;;11462:18:1;;;11455:49;11521:18;;93634:36:0::1;;;;;;;;;93700:58;::::0;93682:12:::1;::::0;93708:10:::1;::::0;93732:21:::1;::::0;93682:12;93700:58;93682:12;93700:58;93732:21;93708:10;93700:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93681:77;;;93777:7;93769:36;;;::::0;-1:-1:-1;;;93769:36:0;;11752:2:1;93769:36:0::1;::::0;::::1;11734:21:1::0;11791:2;11771:18;;;11764:30;-1:-1:-1;;;11810:18:1;;;11803:46;11866:18;;93769:36:0::1;11550:340:1::0;93769:36:0::1;93435:378;;;93396:417::o:0;89245:796::-;89375:6;;;;;;;89371:27;;;89390:8;;-1:-1:-1;;;89390:8:0;;;;;;;;;;;89371:27;89414:13;;;;;;;89409:43;;89436:16;;-1:-1:-1;;;89436:16:0;;;;;;;;;;;89409:43;87374:4;89483:9;89467:13;91880:1;50826:12;50613:7;50810:13;:28;-1:-1:-1;;50810:46:0;;50552:323;89467:13;:25;;;;:::i;:::-;:38;89463:69;;;89514:18;;-1:-1:-1;;;89514:18:0;;;;;;;;;;;89463:69;89566:10;89547:30;;;;:18;:30;;;;;;87534:2;;89547:42;;89580:9;;89547:42;:::i;:::-;:63;89543:110;;;89632:21;;-1:-1:-1;;;89632:21:0;;;;;;;;;;;89543:110;89681:32;89704:9;87716:11;89681:32;:::i;:::-;89668:9;:46;89664:88;;;89736:16;;-1:-1:-1;;;89736:16:0;;;;;;;;;;;89664:88;89790:28;;-1:-1:-1;;89807:10:0;12174:2:1;12170:15;12166:53;89790:28:0;;;12154:66:1;89763:14:0;;12236:12:1;;89790:28:0;;;;;;;;;;;;89780:39;;;;;;89763:56;;89834:57;89853:12;89867:15;;89884:6;89834:18;:57::i;:::-;:66;;89895:5;89834:66;89830:108;;89922:16;;-1:-1:-1;;;89922:16:0;;;;;;;;;;;89830:108;89970:10;89951:30;;;;:18;:30;;;;;:43;;89985:9;;89951:30;:43;;89985:9;;89951:43;:::i;:::-;;;;-1:-1:-1;90005:28:0;;-1:-1:-1;90011:10:0;90023:9;90005:5;:28::i;67852:193::-;67998:39;68015:4;68021:2;68025:7;67998:39;;;;;;;;;;;;:16;:39::i;93217:86::-;2091:13;:11;:13::i;:::-;93285:10:::1;::::0;;-1:-1:-1;;93271:24:0;::::1;93285:10;::::0;;::::1;93284:11;93271:24;::::0;;93217:86::o;56194:152::-;56266:7;56309:27;56328:7;56309:18;:27::i;51736:233::-;51808:7;-1:-1:-1;;;;;51832:19:0;;51828:60;;51860:28;;-1:-1:-1;;;51860:28:0;;;;;;;;;;;51828:60;-1:-1:-1;;;;;;51906:25:0;;;;;:18;:25;;;;;;45895:13;51906:55;;51736:233::o;2853:103::-;2091:13;:11;:13::i;:::-;2918:30:::1;2945:1;2918:18;:30::i;:::-;2853:103::o:0;87771:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54977:104::-;55033:13;55066:7;55059:14;;;;;:::i;88709:528::-;88774:6;;;;;;;88770:27;;;88789:8;;-1:-1:-1;;;88789:8:0;;;;;;;;;;;88770:27;88813:10;;;;;;;88808:38;;88832:14;;-1:-1:-1;;;88832:14:0;;;;;;;;;;;88808:38;87374:4;88877:9;88861:13;91880:1;50826:12;50613:7;50810:13;:28;-1:-1:-1;;50810:46:0;;50552:323;88861:13;:25;;;;:::i;:::-;:38;88857:69;;;88908:18;;-1:-1:-1;;;88908:18:0;;;;;;;;;;;88857:69;88957:10;88941:27;;;;:15;:27;;;;;;87427:2;;88941:39;;88971:9;;88941:39;:::i;:::-;:57;88937:104;;;89020:21;;-1:-1:-1;;;89020:21:0;;;;;;;;;;;88937:104;89069:29;89089:9;87587:11;89069:29;:::i;:::-;89056:9;:43;89052:85;;;89121:16;;-1:-1:-1;;;89121:16:0;;;;;;;;;;;89052:85;89166:10;89150:27;;;;:15;:27;;;;;:40;;89181:9;;89150:27;:40;;89181:9;;89150:40;:::i;:::-;;;;-1:-1:-1;89201:28:0;;-1:-1:-1;89207:10:0;89219:9;89201:5;:28::i;:::-;88709:528;:::o;61850:234::-;85058:10;61945:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;61945:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;61945:60:0;;;;;;;;;;62021:55;;540:41:1;;;61945:49:0;;85058:10;62021:55;;513:18:1;62021:55:0;;;;;;;61850:234;;:::o;90049:790::-;90178:6;;;;;;;90174:27;;;90193:8;;-1:-1:-1;;;90193:8:0;;;;;;;;;;;90174:27;90217:13;;;;;;;90212:43;;90239:16;;-1:-1:-1;;;90239:16:0;;;;;;;;;;;90212:43;87374:4;90286:9;90270:13;91880:1;50826:12;50613:7;50810:13;:28;-1:-1:-1;;50810:46:0;;50552:323;90270:13;:25;;;;:::i;:::-;:38;90266:69;;;90317:18;;-1:-1:-1;;;90317:18:0;;;;;;;;;;;90266:69;90368:10;90350:29;;;;:17;:29;;;;;;87480:2;;90350:41;;90382:9;;90350:41;:::i;:::-;:61;90346:108;;;90433:21;;-1:-1:-1;;;90433:21:0;;;;;;;;;;;90346:108;90482:31;90504:9;87651:11;90482:31;:::i;:::-;90469:9;:45;90465:87;;;90536:16;;-1:-1:-1;;;90536:16:0;;;;;;;;;;;90465:87;90590:28;;-1:-1:-1;;90607:10:0;12174:2:1;12170:15;12166:53;90590:28:0;;;12154:66:1;90563:14:0;;12236:12:1;;90590:28:0;;;;;;;;;;;;90580:39;;;;;;90563:56;;90634;90653:12;90667:14;;90683:6;90634:18;:56::i;:::-;:65;;90694:5;90634:65;90630:107;;90721:16;;-1:-1:-1;;;90721:16:0;;;;;;;;;;;90630:107;90768:10;90750:29;;;;:17;:29;;;;;:42;;90783:9;;90750:29;:42;;90783:9;;90750:42;:::i;68643:407::-;68818:31;68831:4;68837:2;68841:7;68818:12;:31::i;:::-;-1:-1:-1;;;;;68864:14:0;;;:19;68860:183;;68903:56;68934:4;68940:2;68944:7;68953:5;68903:30;:56::i;:::-;68898:145;;68987:40;;-1:-1:-1;;;68987:40:0;;;;;;;;;;;68898:145;68643:407;;;;:::o;90847:160::-;2091:13;:11;:13::i;:::-;90901:10:::1;::::0;;;::::1;;;90897:42;;;90920:19;;-1:-1:-1::0;;;90920:19:0::1;;;;;;;;;;;90897:42;90950:10;:17:::0;;-1:-1:-1;;90950:17:0::1;::::0;::::1;::::0;;90978:21:::1;90984:10;90996:2;90978:5;:21::i;93311:77::-:0;2091:13;:11;:13::i;:::-;93374:6:::1;::::0;;-1:-1:-1;;93364:16:0;::::1;93374:6:::0;;;;::::1;;;93373:7;93364:16:::0;;::::1;;::::0;;93311:77::o;91260:520::-;91349:13;91397:16;91405:7;91397;:16::i;:::-;91375:113;;;;-1:-1:-1;;;91375:113:0;;12461:2:1;91375:113:0;;;12443:21:1;12500:2;12480:18;;;12473:30;12539:34;12519:18;;;12512:62;-1:-1:-1;;;12590:18:1;;;12583:45;12645:19;;91375:113:0;12259:411:1;91375:113:0;91506:10;;;;91501:60;;91540:9;91533:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91260:520;;;:::o;91501:60::-;91622:1;91599:12;91593:26;;;;;:::i;:::-;;;:30;:179;;;;;;;;;;;;;;;;;91689:12;91703:18;:7;:16;:18::i;:::-;91672:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91573:199;91260:520;-1:-1:-1;;91260:520:0:o;93119:90::-;2091:13;:11;:13::i;:::-;93191:10:::1;::::0;;-1:-1:-1;;93177:24:0;::::1;93191:10;::::0;;;::::1;;;93190:11;93177:24:::0;;::::1;;::::0;;93119:90::o;91015:116::-;2091:13;:11;:13::i;:::-;91099:24:::1;91105:8;91115:7;91099:5;:24::i;62241:164::-:0;-1:-1:-1;;;;;62362:25:0;;;62338:4;62362:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;62241:164::o;3111:201::-;2091:13;:11;:13::i;:::-;-1:-1:-1;;;;;3200:22:0;::::1;3192:73;;;::::0;-1:-1:-1;;;3192:73:0;;14069:2:1;3192:73:0::1;::::0;::::1;14051:21:1::0;14108:2;14088:18;;;14081:30;14147:34;14127:18;;;14120:62;-1:-1:-1;;;14198:18:1;;;14191:36;14244:19;;3192:73:0::1;13867:402:1::0;3192:73:0::1;3276:28;3295:8;3276:18;:28::i;92550:116::-:0;2091:13;:11;:13::i;:::-;92629:15:::1;:29:::0;92550:116::o;7926:215::-;8028:4;-1:-1:-1;;;;;;8052:41:0;;-1:-1:-1;;;8052:41:0;;:81;;-1:-1:-1;;;;;;;;;;6479:40:0;;;8097:36;6370:157;2370:132;2278:6;;-1:-1:-1;;;;;2278:6:0;85058:10;2434:23;2426:68;;;;-1:-1:-1;;;2426:68:0;;14476:2:1;2426:68:0;;;14458:21:1;;;14495:18;;;14488:30;14554:34;14534:18;;;14527:62;14606:18;;2426:68:0;14274:356:1;9288:332:0;9004:5;-1:-1:-1;;;;;9391:33:0;;;;9383:88;;;;-1:-1:-1;;;9383:88:0;;14837:2:1;9383:88:0;;;14819:21:1;14876:2;14856:18;;;14849:30;14915:34;14895:18;;;14888:62;-1:-1:-1;;;14966:18:1;;;14959:40;15016:19;;9383:88:0;14635:406:1;9383:88:0;-1:-1:-1;;;;;9490:22:0;;9482:60;;;;-1:-1:-1;;;9482:60:0;;15248:2:1;9482:60:0;;;15230:21:1;15287:2;15267:18;;;15260:30;15326:27;15306:18;;;15299:55;15371:18;;9482:60:0;15046:349:1;9482:60:0;9577:35;;;;;;;;;-1:-1:-1;;;;;9577:35:0;;;;;;-1:-1:-1;;;;;9577:35:0;;;;;;;;;;-1:-1:-1;;;9555:57:0;;;;:19;:57;9288:332::o;62663:282::-;62728:4;62784:7;91880:1;62765:26;;:66;;;;;62818:13;;62808:7;:23;62765:66;:153;;;;-1:-1:-1;;62869:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;62869:44:0;:49;;62663:282::o;57349:1275::-;57416:7;57451;;91880:1;57500:23;57496:1061;;57553:13;;57546:4;:20;57542:1015;;;57591:14;57608:23;;;:17;:23;;;;;;;-1:-1:-1;;;57697:24:0;;:29;;57693:845;;58362:113;58369:6;58379:1;58369:11;58362:113;;-1:-1:-1;;;58440:6:0;58422:25;;;;:17;:25;;;;;;58362:113;;;58508:6;57349:1275;-1:-1:-1;;;57349:1275:0:o;57693:845::-;57568:989;57542:1015;58585:31;;-1:-1:-1;;;58585:31:0;;;;;;;;;;;27142:190;27267:4;27320;27291:25;27304:5;27311:4;27291:12;:25::i;:::-;:33;;27142:190;-1:-1:-1;;;;27142:190:0:o;72312:2966::-;72385:20;72408:13;;;72436;;;72432:44;;72458:18;;-1:-1:-1;;;72458:18:0;;;;;;;;;;;72432:44;-1:-1:-1;;;;;72964:22:0;;;;;;:18;:22;;;;46033:2;72964:22;;;:71;;73002:32;72990:45;;72964:71;;;73278:31;;;:17;:31;;;;;-1:-1:-1;60014:15:0;;59988:24;59984:46;59583:11;59558:23;59554:41;59551:52;59541:63;;73278:173;;73513:23;;;;73278:31;;72964:22;;74278:25;72964:22;;74131:335;74792:1;74778:12;74774:20;74732:346;74833:3;74824:7;74821:16;74732:346;;75051:7;75041:8;75038:1;75011:25;75008:1;75005;75000:59;74886:1;74873:15;74732:346;;;74736:77;75111:8;75123:1;75111:13;75107:45;;75133:19;;-1:-1:-1;;;75133:19:0;;;;;;;;;;;75107:45;75169:13;:19;-1:-1:-1;93435:378:0::1;;;93396:417::o:0;3472:191::-;3565:6;;;-1:-1:-1;;;;;3582:17:0;;;-1:-1:-1;;;;;;3582:17:0;;;;;;;3615:40;;3565:6;;;3582:17;3565:6;;3615:40;;3546:16;;3615:40;3535:128;3472:191;:::o;71134:716::-;71318:88;;-1:-1:-1;;;71318:88:0;;71297:4;;-1:-1:-1;;;;;71318:45:0;;;;;:88;;85058:10;;71385:4;;71391:7;;71400:5;;71318:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71318:88:0;;;;;;;;-1:-1:-1;;71318:88:0;;;;;;;;;;;;:::i;:::-;;;71314:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71601:6;:13;71618:1;71601:18;71597:235;;71647:40;;-1:-1:-1;;;71647:40:0;;;;;;;;;;;71597:235;71790:6;71784:13;71775:6;71771:2;71767:15;71760:38;71314:529;-1:-1:-1;;;;;;71477:64:0;-1:-1:-1;;;71477:64:0;;-1:-1:-1;71314:529:0;71134:716;;;;;;:::o;24018:::-;24074:13;24125:14;24142:17;24153:5;24142:10;:17::i;:::-;24162:1;24142:21;24125:38;;24178:20;24212:6;24201:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24201:18:0;-1:-1:-1;24178:41:0;-1:-1:-1;24343:28:0;;;24359:2;24343:28;24400:288;-1:-1:-1;;24432:5:0;-1:-1:-1;;;24569:2:0;24558:14;;24553:30;24432:5;24540:44;24630:2;24621:11;;;-1:-1:-1;24651:21:0;24400:288;24651:21;-1:-1:-1;24709:6:0;24018:716;-1:-1:-1;;;24018:716:0:o;28009:296::-;28092:7;28135:4;28092:7;28150:118;28174:5;:12;28170:1;:16;28150:118;;;28223:33;28233:12;28247:5;28253:1;28247:8;;;;;;;;:::i;:::-;;;;;;;28223:9;:33::i;:::-;28208:48;-1:-1:-1;28188:3:0;;;;:::i;:::-;;;;28150:118;;;-1:-1:-1;28285:12:0;28009:296;-1:-1:-1;;;28009:296:0:o;20878:922::-;20931:7;;-1:-1:-1;;;21009:15:0;;21005:102;;-1:-1:-1;;;21045:15:0;;;-1:-1:-1;21089:2:0;21079:12;21005:102;21134:6;21125:5;:15;21121:102;;21170:6;21161:15;;;-1:-1:-1;21205:2:0;21195:12;21121:102;21250:6;21241:5;:15;21237:102;;21286:6;21277:15;;;-1:-1:-1;21321:2:0;21311:12;21237:102;21366:5;21357;:14;21353:99;;21401:5;21392:14;;;-1:-1:-1;21435:1:0;21425:11;21353:99;21479:5;21470;:14;21466:99;;21514:5;21505:14;;;-1:-1:-1;21548:1:0;21538:11;21466:99;21592:5;21583;:14;21579:99;;21627:5;21618:14;;;-1:-1:-1;21661:1:0;21651:11;21579:99;21705:5;21696;:14;21692:66;;21741:1;21731:11;21786:6;20878:922;-1:-1:-1;;20878:922:0:o;35049:149::-;35112:7;35143:1;35139;:5;:51;;35274:13;35368:15;;;35404:4;35397:15;;;35451:4;35435:21;;35139:51;;;-1:-1:-1;35274:13:0;35368:15;;;35404:4;35397:15;35451:4;35435:21;;;35049:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:127::-;1202:10;1197:3;1193:20;1190:1;1183:31;1233:4;1230:1;1223:15;1257:4;1254:1;1247:15;1273:275;1344:2;1338:9;1409:2;1390:13;;-1:-1:-1;;1386:27:1;1374:40;;1444:18;1429:34;;1465:22;;;1426:62;1423:88;;;1491:18;;:::i;:::-;1527:2;1520:22;1273:275;;-1:-1:-1;1273:275:1:o;1553:407::-;1618:5;1652:18;1644:6;1641:30;1638:56;;;1674:18;;:::i;:::-;1712:57;1757:2;1736:15;;-1:-1:-1;;1732:29:1;1763:4;1728:40;1712:57;:::i;:::-;1703:66;;1792:6;1785:5;1778:21;1832:3;1823:6;1818:3;1814:16;1811:25;1808:45;;;1849:1;1846;1839:12;1808:45;1898:6;1893:3;1886:4;1879:5;1875:16;1862:43;1952:1;1945:4;1936:6;1929:5;1925:18;1921:29;1914:40;1553:407;;;;;:::o;1965:451::-;2034:6;2087:2;2075:9;2066:7;2062:23;2058:32;2055:52;;;2103:1;2100;2093:12;2055:52;2143:9;2130:23;2176:18;2168:6;2165:30;2162:50;;;2208:1;2205;2198:12;2162:50;2231:22;;2284:4;2276:13;;2272:27;-1:-1:-1;2262:55:1;;2313:1;2310;2303:12;2262:55;2336:74;2402:7;2397:2;2384:16;2379:2;2375;2371:11;2336:74;:::i;2421:250::-;2506:1;2516:113;2530:6;2527:1;2524:13;2516:113;;;2606:11;;;2600:18;2587:11;;;2580:39;2552:2;2545:10;2516:113;;;-1:-1:-1;;2663:1:1;2645:16;;2638:27;2421:250::o;2676:271::-;2718:3;2756:5;2750:12;2783:6;2778:3;2771:19;2799:76;2868:6;2861:4;2856:3;2852:14;2845:4;2838:5;2834:16;2799:76;:::i;:::-;2929:2;2908:15;-1:-1:-1;;2904:29:1;2895:39;;;;2936:4;2891:50;;2676:271;-1:-1:-1;;2676:271:1:o;2952:220::-;3101:2;3090:9;3083:21;3064:4;3121:45;3162:2;3151:9;3147:18;3139:6;3121:45;:::i;3541:180::-;3600:6;3653:2;3641:9;3632:7;3628:23;3624:32;3621:52;;;3669:1;3666;3659:12;3621:52;-1:-1:-1;3692:23:1;;3541:180;-1:-1:-1;3541:180:1:o;3934:254::-;4002:6;4010;4063:2;4051:9;4042:7;4038:23;4034:32;4031:52;;;4079:1;4076;4069:12;4031:52;4102:29;4121:9;4102:29;:::i;:::-;4092:39;4178:2;4163:18;;;;4150:32;;-1:-1:-1;;;3934:254:1:o;4378:186::-;4437:6;4490:2;4478:9;4469:7;4465:23;4461:32;4458:52;;;4506:1;4503;4496:12;4458:52;4529:29;4548:9;4529:29;:::i;4569:328::-;4646:6;4654;4662;4715:2;4703:9;4694:7;4690:23;4686:32;4683:52;;;4731:1;4728;4721:12;4683:52;4754:29;4773:9;4754:29;:::i;:::-;4744:39;;4802:38;4836:2;4825:9;4821:18;4802:38;:::i;:::-;4792:48;;4887:2;4876:9;4872:18;4859:32;4849:42;;4569:328;;;;;:::o;4902:248::-;4970:6;4978;5031:2;5019:9;5010:7;5006:23;5002:32;4999:52;;;5047:1;5044;5037:12;4999:52;-1:-1:-1;;5070:23:1;;;5140:2;5125:18;;;5112:32;;-1:-1:-1;4902:248:1:o;5434:1016::-;5527:6;5535;5588:2;5576:9;5567:7;5563:23;5559:32;5556:52;;;5604:1;5601;5594:12;5556:52;5644:9;5631:23;5673:18;5714:2;5706:6;5703:14;5700:34;;;5730:1;5727;5720:12;5700:34;5768:6;5757:9;5753:22;5743:32;;5813:7;5806:4;5802:2;5798:13;5794:27;5784:55;;5835:1;5832;5825:12;5784:55;5871:2;5858:16;5893:4;5916:2;5912;5909:10;5906:36;;;5922:18;;:::i;:::-;5968:2;5965:1;5961:10;5951:20;;5991:28;6015:2;6011;6007:11;5991:28;:::i;:::-;6053:15;;;6123:11;;;6119:20;;;6084:12;;;;6151:19;;;6148:39;;;6183:1;6180;6173:12;6148:39;6207:11;;;;6227:142;6243:6;6238:3;6235:15;6227:142;;;6309:17;;6297:30;;6260:12;;;;6347;;;;6227:142;;;6388:5;6425:18;;;;6412:32;;-1:-1:-1;;;;;;;5434:1016:1:o;6455:347::-;6520:6;6528;6581:2;6569:9;6560:7;6556:23;6552:32;6549:52;;;6597:1;6594;6587:12;6549:52;6620:29;6639:9;6620:29;:::i;:::-;6610:39;;6699:2;6688:9;6684:18;6671:32;6746:5;6739:13;6732:21;6725:5;6722:32;6712:60;;6768:1;6765;6758:12;6807:667;6902:6;6910;6918;6926;6979:3;6967:9;6958:7;6954:23;6950:33;6947:53;;;6996:1;6993;6986:12;6947:53;7019:29;7038:9;7019:29;:::i;:::-;7009:39;;7067:38;7101:2;7090:9;7086:18;7067:38;:::i;:::-;7057:48;;7152:2;7141:9;7137:18;7124:32;7114:42;;7207:2;7196:9;7192:18;7179:32;7234:18;7226:6;7223:30;7220:50;;;7266:1;7263;7256:12;7220:50;7289:22;;7342:4;7334:13;;7330:27;-1:-1:-1;7320:55:1;;7371:1;7368;7361:12;7320:55;7394:74;7460:7;7455:2;7442:16;7437:2;7433;7429:11;7394:74;:::i;:::-;7384:84;;;6807:667;;;;;;;:::o;7479:260::-;7547:6;7555;7608:2;7596:9;7587:7;7583:23;7579:32;7576:52;;;7624:1;7621;7614:12;7576:52;7647:29;7666:9;7647:29;:::i;:::-;7637:39;;7695:38;7729:2;7718:9;7714:18;7695:38;:::i;:::-;7685:48;;7479:260;;;;;:::o;7744:380::-;7823:1;7819:12;;;;7866;;;7887:61;;7941:4;7933:6;7929:17;7919:27;;7887:61;7994:2;7986:6;7983:14;7963:18;7960:38;7957:161;;8040:10;8035:3;8031:20;8028:1;8021:31;8075:4;8072:1;8065:15;8103:4;8100:1;8093:15;7957:161;;7744:380;;;:::o;8255:545::-;8357:2;8352:3;8349:11;8346:448;;;8393:1;8418:5;8414:2;8407:17;8463:4;8459:2;8449:19;8533:2;8521:10;8517:19;8514:1;8510:27;8504:4;8500:38;8569:4;8557:10;8554:20;8551:47;;;-1:-1:-1;8592:4:1;8551:47;8647:2;8642:3;8638:12;8635:1;8631:20;8625:4;8621:31;8611:41;;8702:82;8720:2;8713:5;8710:13;8702:82;;;8765:17;;;8746:1;8735:13;8702:82;;8976:1352;9102:3;9096:10;9129:18;9121:6;9118:30;9115:56;;;9151:18;;:::i;:::-;9180:97;9270:6;9230:38;9262:4;9256:11;9230:38;:::i;:::-;9224:4;9180:97;:::i;:::-;9332:4;;9396:2;9385:14;;9413:1;9408:663;;;;10115:1;10132:6;10129:89;;;-1:-1:-1;10184:19:1;;;10178:26;10129:89;-1:-1:-1;;8933:1:1;8929:11;;;8925:24;8921:29;8911:40;8957:1;8953:11;;;8908:57;10231:81;;9378:944;;9408:663;8202:1;8195:14;;;8239:4;8226:18;;-1:-1:-1;;9444:20:1;;;9562:236;9576:7;9573:1;9570:14;9562:236;;;9665:19;;;9659:26;9644:42;;9757:27;;;;9725:1;9713:14;;;;9592:19;;9562:236;;;9566:3;9826:6;9817:7;9814:19;9811:201;;;9887:19;;;9881:26;-1:-1:-1;;9970:1:1;9966:14;;;9982:3;9962:24;9958:37;9954:42;9939:58;9924:74;;9811:201;-1:-1:-1;;;;;10058:1:1;10042:14;;;10038:22;10025:36;;-1:-1:-1;8976:1352:1:o;10333:127::-;10394:10;10389:3;10385:20;10382:1;10375:31;10425:4;10422:1;10415:15;10449:4;10446:1;10439:15;10465:168;10538:9;;;10569;;10586:15;;;10580:22;;10566:37;10556:71;;10607:18;;:::i;10770:217::-;10810:1;10836;10826:132;;10880:10;10875:3;10871:20;10868:1;10861:31;10915:4;10912:1;10905:15;10943:4;10940:1;10933:15;10826:132;-1:-1:-1;10972:9:1;;10770:217::o;11895:125::-;11960:9;;;11981:10;;;11978:36;;;11994:18;;:::i;12675:1187::-;12952:3;12981:1;13014:6;13008:13;13044:36;13070:9;13044:36;:::i;:::-;13099:1;13116:18;;;13143:133;;;;13290:1;13285:356;;;;13109:532;;13143:133;-1:-1:-1;;13176:24:1;;13164:37;;13249:14;;13242:22;13230:35;;13221:45;;;-1:-1:-1;13143:133:1;;13285:356;13316:6;13313:1;13306:17;13346:4;13391:2;13388:1;13378:16;13416:1;13430:165;13444:6;13441:1;13438:13;13430:165;;;13522:14;;13509:11;;;13502:35;13565:16;;;;13459:10;;13430:165;;;13434:3;;;13624:6;13619:3;13615:16;13608:23;;13109:532;;;;;13672:6;13666:13;13688:68;13747:8;13742:3;13735:4;13727:6;13723:17;13688:68;:::i;:::-;-1:-1:-1;;;13778:18:1;;13805:22;;;13854:1;13843:13;;12675:1187;-1:-1:-1;;;;12675:1187:1:o;15400:489::-;-1:-1:-1;;;;;15669:15:1;;;15651:34;;15721:15;;15716:2;15701:18;;15694:43;15768:2;15753:18;;15746:34;;;15816:3;15811:2;15796:18;;15789:31;;;15594:4;;15837:46;;15863:19;;15855:6;15837:46;:::i;:::-;15829:54;15400:489;-1:-1:-1;;;;;;15400:489:1:o;15894:249::-;15963:6;16016:2;16004:9;15995:7;15991:23;15987:32;15984:52;;;16032:1;16029;16022:12;15984:52;16064:9;16058:16;16083:30;16107:5;16083:30;:::i;16148:127::-;16209:10;16204:3;16200:20;16197:1;16190:31;16240:4;16237:1;16230:15;16264:4;16261:1;16254:15;16280:135;16319:3;16340:17;;;16337:43;;16360:18;;:::i;:::-;-1:-1:-1;16407:1:1;16396:13;;16280:135::o
Swarm Source
ipfs://435db0eff1ec8045ec2d90e19aa57c3ab5b1c7b331b275d89400e5e22f04323c
Loading...
Loading
Loading...
Loading
[ 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.