Overview
TokenID
359
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ash0re
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-04 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { 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/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: ash0re.sol pragma solidity >=0.8.9 <0.9.0; interface IERC1155Basic { function balanceOf(address account, uint256 id) external view returns (uint256); } contract ash0re is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI = "ipfs://bafybeigid2ogqnmmywrx5clwtfo3w3wov7smvjih2i3yltycx2g6vbrxsm/"; uint256 public cost = 0.001 ether; uint256 public maxSupply = 1250; uint256 public maxMintAmountPerTx = 10; uint256 public maxPerWallet = 10; bool public publicPaused = true; bool public phase1Enabled = false; bool public phase2Enabled = false; bool public revealed = false; address public degents = 0x0F6979e74E4aF9aBeD72298D818A2434fE0b95B6; address public theunlocks = 0x1359C939BD2735eA3db4a615ee8AF449fC7FF506; address public ocopepen = 0x3480f26941688337f62C56895f7941508862c287; address public chr0m4s = 0x4F95e6928EF0FB9Cb76a230Bc3A4b015dbCFE896; address public dekeks = 0xC708c292A6875F3267a012C5a87043A9Da2D00e9; address public auth0rs = 0xf9A1CBF04E0830bBFBDaa6E6d3dc78e13a789E6d; address public soups = 0xcb98E1bAF630AB3dd2512a11dF5663C753668b0c; address public classiques = 0xcb6d7F9ff4386b29c8e7C4AA94b7682C7a7bDCf6; constructor () ERC721A("ash0re", "ASH0") { } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx && _numberMinted(msg.sender) + _mintAmount <= maxPerWallet, 'Invalid mint amount or max per wallet exceeded!'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } modifier phase1Compliance(uint256 _mintAmount) { IERC1155Basic theUnlocksContract = IERC1155Basic(theunlocks); require( (theUnlocksContract.balanceOf(msg.sender, 1) >= 1) || (theUnlocksContract.balanceOf(msg.sender, 2) >= 1) || (theUnlocksContract.balanceOf(msg.sender, 3) >= 1) || (theUnlocksContract.balanceOf(msg.sender, 4) >= 1) || (IERC721A(degents).balanceOf(msg.sender) > 0), "You must own degents or theUnlocks token for early sale and discount price. aye?" ); _; } modifier phase2Compliance(uint256 _mintAmount) { require( (IERC721A(degents).balanceOf(msg.sender) > 0) || (IERC721A(ocopepen).balanceOf(msg.sender) > 0) || (IERC721A(chr0m4s).balanceOf(msg.sender) > 0) || (IERC721A(dekeks).balanceOf(msg.sender) > 0) || (IERC721A(auth0rs).balanceOf(msg.sender) > 0) || (IERC721A(soups).balanceOf(msg.sender) > 0) || (IERC721A(classiques).balanceOf(msg.sender) > 0), "You must own degents or OcOpepen or chr0m4s or dekeks or auth0rs or soups or classiques for early sale and discount price. aye?" ); _; } modifier mintPriceCompliance(uint256 _mintAmount) { require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); _; } function keysDegentsMint (uint256 _mintAmount) public payable phase1Compliance(_mintAmount) mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(phase1Enabled, 'The phase1 sale is not enabled!'); _safeMint(_msgSender(), _mintAmount); } function otherCollectionsMint (uint256 _mintAmount) public payable phase2Compliance(_mintAmount) mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(phase2Enabled, 'The phase2 sale is not enabled!'); _safeMint(_msgSender(), _mintAmount); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!publicPaused, 'The publicMint is paused!'); _safeMint(_msgSender(), _mintAmount); } function airdrop(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxMintAmountPerWallet(uint256 _maxPerWallet) public onlyOwner { maxPerWallet = _maxPerWallet; } function setPaused(bool _state) public onlyOwner { publicPaused = _state; } function setPhase1MintEnabled(bool _state) public onlyOwner { phase1Enabled = _state; } function setPhase2MintEnabled(bool _state) public onlyOwner { phase2Enabled = _state; } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"auth0rs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chr0m4s","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"classiques","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"degents","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dekeks","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"keysDegentsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ocopepen","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"otherCollectionsMint","outputs":[],"stateMutability":"payable","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":"phase1Enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2Enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPhase1MintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPhase2MintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soups","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"theunlocks","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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
610100604052604360808181529062002e4760a039600a90620000239082620002be565b5066038d7ea4c68000600b556104e2600c55600a600d819055600e55600f8054770f6979e74e4af9abed72298d818a2434fe0b95b6000000016001600160c01b0319909116179055601080546001600160a01b0319908116731359c939bd2735ea3db4a615ee8af449fc7ff50617909155601180548216733480f26941688337f62c56895f7941508862c287179055601280548216734f95e6928ef0fb9cb76a230bc3a4b015dbcfe89617905560138054821673c708c292a6875f3267a012c5a87043a9da2d00e917905560148054821673f9a1cbf04e0830bbfbdaa6e6d3dc78e13a789e6d17905560158054821673cb98e1baf630ab3dd2512a11df5663c753668b0c1790556016805490911673cb6d7f9ff4386b29c8e7c4aa94b7682c7a7bdcf617905534801562000155575f80fd5b506040518060400160405280600681526020016561736830726560d01b815250604051806040016040528060048152602001630415348360e41b8152508160029081620001a39190620002be565b506003620001b28282620002be565b505060015f5550620001c433620001cf565b60016009556200038a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200024957607f821691505b6020821081036200026857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002b957805f5260205f20601f840160051c81016020851015620002955750805b601f840160051c820191505b81811015620002b6575f8155600101620002a1565b50505b505050565b81516001600160401b03811115620002da57620002da62000220565b620002f281620002eb845462000234565b846200026e565b602080601f83116001811462000328575f8415620003105750858301515b5f19600386901b1c1916600185901b17855562000382565b5f85815260208120601f198616915b82811015620003585788860151825594840194600190910190840162000337565b50858210156200037657878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b612aaf80620003985f395ff3fe6080604052600436106102d9575f3560e01c806370a0823111610189578063b071401b116100d8578063c87b56dd11610092578063dfab41f11161006d578063dfab41f114610841578063e985e9c514610860578063f148446b146108a7578063f2fde38b146108c6575f80fd5b8063c87b56dd146107ee578063d5abeb011461080d578063dc33e68114610822575f80fd5b8063b071401b14610733578063b0acce1e14610752578063b5c187bb14610771578063b88d4fde14610790578063bc63f02e146107a3578063c23dc68f146107c2575f80fd5b806394354fd011610143578063a0712d681161011e578063a0712d68146106c3578063a19a04c0146106d6578063a22cb465146106f5578063aaf659af14610714575f80fd5b806394354fd01461067b57806395d89b411461069057806399a2557a146106a4575f80fd5b806370a08231146105c1578063715018a6146105e0578063766b7d09146105f45780638462151c146106135780638da5cb5b1461063f5780638e901b7d1461065c575f80fd5b80633ccfd60b1161024557806351830227116101ff57806358cb8fc8116101da57806358cb8fc8146105435780635bbb2177146105625780636352211e1461058e5780636c0360eb146105ad575f80fd5b806351830227146104dd57806355f804b3146104fd57806356fd6d531461051c575f80fd5b80633ccfd60b146104445780634020890e1461045857806342842e0e1461047757806344a0d68a1461048a578063453c2310146104a95780634c62033d146104be575f80fd5b806313faede61161029657806313faede6146103b557806316c38b3c146103d857806318160ddd146103f757806323b872dd1461040b57806326d1da371461041e57806328b1461d14610431575f80fd5b806301ffc9a7146102dd57806306fdde0314610311578063079386b514610332578063081812fc14610350578063095ea7b3146103875780630bb12bb81461039c575b5f80fd5b3480156102e8575f80fd5b506102fc6102f736600461233c565b6108e5565b60405190151581526020015b60405180910390f35b34801561031c575f80fd5b50610325610936565b60405161030891906123a4565b34801561033d575f80fd5b50600f546102fc90610100900460ff1681565b34801561035b575f80fd5b5061036f61036a3660046123b6565b6109c6565b6040516001600160a01b039091168152602001610308565b61039a6103953660046123e8565b610a08565b005b3480156103a7575f80fd5b50600f546102fc9060ff1681565b3480156103c0575f80fd5b506103ca600b5481565b604051908152602001610308565b3480156103e3575f80fd5b5061039a6103f236600461241f565b610aa6565b348015610402575f80fd5b506103ca610ac1565b61039a610419366004612438565b610acd565b61039a61042c3660046123b6565b610c5d565b61039a61043f3660046123b6565b61105c565b34801561044f575f80fd5b5061039a611555565b348015610463575f80fd5b5060135461036f906001600160a01b031681565b61039a610485366004612438565b611589565b348015610495575f80fd5b5061039a6104a43660046123b6565b6115a8565b3480156104b4575f80fd5b506103ca600e5481565b3480156104c9575f80fd5b5061039a6104d836600461241f565b6115b5565b3480156104e8575f80fd5b50600f546102fc906301000000900460ff1681565b348015610508575f80fd5b5061039a6105173660046124f8565b6115d7565b348015610527575f80fd5b50600f5461036f9064010000000090046001600160a01b031681565b34801561054e575f80fd5b5060155461036f906001600160a01b031681565b34801561056d575f80fd5b5061058161057c36600461253d565b6115ef565b60405161030891906125e9565b348015610599575f80fd5b5061036f6105a83660046123b6565b6116b7565b3480156105b8575f80fd5b506103256116c1565b3480156105cc575f80fd5b506103ca6105db36600461262a565b61174d565b3480156105eb575f80fd5b5061039a61179a565b3480156105ff575f80fd5b5061039a61060e3660046123b6565b6117ad565b34801561061e575f80fd5b5061063261062d36600461262a565b6117ba565b6040516103089190612643565b34801561064a575f80fd5b506008546001600160a01b031661036f565b348015610667575f80fd5b5060165461036f906001600160a01b031681565b348015610686575f80fd5b506103ca600d5481565b34801561069b575f80fd5b506103256118bf565b3480156106af575f80fd5b506106326106be36600461267a565b6118ce565b61039a6106d13660046123b6565b611a4e565b3480156106e1575f80fd5b5060115461036f906001600160a01b031681565b348015610700575f80fd5b5061039a61070f3660046126aa565b611b5c565b34801561071f575f80fd5b5061039a61072e36600461241f565b611bc7565b34801561073e575f80fd5b5061039a61074d3660046123b6565b611beb565b34801561075d575f80fd5b5060105461036f906001600160a01b031681565b34801561077c575f80fd5b5060125461036f906001600160a01b031681565b61039a61079e3660046126db565b611bf8565b3480156107ae575f80fd5b5061039a6107bd366004612752565b611c3c565b3480156107cd575f80fd5b506107e16107dc3660046123b6565b611cd1565b6040516103089190612773565b3480156107f9575f80fd5b506103256108083660046123b6565b611d56565b348015610818575f80fd5b506103ca600c5481565b34801561082d575f80fd5b506103ca61083c36600461262a565b611dd6565b34801561084c575f80fd5b50600f546102fc9062010000900460ff1681565b34801561086b575f80fd5b506102fc61087a366004612781565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b3480156108b2575f80fd5b5060145461036f906001600160a01b031681565b3480156108d1575f80fd5b5061039a6108e036600461262a565b611de0565b5f6301ffc9a760e01b6001600160e01b03198316148061091557506380ac58cd60e01b6001600160e01b03198316145b806109305750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610945906127a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610971906127a9565b80156109bc5780601f10610993576101008083540402835291602001916109bc565b820191905f5260205f20905b81548152906001019060200180831161099f57829003601f168201915b5050505050905090565b5f6109d082611e56565b6109ed576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610a12826116b7565b9050336001600160a01b03821614610a4b57610a2e813361087a565b610a4b576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610aae611e88565b600f805460ff1916911515919091179055565b6001545f54035f190190565b5f610ad782611ee2565b9050836001600160a01b0316816001600160a01b031614610b0a5760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610b5657610b39863361087a565b610b5657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b7d57604051633a954ecd60e21b815260040160405180910390fd5b8015610b87575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610c1357600184015f818152600460205260408120549003610c11575f548114610c11575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b601054604051627eeac760e11b815233600482015260016024820181905283926001600160a01b031691829062fdd58e90604401602060405180830381865afa158015610cac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd091906127e1565b101580610d495750604051627eeac760e11b8152336004820152600260248201526001906001600160a01b0383169062fdd58e90604401602060405180830381865afa158015610d22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4691906127e1565b10155b80610dc05750604051627eeac760e11b8152336004820152600360248201526001906001600160a01b0383169062fdd58e90604401602060405180830381865afa158015610d99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dbd91906127e1565b10155b80610e395750604051627eeac760e11b81523360048083019190915260248201526001906001600160a01b0383169062fdd58e90604401602060405180830381865afa158015610e12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3691906127e1565b10155b80610eb35750600f546040516370a0823160e01b81523360048201525f9164010000000090046001600160a01b0316906370a0823190602401602060405180830381865afa158015610e8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eb191906127e1565b115b610f435760405162461bcd60e51b815260206004820152605060248201527f596f75206d757374206f776e20646567656e7473206f7220746865556e6c6f6360448201527f6b7320746f6b656e20666f72206561726c792073616c6520616e64206469736360648201526f6f756e742070726963652e206179653f60801b608482015260a4015b60405180910390fd5b825f81118015610f555750600d548111155b8015610f765750600e5481610f6933611f4b565b610f73919061280c565b11155b610f925760405162461bcd60e51b8152600401610f3a9061281f565b600c5481610f9e610ac1565b610fa8919061280c565b1115610fc65760405162461bcd60e51b8152600401610f3a9061286e565b8380600b54610fd5919061289c565b341015610ff45760405162461bcd60e51b8152600401610f3a906128b3565b600f54610100900460ff1661104b5760405162461bcd60e51b815260206004820152601f60248201527f546865207068617365312073616c65206973206e6f7420656e61626c656421006044820152606401610f3a565b6110553386611f73565b5050505050565b600f546040516370a0823160e01b815233600482015282915f916401000000009091046001600160a01b0316906370a0823190602401602060405180830381865afa1580156110ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d191906127e1565b118061114457506011546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa15801561111e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061114291906127e1565b115b806111b657506012546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611190573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b491906127e1565b115b8061122857506013546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611202573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061122691906127e1565b115b8061129a57506014546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611274573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129891906127e1565b115b8061130c57506015546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa1580156112e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061130a91906127e1565b115b8061137e57506016546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611358573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137c91906127e1565b115b61143c5760405162461bcd60e51b815260206004820152607f60248201527f596f75206d757374206f776e20646567656e7473206f72204f634f706570656e60448201527f206f7220636872306d3473206f722064656b656b73206f72206175746830727360648201527f206f7220736f757073206f7220636c617373697175657320666f72206561726c60848201527f792073616c6520616e6420646973636f756e742070726963652e206179653f0060a482015260c401610f3a565b815f8111801561144e5750600d548111155b801561146f5750600e548161146233611f4b565b61146c919061280c565b11155b61148b5760405162461bcd60e51b8152600401610f3a9061281f565b600c5481611497610ac1565b6114a1919061280c565b11156114bf5760405162461bcd60e51b8152600401610f3a9061286e565b8280600b546114ce919061289c565b3410156114ed5760405162461bcd60e51b8152600401610f3a906128b3565b600f5462010000900460ff166115455760405162461bcd60e51b815260206004820152601f60248201527f546865207068617365322073616c65206973206e6f7420656e61626c656421006044820152606401610f3a565b61154f3385611f73565b50505050565b61155d611e88565b60405133904780156108fc02915f818181858888f19350505050158015611586573d5f803e3d5ffd5b50565b6115a383838360405180602001604052805f815250611bf8565b505050565b6115b0611e88565b600b55565b6115bd611e88565b600f80549115156101000261ff0019909216919091179055565b6115df611e88565b600a6115eb8282612924565b5050565b6060815f8167ffffffffffffffff81111561160c5761160c612471565b60405190808252806020026020018201604052801561165c57816020015b604080516080810182525f8082526020808301829052928201819052606082015282525f1990920191018161162a5790505b5090505f5b8281146116ae5761168986868381811061167d5761167d6129e0565b90506020020135611cd1565b82828151811061169b5761169b6129e0565b6020908102919091010152600101611661565b50949350505050565b5f61093082611ee2565b600a80546116ce906127a9565b80601f01602080910402602001604051908101604052809291908181526020018280546116fa906127a9565b80156117455780601f1061171c57610100808354040283529160200191611745565b820191905f5260205f20905b81548152906001019060200180831161172857829003601f168201915b505050505081565b5f6001600160a01b038216611775576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6117a2611e88565b6117ab5f611f8c565b565b6117b5611e88565b600e55565b60605f805f6117c88561174d565b90505f8167ffffffffffffffff8111156117e4576117e4612471565b60405190808252806020026020018201604052801561180d578160200160208202803683370190505b509050611839604080516080810182525f80825260208201819052918101829052606081019190915290565b60015b8386146118b35761184c81611fdd565b915081604001516118ab5781516001600160a01b03161561186c57815194505b876001600160a01b0316856001600160a01b0316036118ab578083878060010198508151811061189e5761189e6129e0565b6020026020010181815250505b60010161183c565b50909695505050505050565b606060038054610945906127a9565b60608183106118f057604051631960ccad60e11b815260040160405180910390fd5b5f806118fa5f5490565b9050600185101561190a57600194505b80841115611916578093505b5f6119208761174d565b90508486101561193f5785850381811015611939578091505b50611942565b505f5b5f8167ffffffffffffffff81111561195c5761195c612471565b604051908082528060200260200182016040528015611985578160200160208202803683370190505b509050815f0361199a579350611a4792505050565b5f6119a488611cd1565b90505f81604001516119b4575080515b885b8881141580156119c65750848714155b15611a3b576119d481611fdd565b92508260400151611a335782516001600160a01b0316156119f457825191505b8a6001600160a01b0316826001600160a01b031603611a335780848880600101995081518110611a2657611a266129e0565b6020026020010181815250505b6001016119b6565b50505092835250909150505b9392505050565b805f81118015611a605750600d548111155b8015611a815750600e5481611a7433611f4b565b611a7e919061280c565b11155b611a9d5760405162461bcd60e51b8152600401610f3a9061281f565b600c5481611aa9610ac1565b611ab3919061280c565b1115611ad15760405162461bcd60e51b8152600401610f3a9061286e565b8180600b54611ae0919061289c565b341015611aff5760405162461bcd60e51b8152600401610f3a906128b3565b600f5460ff1615611b525760405162461bcd60e51b815260206004820152601960248201527f546865207075626c69634d696e742069732070617573656421000000000000006044820152606401610f3a565b6115a33384611f73565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611bcf611e88565b600f8054911515620100000262ff000019909216919091179055565b611bf3611e88565b600d55565b611c03848484610acd565b6001600160a01b0383163b1561154f57611c1f84848484612017565b61154f576040516368d2bf6b60e11b815260040160405180910390fd5b815f81118015611c4e5750600d548111155b8015611c6f5750600e5481611c6233611f4b565b611c6c919061280c565b11155b611c8b5760405162461bcd60e51b8152600401610f3a9061281f565b600c5481611c97610ac1565b611ca1919061280c565b1115611cbf5760405162461bcd60e51b8152600401610f3a9061286e565b611cc7611e88565b6115a38284611f73565b604080516080810182525f808252602082018190529181018290526060810191909152604080516080810182525f8082526020820181905291810182905260608101919091526001831080611d2757505f548310155b15611d325792915050565b611d3b83611fdd565b9050806040015115611d4d5792915050565b611a47836120ff565b6060611d6182611e56565b611d7e57604051630a14c4b560e41b815260040160405180910390fd5b5f611d87612133565b905080515f03611da55760405180602001604052805f815250611a47565b80611daf84612142565b604051602001611dc09291906129f4565b6040516020818303038152906040529392505050565b5f61093082611f4b565b611de8611e88565b6001600160a01b038116611e4d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f3a565b61158681611f8c565b5f81600111158015611e6857505f5482105b80156109305750505f90815260046020526040902054600160e01b161590565b6008546001600160a01b031633146117ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f3a565b5f8180600111611f32575f54811015611f32575f8181526004602052604081205490600160e01b82169003611f30575b805f03611a4757505f19015f81815260046020526040902054611f12565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03165f908152600560205260409081902054901c67ffffffffffffffff1690565b6115eb828260405180602001604052805f815250612185565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604080516080810182525f8082526020820181905291810182905260608101919091525f82815260046020526040902054610930906121e7565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061204b903390899088908890600401612a22565b6020604051808303815f875af1925050508015612085575060408051601f3d908101601f1916820190925261208291810190612a5e565b60015b6120e1573d8080156120b2576040519150601f19603f3d011682016040523d82523d5f602084013e6120b7565b606091505b5080515f036120d9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182525f80825260208201819052918101829052606081019190915261093061212e83611ee2565b6121e7565b6060600a8054610945906127a9565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a90048061215b5750819003601f19909101908152919050565b61218f838361222f565b6001600160a01b0383163b156115a3575f548281035b6121b75f868380600101945086612017565b6121d4576040516368d2bf6b60e11b815260040160405180910390fd5b8181106121a557815f5414611055575f80fd5b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b5f8054908290036122535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146122ff5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001016122c9565b50815f0361231f57604051622e076360e81b815260040160405180910390fd5b5f5550505050565b6001600160e01b031981168114611586575f80fd5b5f6020828403121561234c575f80fd5b8135611a4781612327565b5f5b83811015612371578181015183820152602001612359565b50505f910152565b5f8151808452612390816020860160208601612357565b601f01601f19169290920160200192915050565b602081525f611a476020830184612379565b5f602082840312156123c6575f80fd5b5035919050565b80356001600160a01b03811681146123e3575f80fd5b919050565b5f80604083850312156123f9575f80fd5b612402836123cd565b946020939093013593505050565b803580151581146123e3575f80fd5b5f6020828403121561242f575f80fd5b611a4782612410565b5f805f6060848603121561244a575f80fd5b612453846123cd565b9250612461602085016123cd565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561249f5761249f612471565b604051601f8501601f19908116603f011681019082821181831017156124c7576124c7612471565b816040528093508581528686860111156124df575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215612508575f80fd5b813567ffffffffffffffff81111561251e575f80fd5b8201601f8101841361252e575f80fd5b6120f784823560208401612485565b5f806020838503121561254e575f80fd5b823567ffffffffffffffff80821115612565575f80fd5b818501915085601f830112612578575f80fd5b813581811115612586575f80fd5b8660208260051b850101111561259a575f80fd5b60209290920196919550909350505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b602080825282518282018190525f9190848201906040850190845b818110156118b3576126178385516125ac565b9284019260809290920191600101612604565b5f6020828403121561263a575f80fd5b611a47826123cd565b602080825282518282018190525f9190848201906040850190845b818110156118b35783518352928401929184019160010161265e565b5f805f6060848603121561268c575f80fd5b612695846123cd565b95602085013595506040909401359392505050565b5f80604083850312156126bb575f80fd5b6126c4836123cd565b91506126d260208401612410565b90509250929050565b5f805f80608085870312156126ee575f80fd5b6126f7856123cd565b9350612705602086016123cd565b925060408501359150606085013567ffffffffffffffff811115612727575f80fd5b8501601f81018713612737575f80fd5b61274687823560208401612485565b91505092959194509250565b5f8060408385031215612763575f80fd5b823591506126d2602084016123cd565b6080810161093082846125ac565b5f8060408385031215612792575f80fd5b61279b836123cd565b91506126d2602084016123cd565b600181811c908216806127bd57607f821691505b6020821081036127db57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156127f1575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610930576109306127f8565b6020808252602f908201527f496e76616c6964206d696e7420616d6f756e74206f72206d617820706572207760408201526e616c6c65742065786365656465642160881b606082015260800190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b8082028115828204841417610930576109306127f8565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b601f8211156115a357805f5260205f20601f840160051c810160208510156129055750805b601f840160051c820191505b81811015611055575f8155600101612911565b815167ffffffffffffffff81111561293e5761293e612471565b6129528161294c84546127a9565b846128e0565b602080601f831160018114612985575f841561296e5750858301515b5f19600386901b1c1916600185901b178555610c55565b5f85815260208120601f198616915b828110156129b357888601518255948401946001909101908401612994565b50858210156129d057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52603260045260245ffd5b5f8351612a05818460208801612357565b835190830190612a19818360208801612357565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612a5490830184612379565b9695505050505050565b5f60208284031215612a6e575f80fd5b8151611a478161232756fea26469706673582212201b015ecf24a3c5f3a59460000bc32b134c02008f74d4acb11f1f749512f3247164736f6c63430008160033697066733a2f2f62616679626569676964326f67716e6d6d7977727835636c7774666f337733776f7637736d766a6968326933796c7479637832673676627278736d2f
Deployed Bytecode
0x6080604052600436106102d9575f3560e01c806370a0823111610189578063b071401b116100d8578063c87b56dd11610092578063dfab41f11161006d578063dfab41f114610841578063e985e9c514610860578063f148446b146108a7578063f2fde38b146108c6575f80fd5b8063c87b56dd146107ee578063d5abeb011461080d578063dc33e68114610822575f80fd5b8063b071401b14610733578063b0acce1e14610752578063b5c187bb14610771578063b88d4fde14610790578063bc63f02e146107a3578063c23dc68f146107c2575f80fd5b806394354fd011610143578063a0712d681161011e578063a0712d68146106c3578063a19a04c0146106d6578063a22cb465146106f5578063aaf659af14610714575f80fd5b806394354fd01461067b57806395d89b411461069057806399a2557a146106a4575f80fd5b806370a08231146105c1578063715018a6146105e0578063766b7d09146105f45780638462151c146106135780638da5cb5b1461063f5780638e901b7d1461065c575f80fd5b80633ccfd60b1161024557806351830227116101ff57806358cb8fc8116101da57806358cb8fc8146105435780635bbb2177146105625780636352211e1461058e5780636c0360eb146105ad575f80fd5b806351830227146104dd57806355f804b3146104fd57806356fd6d531461051c575f80fd5b80633ccfd60b146104445780634020890e1461045857806342842e0e1461047757806344a0d68a1461048a578063453c2310146104a95780634c62033d146104be575f80fd5b806313faede61161029657806313faede6146103b557806316c38b3c146103d857806318160ddd146103f757806323b872dd1461040b57806326d1da371461041e57806328b1461d14610431575f80fd5b806301ffc9a7146102dd57806306fdde0314610311578063079386b514610332578063081812fc14610350578063095ea7b3146103875780630bb12bb81461039c575b5f80fd5b3480156102e8575f80fd5b506102fc6102f736600461233c565b6108e5565b60405190151581526020015b60405180910390f35b34801561031c575f80fd5b50610325610936565b60405161030891906123a4565b34801561033d575f80fd5b50600f546102fc90610100900460ff1681565b34801561035b575f80fd5b5061036f61036a3660046123b6565b6109c6565b6040516001600160a01b039091168152602001610308565b61039a6103953660046123e8565b610a08565b005b3480156103a7575f80fd5b50600f546102fc9060ff1681565b3480156103c0575f80fd5b506103ca600b5481565b604051908152602001610308565b3480156103e3575f80fd5b5061039a6103f236600461241f565b610aa6565b348015610402575f80fd5b506103ca610ac1565b61039a610419366004612438565b610acd565b61039a61042c3660046123b6565b610c5d565b61039a61043f3660046123b6565b61105c565b34801561044f575f80fd5b5061039a611555565b348015610463575f80fd5b5060135461036f906001600160a01b031681565b61039a610485366004612438565b611589565b348015610495575f80fd5b5061039a6104a43660046123b6565b6115a8565b3480156104b4575f80fd5b506103ca600e5481565b3480156104c9575f80fd5b5061039a6104d836600461241f565b6115b5565b3480156104e8575f80fd5b50600f546102fc906301000000900460ff1681565b348015610508575f80fd5b5061039a6105173660046124f8565b6115d7565b348015610527575f80fd5b50600f5461036f9064010000000090046001600160a01b031681565b34801561054e575f80fd5b5060155461036f906001600160a01b031681565b34801561056d575f80fd5b5061058161057c36600461253d565b6115ef565b60405161030891906125e9565b348015610599575f80fd5b5061036f6105a83660046123b6565b6116b7565b3480156105b8575f80fd5b506103256116c1565b3480156105cc575f80fd5b506103ca6105db36600461262a565b61174d565b3480156105eb575f80fd5b5061039a61179a565b3480156105ff575f80fd5b5061039a61060e3660046123b6565b6117ad565b34801561061e575f80fd5b5061063261062d36600461262a565b6117ba565b6040516103089190612643565b34801561064a575f80fd5b506008546001600160a01b031661036f565b348015610667575f80fd5b5060165461036f906001600160a01b031681565b348015610686575f80fd5b506103ca600d5481565b34801561069b575f80fd5b506103256118bf565b3480156106af575f80fd5b506106326106be36600461267a565b6118ce565b61039a6106d13660046123b6565b611a4e565b3480156106e1575f80fd5b5060115461036f906001600160a01b031681565b348015610700575f80fd5b5061039a61070f3660046126aa565b611b5c565b34801561071f575f80fd5b5061039a61072e36600461241f565b611bc7565b34801561073e575f80fd5b5061039a61074d3660046123b6565b611beb565b34801561075d575f80fd5b5060105461036f906001600160a01b031681565b34801561077c575f80fd5b5060125461036f906001600160a01b031681565b61039a61079e3660046126db565b611bf8565b3480156107ae575f80fd5b5061039a6107bd366004612752565b611c3c565b3480156107cd575f80fd5b506107e16107dc3660046123b6565b611cd1565b6040516103089190612773565b3480156107f9575f80fd5b506103256108083660046123b6565b611d56565b348015610818575f80fd5b506103ca600c5481565b34801561082d575f80fd5b506103ca61083c36600461262a565b611dd6565b34801561084c575f80fd5b50600f546102fc9062010000900460ff1681565b34801561086b575f80fd5b506102fc61087a366004612781565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b3480156108b2575f80fd5b5060145461036f906001600160a01b031681565b3480156108d1575f80fd5b5061039a6108e036600461262a565b611de0565b5f6301ffc9a760e01b6001600160e01b03198316148061091557506380ac58cd60e01b6001600160e01b03198316145b806109305750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610945906127a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610971906127a9565b80156109bc5780601f10610993576101008083540402835291602001916109bc565b820191905f5260205f20905b81548152906001019060200180831161099f57829003601f168201915b5050505050905090565b5f6109d082611e56565b6109ed576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610a12826116b7565b9050336001600160a01b03821614610a4b57610a2e813361087a565b610a4b576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610aae611e88565b600f805460ff1916911515919091179055565b6001545f54035f190190565b5f610ad782611ee2565b9050836001600160a01b0316816001600160a01b031614610b0a5760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610b5657610b39863361087a565b610b5657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b7d57604051633a954ecd60e21b815260040160405180910390fd5b8015610b87575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610c1357600184015f818152600460205260408120549003610c11575f548114610c11575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b601054604051627eeac760e11b815233600482015260016024820181905283926001600160a01b031691829062fdd58e90604401602060405180830381865afa158015610cac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd091906127e1565b101580610d495750604051627eeac760e11b8152336004820152600260248201526001906001600160a01b0383169062fdd58e90604401602060405180830381865afa158015610d22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4691906127e1565b10155b80610dc05750604051627eeac760e11b8152336004820152600360248201526001906001600160a01b0383169062fdd58e90604401602060405180830381865afa158015610d99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dbd91906127e1565b10155b80610e395750604051627eeac760e11b81523360048083019190915260248201526001906001600160a01b0383169062fdd58e90604401602060405180830381865afa158015610e12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3691906127e1565b10155b80610eb35750600f546040516370a0823160e01b81523360048201525f9164010000000090046001600160a01b0316906370a0823190602401602060405180830381865afa158015610e8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eb191906127e1565b115b610f435760405162461bcd60e51b815260206004820152605060248201527f596f75206d757374206f776e20646567656e7473206f7220746865556e6c6f6360448201527f6b7320746f6b656e20666f72206561726c792073616c6520616e64206469736360648201526f6f756e742070726963652e206179653f60801b608482015260a4015b60405180910390fd5b825f81118015610f555750600d548111155b8015610f765750600e5481610f6933611f4b565b610f73919061280c565b11155b610f925760405162461bcd60e51b8152600401610f3a9061281f565b600c5481610f9e610ac1565b610fa8919061280c565b1115610fc65760405162461bcd60e51b8152600401610f3a9061286e565b8380600b54610fd5919061289c565b341015610ff45760405162461bcd60e51b8152600401610f3a906128b3565b600f54610100900460ff1661104b5760405162461bcd60e51b815260206004820152601f60248201527f546865207068617365312073616c65206973206e6f7420656e61626c656421006044820152606401610f3a565b6110553386611f73565b5050505050565b600f546040516370a0823160e01b815233600482015282915f916401000000009091046001600160a01b0316906370a0823190602401602060405180830381865afa1580156110ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d191906127e1565b118061114457506011546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa15801561111e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061114291906127e1565b115b806111b657506012546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611190573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b491906127e1565b115b8061122857506013546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611202573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061122691906127e1565b115b8061129a57506014546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611274573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129891906127e1565b115b8061130c57506015546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa1580156112e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061130a91906127e1565b115b8061137e57506016546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611358573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137c91906127e1565b115b61143c5760405162461bcd60e51b815260206004820152607f60248201527f596f75206d757374206f776e20646567656e7473206f72204f634f706570656e60448201527f206f7220636872306d3473206f722064656b656b73206f72206175746830727360648201527f206f7220736f757073206f7220636c617373697175657320666f72206561726c60848201527f792073616c6520616e6420646973636f756e742070726963652e206179653f0060a482015260c401610f3a565b815f8111801561144e5750600d548111155b801561146f5750600e548161146233611f4b565b61146c919061280c565b11155b61148b5760405162461bcd60e51b8152600401610f3a9061281f565b600c5481611497610ac1565b6114a1919061280c565b11156114bf5760405162461bcd60e51b8152600401610f3a9061286e565b8280600b546114ce919061289c565b3410156114ed5760405162461bcd60e51b8152600401610f3a906128b3565b600f5462010000900460ff166115455760405162461bcd60e51b815260206004820152601f60248201527f546865207068617365322073616c65206973206e6f7420656e61626c656421006044820152606401610f3a565b61154f3385611f73565b50505050565b61155d611e88565b60405133904780156108fc02915f818181858888f19350505050158015611586573d5f803e3d5ffd5b50565b6115a383838360405180602001604052805f815250611bf8565b505050565b6115b0611e88565b600b55565b6115bd611e88565b600f80549115156101000261ff0019909216919091179055565b6115df611e88565b600a6115eb8282612924565b5050565b6060815f8167ffffffffffffffff81111561160c5761160c612471565b60405190808252806020026020018201604052801561165c57816020015b604080516080810182525f8082526020808301829052928201819052606082015282525f1990920191018161162a5790505b5090505f5b8281146116ae5761168986868381811061167d5761167d6129e0565b90506020020135611cd1565b82828151811061169b5761169b6129e0565b6020908102919091010152600101611661565b50949350505050565b5f61093082611ee2565b600a80546116ce906127a9565b80601f01602080910402602001604051908101604052809291908181526020018280546116fa906127a9565b80156117455780601f1061171c57610100808354040283529160200191611745565b820191905f5260205f20905b81548152906001019060200180831161172857829003601f168201915b505050505081565b5f6001600160a01b038216611775576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6117a2611e88565b6117ab5f611f8c565b565b6117b5611e88565b600e55565b60605f805f6117c88561174d565b90505f8167ffffffffffffffff8111156117e4576117e4612471565b60405190808252806020026020018201604052801561180d578160200160208202803683370190505b509050611839604080516080810182525f80825260208201819052918101829052606081019190915290565b60015b8386146118b35761184c81611fdd565b915081604001516118ab5781516001600160a01b03161561186c57815194505b876001600160a01b0316856001600160a01b0316036118ab578083878060010198508151811061189e5761189e6129e0565b6020026020010181815250505b60010161183c565b50909695505050505050565b606060038054610945906127a9565b60608183106118f057604051631960ccad60e11b815260040160405180910390fd5b5f806118fa5f5490565b9050600185101561190a57600194505b80841115611916578093505b5f6119208761174d565b90508486101561193f5785850381811015611939578091505b50611942565b505f5b5f8167ffffffffffffffff81111561195c5761195c612471565b604051908082528060200260200182016040528015611985578160200160208202803683370190505b509050815f0361199a579350611a4792505050565b5f6119a488611cd1565b90505f81604001516119b4575080515b885b8881141580156119c65750848714155b15611a3b576119d481611fdd565b92508260400151611a335782516001600160a01b0316156119f457825191505b8a6001600160a01b0316826001600160a01b031603611a335780848880600101995081518110611a2657611a266129e0565b6020026020010181815250505b6001016119b6565b50505092835250909150505b9392505050565b805f81118015611a605750600d548111155b8015611a815750600e5481611a7433611f4b565b611a7e919061280c565b11155b611a9d5760405162461bcd60e51b8152600401610f3a9061281f565b600c5481611aa9610ac1565b611ab3919061280c565b1115611ad15760405162461bcd60e51b8152600401610f3a9061286e565b8180600b54611ae0919061289c565b341015611aff5760405162461bcd60e51b8152600401610f3a906128b3565b600f5460ff1615611b525760405162461bcd60e51b815260206004820152601960248201527f546865207075626c69634d696e742069732070617573656421000000000000006044820152606401610f3a565b6115a33384611f73565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611bcf611e88565b600f8054911515620100000262ff000019909216919091179055565b611bf3611e88565b600d55565b611c03848484610acd565b6001600160a01b0383163b1561154f57611c1f84848484612017565b61154f576040516368d2bf6b60e11b815260040160405180910390fd5b815f81118015611c4e5750600d548111155b8015611c6f5750600e5481611c6233611f4b565b611c6c919061280c565b11155b611c8b5760405162461bcd60e51b8152600401610f3a9061281f565b600c5481611c97610ac1565b611ca1919061280c565b1115611cbf5760405162461bcd60e51b8152600401610f3a9061286e565b611cc7611e88565b6115a38284611f73565b604080516080810182525f808252602082018190529181018290526060810191909152604080516080810182525f8082526020820181905291810182905260608101919091526001831080611d2757505f548310155b15611d325792915050565b611d3b83611fdd565b9050806040015115611d4d5792915050565b611a47836120ff565b6060611d6182611e56565b611d7e57604051630a14c4b560e41b815260040160405180910390fd5b5f611d87612133565b905080515f03611da55760405180602001604052805f815250611a47565b80611daf84612142565b604051602001611dc09291906129f4565b6040516020818303038152906040529392505050565b5f61093082611f4b565b611de8611e88565b6001600160a01b038116611e4d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f3a565b61158681611f8c565b5f81600111158015611e6857505f5482105b80156109305750505f90815260046020526040902054600160e01b161590565b6008546001600160a01b031633146117ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f3a565b5f8180600111611f32575f54811015611f32575f8181526004602052604081205490600160e01b82169003611f30575b805f03611a4757505f19015f81815260046020526040902054611f12565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03165f908152600560205260409081902054901c67ffffffffffffffff1690565b6115eb828260405180602001604052805f815250612185565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604080516080810182525f8082526020820181905291810182905260608101919091525f82815260046020526040902054610930906121e7565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061204b903390899088908890600401612a22565b6020604051808303815f875af1925050508015612085575060408051601f3d908101601f1916820190925261208291810190612a5e565b60015b6120e1573d8080156120b2576040519150601f19603f3d011682016040523d82523d5f602084013e6120b7565b606091505b5080515f036120d9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182525f80825260208201819052918101829052606081019190915261093061212e83611ee2565b6121e7565b6060600a8054610945906127a9565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a90048061215b5750819003601f19909101908152919050565b61218f838361222f565b6001600160a01b0383163b156115a3575f548281035b6121b75f868380600101945086612017565b6121d4576040516368d2bf6b60e11b815260040160405180910390fd5b8181106121a557815f5414611055575f80fd5b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b5f8054908290036122535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146122ff5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001016122c9565b50815f0361231f57604051622e076360e81b815260040160405180910390fd5b5f5550505050565b6001600160e01b031981168114611586575f80fd5b5f6020828403121561234c575f80fd5b8135611a4781612327565b5f5b83811015612371578181015183820152602001612359565b50505f910152565b5f8151808452612390816020860160208601612357565b601f01601f19169290920160200192915050565b602081525f611a476020830184612379565b5f602082840312156123c6575f80fd5b5035919050565b80356001600160a01b03811681146123e3575f80fd5b919050565b5f80604083850312156123f9575f80fd5b612402836123cd565b946020939093013593505050565b803580151581146123e3575f80fd5b5f6020828403121561242f575f80fd5b611a4782612410565b5f805f6060848603121561244a575f80fd5b612453846123cd565b9250612461602085016123cd565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561249f5761249f612471565b604051601f8501601f19908116603f011681019082821181831017156124c7576124c7612471565b816040528093508581528686860111156124df575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215612508575f80fd5b813567ffffffffffffffff81111561251e575f80fd5b8201601f8101841361252e575f80fd5b6120f784823560208401612485565b5f806020838503121561254e575f80fd5b823567ffffffffffffffff80821115612565575f80fd5b818501915085601f830112612578575f80fd5b813581811115612586575f80fd5b8660208260051b850101111561259a575f80fd5b60209290920196919550909350505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b602080825282518282018190525f9190848201906040850190845b818110156118b3576126178385516125ac565b9284019260809290920191600101612604565b5f6020828403121561263a575f80fd5b611a47826123cd565b602080825282518282018190525f9190848201906040850190845b818110156118b35783518352928401929184019160010161265e565b5f805f6060848603121561268c575f80fd5b612695846123cd565b95602085013595506040909401359392505050565b5f80604083850312156126bb575f80fd5b6126c4836123cd565b91506126d260208401612410565b90509250929050565b5f805f80608085870312156126ee575f80fd5b6126f7856123cd565b9350612705602086016123cd565b925060408501359150606085013567ffffffffffffffff811115612727575f80fd5b8501601f81018713612737575f80fd5b61274687823560208401612485565b91505092959194509250565b5f8060408385031215612763575f80fd5b823591506126d2602084016123cd565b6080810161093082846125ac565b5f8060408385031215612792575f80fd5b61279b836123cd565b91506126d2602084016123cd565b600181811c908216806127bd57607f821691505b6020821081036127db57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156127f1575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610930576109306127f8565b6020808252602f908201527f496e76616c6964206d696e7420616d6f756e74206f72206d617820706572207760408201526e616c6c65742065786365656465642160881b606082015260800190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b8082028115828204841417610930576109306127f8565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b601f8211156115a357805f5260205f20601f840160051c810160208510156129055750805b601f840160051c820191505b81811015611055575f8155600101612911565b815167ffffffffffffffff81111561293e5761293e612471565b6129528161294c84546127a9565b846128e0565b602080601f831160018114612985575f841561296e5750858301515b5f19600386901b1c1916600185901b178555610c55565b5f85815260208120601f198616915b828110156129b357888601518255948401946001909101908401612994565b50858210156129d057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52603260045260245ffd5b5f8351612a05818460208801612357565b835190830190612a19818360208801612357565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612a5490830184612379565b9695505050505050565b5f60208284031215612a6e575f80fd5b8151611a478161232756fea26469706673582212201b015ecf24a3c5f3a59460000bc32b134c02008f74d4acb11f1f749512f3247164736f6c63430008160033
Deployed Bytecode Sourcemap
86731:4896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47055:639;;;;;;;;;;-1:-1:-1;47055:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;47055:639:0;;;;;;;;47957:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;87131:33::-;;;;;;;;;;-1:-1:-1;87131:33:0;;;;;;;;;;;54448:218;;;;;;;;;;-1:-1:-1;54448:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;54448:218:0;1533:203:1;53881:408:0;;;;;;:::i;:::-;;:::i;:::-;;87095:31;;;;;;;;;;-1:-1:-1;87095:31:0;;;;;;;;86939:33;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;86939:33:0;2178:177:1;91226:83:0;;;;;;;;;;-1:-1:-1;91226:83:0;;;;;:::i;:::-;;:::i;43708:323::-;;;;;;;;;;;;;:::i;58087:2825::-;;;;;;:::i;:::-;;:::i;89531:266::-;;;;;;:::i;:::-;;:::i;89803:271::-;;;;;;:::i;:::-;;:::i;91517:107::-;;;;;;;;;;;;;:::i;87534:66::-;;;;;;;;;;-1:-1:-1;87534:66:0;;;;-1:-1:-1;;;;;87534:66:0;;;61008:193;;;;;;:::i;:::-;;:::i;90775:74::-;;;;;;;;;;-1:-1:-1;90775:74:0;;;;;:::i;:::-;;:::i;87056:32::-;;;;;;;;;;;;;;;;91315:95;;;;;;;;;;-1:-1:-1;91315:95:0;;;;;:::i;:::-;;:::i;87207:28::-;;;;;;;;;;-1:-1:-1;87207:28:0;;;;;;;;;;;90673:96;;;;;;;;;;-1:-1:-1;90673:96:0;;;;;:::i;:::-;;:::i;87242:67::-;;;;;;;;;;-1:-1:-1;87242:67:0;;;;;;;-1:-1:-1;;;;;87242:67:0;;;87677:65;;;;;;;;;;-1:-1:-1;87677:65:0;;;;-1:-1:-1;;;;;87677:65:0;;;81754:528;;;;;;;;;;-1:-1:-1;81754:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49350:152::-;;;;;;;;;;-1:-1:-1;49350:152:0;;;;;:::i;:::-;;:::i;86841:93::-;;;;;;;;;;;;;:::i;44892:233::-;;;;;;;;;;-1:-1:-1;44892:233:0;;;;;:::i;:::-;;:::i;23364:103::-;;;;;;;;;;;;;:::i;91104:116::-;;;;;;;;;;-1:-1:-1;91104:116:0;;;;;:::i;:::-;;:::i;85630:900::-;;;;;;;;;;-1:-1:-1;85630:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22723:87::-;;;;;;;;;;-1:-1:-1;22796:6:0;;-1:-1:-1;;;;;22796:6:0;22723:87;;87747:70;;;;;;;;;;-1:-1:-1;87747:70:0;;;;-1:-1:-1;;;;;87747:70:0;;;87013:38;;;;;;;;;;;;;;;;48133:104;;;;;;;;;;;;;:::i;82670:2513::-;;;;;;;;;;-1:-1:-1;82670:2513:0;;;;;:::i;:::-;;:::i;90080:218::-;;;;;;:::i;:::-;;:::i;87389:68::-;;;;;;;;;;-1:-1:-1;87389:68:0;;;;-1:-1:-1;;;;;87389:68:0;;;55006:234;;;;;;;;;;-1:-1:-1;55006:234:0;;;;;:::i;:::-;;:::i;91416:95::-;;;;;;;;;;-1:-1:-1;91416:95:0;;;;;:::i;:::-;;:::i;90968:130::-;;;;;;;;;;-1:-1:-1;90968:130:0;;;;;:::i;:::-;;:::i;87314:70::-;;;;;;;;;;-1:-1:-1;87314:70:0;;;;-1:-1:-1;;;;;87314:70:0;;;87462:67;;;;;;;;;;-1:-1:-1;87462:67:0;;;;-1:-1:-1;;;;;87462:67:0;;;61799:407;;;;;;:::i;:::-;;:::i;90308:148::-;;;;;;;;;;-1:-1:-1;90308:148:0;;;;;:::i;:::-;;:::i;81167:428::-;;;;;;;;;;-1:-1:-1;81167:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48343:318::-;;;;;;;;;;-1:-1:-1;48343:318:0;;;;;:::i;:::-;;:::i;86977:31::-;;;;;;;;;;;;;;;;90855:107;;;;;;;;;;-1:-1:-1;90855:107:0;;;;;:::i;:::-;;:::i;87169:33::-;;;;;;;;;;-1:-1:-1;87169:33:0;;;;;;;;;;;55397:164;;;;;;;;;;-1:-1:-1;55397:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;55518:25:0;;;55494:4;55518:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;55397:164;87605:67;;;;;;;;;;-1:-1:-1;87605:67:0;;;;-1:-1:-1;;;;;87605:67:0;;;23622:201;;;;;;;;;;-1:-1:-1;23622:201:0;;;;;:::i;:::-;;:::i;47055:639::-;47140:4;-1:-1:-1;;;;;;;;;47464:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;47541:25:0;;;47464:102;:179;;;-1:-1:-1;;;;;;;;;;47618:25:0;;;47464:179;47444:199;47055:639;-1:-1:-1;;47055:639:0:o;47957:100::-;48011:13;48044:5;48037:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47957:100;:::o;54448:218::-;54524:7;54549:16;54557:7;54549;:16::i;:::-;54544:64;;54574:34;;-1:-1:-1;;;54574:34:0;;;;;;;;;;;54544:64;-1:-1:-1;54628:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;54628:30:0;;54448:218::o;53881:408::-;53970:13;53986:16;53994:7;53986;:16::i;:::-;53970:32;-1:-1:-1;78214:10:0;-1:-1:-1;;;;;54019:28:0;;;54015:175;;54067:44;54084:5;78214:10;55397:164;:::i;54067:44::-;54062:128;;54139:35;;-1:-1:-1;;;54139:35:0;;;;;;;;;;;54062:128;54202:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;54202:35:0;-1:-1:-1;;;;;54202:35:0;;;;;;;;;54253:28;;54202:24;;54253:28;;;;;;;53959:330;53881:408;;:::o;91226:83::-;22609:13;:11;:13::i;:::-;91282:12:::1;:21:::0;;-1:-1:-1;;91282:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;91226:83::o;43708:323::-;90550:1;43982:12;43769:7;43966:13;:28;-1:-1:-1;;43966:46:0;;43708:323::o;58087:2825::-;58229:27;58259;58278:7;58259:18;:27::i;:::-;58229:57;;58344:4;-1:-1:-1;;;;;58303:45:0;58319:19;-1:-1:-1;;;;;58303:45:0;;58299:86;;58357:28;;-1:-1:-1;;;58357:28:0;;;;;;;;;;;58299:86;58399:27;57195:24;;;:15;:24;;;;;57423:26;;78214:10;56820:30;;;-1:-1:-1;;;;;56513:28:0;;56798:20;;;56795:56;58585:180;;58678:43;58695:4;78214:10;55397:164;:::i;58678:43::-;58673:92;;58730:35;;-1:-1:-1;;;58730:35:0;;;;;;;;;;;58673:92;-1:-1:-1;;;;;58782:16:0;;58778:52;;58807:23;;-1:-1:-1;;;58807:23:0;;;;;;;;;;;58778:52;58979:15;58976:160;;;59119:1;59098:19;59091:30;58976:160;-1:-1:-1;;;;;59516:24:0;;;;;;;:18;:24;;;;;;59514:26;;-1:-1:-1;;59514:26:0;;;59585:22;;;;;;;;;59583:24;;-1:-1:-1;59583:24:0;;;52739:11;52714:23;52710:41;52697:63;-1:-1:-1;;;52697:63:0;59878:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;60173:47:0;;:52;;60169:627;;60278:1;60268:11;;60246:19;60401:30;;;:17;:30;;;;;;:35;;60397:384;;60539:13;;60524:11;:28;60520:242;;60686:30;;;;:17;:30;;;;;:52;;;60520:242;60227:569;60169:627;60843:7;60839:2;-1:-1:-1;;;;;60824:27:0;60833:4;-1:-1:-1;;;;;60824:27:0;;;;;;;;;;;60862:42;58218:2694;;;58087:2825;;;:::o;89531:266::-;88305:10;;88342:43;;-1:-1:-1;;;88342:43:0;;88371:10;88342:43;;;9421:51:1;88305:10:0;9488:18:1;;;9481:34;;;89610:11:0;;-1:-1:-1;;;;;88305:10:0;;;;88342:28;;9394:18:1;;88342:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;88341:113;;;-1:-1:-1;88405:43:0;;-1:-1:-1;;;88405:43:0;;88434:10;88405:43;;;9421:51:1;88446:1:0;9488:18:1;;;9481:34;88452:1:0;;-1:-1:-1;;;;;88405:28:0;;;;;9394:18:1;;88405:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;88341:113;:176;;;-1:-1:-1;88468:43:0;;-1:-1:-1;;;88468:43:0;;88497:10;88468:43;;;9421:51:1;88509:1:0;9488:18:1;;;9481:34;88515:1:0;;-1:-1:-1;;;;;88468:28:0;;;;;9394:18:1;;88468:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;88341:176;:239;;;-1:-1:-1;88531:43:0;;-1:-1:-1;;;88531:43:0;;88560:10;88572:1;88531:43;;;9421:51:1;;;;9488:18;;;9481:34;88578:1:0;;-1:-1:-1;;;;;88531:28:0;;;;;9394:18:1;;88531:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;88341:239;:297;;;-1:-1:-1;88603:7:0;;88594:39;;-1:-1:-1;;;88594:39:0;;88622:10;88603:7;88594:39;;1679:51:1;88636:1:0;;88603:7;;;-1:-1:-1;;;;;88603:7:0;;88594:27;;1652:18:1;;88594:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;88341:297;88323:415;;;;-1:-1:-1;;;88323:415:0;;10778:2:1;88323:415:0;;;10760:21:1;10817:2;10797:18;;;10790:30;10856:34;10836:18;;;10829:62;10927:34;10907:18;;;10900:62;-1:-1:-1;;;10978:19:1;;;10971:47;11035:19;;88323:415:0;;;;;;;;;89638:11:::1;87953:1;87939:11;:15;:52;;;;;87973:18;;87958:11;:33;;87939:52;:111;;;;;88038:12;;88023:11;87995:25;88009:10;87995:13;:25::i;:::-;:39;;;;:::i;:::-;:55;;87939:111;87931:171;;;;-1:-1:-1::0;;;87931:171:0::1;;;;;;;:::i;:::-;88148:9;;88133:11;88117:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;88109:73;;;;-1:-1:-1::0;;;88109:73:0::1;;;;;;;:::i;:::-;89671:11:::2;89476;89469:4;;:18;;;;:::i;:::-;89456:9;:31;;89448:63;;;;-1:-1:-1::0;;;89448:63:0::2;;;;;;;:::i;:::-;89699:13:::3;::::0;::::3;::::0;::::3;;;89691:57;;;::::0;-1:-1:-1;;;89691:57:0;;12815:2:1;89691:57:0::3;::::0;::::3;12797:21:1::0;12854:2;12834:18;;;12827:30;12893:33;12873:18;;;12866:61;12944:18;;89691:57:0::3;12613:355:1::0;89691:57:0::3;89755:36;78214:10:::0;89779:11:::3;89755:9;:36::i;:::-;88189:1:::2;88745::::1;88249:503:::0;89531:266;;:::o;89803:271::-;88840:7;;88831:39;;-1:-1:-1;;;88831:39:0;;88859:10;88840:7;88831:39;;1679:51:1;89887:11:0;;88873:1;;88840:7;;;;-1:-1:-1;;;;;88840:7:0;;88831:27;;1652:18:1;;88831:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;88830:104;;;-1:-1:-1;88898:8:0;;88889:40;;-1:-1:-1;;;88889:40:0;;88918:10;88889:40;;;1679:51:1;88932:1:0;;-1:-1:-1;;;;;88898:8:0;;88889:28;;1652:18:1;;88889:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;88830:104;:162;;;-1:-1:-1;88957:7:0;;88948:39;;-1:-1:-1;;;88948:39:0;;88976:10;88948:39;;;1679:51:1;88990:1:0;;-1:-1:-1;;;;;88957:7:0;;88948:27;;1652:18:1;;88948:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;88830:162;:219;;;-1:-1:-1;89015:6:0;;89006:38;;-1:-1:-1;;;89006:38:0;;89033:10;89006:38;;;1679:51:1;89047:1:0;;-1:-1:-1;;;;;89015:6:0;;89006:26;;1652:18:1;;89006:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;88830:219;:277;;;-1:-1:-1;89072:7:0;;89063:39;;-1:-1:-1;;;89063:39:0;;89091:10;89063:39;;;1679:51:1;89105:1:0;;-1:-1:-1;;;;;89072:7:0;;89063:27;;1652:18:1;;89063:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;88830:277;:333;;;-1:-1:-1;89130:5:0;;89121:37;;-1:-1:-1;;;89121:37:0;;89147:10;89121:37;;;1679:51:1;89161:1:0;;-1:-1:-1;;;;;89130:5:0;;89121:25;;1652:18:1;;89121:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;88830:333;:394;;;-1:-1:-1;89186:10:0;;89177:42;;-1:-1:-1;;;89177:42:0;;89208:10;89177:42;;;1679:51:1;89222:1:0;;-1:-1:-1;;;;;89186:10:0;;89177:30;;1652:18:1;;89177:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:46;88830:394;88812:559;;;;-1:-1:-1;;;88812:559:0;;13175:2:1;88812:559:0;;;13157:21:1;13214:3;13194:18;;;13187:31;13254:34;13234:18;;;13227:62;13325:34;13305:18;;;13298:62;13397:34;13376:19;;;13369:63;13469:33;13448:19;;;13441:62;13520:19;;88812:559:0;12973:572:1;88812:559:0;89915:11:::1;87953:1;87939:11;:15;:52;;;;;87973:18;;87958:11;:33;;87939:52;:111;;;;;88038:12;;88023:11;87995:25;88009:10;87995:13;:25::i;:::-;:39;;;;:::i;:::-;:55;;87939:111;87931:171;;;;-1:-1:-1::0;;;87931:171:0::1;;;;;;;:::i;:::-;88148:9;;88133:11;88117:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;88109:73;;;;-1:-1:-1::0;;;88109:73:0::1;;;;;;;:::i;:::-;89948:11:::2;89476;89469:4;;:18;;;;:::i;:::-;89456:9;:31;;89448:63;;;;-1:-1:-1::0;;;89448:63:0::2;;;;;;;:::i;:::-;89976:13:::3;::::0;;;::::3;;;89968:57;;;::::0;-1:-1:-1;;;89968:57:0;;13752:2:1;89968:57:0::3;::::0;::::3;13734:21:1::0;13791:2;13771:18;;;13764:30;13830:33;13810:18;;;13803:61;13881:18;;89968:57:0::3;13550:355:1::0;89968:57:0::3;90032:36;78214:10:::0;90056:11:::3;90032:9;:36::i;:::-;88189:1:::2;89378::::1;89803:271:::0;;:::o;91517:107::-;22609:13;:11;:13::i;:::-;91565:51:::1;::::0;91573:10:::1;::::0;91594:21:::1;91565:51:::0;::::1;;;::::0;::::1;::::0;;;91594:21;91573:10;91565:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;91517:107::o:0;61008:193::-;61154:39;61171:4;61177:2;61181:7;61154:39;;;;;;;;;;;;:16;:39::i;:::-;61008:193;;;:::o;90775:74::-;22609:13;:11;:13::i;:::-;90831:4:::1;:12:::0;90775:74::o;91315:95::-;22609:13;:11;:13::i;:::-;91382::::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;91382:22:0;;::::1;::::0;;;::::1;::::0;;91315:95::o;90673:96::-;22609:13;:11;:13::i;:::-;90745:7:::1;:18;90755:8:::0;90745:7;:18:::1;:::i;:::-;;90673:96:::0;:::o;81754:528::-;81898:23;81989:8;81964:22;81989:8;82056:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82056:36:0;;-1:-1:-1;;82056:36:0;;;;;;;;;;;;82019:73;;82112:9;82107:125;82128:14;82123:1;:19;82107:125;;82184:32;82204:8;;82213:1;82204:11;;;;;;;:::i;:::-;;;;;;;82184:19;:32::i;:::-;82168:10;82179:1;82168:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;82144:3;;82107:125;;;-1:-1:-1;82253:10:0;81754:528;-1:-1:-1;;;;81754:528:0:o;49350:152::-;49422:7;49465:27;49484:7;49465:18;:27::i;86841:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44892:233::-;44964:7;-1:-1:-1;;;;;44988:19:0;;44984:60;;45016:28;;-1:-1:-1;;;45016:28:0;;;;;;;;;;;44984:60;-1:-1:-1;;;;;;45062:25:0;;;;;:18;:25;;;;;;39051:13;45062:55;;44892:233::o;23364:103::-;22609:13;:11;:13::i;:::-;23429:30:::1;23456:1;23429:18;:30::i;:::-;23364:103::o:0;91104:116::-;22609:13;:11;:13::i;:::-;91186:12:::1;:28:::0;91104:116::o;85630:900::-;85708:16;85762:19;85796:25;85836:22;85861:16;85871:5;85861:9;:16::i;:::-;85836:41;;85892:25;85934:14;85920:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;85920:29:0;;85892:57;;85964:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85964:31:0;90550:1;86010:472;86059:14;86044:11;:29;86010:472;;86111:15;86124:1;86111:12;:15::i;:::-;86099:27;;86149:9;:16;;;86190:8;86145:73;86240:14;;-1:-1:-1;;;;;86240:28:0;;86236:111;;86313:14;;;-1:-1:-1;86236:111:0;86390:5;-1:-1:-1;;;;;86369:26:0;:17;-1:-1:-1;;;;;86369:26:0;;86365:102;;86446:1;86420:8;86429:13;;;;;;86420:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;86365:102;86075:3;;86010:472;;;-1:-1:-1;86503:8:0;;85630:900;-1:-1:-1;;;;;;85630:900:0:o;48133:104::-;48189:13;48222:7;48215:14;;;;;:::i;82670:2513::-;82813:16;82880:4;82871:5;:13;82867:45;;82893:19;;-1:-1:-1;;;82893:19:0;;;;;;;;;;;82867:45;82927:19;82961:17;82981:14;43450:7;43477:13;;43395:103;82981:14;82961:34;-1:-1:-1;90550:1:0;83073:5;:23;83069:87;;;90550:1;83117:23;;83069:87;83232:9;83225:4;:16;83221:73;;;83269:9;83262:16;;83221:73;83308:25;83336:16;83346:5;83336:9;:16::i;:::-;83308:44;;83530:4;83522:5;:12;83518:278;;;83577:12;;;83612:31;;;83608:111;;;83688:11;83668:31;;83608:111;83536:198;83518:278;;;-1:-1:-1;83779:1:0;83518:278;83810:25;83852:17;83838:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83838:32:0;;83810:60;;83889:17;83910:1;83889:22;83885:78;;83939:8;-1:-1:-1;83932:15:0;;-1:-1:-1;;;83932:15:0;83885:78;84107:31;84141:26;84161:5;84141:19;:26::i;:::-;84107:60;;84182:25;84427:9;:16;;;84422:92;;-1:-1:-1;84484:14:0;;84422:92;84545:5;84528:478;84557:4;84552:1;:9;;:45;;;;;84580:17;84565:11;:32;;84552:45;84528:478;;;84635:15;84648:1;84635:12;:15::i;:::-;84623:27;;84673:9;:16;;;84714:8;84669:73;84764:14;;-1:-1:-1;;;;;84764:28:0;;84760:111;;84837:14;;;-1:-1:-1;84760:111:0;84914:5;-1:-1:-1;;;;;84893:26:0;:17;-1:-1:-1;;;;;84893:26:0;;84889:102;;84970:1;84944:8;84953:13;;;;;;84944:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;84889:102;84599:3;;84528:478;;;-1:-1:-1;;;85091:29:0;;;-1:-1:-1;85098:8:0;;-1:-1:-1;;82670:2513:0;;;;;;:::o;90080:218::-;90145:11;87953:1;87939:11;:15;:52;;;;;87973:18;;87958:11;:33;;87939:52;:111;;;;;88038:12;;88023:11;87995:25;88009:10;87995:13;:25::i;:::-;:39;;;;:::i;:::-;:55;;87939:111;87931:171;;;;-1:-1:-1;;;87931:171:0;;;;;;;:::i;:::-;88148:9;;88133:11;88117:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;88109:73;;;;-1:-1:-1;;;88109:73:0;;;;;;;:::i;:::-;90178:11:::1;89476;89469:4;;:18;;;;:::i;:::-;89456:9;:31;;89448:63;;;;-1:-1:-1::0;;;89448:63:0::1;;;;;;;:::i;:::-;90207:12:::2;::::0;::::2;;90206:13;90198:51;;;::::0;-1:-1:-1;;;90198:51:0;;16414:2:1;90198:51:0::2;::::0;::::2;16396:21:1::0;16453:2;16433:18;;;16426:30;16492:27;16472:18;;;16465:55;16537:18;;90198:51:0::2;16212:349:1::0;90198:51:0::2;90256:36;78214:10:::0;90280:11:::2;90256:9;:36::i;55006:234::-:0;78214:10;55101:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;55101:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;55101:60:0;;;;;;;;;;55177:55;;540:41:1;;;55101:49:0;;78214:10;55177:55;;513:18:1;55177:55:0;;;;;;;55006:234;;:::o;91416:95::-;22609:13;:11;:13::i;:::-;91483::::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;91483:22:0;;::::1;::::0;;;::::1;::::0;;91416:95::o;90968:130::-;22609:13;:11;:13::i;:::-;91052:18:::1;:40:::0;90968:130::o;61799:407::-;61974:31;61987:4;61993:2;61997:7;61974:12;:31::i;:::-;-1:-1:-1;;;;;62020:14:0;;;:19;62016:183;;62059:56;62090:4;62096:2;62100:7;62109:5;62059:30;:56::i;:::-;62054:145;;62143:40;;-1:-1:-1;;;62143:40:0;;;;;;;;;;;90308:148;90387:11;87953:1;87939:11;:15;:52;;;;;87973:18;;87958:11;:33;;87939:52;:111;;;;;88038:12;;88023:11;87995:25;88009:10;87995:13;:25::i;:::-;:39;;;;:::i;:::-;:55;;87939:111;87931:171;;;;-1:-1:-1;;;87931:171:0;;;;;;;:::i;:::-;88148:9;;88133:11;88117:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;88109:73;;;;-1:-1:-1;;;88109:73:0;;;;;;;:::i;:::-;22609:13:::1;:11;:13::i;:::-;90417:33:::2;90427:9;90438:11;90417:9;:33::i;81167:428::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90550:1:0;81331:7;:25;:54;;;-1:-1:-1;43450:7:0;43477:13;81360:7;:25;;81331:54;81327:103;;;81409:9;81167:428;-1:-1:-1;;81167:428:0:o;81327:103::-;81452:21;81465:7;81452:12;:21::i;:::-;81440:33;;81488:9;:16;;;81484:65;;;81528:9;81167:428;-1:-1:-1;;81167:428:0:o;81484:65::-;81566:21;81579:7;81566:12;:21::i;48343:318::-;48416:13;48447:16;48455:7;48447;:16::i;:::-;48442:59;;48472:29;;-1:-1:-1;;;48472:29:0;;;;;;;;;;;48442:59;48514:21;48538:10;:8;:10::i;:::-;48514:34;;48572:7;48566:21;48591:1;48566:26;:87;;;;;;;;;;;;;;;;;48619:7;48628:18;48638:7;48628:9;:18::i;:::-;48602:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48559:94;48343:318;-1:-1:-1;;;48343:318:0:o;90855:107::-;90913:7;90936:20;90950:5;90936:13;:20::i;23622:201::-;22609:13;:11;:13::i;:::-;-1:-1:-1;;;;;23711:22:0;::::1;23703:73;;;::::0;-1:-1:-1;;;23703:73:0;;17269:2:1;23703:73:0::1;::::0;::::1;17251:21:1::0;17308:2;17288:18;;;17281:30;17347:34;17327:18;;;17320:62;-1:-1:-1;;;17398:18:1;;;17391:36;17444:19;;23703:73:0::1;17067:402:1::0;23703:73:0::1;23787:28;23806:8;23787:18;:28::i;55819:282::-:0;55884:4;55940:7;90550:1;55921:26;;:66;;;;;55974:13;;55964:7;:23;55921:66;:153;;;;-1:-1:-1;;56025:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;56025:44:0;:49;;55819:282::o;22888:132::-;22796:6;;-1:-1:-1;;;;;22796:6:0;78214:10;22952:23;22944:68;;;;-1:-1:-1;;;22944:68:0;;17676:2:1;22944:68:0;;;17658:21:1;;;17695:18;;;17688:30;17754:34;17734:18;;;17727:62;17806:18;;22944:68:0;17474:356:1;50505:1275:0;50572:7;50607;;90550:1;50656:23;50652:1061;;50709:13;;50702:4;:20;50698:1015;;;50747:14;50764:23;;;:17;:23;;;;;;;-1:-1:-1;;;50853:24:0;;:29;;50849:845;;51518:113;51525:6;51535:1;51525:11;51518:113;;-1:-1:-1;;;51596:6:0;51578:25;;;;:17;:25;;;;;;51518:113;;50849:845;50724:989;50698:1015;51741:31;;-1:-1:-1;;;51741:31:0;;;;;;;;;;;45207:178;-1:-1:-1;;;;;45296:25:0;45268:7;45296:25;;;:18;:25;;39189:2;45296:25;;;;;:50;;39051:13;45295:82;;45207:178::o;71959:112::-;72036:27;72046:2;72050:8;72036:27;;;;;;;;;;;;:9;:27::i;23983:191::-;24076:6;;;-1:-1:-1;;;;;24093:17:0;;;-1:-1:-1;;;;;;24093:17:0;;;;;;;24126:40;;24076:6;;;24093:17;24076:6;;24126:40;;24057:16;;24126:40;24046:128;23983:191;:::o;49953:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50081:24:0;;;;:17;:24;;;;;;50062:44;;:18;:44::i;64290:716::-;64474:88;;-1:-1:-1;;;64474:88:0;;64453:4;;-1:-1:-1;;;;;64474:45:0;;;;;:88;;78214:10;;64541:4;;64547:7;;64556:5;;64474:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64474:88:0;;;;;;;;-1:-1:-1;;64474:88:0;;;;;;;;;;;;:::i;:::-;;;64470:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64757:6;:13;64774:1;64757:18;64753:235;;64803:40;;-1:-1:-1;;;64803:40:0;;;;;;;;;;;64753:235;64946:6;64940:13;64931:6;64927:2;64923:15;64916:38;64470:529;-1:-1:-1;;;;;;64633:64:0;-1:-1:-1;;;64633:64:0;;-1:-1:-1;64470:529:0;64290:716;;;;;;:::o;49691:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49802:47:0;49821:27;49840:7;49821:18;:27::i;:::-;49802:18;:47::i;90563:104::-;90623:13;90654:7;90647:14;;;;;:::i;78334:1745::-;78399:17;78833:4;78826;78820:11;78816:22;78925:1;78919:4;78912:15;79000:4;78997:1;78993:12;78986:19;;;79082:1;79077:3;79070:14;79186:3;79425:5;79407:428;79473:1;79468:3;79464:11;79457:18;;79644:2;79638:4;79634:13;79630:2;79626:22;79621:3;79613:36;79738:2;79728:13;;79795:25;79407:428;79795:25;-1:-1:-1;79865:13:0;;;-1:-1:-1;;79980:14:0;;;80042:19;;;79980:14;78334:1745;-1:-1:-1;78334:1745:0:o;71186:689::-;71317:19;71323:2;71327:8;71317:5;:19::i;:::-;-1:-1:-1;;;;;71378:14:0;;;:19;71374:483;;71418:11;71432:13;71480:14;;;71513:233;71544:62;71583:1;71587:2;71591:7;;;;;;71600:5;71544:30;:62::i;:::-;71539:167;;71642:40;;-1:-1:-1;;;71642:40:0;;;;;;;;;;;71539:167;71741:3;71733:5;:11;71513:233;;71828:3;71811:13;;:20;71807:34;;71833:8;;;51879:366;-1:-1:-1;;;;;;;;;;;;;51989:41:0;;;;39710:3;52075:33;;;52041:68;;-1:-1:-1;;;52041:68:0;-1:-1:-1;;;52139:24:0;;:29;;-1:-1:-1;;;52120:48:0;;;;40231:3;52208:28;;;;-1:-1:-1;;;52179:58:0;-1:-1:-1;51879:366:0:o;65468:2966::-;65541:20;65564:13;;;65592;;;65588:44;;65614:18;;-1:-1:-1;;;65614:18:0;;;;;;;;;;;65588:44;-1:-1:-1;;;;;66120:22:0;;;;;;:18;:22;;;;39189:2;66120:22;;;:71;;66158:32;66146:45;;66120:71;;;66434:31;;;:17;:31;;;;;-1:-1:-1;53170:15:0;;53144:24;53140:46;52739:11;52714:23;52710:41;52707:52;52697:63;;66434:173;;66669:23;;;;66434:31;;66120:22;;67434:25;66120:22;;67287:335;67948:1;67934:12;67930:20;67888:346;67989:3;67980:7;67977:16;67888:346;;68207:7;68197:8;68194:1;68167:25;68164:1;68161;68156:59;68042:1;68029:15;67888:346;;;67892:77;68267:8;68279:1;68267:13;68263:45;;68289:19;;-1:-1:-1;;;68289:19:0;;;;;;;;;;;68263:45;68325:13;:19;-1:-1:-1;61008:193:0;;;:::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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:127::-;3104:10;3099:3;3095:20;3092:1;3085:31;3135:4;3132:1;3125:15;3159:4;3156:1;3149:15;3175:632;3240:5;3270:18;3311:2;3303:6;3300:14;3297:40;;;3317:18;;:::i;:::-;3392:2;3386:9;3360:2;3446:15;;-1:-1:-1;;3442:24:1;;;3468:2;3438:33;3434:42;3422:55;;;3492:18;;;3512:22;;;3489:46;3486:72;;;3538:18;;:::i;:::-;3578:10;3574:2;3567:22;3607:6;3598:15;;3637:6;3629;3622:22;3677:3;3668:6;3663:3;3659:16;3656:25;3653:45;;;3694:1;3691;3684:12;3653:45;3744:6;3739:3;3732:4;3724:6;3720:17;3707:44;3799:1;3792:4;3783:6;3775;3771:19;3767:30;3760:41;;;;3175:632;;;;;:::o;3812:451::-;3881:6;3934:2;3922:9;3913:7;3909:23;3905:32;3902:52;;;3950:1;3947;3940:12;3902:52;3990:9;3977:23;4023:18;4015:6;4012:30;4009:50;;;4055:1;4052;4045:12;4009:50;4078:22;;4131:4;4123:13;;4119:27;-1:-1:-1;4109:55:1;;4160:1;4157;4150:12;4109:55;4183:74;4249:7;4244:2;4231:16;4226:2;4222;4218:11;4183:74;:::i;4268:615::-;4354:6;4362;4415:2;4403:9;4394:7;4390:23;4386:32;4383:52;;;4431:1;4428;4421:12;4383:52;4471:9;4458:23;4500:18;4541:2;4533:6;4530:14;4527:34;;;4557:1;4554;4547:12;4527:34;4595:6;4584:9;4580:22;4570:32;;4640:7;4633:4;4629:2;4625:13;4621:27;4611:55;;4662:1;4659;4652:12;4611:55;4702:2;4689:16;4728:2;4720:6;4717:14;4714:34;;;4744:1;4741;4734:12;4714:34;4797:7;4792:2;4782:6;4779:1;4775:14;4771:2;4767:23;4763:32;4760:45;4757:65;;;4818:1;4815;4808:12;4757:65;4849:2;4841:11;;;;;4871:6;;-1:-1:-1;4268:615:1;;-1:-1:-1;;;;4268:615:1:o;4888:349::-;4972:12;;-1:-1:-1;;;;;4968:38:1;4956:51;;5060:4;5049:16;;;5043:23;5068:18;5039:48;5023:14;;;5016:72;5151:4;5140:16;;;5134:23;5127:31;5120:39;5104:14;;;5097:63;5213:4;5202:16;;;5196:23;5221:8;5192:38;5176:14;;5169:62;4888:349::o;5242:724::-;5477:2;5529:21;;;5599:13;;5502:18;;;5621:22;;;5448:4;;5477:2;5700:15;;;;5674:2;5659:18;;;5448:4;5743:197;5757:6;5754:1;5751:13;5743:197;;;5806:52;5854:3;5845:6;5839:13;5806:52;:::i;:::-;5915:15;;;;5887:4;5878:14;;;;;5779:1;5772:9;5743:197;;5971:186;6030:6;6083:2;6071:9;6062:7;6058:23;6054:32;6051:52;;;6099:1;6096;6089:12;6051:52;6122:29;6141:9;6122:29;:::i;6162:632::-;6333:2;6385:21;;;6455:13;;6358:18;;;6477:22;;;6304:4;;6333:2;6556:15;;;;6530:2;6515:18;;;6304:4;6599:169;6613:6;6610:1;6607:13;6599:169;;;6674:13;;6662:26;;6743:15;;;;6708:12;;;;6635:1;6628:9;6599:169;;6799:322;6876:6;6884;6892;6945:2;6933:9;6924:7;6920:23;6916:32;6913:52;;;6961:1;6958;6951:12;6913:52;6984:29;7003:9;6984:29;:::i;:::-;6974:39;7060:2;7045:18;;7032:32;;-1:-1:-1;7111:2:1;7096:18;;;7083:32;;6799:322;-1:-1:-1;;;6799:322:1:o;7126:254::-;7191:6;7199;7252:2;7240:9;7231:7;7227:23;7223:32;7220:52;;;7268:1;7265;7258:12;7220:52;7291:29;7310:9;7291:29;:::i;:::-;7281:39;;7339:35;7370:2;7359:9;7355:18;7339:35;:::i;:::-;7329:45;;7126:254;;;;;:::o;7385:667::-;7480:6;7488;7496;7504;7557:3;7545:9;7536:7;7532:23;7528:33;7525:53;;;7574:1;7571;7564:12;7525:53;7597:29;7616:9;7597:29;:::i;:::-;7587:39;;7645:38;7679:2;7668:9;7664:18;7645:38;:::i;:::-;7635:48;;7730:2;7719:9;7715:18;7702:32;7692:42;;7785:2;7774:9;7770:18;7757:32;7812:18;7804:6;7801:30;7798:50;;;7844:1;7841;7834:12;7798:50;7867:22;;7920:4;7912:13;;7908:27;-1:-1:-1;7898:55:1;;7949:1;7946;7939:12;7898:55;7972:74;8038:7;8033:2;8020:16;8015:2;8011;8007:11;7972:74;:::i;:::-;7962:84;;;7385:667;;;;;;;:::o;8057:254::-;8125:6;8133;8186:2;8174:9;8165:7;8161:23;8157:32;8154:52;;;8202:1;8199;8192:12;8154:52;8238:9;8225:23;8215:33;;8267:38;8301:2;8290:9;8286:18;8267:38;:::i;8316:268::-;8514:3;8499:19;;8527:51;8503:9;8560:6;8527:51;:::i;8589:260::-;8657:6;8665;8718:2;8706:9;8697:7;8693:23;8689:32;8686:52;;;8734:1;8731;8724:12;8686:52;8757:29;8776:9;8757:29;:::i;:::-;8747:39;;8805:38;8839:2;8828:9;8824:18;8805:38;:::i;8854:380::-;8933:1;8929:12;;;;8976;;;8997:61;;9051:4;9043:6;9039:17;9029:27;;8997:61;9104:2;9096:6;9093:14;9073:18;9070:38;9067:161;;9150:10;9145:3;9141:20;9138:1;9131:31;9185:4;9182:1;9175:15;9213:4;9210:1;9203:15;9067:161;;8854:380;;;:::o;9526:184::-;9596:6;9649:2;9637:9;9628:7;9624:23;9620:32;9617:52;;;9665:1;9662;9655:12;9617:52;-1:-1:-1;9688:16:1;;9526:184;-1:-1:-1;9526:184:1:o;11065:127::-;11126:10;11121:3;11117:20;11114:1;11107:31;11157:4;11154:1;11147:15;11181:4;11178:1;11171:15;11197:125;11262:9;;;11283:10;;;11280:36;;;11296:18;;:::i;11327:411::-;11529:2;11511:21;;;11568:2;11548:18;;;11541:30;11607:34;11602:2;11587:18;;11580:62;-1:-1:-1;;;11673:2:1;11658:18;;11651:45;11728:3;11713:19;;11327:411::o;11743:344::-;11945:2;11927:21;;;11984:2;11964:18;;;11957:30;-1:-1:-1;;;12018:2:1;12003:18;;11996:50;12078:2;12063:18;;11743:344::o;12092:168::-;12165:9;;;12196;;12213:15;;;12207:22;;12193:37;12183:71;;12234:18;;:::i;12265:343::-;12467:2;12449:21;;;12506:2;12486:18;;;12479:30;-1:-1:-1;;;12540:2:1;12525:18;;12518:49;12599:2;12584:18;;12265:343::o;14036:518::-;14138:2;14133:3;14130:11;14127:421;;;14174:5;14171:1;14164:16;14218:4;14215:1;14205:18;14288:2;14276:10;14272:19;14269:1;14265:27;14259:4;14255:38;14324:4;14312:10;14309:20;14306:47;;;-1:-1:-1;14347:4:1;14306:47;14402:2;14397:3;14393:12;14390:1;14386:20;14380:4;14376:31;14366:41;;14457:81;14475:2;14468:5;14465:13;14457:81;;;14534:1;14520:16;;14501:1;14490:13;14457:81;;14730:1345;14856:3;14850:10;14883:18;14875:6;14872:30;14869:56;;;14905:18;;:::i;:::-;14934:97;15024:6;14984:38;15016:4;15010:11;14984:38;:::i;:::-;14978:4;14934:97;:::i;:::-;15086:4;;15143:2;15132:14;;15160:1;15155:663;;;;15862:1;15879:6;15876:89;;;-1:-1:-1;15931:19:1;;;15925:26;15876:89;-1:-1:-1;;14687:1:1;14683:11;;;14679:24;14675:29;14665:40;14711:1;14707:11;;;14662:57;15978:81;;15125:944;;15155:663;13983:1;13976:14;;;14020:4;14007:18;;-1:-1:-1;;15191:20:1;;;15309:236;15323:7;15320:1;15317:14;15309:236;;;15412:19;;;15406:26;15391:42;;15504:27;;;;15472:1;15460:14;;;;15339:19;;15309:236;;;15313:3;15573:6;15564:7;15561:19;15558:201;;;15634:19;;;15628:26;-1:-1:-1;;15717:1:1;15713:14;;;15729:3;15709:24;15705:37;15701:42;15686:58;15671:74;;15558:201;-1:-1:-1;;;;;15805:1:1;15789:14;;;15785:22;15772:36;;-1:-1:-1;14730:1345:1:o;16080:127::-;16141:10;16136:3;16132:20;16129:1;16122:31;16172:4;16169:1;16162:15;16196:4;16193:1;16186:15;16566:496;16745:3;16783:6;16777:13;16799:66;16858:6;16853:3;16846:4;16838:6;16834:17;16799:66;:::i;:::-;16928:13;;16887:16;;;;16950:70;16928:13;16887:16;16997:4;16985:17;;16950:70;:::i;:::-;17036:20;;16566:496;-1:-1:-1;;;;16566:496:1:o;17835:489::-;-1:-1:-1;;;;;18104:15:1;;;18086:34;;18156:15;;18151:2;18136:18;;18129:43;18203:2;18188:18;;18181:34;;;18251:3;18246:2;18231:18;;18224:31;;;18029:4;;18272:46;;18298:19;;18290:6;18272:46;:::i;:::-;18264:54;17835:489;-1:-1:-1;;;;;;17835:489:1:o;18329:249::-;18398:6;18451:2;18439:9;18430:7;18426:23;18422:32;18419:52;;;18467:1;18464;18457:12;18419:52;18499:9;18493:16;18518:30;18542:5;18518:30;:::i
Swarm Source
ipfs://1b015ecf24a3c5f3a59460000bc32b134c02008f74d4acb11f1f749512f32471
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.