ERC-721
Overview
Max Total Supply
5,000 MEDUSA
Holders
238
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
60 MEDUSALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Medusa
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-08 */ // SPDX-License-Identifier: MIT /* The Official Medusa Contract - ERC721 Website: https://medusa404.xyz Twitter: https://twitter.com/Medusa_ERC404 ███╗░░░███╗███████╗██████╗░██╗░░░██╗░██████╗░█████╗░ ████╗░████║██╔════╝██╔══██╗██║░░░██║██╔════╝██╔══██╗ ██╔████╔██║█████╗░░██║░░██║██║░░░██║╚█████╗░███████║ ██║╚██╔╝██║██╔══╝░░██║░░██║██║░░░██║░╚═══██╗██╔══██║ ██║░╚═╝░██║███████╗██████╔╝╚██████╔╝██████╔╝██║░░██║ ╚═╝░░░░░╚═╝╚══════╝╚═════╝░░╚═════╝░╚═════╝░╚═╝░░╚═╝ */ // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/Medusa721.sol pragma solidity ^0.8.24; contract Medusa is ERC721A, Ownable { using Strings for uint256; uint256 public maxSupply = 5000; uint256 public price = .003 ether; uint256 public maxPerTx = 20; bool public sale; string public baseURI; constructor(string memory initBaseURI) ERC721A("Medusa", "MEDUSA") Ownable(msg.sender) { baseURI = initBaseURI; } function mint(uint256 amount) external payable { if (!sale) revert("Sale is not active"); if (_totalMinted() + amount > maxSupply) revert("Max Supply exceeded"); if (amount > maxPerTx) revert("Max mint exceeded"); if (msg.value < (price * amount)) revert("Wrong mint price"); _mint(msg.sender, amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setBaseURI(string memory __baseURI) public onlyOwner { baseURI = __baseURI; } function toggleSale() external onlyOwner { sale = !sale; } function setMaxPerTx(uint256 __maxPerTx) external onlyOwner { maxPerTx = __maxPerTx; } function setPrice(uint256 __price) external onlyOwner { price = __price; } function setMaxSupply(uint256 __maxSupply) external onlyOwner { maxSupply = __maxSupply; } function reserveMint(address _receiver, uint256 _amount) external onlyOwner { _mint(_receiver, _amount); } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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
6080604052611388600955660aa87bee538000600a556014600b5534801562000026575f80fd5b50604051620033d4380380620033d483398181016040528101906200004c9190620003e2565b336040518060400160405280600681526020017f4d656475736100000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d454455534100000000000000000000000000000000000000000000000000008152508160029081620000ca919062000668565b508060039081620000dc919062000668565b50620000ed6200019260201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000167575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200015e91906200078f565b60405180910390fd5b62000178816200019a60201b60201c565b5080600d90816200018a919062000668565b5050620007aa565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620002be8262000276565b810181811067ffffffffffffffff82111715620002e057620002df62000286565b5b80604052505050565b5f620002f46200025d565b9050620003028282620002b3565b919050565b5f67ffffffffffffffff82111562000324576200032362000286565b5b6200032f8262000276565b9050602081019050919050565b5f5b838110156200035b5780820151818401526020810190506200033e565b5f8484015250505050565b5f6200037c620003768462000307565b620002e9565b9050828152602081018484840111156200039b576200039a62000272565b5b620003a88482856200033c565b509392505050565b5f82601f830112620003c757620003c66200026e565b5b8151620003d984826020860162000366565b91505092915050565b5f60208284031215620003fa57620003f962000266565b5b5f82015167ffffffffffffffff8111156200041a57620004196200026a565b5b6200042884828501620003b0565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200048057607f821691505b6020821081036200049657620004956200043b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004bd565b620005068683620004bd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005506200054a62000544846200051e565b62000527565b6200051e565b9050919050565b5f819050919050565b6200056b8362000530565b620005836200057a8262000557565b848454620004c9565b825550505050565b5f90565b620005996200058b565b620005a681848462000560565b505050565b5b81811015620005cd57620005c15f826200058f565b600181019050620005ac565b5050565b601f8211156200061c57620005e6816200049c565b620005f184620004ae565b8101602085101562000601578190505b620006196200061085620004ae565b830182620005ab565b50505b505050565b5f82821c905092915050565b5f6200063e5f198460080262000621565b1980831691505092915050565b5f6200065883836200062d565b9150826002028217905092915050565b620006738262000431565b67ffffffffffffffff8111156200068f576200068e62000286565b5b6200069b825462000468565b620006a8828285620005d1565b5f60209050601f831160018114620006de575f8415620006c9578287015190505b620006d585826200064b565b86555062000744565b601f198416620006ee866200049c565b5f5b828110156200071757848901518255600182019150602085019450602081019050620006f0565b8683101562000737578489015162000733601f8916826200062d565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000777826200074c565b9050919050565b62000789816200076b565b82525050565b5f602082019050620007a45f8301846200077e565b92915050565b612c1c80620007b85f395ff3fe6080604052600436106101cc575f3560e01c80637d8966e4116100f6578063b0ea180211610094578063d5abeb0111610063578063d5abeb01146105e0578063e985e9c51461060a578063f2fde38b14610646578063f968adbe1461066e576101cc565b8063b0ea180214610538578063b88d4fde14610560578063c6f6f2161461057c578063c87b56dd146105a4576101cc565b806395d89b41116100d057806395d89b41146104a0578063a035b1fe146104ca578063a0712d68146104f4578063a22cb46514610510576101cc565b80637d8966e4146104385780638da5cb5b1461044e57806391b7f5ed14610478576101cc565b806342842e0e1161016e5780636c0360eb1161013d5780636c0360eb146103945780636f8b44b0146103be57806370a08231146103e6578063715018a614610422576101cc565b806342842e0e146102ea57806355f804b3146103065780636352211e1461032e5780636ad1fe021461036a576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461028e57806323b872dd146102b85780633ccfd60b146102d4576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611d6b565b610698565b6040516102039190611db0565b60405180910390f35b348015610217575f80fd5b50610220610729565b60405161022d9190611e53565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611ea6565b6107b9565b6040516102699190611f10565b60405180910390f35b61028c60048036038101906102879190611f53565b610833565b005b348015610299575f80fd5b506102a2610972565b6040516102af9190611fa0565b60405180910390f35b6102d260048036038101906102cd9190611fb9565b610987565b005b3480156102df575f80fd5b506102e8610c95565b005b61030460048036038101906102ff9190611fb9565b610d48565b005b348015610311575f80fd5b5061032c60048036038101906103279190612135565b610d67565b005b348015610339575f80fd5b50610354600480360381019061034f9190611ea6565b610d82565b6040516103619190611f10565b60405180910390f35b348015610375575f80fd5b5061037e610d93565b60405161038b9190611db0565b60405180910390f35b34801561039f575f80fd5b506103a8610da5565b6040516103b59190611e53565b60405180910390f35b3480156103c9575f80fd5b506103e460048036038101906103df9190611ea6565b610e31565b005b3480156103f1575f80fd5b5061040c6004803603810190610407919061217c565b610e43565b6040516104199190611fa0565b60405180910390f35b34801561042d575f80fd5b50610436610ef8565b005b348015610443575f80fd5b5061044c610f0b565b005b348015610459575f80fd5b50610462610f3d565b60405161046f9190611f10565b60405180910390f35b348015610483575f80fd5b5061049e60048036038101906104999190611ea6565b610f65565b005b3480156104ab575f80fd5b506104b4610f77565b6040516104c19190611e53565b60405180910390f35b3480156104d5575f80fd5b506104de611007565b6040516104eb9190611fa0565b60405180910390f35b61050e60048036038101906105099190611ea6565b61100d565b005b34801561051b575f80fd5b50610536600480360381019061053191906121d1565b611154565b005b348015610543575f80fd5b5061055e60048036038101906105599190611f53565b61125a565b005b61057a600480360381019061057591906122ad565b611270565b005b348015610587575f80fd5b506105a2600480360381019061059d9190611ea6565b6112e2565b005b3480156105af575f80fd5b506105ca60048036038101906105c59190611ea6565b6112f4565b6040516105d79190611e53565b60405180910390f35b3480156105eb575f80fd5b506105f4611370565b6040516106019190611fa0565b60405180910390f35b348015610615575f80fd5b50610630600480360381019061062b919061232d565b611376565b60405161063d9190611db0565b60405180910390f35b348015610651575f80fd5b5061066c6004803603810190610667919061217c565b611404565b005b348015610679575f80fd5b50610682611488565b60405161068f9190611fa0565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073890612398565b80601f016020809104026020016040519081016040528092919081815260200182805461076490612398565b80156107af5780601f10610786576101008083540402835291602001916107af565b820191905f5260205f20905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b5f6107c38261148e565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61083d82610d82565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e6114e8565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a816108856114e8565b611376565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f61097b6114ef565b6001545f540303905090565b5f610991826114f7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a03846115ba565b91509150610a198187610a146114e8565b6115dd565b610a6557610a2e86610a296114e8565b611376565b610a64576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610aca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad78686866001611620565b8015610ae1575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ba985610b85888887611626565b7c02000000000000000000000000000000000000000000000000000000001761164d565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c25575f6001850190505f60045f8381526020019081526020015f205403610c23575f548114610c22578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c8d8686866001611677565b505050505050565b610c9d61167d565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610cc2906123f5565b5f6040518083038185875af1925050503d805f8114610cfc576040519150601f19603f3d011682016040523d82523d5f602084013e610d01565b606091505b5050905080610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90612453565b60405180910390fd5b50565b610d6283838360405180602001604052805f815250611270565b505050565b610d6f61167d565b80600d9081610d7e919061260e565b5050565b5f610d8c826114f7565b9050919050565b600c5f9054906101000a900460ff1681565b600d8054610db290612398565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde90612398565b8015610e295780601f10610e0057610100808354040283529160200191610e29565b820191905f5260205f20905b815481529060010190602001808311610e0c57829003601f168201915b505050505081565b610e3961167d565b8060098190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f0061167d565b610f095f611704565b565b610f1361167d565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6d61167d565b80600a8190555050565b606060038054610f8690612398565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612398565b8015610ffd5780601f10610fd457610100808354040283529160200191610ffd565b820191905f5260205f20905b815481529060010190602001808311610fe057829003601f168201915b5050505050905090565b600a5481565b600c5f9054906101000a900460ff1661105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290612727565b60405180910390fd5b600954816110676117c7565b6110719190612772565b11156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906127ef565b60405180910390fd5b600b548111156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90612857565b60405180910390fd5b80600a546111059190612875565b341015611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90612900565b60405180910390fd5b61115133826117d8565b50565b8060075f6111606114e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112096114e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124e9190611db0565b60405180910390a35050565b61126261167d565b61126c82826117d8565b5050565b61127b848484610987565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146112dc576112a584848484611981565b6112db576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6112ea61167d565b80600b8190555050565b60606112ff8261148e565b61133e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113359061298e565b60405180910390fd5b600d61134983611acc565b60405160200161135a929190612ab0565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61140c61167d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361147c575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016114739190611f10565b60405180910390fd5b61148581611704565b50565b600b5481565b5f816114986114ef565b111580156114a657505f5482105b80156114e157505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806115056114ef565b11611583575f54811015611582575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611580575b5f81036115765760045f836001900393508381526020019081526020015f2054905061154f565b80925050506115b5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861163c868684611b96565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611685611b9e565b73ffffffffffffffffffffffffffffffffffffffff166116a3610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614611702576116c6611b9e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116f99190611f10565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6117d06114ef565b5f5403905090565b5f805490505f8203611816576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118225f848385611620565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611894836118855f865f611626565b61188e85611ba5565b1761164d565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b81811461192e5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506118f5565b505f8203611968576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061197c5f848385611677565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119a66114e8565b8786866040518563ffffffff1660e01b81526004016119c89493929190612b30565b6020604051808303815f875af1925050508015611a0357506040513d601f19601f82011682018060405250810190611a009190612b8e565b60015b611a79573d805f8114611a31576040519150601f19603f3d011682016040523d82523d5f602084013e611a36565b606091505b505f815103611a71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f6001611ada84611bb4565b0190505f8167ffffffffffffffff811115611af857611af7612011565b5b6040519080825280601f01601f191660200182016040528015611b2a5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b8b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b8057611b7f612bb9565b5b0494505f8503611b37575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c10577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c0657611c05612bb9565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c4d576d04ee2d6d415b85acef81000000008381611c4357611c42612bb9565b5b0492506020810190505b662386f26fc100008310611c7c57662386f26fc100008381611c7257611c71612bb9565b5b0492506010810190505b6305f5e1008310611ca5576305f5e1008381611c9b57611c9a612bb9565b5b0492506008810190505b6127108310611cca576127108381611cc057611cbf612bb9565b5b0492506004810190505b60648310611ced5760648381611ce357611ce2612bb9565b5b0492506002810190505b600a8310611cfc576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d4a81611d16565b8114611d54575f80fd5b50565b5f81359050611d6581611d41565b92915050565b5f60208284031215611d8057611d7f611d0e565b5b5f611d8d84828501611d57565b91505092915050565b5f8115159050919050565b611daa81611d96565b82525050565b5f602082019050611dc35f830184611da1565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e00578082015181840152602081019050611de5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e2582611dc9565b611e2f8185611dd3565b9350611e3f818560208601611de3565b611e4881611e0b565b840191505092915050565b5f6020820190508181035f830152611e6b8184611e1b565b905092915050565b5f819050919050565b611e8581611e73565b8114611e8f575f80fd5b50565b5f81359050611ea081611e7c565b92915050565b5f60208284031215611ebb57611eba611d0e565b5b5f611ec884828501611e92565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611efa82611ed1565b9050919050565b611f0a81611ef0565b82525050565b5f602082019050611f235f830184611f01565b92915050565b611f3281611ef0565b8114611f3c575f80fd5b50565b5f81359050611f4d81611f29565b92915050565b5f8060408385031215611f6957611f68611d0e565b5b5f611f7685828601611f3f565b9250506020611f8785828601611e92565b9150509250929050565b611f9a81611e73565b82525050565b5f602082019050611fb35f830184611f91565b92915050565b5f805f60608486031215611fd057611fcf611d0e565b5b5f611fdd86828701611f3f565b9350506020611fee86828701611f3f565b9250506040611fff86828701611e92565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61204782611e0b565b810181811067ffffffffffffffff8211171561206657612065612011565b5b80604052505050565b5f612078611d05565b9050612084828261203e565b919050565b5f67ffffffffffffffff8211156120a3576120a2612011565b5b6120ac82611e0b565b9050602081019050919050565b828183375f83830152505050565b5f6120d96120d484612089565b61206f565b9050828152602081018484840111156120f5576120f461200d565b5b6121008482856120b9565b509392505050565b5f82601f83011261211c5761211b612009565b5b813561212c8482602086016120c7565b91505092915050565b5f6020828403121561214a57612149611d0e565b5b5f82013567ffffffffffffffff81111561216757612166611d12565b5b61217384828501612108565b91505092915050565b5f6020828403121561219157612190611d0e565b5b5f61219e84828501611f3f565b91505092915050565b6121b081611d96565b81146121ba575f80fd5b50565b5f813590506121cb816121a7565b92915050565b5f80604083850312156121e7576121e6611d0e565b5b5f6121f485828601611f3f565b9250506020612205858286016121bd565b9150509250929050565b5f67ffffffffffffffff82111561222957612228612011565b5b61223282611e0b565b9050602081019050919050565b5f61225161224c8461220f565b61206f565b90508281526020810184848401111561226d5761226c61200d565b5b6122788482856120b9565b509392505050565b5f82601f83011261229457612293612009565b5b81356122a484826020860161223f565b91505092915050565b5f805f80608085870312156122c5576122c4611d0e565b5b5f6122d287828801611f3f565b94505060206122e387828801611f3f565b93505060406122f487828801611e92565b925050606085013567ffffffffffffffff81111561231557612314611d12565b5b61232187828801612280565b91505092959194509250565b5f806040838503121561234357612342611d0e565b5b5f61235085828601611f3f565b925050602061236185828601611f3f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123af57607f821691505b6020821081036123c2576123c161236b565b5b50919050565b5f81905092915050565b50565b5f6123e05f836123c8565b91506123eb826123d2565b5f82019050919050565b5f6123ff826123d5565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f61243d600f83611dd3565b915061244882612409565b602082019050919050565b5f6020820190508181035f83015261246a81612431565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026124cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612492565b6124d78683612492565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61251261250d61250884611e73565b6124ef565b611e73565b9050919050565b5f819050919050565b61252b836124f8565b61253f61253782612519565b84845461249e565b825550505050565b5f90565b612553612547565b61255e818484612522565b505050565b5b81811015612581576125765f8261254b565b600181019050612564565b5050565b601f8211156125c65761259781612471565b6125a084612483565b810160208510156125af578190505b6125c36125bb85612483565b830182612563565b50505b505050565b5f82821c905092915050565b5f6125e65f19846008026125cb565b1980831691505092915050565b5f6125fe83836125d7565b9150826002028217905092915050565b61261782611dc9565b67ffffffffffffffff8111156126305761262f612011565b5b61263a8254612398565b612645828285612585565b5f60209050601f831160018114612676575f8415612664578287015190505b61266e85826125f3565b8655506126d5565b601f19841661268486612471565b5f5b828110156126ab57848901518255600182019150602085019450602081019050612686565b868310156126c857848901516126c4601f8916826125d7565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f742061637469766500000000000000000000000000005f82015250565b5f612711601283611dd3565b915061271c826126dd565b602082019050919050565b5f6020820190508181035f83015261273e81612705565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61277c82611e73565b915061278783611e73565b925082820190508082111561279f5761279e612745565b5b92915050565b7f4d617820537570706c79206578636565646564000000000000000000000000005f82015250565b5f6127d9601383611dd3565b91506127e4826127a5565b602082019050919050565b5f6020820190508181035f830152612806816127cd565b9050919050565b7f4d6178206d696e742065786365656465640000000000000000000000000000005f82015250565b5f612841601183611dd3565b915061284c8261280d565b602082019050919050565b5f6020820190508181035f83015261286e81612835565b9050919050565b5f61287f82611e73565b915061288a83611e73565b925082820261289881611e73565b915082820484148315176128af576128ae612745565b5b5092915050565b7f57726f6e67206d696e74207072696365000000000000000000000000000000005f82015250565b5f6128ea601083611dd3565b91506128f5826128b6565b602082019050919050565b5f6020820190508181035f830152612917816128de565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f612978602f83611dd3565b91506129838261291e565b604082019050919050565b5f6020820190508181035f8301526129a58161296c565b9050919050565b5f81905092915050565b5f81546129c281612398565b6129cc81866129ac565b9450600182165f81146129e657600181146129fb57612a2d565b60ff1983168652811515820286019350612a2d565b612a0485612471565b5f5b83811015612a2557815481890152600182019150602081019050612a06565b838801955050505b50505092915050565b5f612a4082611dc9565b612a4a81856129ac565b9350612a5a818560208601611de3565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612a9a6005836129ac565b9150612aa582612a66565b600582019050919050565b5f612abb82856129b6565b9150612ac78284612a36565b9150612ad282612a8e565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f612b0282612ade565b612b0c8185612ae8565b9350612b1c818560208601611de3565b612b2581611e0b565b840191505092915050565b5f608082019050612b435f830187611f01565b612b506020830186611f01565b612b5d6040830185611f91565b8181036060830152612b6f8184612af8565b905095945050505050565b5f81519050612b8881611d41565b92915050565b5f60208284031215612ba357612ba2611d0e565b5b5f612bb084828501612b7a565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122002a63317dbc2209bcb9b5a8224dfc23d4445d229db79cae0296ced52f296550a64736f6c6343000818003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52566e57743368554d797a5142773264777263427175326e6e33687a61316766764c796157464c68474265342f00000000000000000000
Deployed Bytecode
0x6080604052600436106101cc575f3560e01c80637d8966e4116100f6578063b0ea180211610094578063d5abeb0111610063578063d5abeb01146105e0578063e985e9c51461060a578063f2fde38b14610646578063f968adbe1461066e576101cc565b8063b0ea180214610538578063b88d4fde14610560578063c6f6f2161461057c578063c87b56dd146105a4576101cc565b806395d89b41116100d057806395d89b41146104a0578063a035b1fe146104ca578063a0712d68146104f4578063a22cb46514610510576101cc565b80637d8966e4146104385780638da5cb5b1461044e57806391b7f5ed14610478576101cc565b806342842e0e1161016e5780636c0360eb1161013d5780636c0360eb146103945780636f8b44b0146103be57806370a08231146103e6578063715018a614610422576101cc565b806342842e0e146102ea57806355f804b3146103065780636352211e1461032e5780636ad1fe021461036a576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461028e57806323b872dd146102b85780633ccfd60b146102d4576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611d6b565b610698565b6040516102039190611db0565b60405180910390f35b348015610217575f80fd5b50610220610729565b60405161022d9190611e53565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611ea6565b6107b9565b6040516102699190611f10565b60405180910390f35b61028c60048036038101906102879190611f53565b610833565b005b348015610299575f80fd5b506102a2610972565b6040516102af9190611fa0565b60405180910390f35b6102d260048036038101906102cd9190611fb9565b610987565b005b3480156102df575f80fd5b506102e8610c95565b005b61030460048036038101906102ff9190611fb9565b610d48565b005b348015610311575f80fd5b5061032c60048036038101906103279190612135565b610d67565b005b348015610339575f80fd5b50610354600480360381019061034f9190611ea6565b610d82565b6040516103619190611f10565b60405180910390f35b348015610375575f80fd5b5061037e610d93565b60405161038b9190611db0565b60405180910390f35b34801561039f575f80fd5b506103a8610da5565b6040516103b59190611e53565b60405180910390f35b3480156103c9575f80fd5b506103e460048036038101906103df9190611ea6565b610e31565b005b3480156103f1575f80fd5b5061040c6004803603810190610407919061217c565b610e43565b6040516104199190611fa0565b60405180910390f35b34801561042d575f80fd5b50610436610ef8565b005b348015610443575f80fd5b5061044c610f0b565b005b348015610459575f80fd5b50610462610f3d565b60405161046f9190611f10565b60405180910390f35b348015610483575f80fd5b5061049e60048036038101906104999190611ea6565b610f65565b005b3480156104ab575f80fd5b506104b4610f77565b6040516104c19190611e53565b60405180910390f35b3480156104d5575f80fd5b506104de611007565b6040516104eb9190611fa0565b60405180910390f35b61050e60048036038101906105099190611ea6565b61100d565b005b34801561051b575f80fd5b50610536600480360381019061053191906121d1565b611154565b005b348015610543575f80fd5b5061055e60048036038101906105599190611f53565b61125a565b005b61057a600480360381019061057591906122ad565b611270565b005b348015610587575f80fd5b506105a2600480360381019061059d9190611ea6565b6112e2565b005b3480156105af575f80fd5b506105ca60048036038101906105c59190611ea6565b6112f4565b6040516105d79190611e53565b60405180910390f35b3480156105eb575f80fd5b506105f4611370565b6040516106019190611fa0565b60405180910390f35b348015610615575f80fd5b50610630600480360381019061062b919061232d565b611376565b60405161063d9190611db0565b60405180910390f35b348015610651575f80fd5b5061066c6004803603810190610667919061217c565b611404565b005b348015610679575f80fd5b50610682611488565b60405161068f9190611fa0565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073890612398565b80601f016020809104026020016040519081016040528092919081815260200182805461076490612398565b80156107af5780601f10610786576101008083540402835291602001916107af565b820191905f5260205f20905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b5f6107c38261148e565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61083d82610d82565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e6114e8565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a816108856114e8565b611376565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f61097b6114ef565b6001545f540303905090565b5f610991826114f7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a03846115ba565b91509150610a198187610a146114e8565b6115dd565b610a6557610a2e86610a296114e8565b611376565b610a64576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610aca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad78686866001611620565b8015610ae1575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ba985610b85888887611626565b7c02000000000000000000000000000000000000000000000000000000001761164d565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c25575f6001850190505f60045f8381526020019081526020015f205403610c23575f548114610c22578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c8d8686866001611677565b505050505050565b610c9d61167d565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610cc2906123f5565b5f6040518083038185875af1925050503d805f8114610cfc576040519150601f19603f3d011682016040523d82523d5f602084013e610d01565b606091505b5050905080610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90612453565b60405180910390fd5b50565b610d6283838360405180602001604052805f815250611270565b505050565b610d6f61167d565b80600d9081610d7e919061260e565b5050565b5f610d8c826114f7565b9050919050565b600c5f9054906101000a900460ff1681565b600d8054610db290612398565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde90612398565b8015610e295780601f10610e0057610100808354040283529160200191610e29565b820191905f5260205f20905b815481529060010190602001808311610e0c57829003601f168201915b505050505081565b610e3961167d565b8060098190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f0061167d565b610f095f611704565b565b610f1361167d565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6d61167d565b80600a8190555050565b606060038054610f8690612398565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612398565b8015610ffd5780601f10610fd457610100808354040283529160200191610ffd565b820191905f5260205f20905b815481529060010190602001808311610fe057829003601f168201915b5050505050905090565b600a5481565b600c5f9054906101000a900460ff1661105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290612727565b60405180910390fd5b600954816110676117c7565b6110719190612772565b11156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906127ef565b60405180910390fd5b600b548111156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90612857565b60405180910390fd5b80600a546111059190612875565b341015611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90612900565b60405180910390fd5b61115133826117d8565b50565b8060075f6111606114e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112096114e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124e9190611db0565b60405180910390a35050565b61126261167d565b61126c82826117d8565b5050565b61127b848484610987565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146112dc576112a584848484611981565b6112db576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6112ea61167d565b80600b8190555050565b60606112ff8261148e565b61133e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113359061298e565b60405180910390fd5b600d61134983611acc565b60405160200161135a929190612ab0565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61140c61167d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361147c575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016114739190611f10565b60405180910390fd5b61148581611704565b50565b600b5481565b5f816114986114ef565b111580156114a657505f5482105b80156114e157505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806115056114ef565b11611583575f54811015611582575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611580575b5f81036115765760045f836001900393508381526020019081526020015f2054905061154f565b80925050506115b5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861163c868684611b96565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611685611b9e565b73ffffffffffffffffffffffffffffffffffffffff166116a3610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614611702576116c6611b9e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116f99190611f10565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6117d06114ef565b5f5403905090565b5f805490505f8203611816576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118225f848385611620565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611894836118855f865f611626565b61188e85611ba5565b1761164d565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b81811461192e5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506118f5565b505f8203611968576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061197c5f848385611677565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119a66114e8565b8786866040518563ffffffff1660e01b81526004016119c89493929190612b30565b6020604051808303815f875af1925050508015611a0357506040513d601f19601f82011682018060405250810190611a009190612b8e565b60015b611a79573d805f8114611a31576040519150601f19603f3d011682016040523d82523d5f602084013e611a36565b606091505b505f815103611a71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f6001611ada84611bb4565b0190505f8167ffffffffffffffff811115611af857611af7612011565b5b6040519080825280601f01601f191660200182016040528015611b2a5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b8b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b8057611b7f612bb9565b5b0494505f8503611b37575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611c10577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611c0657611c05612bb9565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c4d576d04ee2d6d415b85acef81000000008381611c4357611c42612bb9565b5b0492506020810190505b662386f26fc100008310611c7c57662386f26fc100008381611c7257611c71612bb9565b5b0492506010810190505b6305f5e1008310611ca5576305f5e1008381611c9b57611c9a612bb9565b5b0492506008810190505b6127108310611cca576127108381611cc057611cbf612bb9565b5b0492506004810190505b60648310611ced5760648381611ce357611ce2612bb9565b5b0492506002810190505b600a8310611cfc576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d4a81611d16565b8114611d54575f80fd5b50565b5f81359050611d6581611d41565b92915050565b5f60208284031215611d8057611d7f611d0e565b5b5f611d8d84828501611d57565b91505092915050565b5f8115159050919050565b611daa81611d96565b82525050565b5f602082019050611dc35f830184611da1565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e00578082015181840152602081019050611de5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e2582611dc9565b611e2f8185611dd3565b9350611e3f818560208601611de3565b611e4881611e0b565b840191505092915050565b5f6020820190508181035f830152611e6b8184611e1b565b905092915050565b5f819050919050565b611e8581611e73565b8114611e8f575f80fd5b50565b5f81359050611ea081611e7c565b92915050565b5f60208284031215611ebb57611eba611d0e565b5b5f611ec884828501611e92565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611efa82611ed1565b9050919050565b611f0a81611ef0565b82525050565b5f602082019050611f235f830184611f01565b92915050565b611f3281611ef0565b8114611f3c575f80fd5b50565b5f81359050611f4d81611f29565b92915050565b5f8060408385031215611f6957611f68611d0e565b5b5f611f7685828601611f3f565b9250506020611f8785828601611e92565b9150509250929050565b611f9a81611e73565b82525050565b5f602082019050611fb35f830184611f91565b92915050565b5f805f60608486031215611fd057611fcf611d0e565b5b5f611fdd86828701611f3f565b9350506020611fee86828701611f3f565b9250506040611fff86828701611e92565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61204782611e0b565b810181811067ffffffffffffffff8211171561206657612065612011565b5b80604052505050565b5f612078611d05565b9050612084828261203e565b919050565b5f67ffffffffffffffff8211156120a3576120a2612011565b5b6120ac82611e0b565b9050602081019050919050565b828183375f83830152505050565b5f6120d96120d484612089565b61206f565b9050828152602081018484840111156120f5576120f461200d565b5b6121008482856120b9565b509392505050565b5f82601f83011261211c5761211b612009565b5b813561212c8482602086016120c7565b91505092915050565b5f6020828403121561214a57612149611d0e565b5b5f82013567ffffffffffffffff81111561216757612166611d12565b5b61217384828501612108565b91505092915050565b5f6020828403121561219157612190611d0e565b5b5f61219e84828501611f3f565b91505092915050565b6121b081611d96565b81146121ba575f80fd5b50565b5f813590506121cb816121a7565b92915050565b5f80604083850312156121e7576121e6611d0e565b5b5f6121f485828601611f3f565b9250506020612205858286016121bd565b9150509250929050565b5f67ffffffffffffffff82111561222957612228612011565b5b61223282611e0b565b9050602081019050919050565b5f61225161224c8461220f565b61206f565b90508281526020810184848401111561226d5761226c61200d565b5b6122788482856120b9565b509392505050565b5f82601f83011261229457612293612009565b5b81356122a484826020860161223f565b91505092915050565b5f805f80608085870312156122c5576122c4611d0e565b5b5f6122d287828801611f3f565b94505060206122e387828801611f3f565b93505060406122f487828801611e92565b925050606085013567ffffffffffffffff81111561231557612314611d12565b5b61232187828801612280565b91505092959194509250565b5f806040838503121561234357612342611d0e565b5b5f61235085828601611f3f565b925050602061236185828601611f3f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123af57607f821691505b6020821081036123c2576123c161236b565b5b50919050565b5f81905092915050565b50565b5f6123e05f836123c8565b91506123eb826123d2565b5f82019050919050565b5f6123ff826123d5565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f61243d600f83611dd3565b915061244882612409565b602082019050919050565b5f6020820190508181035f83015261246a81612431565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026124cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612492565b6124d78683612492565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61251261250d61250884611e73565b6124ef565b611e73565b9050919050565b5f819050919050565b61252b836124f8565b61253f61253782612519565b84845461249e565b825550505050565b5f90565b612553612547565b61255e818484612522565b505050565b5b81811015612581576125765f8261254b565b600181019050612564565b5050565b601f8211156125c65761259781612471565b6125a084612483565b810160208510156125af578190505b6125c36125bb85612483565b830182612563565b50505b505050565b5f82821c905092915050565b5f6125e65f19846008026125cb565b1980831691505092915050565b5f6125fe83836125d7565b9150826002028217905092915050565b61261782611dc9565b67ffffffffffffffff8111156126305761262f612011565b5b61263a8254612398565b612645828285612585565b5f60209050601f831160018114612676575f8415612664578287015190505b61266e85826125f3565b8655506126d5565b601f19841661268486612471565b5f5b828110156126ab57848901518255600182019150602085019450602081019050612686565b868310156126c857848901516126c4601f8916826125d7565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f742061637469766500000000000000000000000000005f82015250565b5f612711601283611dd3565b915061271c826126dd565b602082019050919050565b5f6020820190508181035f83015261273e81612705565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61277c82611e73565b915061278783611e73565b925082820190508082111561279f5761279e612745565b5b92915050565b7f4d617820537570706c79206578636565646564000000000000000000000000005f82015250565b5f6127d9601383611dd3565b91506127e4826127a5565b602082019050919050565b5f6020820190508181035f830152612806816127cd565b9050919050565b7f4d6178206d696e742065786365656465640000000000000000000000000000005f82015250565b5f612841601183611dd3565b915061284c8261280d565b602082019050919050565b5f6020820190508181035f83015261286e81612835565b9050919050565b5f61287f82611e73565b915061288a83611e73565b925082820261289881611e73565b915082820484148315176128af576128ae612745565b5b5092915050565b7f57726f6e67206d696e74207072696365000000000000000000000000000000005f82015250565b5f6128ea601083611dd3565b91506128f5826128b6565b602082019050919050565b5f6020820190508181035f830152612917816128de565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f612978602f83611dd3565b91506129838261291e565b604082019050919050565b5f6020820190508181035f8301526129a58161296c565b9050919050565b5f81905092915050565b5f81546129c281612398565b6129cc81866129ac565b9450600182165f81146129e657600181146129fb57612a2d565b60ff1983168652811515820286019350612a2d565b612a0485612471565b5f5b83811015612a2557815481890152600182019150602081019050612a06565b838801955050505b50505092915050565b5f612a4082611dc9565b612a4a81856129ac565b9350612a5a818560208601611de3565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612a9a6005836129ac565b9150612aa582612a66565b600582019050919050565b5f612abb82856129b6565b9150612ac78284612a36565b9150612ad282612a8e565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f612b0282612ade565b612b0c8185612ae8565b9350612b1c818560208601611de3565b612b2581611e0b565b840191505092915050565b5f608082019050612b435f830187611f01565b612b506020830186611f01565b612b5d6040830185611f91565b8181036060830152612b6f8184612af8565b905095945050505050565b5f81519050612b8881611d41565b92915050565b5f60208284031215612ba357612ba2611d0e565b5b5f612bb084828501612b7a565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122002a63317dbc2209bcb9b5a8224dfc23d4445d229db79cae0296ced52f296550a64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52566e57743368554d797a5142773264777263427175326e6e33687a61316766764c796157464c68474265342f00000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmRVnWt3hUMyzQBw2dwrcBqu2nn3hza1gfvLyaWFLhGBe4/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d52566e57743368554d797a514277326477726342717532
Arg [3] : 6e6e33687a61316766764c796157464c68474265342f00000000000000000000
Deployed Bytecode Sourcemap
76737:2155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43638:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44540:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51031:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50464:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40291:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54670:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78717:172;;;;;;;;;;;;;:::i;:::-;;57591:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78085:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45933:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76927:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76950:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78477:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41475:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24398:103;;;;;;;;;;;;;:::i;:::-;;78193:72;;;;;;;;;;;;;:::i;:::-;;23723:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78381:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44716:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76852:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77138:356;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51589:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78589:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58382:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78273:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77502:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76814:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51980:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24656:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76892:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43638:639;43723:4;44062:10;44047:25;;:11;:25;;;;:102;;;;44139:10;44124:25;;:11;:25;;;;44047:102;:179;;;;44216:10;44201:25;;:11;:25;;;;44047:179;44027:199;;43638:639;;;:::o;44540:100::-;44594:13;44627:5;44620:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44540:100;:::o;51031:218::-;51107:7;51132:16;51140:7;51132;:16::i;:::-;51127:64;;51157:34;;;;;;;;;;;;;;51127:64;51211:15;:24;51227:7;51211:24;;;;;;;;;;;:30;;;;;;;;;;;;51204:37;;51031:218;;;:::o;50464:408::-;50553:13;50569:16;50577:7;50569;:16::i;:::-;50553:32;;50625:5;50602:28;;:19;:17;:19::i;:::-;:28;;;50598:175;;50650:44;50667:5;50674:19;:17;:19::i;:::-;50650:16;:44::i;:::-;50645:128;;50722:35;;;;;;;;;;;;;;50645:128;50598:175;50818:2;50785:15;:24;50801:7;50785:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50856:7;50852:2;50836:28;;50845:5;50836:28;;;;;;;;;;;;50542:330;50464:408;;:::o;40291:323::-;40352:7;40580:15;:13;:15::i;:::-;40565:12;;40549:13;;:28;:46;40542:53;;40291:323;:::o;54670:2825::-;54812:27;54842;54861:7;54842:18;:27::i;:::-;54812:57;;54927:4;54886:45;;54902:19;54886:45;;;54882:86;;54940:28;;;;;;;;;;;;;;54882:86;54982:27;55011:23;55038:35;55065:7;55038:26;:35::i;:::-;54981:92;;;;55173:68;55198:15;55215:4;55221:19;:17;:19::i;:::-;55173:24;:68::i;:::-;55168:180;;55261:43;55278:4;55284:19;:17;:19::i;:::-;55261:16;:43::i;:::-;55256:92;;55313:35;;;;;;;;;;;;;;55256:92;55168:180;55379:1;55365:16;;:2;:16;;;55361:52;;55390:23;;;;;;;;;;;;;;55361:52;55426:43;55448:4;55454:2;55458:7;55467:1;55426:21;:43::i;:::-;55562:15;55559:160;;;55702:1;55681:19;55674:30;55559:160;56099:18;:24;56118:4;56099:24;;;;;;;;;;;;;;;;56097:26;;;;;;;;;;;;56168:18;:22;56187:2;56168:22;;;;;;;;;;;;;;;;56166:24;;;;;;;;;;;56490:146;56527:2;56576:45;56591:4;56597:2;56601:19;56576:14;:45::i;:::-;36690:8;56548:73;56490:18;:146::i;:::-;56461:17;:26;56479:7;56461:26;;;;;;;;;;;:175;;;;56807:1;36690:8;56756:19;:47;:52;56752:627;;56829:19;56861:1;56851:7;:11;56829:33;;57018:1;56984:17;:30;57002:11;56984:30;;;;;;;;;;;;:35;56980:384;;57122:13;;57107:11;:28;57103:242;;57302:19;57269:17;:30;57287:11;57269:30;;;;;;;;;;;:52;;;;57103:242;56980:384;56810:569;56752:627;57426:7;57422:2;57407:27;;57416:4;57407:27;;;;;;;;;;;;57445:42;57466:4;57472:2;57476:7;57485:1;57445:20;:42::i;:::-;54801:2694;;;54670:2825;;;:::o;78717:172::-;23609:13;:11;:13::i;:::-;78768:12:::1;78786:10;:15;;78809:21;78786:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78767:68;;;78854:7;78846:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;78756:133;78717:172::o:0;57591:193::-;57737:39;57754:4;57760:2;57764:7;57737:39;;;;;;;;;;;;:16;:39::i;:::-;57591:193;;;:::o;78085:100::-;23609:13;:11;:13::i;:::-;78168:9:::1;78158:7;:19;;;;;;:::i;:::-;;78085:100:::0;:::o;45933:152::-;46005:7;46048:27;46067:7;46048:18;:27::i;:::-;46025:52;;45933:152;;;:::o;76927:16::-;;;;;;;;;;;;;:::o;76950:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78477:104::-;23609:13;:11;:13::i;:::-;78562:11:::1;78550:9;:23;;;;78477:104:::0;:::o;41475:233::-;41547:7;41588:1;41571:19;;:5;:19;;;41567:60;;41599:28;;;;;;;;;;;;;;41567:60;35634:13;41645:18;:25;41664:5;41645:25;;;;;;;;;;;;;;;;:55;41638:62;;41475:233;;;:::o;24398:103::-;23609:13;:11;:13::i;:::-;24463:30:::1;24490:1;24463:18;:30::i;:::-;24398:103::o:0;78193:72::-;23609:13;:11;:13::i;:::-;78253:4:::1;;;;;;;;;;;78252:5;78245:4;;:12;;;;;;;;;;;;;;;;;;78193:72::o:0;23723:87::-;23769:7;23796:6;;;;;;;;;;;23789:13;;23723:87;:::o;78381:88::-;23609:13;:11;:13::i;:::-;78454:7:::1;78446:5;:15;;;;78381:88:::0;:::o;44716:104::-;44772:13;44805:7;44798:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44716:104;:::o;76852:33::-;;;;:::o;77138:356::-;77201:4;;;;;;;;;;;77196:39;;77207:28;;;;;;;;;;:::i;:::-;;;;;;;;77196:39;77276:9;;77267:6;77250:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:35;77246:70;;;77287:29;;;;;;;;;;:::i;:::-;;;;;;;;77246:70;77340:8;;77331:6;:17;77327:50;;;77350:27;;;;;;;;;;:::i;:::-;;;;;;;;77327:50;77413:6;77405:5;;:14;;;;:::i;:::-;77392:9;:28;77388:60;;;77422:26;;;;;;;;;;:::i;:::-;;;;;;;;77388:60;77461:25;77467:10;77479:6;77461:5;:25::i;:::-;77138:356;:::o;51589:234::-;51736:8;51684:18;:39;51703:19;:17;:19::i;:::-;51684:39;;;;;;;;;;;;;;;:49;51724:8;51684:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;51796:8;51760:55;;51775:19;:17;:19::i;:::-;51760:55;;;51806:8;51760:55;;;;;;:::i;:::-;;;;;;;;51589:234;;:::o;78589:120::-;23609:13;:11;:13::i;:::-;78676:25:::1;78682:9;78693:7;78676:5;:25::i;:::-;78589:120:::0;;:::o;58382:407::-;58557:31;58570:4;58576:2;58580:7;58557:12;:31::i;:::-;58621:1;58603:2;:14;;;:19;58599:183;;58642:56;58673:4;58679:2;58683:7;58692:5;58642:30;:56::i;:::-;58637:145;;58726:40;;;;;;;;;;;;;;58637:145;58599:183;58382:407;;;;:::o;78273:100::-;23609:13;:11;:13::i;:::-;78355:10:::1;78344:8;:21;;;;78273:100:::0;:::o;77502:350::-;77620:13;77673:16;77681:7;77673;:16::i;:::-;77651:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;77806:7;77815:18;:7;:16;:18::i;:::-;77789:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77775:69;;77502:350;;;:::o;76814:31::-;;;;:::o;51980:164::-;52077:4;52101:18;:25;52120:5;52101:25;;;;;;;;;;;;;;;:35;52127:8;52101:35;;;;;;;;;;;;;;;;;;;;;;;;;52094:42;;51980:164;;;;:::o;24656:220::-;23609:13;:11;:13::i;:::-;24761:1:::1;24741:22;;:8;:22;;::::0;24737:93:::1;;24815:1;24787:31;;;;;;;;;;;:::i;:::-;;;;;;;;24737:93;24840:28;24859:8;24840:18;:28::i;:::-;24656:220:::0;:::o;76892:28::-;;;;:::o;52402:282::-;52467:4;52523:7;52504:15;:13;:15::i;:::-;:26;;:66;;;;;52557:13;;52547:7;:23;52504:66;:153;;;;;52656:1;36410:8;52608:17;:26;52626:7;52608:26;;;;;;;;;;;;:44;:49;52504:153;52484:173;;52402:282;;;:::o;74710:105::-;74770:7;74797:10;74790:17;;74710:105;:::o;77976:101::-;78041:7;78068:1;78061:8;;77976:101;:::o;47088:1275::-;47155:7;47175:12;47190:7;47175:22;;47258:4;47239:15;:13;:15::i;:::-;:23;47235:1061;;47292:13;;47285:4;:20;47281:1015;;;47330:14;47347:17;:23;47365:4;47347:23;;;;;;;;;;;;47330:40;;47464:1;36410:8;47436:6;:24;:29;47432:845;;48101:113;48118:1;48108:6;:11;48101:113;;48161:17;:25;48179:6;;;;;;;48161:25;;;;;;;;;;;;48152:34;;48101:113;;;48247:6;48240:13;;;;;;47432:845;47307:989;47281:1015;47235:1061;48324:31;;;;;;;;;;;;;;47088:1275;;;;:::o;53565:485::-;53667:27;53696:23;53737:38;53778:15;:24;53794:7;53778:24;;;;;;;;;;;53737:65;;53955:18;53932:41;;54012:19;54006:26;53987:45;;53917:126;53565:485;;;:::o;52793:659::-;52942:11;53107:16;53100:5;53096:28;53087:37;;53267:16;53256:9;53252:32;53239:45;;53417:15;53406:9;53403:30;53395:5;53384:9;53381:20;53378:56;53368:66;;52793:659;;;;;:::o;59451:159::-;;;;;:::o;74019:311::-;74154:7;74174:16;36814:3;74200:19;:41;;74174:68;;36814:3;74268:31;74279:4;74285:2;74289:9;74268:10;:31::i;:::-;74260:40;;:62;;74253:69;;;74019:311;;;;;:::o;48911:450::-;48991:14;49159:16;49152:5;49148:28;49139:37;;49336:5;49322:11;49297:23;49293:41;49290:52;49283:5;49280:63;49270:73;;48911:450;;;;:::o;60275:158::-;;;;;:::o;23888:166::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23944:103;;24022:12;:10;:12::i;:::-;23995:40;;;;;;;;;;;:::i;:::-;;;;;;;;23944:103;23888:166::o;25036:191::-;25110:16;25129:6;;;;;;;;;;;25110:25;;25155:8;25146:6;;:17;;;;;;;;;;;;;;;;;;25210:8;25179:40;;25200:8;25179:40;;;;;;;;;;;;25099:128;25036:191;:::o;40712:296::-;40767:7;40974:15;:13;:15::i;:::-;40958:13;;:31;40951:38;;40712:296;:::o;62051:2966::-;62124:20;62147:13;;62124:36;;62187:1;62175:8;:13;62171:44;;62197:18;;;;;;;;;;;;;;62171:44;62228:61;62258:1;62262:2;62266:12;62280:8;62228:21;:61::i;:::-;62772:1;35772:2;62742:1;:26;;62741:32;62729:8;:45;62703:18;:22;62722:2;62703:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;63051:139;63088:2;63142:33;63165:1;63169:2;63173:1;63142:14;:33::i;:::-;63109:30;63130:8;63109:20;:30::i;:::-;:66;63051:18;:139::i;:::-;63017:17;:31;63035:12;63017:31;;;;;;;;;;;:173;;;;63207:16;63238:11;63267:8;63252:12;:23;63238:37;;63788:16;63784:2;63780:25;63768:37;;64160:12;64120:8;64079:1;64017:25;63958:1;63897;63870:335;64531:1;64517:12;64513:20;64471:346;64572:3;64563:7;64560:16;64471:346;;64790:7;64780:8;64777:1;64750:25;64747:1;64744;64739:59;64625:1;64616:7;64612:15;64601:26;;64471:346;;;64475:77;64862:1;64850:8;:13;64846:45;;64872:19;;;;;;;;;;;;;;64846:45;64924:3;64908:13;:19;;;;62477:2462;;64949:60;64978:1;64982:2;64986:12;65000:8;64949:20;:60::i;:::-;62113:2904;62051:2966;;:::o;60873:716::-;61036:4;61082:2;61057:45;;;61103:19;:17;:19::i;:::-;61124:4;61130:7;61139:5;61057:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;61053:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61357:1;61340:6;:13;:18;61336:235;;61386:40;;;;;;;;;;;;;;61336:235;61529:6;61523:13;61514:6;61510:2;61506:15;61499:38;61053:529;61226:54;;;61216:64;;;:6;:64;;;;61209:71;;;60873:716;;;;;;:::o;18609:718::-;18665:13;18716:14;18753:1;18733:17;18744:5;18733:10;:17::i;:::-;:21;18716:38;;18769:20;18803:6;18792:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18769:41;;18825:11;18954:6;18950:2;18946:15;18938:6;18934:28;18927:35;;18991:290;18998:4;18991:290;;;19023:5;;;;;;;;19165:10;19160:2;19153:5;19149:14;19144:32;19139:3;19131:46;19223:2;19214:11;;;;;;:::i;:::-;;;;;19257:1;19248:5;:10;18991:290;19244:21;18991:290;19302:6;19295:13;;;;;18609:718;;;:::o;73720:147::-;73857:6;73720:147;;;;;:::o;21839:98::-;21892:7;21919:10;21912:17;;21839:98;:::o;49463:324::-;49533:14;49766:1;49756:8;49753:15;49727:24;49723:46;49713:56;;49463:324;;;:::o;15013:948::-;15066:7;15086:14;15103:1;15086:18;;15153:8;15144:5;:17;15140:106;;15191:8;15182:17;;;;;;:::i;:::-;;;;;15228:2;15218:12;;;;15140:106;15273:8;15264:5;:17;15260:106;;15311:8;15302:17;;;;;;:::i;:::-;;;;;15348:2;15338:12;;;;15260:106;15393:8;15384:5;:17;15380:106;;15431:8;15422:17;;;;;;:::i;:::-;;;;;15468:2;15458:12;;;;15380:106;15513:7;15504:5;:16;15500:103;;15550:7;15541:16;;;;;;:::i;:::-;;;;;15586:1;15576:11;;;;15500:103;15630:7;15621:5;:16;15617:103;;15667:7;15658:16;;;;;;:::i;:::-;;;;;15703:1;15693:11;;;;15617:103;15747:7;15738:5;:16;15734:103;;15784:7;15775:16;;;;;;:::i;:::-;;;;;15820:1;15810:11;;;;15734:103;15864:7;15855:5;:16;15851:68;;15902:1;15892:11;;;;15851:68;15947:6;15940:13;;;15013:948;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:147::-;12704:11;12741:3;12726:18;;12603:147;;;;:::o;12756:114::-;;:::o;12876:398::-;13035:3;13056:83;13137:1;13132:3;13056:83;:::i;:::-;13049:90;;13148:93;13237:3;13148:93;:::i;:::-;13266:1;13261:3;13257:11;13250:18;;12876:398;;;:::o;13280:379::-;13464:3;13486:147;13629:3;13486:147;:::i;:::-;13479:154;;13650:3;13643:10;;13280:379;;;:::o;13665:165::-;13805:17;13801:1;13793:6;13789:14;13782:41;13665:165;:::o;13836:366::-;13978:3;13999:67;14063:2;14058:3;13999:67;:::i;:::-;13992:74;;14075:93;14164:3;14075:93;:::i;:::-;14193:2;14188:3;14184:12;14177:19;;13836:366;;;:::o;14208:419::-;14374:4;14412:2;14401:9;14397:18;14389:26;;14461:9;14455:4;14451:20;14447:1;14436:9;14432:17;14425:47;14489:131;14615:4;14489:131;:::i;:::-;14481:139;;14208:419;;;:::o;14633:141::-;14682:4;14705:3;14697:11;;14728:3;14725:1;14718:14;14762:4;14759:1;14749:18;14741:26;;14633:141;;;:::o;14780:93::-;14817:6;14864:2;14859;14852:5;14848:14;14844:23;14834:33;;14780:93;;;:::o;14879:107::-;14923:8;14973:5;14967:4;14963:16;14942:37;;14879:107;;;;:::o;14992:393::-;15061:6;15111:1;15099:10;15095:18;15134:97;15164:66;15153:9;15134:97;:::i;:::-;15252:39;15282:8;15271:9;15252:39;:::i;:::-;15240:51;;15324:4;15320:9;15313:5;15309:21;15300:30;;15373:4;15363:8;15359:19;15352:5;15349:30;15339:40;;15068:317;;14992:393;;;;;:::o;15391:60::-;15419:3;15440:5;15433:12;;15391:60;;;:::o;15457:142::-;15507:9;15540:53;15558:34;15567:24;15585:5;15567:24;:::i;:::-;15558:34;:::i;:::-;15540:53;:::i;:::-;15527:66;;15457:142;;;:::o;15605:75::-;15648:3;15669:5;15662:12;;15605:75;;;:::o;15686:269::-;15796:39;15827:7;15796:39;:::i;:::-;15857:91;15906:41;15930:16;15906:41;:::i;:::-;15898:6;15891:4;15885:11;15857:91;:::i;:::-;15851:4;15844:105;15762:193;15686:269;;;:::o;15961:73::-;16006:3;15961:73;:::o;16040:189::-;16117:32;;:::i;:::-;16158:65;16216:6;16208;16202:4;16158:65;:::i;:::-;16093:136;16040:189;;:::o;16235:186::-;16295:120;16312:3;16305:5;16302:14;16295:120;;;16366:39;16403:1;16396:5;16366:39;:::i;:::-;16339:1;16332:5;16328:13;16319:22;;16295:120;;;16235:186;;:::o;16427:543::-;16528:2;16523:3;16520:11;16517:446;;;16562:38;16594:5;16562:38;:::i;:::-;16646:29;16664:10;16646:29;:::i;:::-;16636:8;16632:44;16829:2;16817:10;16814:18;16811:49;;;16850:8;16835:23;;16811:49;16873:80;16929:22;16947:3;16929:22;:::i;:::-;16919:8;16915:37;16902:11;16873:80;:::i;:::-;16532:431;;16517:446;16427:543;;;:::o;16976:117::-;17030:8;17080:5;17074:4;17070:16;17049:37;;16976:117;;;;:::o;17099:169::-;17143:6;17176:51;17224:1;17220:6;17212:5;17209:1;17205:13;17176:51;:::i;:::-;17172:56;17257:4;17251;17247:15;17237:25;;17150:118;17099:169;;;;:::o;17273:295::-;17349:4;17495:29;17520:3;17514:4;17495:29;:::i;:::-;17487:37;;17557:3;17554:1;17550:11;17544:4;17541:21;17533:29;;17273:295;;;;:::o;17573:1395::-;17690:37;17723:3;17690:37;:::i;:::-;17792:18;17784:6;17781:30;17778:56;;;17814:18;;:::i;:::-;17778:56;17858:38;17890:4;17884:11;17858:38;:::i;:::-;17943:67;18003:6;17995;17989:4;17943:67;:::i;:::-;18037:1;18061:4;18048:17;;18093:2;18085:6;18082:14;18110:1;18105:618;;;;18767:1;18784:6;18781:77;;;18833:9;18828:3;18824:19;18818:26;18809:35;;18781:77;18884:67;18944:6;18937:5;18884:67;:::i;:::-;18878:4;18871:81;18740:222;18075:887;;18105:618;18157:4;18153:9;18145:6;18141:22;18191:37;18223:4;18191:37;:::i;:::-;18250:1;18264:208;18278:7;18275:1;18272:14;18264:208;;;18357:9;18352:3;18348:19;18342:26;18334:6;18327:42;18408:1;18400:6;18396:14;18386:24;;18455:2;18444:9;18440:18;18427:31;;18301:4;18298:1;18294:12;18289:17;;18264:208;;;18500:6;18491:7;18488:19;18485:179;;;18558:9;18553:3;18549:19;18543:26;18601:48;18643:4;18635:6;18631:17;18620:9;18601:48;:::i;:::-;18593:6;18586:64;18508:156;18485:179;18710:1;18706;18698:6;18694:14;18690:22;18684:4;18677:36;18112:611;;;18075:887;;17665:1303;;;17573:1395;;:::o;18974:168::-;19114:20;19110:1;19102:6;19098:14;19091:44;18974:168;:::o;19148:366::-;19290:3;19311:67;19375:2;19370:3;19311:67;:::i;:::-;19304:74;;19387:93;19476:3;19387:93;:::i;:::-;19505:2;19500:3;19496:12;19489:19;;19148:366;;;:::o;19520:419::-;19686:4;19724:2;19713:9;19709:18;19701:26;;19773:9;19767:4;19763:20;19759:1;19748:9;19744:17;19737:47;19801:131;19927:4;19801:131;:::i;:::-;19793:139;;19520:419;;;:::o;19945:180::-;19993:77;19990:1;19983:88;20090:4;20087:1;20080:15;20114:4;20111:1;20104:15;20131:191;20171:3;20190:20;20208:1;20190:20;:::i;:::-;20185:25;;20224:20;20242:1;20224:20;:::i;:::-;20219:25;;20267:1;20264;20260:9;20253:16;;20288:3;20285:1;20282:10;20279:36;;;20295:18;;:::i;:::-;20279:36;20131:191;;;;:::o;20328:169::-;20468:21;20464:1;20456:6;20452:14;20445:45;20328:169;:::o;20503:366::-;20645:3;20666:67;20730:2;20725:3;20666:67;:::i;:::-;20659:74;;20742:93;20831:3;20742:93;:::i;:::-;20860:2;20855:3;20851:12;20844:19;;20503:366;;;:::o;20875:419::-;21041:4;21079:2;21068:9;21064:18;21056:26;;21128:9;21122:4;21118:20;21114:1;21103:9;21099:17;21092:47;21156:131;21282:4;21156:131;:::i;:::-;21148:139;;20875:419;;;:::o;21300:167::-;21440:19;21436:1;21428:6;21424:14;21417:43;21300:167;:::o;21473:366::-;21615:3;21636:67;21700:2;21695:3;21636:67;:::i;:::-;21629:74;;21712:93;21801:3;21712:93;:::i;:::-;21830:2;21825:3;21821:12;21814:19;;21473:366;;;:::o;21845:419::-;22011:4;22049:2;22038:9;22034:18;22026:26;;22098:9;22092:4;22088:20;22084:1;22073:9;22069:17;22062:47;22126:131;22252:4;22126:131;:::i;:::-;22118:139;;21845:419;;;:::o;22270:410::-;22310:7;22333:20;22351:1;22333:20;:::i;:::-;22328:25;;22367:20;22385:1;22367:20;:::i;:::-;22362:25;;22422:1;22419;22415:9;22444:30;22462:11;22444:30;:::i;:::-;22433:41;;22623:1;22614:7;22610:15;22607:1;22604:22;22584:1;22577:9;22557:83;22534:139;;22653:18;;:::i;:::-;22534:139;22318:362;22270:410;;;;:::o;22686:166::-;22826:18;22822:1;22814:6;22810:14;22803:42;22686:166;:::o;22858:366::-;23000:3;23021:67;23085:2;23080:3;23021:67;:::i;:::-;23014:74;;23097:93;23186:3;23097:93;:::i;:::-;23215:2;23210:3;23206:12;23199:19;;22858:366;;;:::o;23230:419::-;23396:4;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:131;23637:4;23511:131;:::i;:::-;23503:139;;23230:419;;;:::o;23655:234::-;23795:34;23791:1;23783:6;23779:14;23772:58;23864:17;23859:2;23851:6;23847:15;23840:42;23655:234;:::o;23895:366::-;24037:3;24058:67;24122:2;24117:3;24058:67;:::i;:::-;24051:74;;24134:93;24223:3;24134:93;:::i;:::-;24252:2;24247:3;24243:12;24236:19;;23895:366;;;:::o;24267:419::-;24433:4;24471:2;24460:9;24456:18;24448:26;;24520:9;24514:4;24510:20;24506:1;24495:9;24491:17;24484:47;24548:131;24674:4;24548:131;:::i;:::-;24540:139;;24267:419;;;:::o;24692:148::-;24794:11;24831:3;24816:18;;24692:148;;;;:::o;24870:874::-;24973:3;25010:5;25004:12;25039:36;25065:9;25039:36;:::i;:::-;25091:89;25173:6;25168:3;25091:89;:::i;:::-;25084:96;;25211:1;25200:9;25196:17;25227:1;25222:166;;;;25402:1;25397:341;;;;25189:549;;25222:166;25306:4;25302:9;25291;25287:25;25282:3;25275:38;25368:6;25361:14;25354:22;25346:6;25342:35;25337:3;25333:45;25326:52;;25222:166;;25397:341;25464:38;25496:5;25464:38;:::i;:::-;25524:1;25538:154;25552:6;25549:1;25546:13;25538:154;;;25626:7;25620:14;25616:1;25611:3;25607:11;25600:35;25676:1;25667:7;25663:15;25652:26;;25574:4;25571:1;25567:12;25562:17;;25538:154;;;25721:6;25716:3;25712:16;25705:23;;25404:334;;25189:549;;24977:767;;24870:874;;;;:::o;25750:390::-;25856:3;25884:39;25917:5;25884:39;:::i;:::-;25939:89;26021:6;26016:3;25939:89;:::i;:::-;25932:96;;26037:65;26095:6;26090:3;26083:4;26076:5;26072:16;26037:65;:::i;:::-;26127:6;26122:3;26118:16;26111:23;;25860:280;25750:390;;;;:::o;26146:155::-;26286:7;26282:1;26274:6;26270:14;26263:31;26146:155;:::o;26307:400::-;26467:3;26488:84;26570:1;26565:3;26488:84;:::i;:::-;26481:91;;26581:93;26670:3;26581:93;:::i;:::-;26699:1;26694:3;26690:11;26683:18;;26307:400;;;:::o;26713:695::-;26991:3;27013:92;27101:3;27092:6;27013:92;:::i;:::-;27006:99;;27122:95;27213:3;27204:6;27122:95;:::i;:::-;27115:102;;27234:148;27378:3;27234:148;:::i;:::-;27227:155;;27399:3;27392:10;;26713:695;;;;;:::o;27414:98::-;27465:6;27499:5;27493:12;27483:22;;27414:98;;;:::o;27518:168::-;27601:11;27635:6;27630:3;27623:19;27675:4;27670:3;27666:14;27651:29;;27518:168;;;;:::o;27692:373::-;27778:3;27806:38;27838:5;27806:38;:::i;:::-;27860:70;27923:6;27918:3;27860:70;:::i;:::-;27853:77;;27939:65;27997:6;27992:3;27985:4;27978:5;27974:16;27939:65;:::i;:::-;28029:29;28051:6;28029:29;:::i;:::-;28024:3;28020:39;28013:46;;27782:283;27692:373;;;;:::o;28071:640::-;28266:4;28304:3;28293:9;28289:19;28281:27;;28318:71;28386:1;28375:9;28371:17;28362:6;28318:71;:::i;:::-;28399:72;28467:2;28456:9;28452:18;28443:6;28399:72;:::i;:::-;28481;28549:2;28538:9;28534:18;28525:6;28481:72;:::i;:::-;28600:9;28594:4;28590:20;28585:2;28574:9;28570:18;28563:48;28628:76;28699:4;28690:6;28628:76;:::i;:::-;28620:84;;28071:640;;;;;;;:::o;28717:141::-;28773:5;28804:6;28798:13;28789:22;;28820:32;28846:5;28820:32;:::i;:::-;28717:141;;;;:::o;28864:349::-;28933:6;28982:2;28970:9;28961:7;28957:23;28953:32;28950:119;;;28988:79;;:::i;:::-;28950:119;29108:1;29133:63;29188:7;29179:6;29168:9;29164:22;29133:63;:::i;:::-;29123:73;;29079:127;28864:349;;;;:::o;29219:180::-;29267:77;29264:1;29257:88;29364:4;29361:1;29354:15;29388:4;29385:1;29378:15
Swarm Source
ipfs://02a63317dbc2209bcb9b5a8224dfc23d4445d229db79cae0296ced52f296550a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.