ETH Price: $3,273.39 (-0.05%)
Gas: 3 Gwei

Rarity Jump Genesis (RJG)
 

Overview

TokenID

808

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Genesis of a NFT game collection on Ethereum. The more you jump, the rarer you'll become!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RarityJumpGenesis

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-07
*/

// rarityjump.xyz

// x.com/RarityJump

// Rarity Jump is a concept where players can create the value of their own NFTs based on their gaming skills.

// After the minting begins, players have approximately 4 hours during which we will record their highest scores (based on TokenID) in the game.

// At the end of the 4 hours, rarities will be determined based on the points earned. This competitive system will leave a positive impact on the traditional NFT market.

// Our goal is to merge a community-driven and fully transparent gaming community with NFTs. 

// Remember, this is a GENESIS collection, and based on the value of your NFTs at the end of the game, you will earn extra allocations and rights in the next challenge.


// SPDX-License-Identifier: MIT
// 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/RarityJumpGenesis.sol


pragma solidity ^0.8.9;




contract RarityJumpGenesis is ERC721A, Ownable {
    uint256 public cost = 0.0069 ether;
    uint256 public maxSupply = 1000;
    uint256 public maxPerTx = 5;
    bool public sale = false;

    error SaleNotActive();
    error MaxSupplyReached();
    error MaxPerTxReached();
    error NotEnoughETH();

    constructor() ERC721A("Rarity Jump Genesis", "RJG") Ownable(msg.sender)
    {}


    function mint(uint256 _amount) external payable {
        if (!sale) revert SaleNotActive();
        if (_totalMinted() + _amount >= maxSupply) revert MaxSupplyReached();
        if (_amount >= maxPerTx) revert MaxPerTxReached();
        if (msg.value < cost * _amount) revert NotEnoughETH();

        _mint(msg.sender, _amount);
    }

    function airdrop(address _to, uint256 _amount) external onlyOwner {
        require(totalSupply() + _amount < maxSupply, "Beyond max supply");
        _mint(_to, _amount);
    }

    //METADATA
    string public baseURI;
    string private uriSuffix = ".json";

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix));
    }

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string calldata _newURI) external onlyOwner {
        baseURI = _newURI;
    }

    function setMaxPerTx(uint256 _maxPerTx) external onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function toggleSale() external onlyOwner {
        sale = !sale;
    }

    //WITHDRAW
    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxPerTxReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotEnoughETH","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":"SaleNotActive","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":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_newURI","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":"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"}]

60806040526618838370f340006009556103e8600a556005600b555f600c5f6101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9081620000799190620004e9565b5034801562000086575f80fd5b50336040518060400160405280601381526020017f526172697479204a756d702047656e65736973000000000000000000000000008152506040518060400160405280600381526020017f524a4700000000000000000000000000000000000000000000000000000000008152508160029081620001059190620004e9565b508060039081620001179190620004e9565b5062000128620001ba60201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001a2575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000199919062000610565b60405180910390fd5b620001b381620001c260201b60201c565b506200062b565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200030157607f821691505b602082108103620003175762000316620002bc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200037b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200033e565b6200038786836200033e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003d1620003cb620003c5846200039f565b620003a8565b6200039f565b9050919050565b5f819050919050565b620003ec83620003b1565b62000404620003fb82620003d8565b8484546200034a565b825550505050565b5f90565b6200041a6200040c565b62000427818484620003e1565b505050565b5b818110156200044e57620004425f8262000410565b6001810190506200042d565b5050565b601f8211156200049d5762000467816200031d565b62000472846200032f565b8101602085101562000482578190505b6200049a62000491856200032f565b8301826200042c565b50505b505050565b5f82821c905092915050565b5f620004bf5f1984600802620004a2565b1980831691505092915050565b5f620004d98383620004ae565b9150826002028217905092915050565b620004f48262000285565b67ffffffffffffffff81111562000510576200050f6200028f565b5b6200051c8254620002e9565b6200052982828562000452565b5f60209050601f8311600181146200055f575f84156200054a578287015190505b620005568582620004cc565b865550620005c5565b601f1984166200056f866200031d565b5f5b82811015620005985784890151825560018201915060208501945060208101905062000571565b86831015620005b85784890151620005b4601f891682620004ae565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620005f882620005cd565b9050919050565b6200060a81620005ec565b82525050565b5f602082019050620006255f830184620005ff565b92915050565b61278380620006395f395ff3fe6080604052600436106101b6575f3560e01c8063715018a6116100eb578063b88d4fde11610089578063d5abeb0111610063578063d5abeb011461057a578063e985e9c5146105a4578063f2fde38b146105e0578063f968adbe14610608576101b6565b8063b88d4fde146104fa578063c6f6f21614610516578063c87b56dd1461053e576101b6565b80638da5cb5b116100c55780638da5cb5b1461046257806395d89b411461048c578063a0712d68146104b6578063a22cb465146104d2576101b6565b8063715018a61461040e5780637d8966e4146104245780638ba4cc3c1461043a576101b6565b80633ccfd60b116101585780636352211e116101325780636352211e146103425780636ad1fe021461037e5780636c0360eb146103a857806370a08231146103d2576101b6565b80633ccfd60b146102e857806342842e0e146102fe57806355f804b31461031a576101b6565b8063095ea7b311610194578063095ea7b31461025c57806313faede61461027857806318160ddd146102a257806323b872dd146102cc576101b6565b806301ffc9a7146101ba57806306fdde03146101f6578063081812fc14610220575b5f80fd5b3480156101c5575f80fd5b506101e060048036038101906101db9190611b42565b610632565b6040516101ed9190611b87565b60405180910390f35b348015610201575f80fd5b5061020a6106c3565b6040516102179190611c2a565b60405180910390f35b34801561022b575f80fd5b5061024660048036038101906102419190611c7d565b610753565b6040516102539190611ce7565b60405180910390f35b61027660048036038101906102719190611d2a565b6107cd565b005b348015610283575f80fd5b5061028c61090c565b6040516102999190611d77565b60405180910390f35b3480156102ad575f80fd5b506102b6610912565b6040516102c39190611d77565b60405180910390f35b6102e660048036038101906102e19190611d90565b610927565b005b3480156102f3575f80fd5b506102fc610c35565b005b61031860048036038101906103139190611d90565b610ce8565b005b348015610325575f80fd5b50610340600480360381019061033b9190611e41565b610d07565b005b34801561034d575f80fd5b5061036860048036038101906103639190611c7d565b610d25565b6040516103759190611ce7565b60405180910390f35b348015610389575f80fd5b50610392610d36565b60405161039f9190611b87565b60405180910390f35b3480156103b3575f80fd5b506103bc610d48565b6040516103c99190611c2a565b60405180910390f35b3480156103dd575f80fd5b506103f860048036038101906103f39190611e8c565b610dd4565b6040516104059190611d77565b60405180910390f35b348015610419575f80fd5b50610422610e89565b005b34801561042f575f80fd5b50610438610e9c565b005b348015610445575f80fd5b50610460600480360381019061045b9190611d2a565b610ece565b005b34801561046d575f80fd5b50610476610f3a565b6040516104839190611ce7565b60405180910390f35b348015610497575f80fd5b506104a0610f62565b6040516104ad9190611c2a565b60405180910390f35b6104d060048036038101906104cb9190611c7d565b610ff2565b005b3480156104dd575f80fd5b506104f860048036038101906104f39190611ee1565b611113565b005b610514600480360381019061050f9190612047565b611219565b005b348015610521575f80fd5b5061053c60048036038101906105379190611c7d565b61128b565b005b348015610549575f80fd5b50610564600480360381019061055f9190611c7d565b61129d565b6040516105719190611c2a565b60405180910390f35b348015610585575f80fd5b5061058e611313565b60405161059b9190611d77565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c591906120c7565b611319565b6040516105d79190611b87565b60405180910390f35b3480156105eb575f80fd5b5061060660048036038101906106019190611e8c565b6113a7565b005b348015610613575f80fd5b5061061c61142b565b6040516106299190611d77565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106bc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106d290612132565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe90612132565b80156107495780601f1061072057610100808354040283529160200191610749565b820191905f5260205f20905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b5f61075d82611431565b610793576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6107d782610d25565b90508073ffffffffffffffffffffffffffffffffffffffff166107f861148b565b73ffffffffffffffffffffffffffffffffffffffff161461085b576108248161081f61148b565b611319565b61085a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b5f61091b611492565b6001545f540303905090565b5f6109318261149a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610998576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806109a38461155d565b915091506109b981876109b461148b565b611580565b610a05576109ce866109c961148b565b611319565b610a04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a6a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a7786868660016115c3565b8015610a81575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610b4985610b258888876115c9565b7c0200000000000000000000000000000000000000000000000000000000176115f0565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610bc5575f6001850190505f60045f8381526020019081526020015f205403610bc3575f548114610bc2578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c2d868686600161161a565b505050505050565b610c3d611620565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610c629061218f565b5f6040518083038185875af1925050503d805f8114610c9c576040519150601f19603f3d011682016040523d82523d5f602084013e610ca1565b606091505b5050905080610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906121ed565b60405180910390fd5b50565b610d0283838360405180602001604052805f815250611219565b505050565b610d0f611620565b8181600d9182610d209291906123b2565b505050565b5f610d2f8261149a565b9050919050565b600c5f9054906101000a900460ff1681565b600d8054610d5590612132565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190612132565b8015610dcc5780601f10610da357610100808354040283529160200191610dcc565b820191905f5260205f20905b815481529060010190602001808311610daf57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e91611620565b610e9a5f6116a7565b565b610ea4611620565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b610ed6611620565b600a5481610ee2610912565b610eec91906124ac565b10610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390612529565b60405180910390fd5b610f36828261176a565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f7190612132565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d90612132565b8015610fe85780601f10610fbf57610100808354040283529160200191610fe8565b820191905f5260205f20905b815481529060010190602001808311610fcb57829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff16611037576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611043611913565b61104d91906124ac565b10611084576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5481106110bf576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806009546110cd9190612547565b341015611106576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611110338261176a565b50565b8060075f61111f61148b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111c861148b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120d9190611b87565b60405180910390a35050565b611224848484610927565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146112855761124e84848484611924565b611284576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611293611620565b80600b8190555050565b60606112a882611431565b6112de576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d6112e983611a6f565b600e6040516020016112fd93929190612642565b6040516020818303038152906040529050919050565b600a5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6113af611620565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361141f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016114169190611ce7565b60405180910390fd5b611428816116a7565b50565b600b5481565b5f8161143b611492565b1115801561144957505f5482105b801561148457505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806114a8611492565b11611526575f54811015611525575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611523575b5f81036115195760045f836001900393508381526020019081526020015f205490506114f2565b8092505050611558565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86115df868684611abe565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611628611ac6565b73ffffffffffffffffffffffffffffffffffffffff16611646610f3a565b73ffffffffffffffffffffffffffffffffffffffff16146116a557611669611ac6565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161169c9190611ce7565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f82036117a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117b45f8483856115c3565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611826836118175f865f6115c9565b61182085611acd565b176115f0565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146118c05780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611887565b505f82036118fa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061190e5f84838561161a565b505050565b5f61191c611492565b5f5403905090565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261194961148b565b8786866040518563ffffffff1660e01b815260040161196b94939291906126c4565b6020604051808303815f875af19250505080156119a657506040513d601f19601f820116820180604052508101906119a39190612722565b60015b611a1c573d805f81146119d4576040519150601f19603f3d011682016040523d82523d5f602084013e6119d9565b606091505b505f815103611a14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611aa957600184039350600a81066030018453600a8104905080611a87575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b2181611aed565b8114611b2b575f80fd5b50565b5f81359050611b3c81611b18565b92915050565b5f60208284031215611b5757611b56611ae5565b5b5f611b6484828501611b2e565b91505092915050565b5f8115159050919050565b611b8181611b6d565b82525050565b5f602082019050611b9a5f830184611b78565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611bd7578082015181840152602081019050611bbc565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bfc82611ba0565b611c068185611baa565b9350611c16818560208601611bba565b611c1f81611be2565b840191505092915050565b5f6020820190508181035f830152611c428184611bf2565b905092915050565b5f819050919050565b611c5c81611c4a565b8114611c66575f80fd5b50565b5f81359050611c7781611c53565b92915050565b5f60208284031215611c9257611c91611ae5565b5b5f611c9f84828501611c69565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cd182611ca8565b9050919050565b611ce181611cc7565b82525050565b5f602082019050611cfa5f830184611cd8565b92915050565b611d0981611cc7565b8114611d13575f80fd5b50565b5f81359050611d2481611d00565b92915050565b5f8060408385031215611d4057611d3f611ae5565b5b5f611d4d85828601611d16565b9250506020611d5e85828601611c69565b9150509250929050565b611d7181611c4a565b82525050565b5f602082019050611d8a5f830184611d68565b92915050565b5f805f60608486031215611da757611da6611ae5565b5b5f611db486828701611d16565b9350506020611dc586828701611d16565b9250506040611dd686828701611c69565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611e0157611e00611de0565b5b8235905067ffffffffffffffff811115611e1e57611e1d611de4565b5b602083019150836001820283011115611e3a57611e39611de8565b5b9250929050565b5f8060208385031215611e5757611e56611ae5565b5b5f83013567ffffffffffffffff811115611e7457611e73611ae9565b5b611e8085828601611dec565b92509250509250929050565b5f60208284031215611ea157611ea0611ae5565b5b5f611eae84828501611d16565b91505092915050565b611ec081611b6d565b8114611eca575f80fd5b50565b5f81359050611edb81611eb7565b92915050565b5f8060408385031215611ef757611ef6611ae5565b5b5f611f0485828601611d16565b9250506020611f1585828601611ecd565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611f5982611be2565b810181811067ffffffffffffffff82111715611f7857611f77611f23565b5b80604052505050565b5f611f8a611adc565b9050611f968282611f50565b919050565b5f67ffffffffffffffff821115611fb557611fb4611f23565b5b611fbe82611be2565b9050602081019050919050565b828183375f83830152505050565b5f611feb611fe684611f9b565b611f81565b90508281526020810184848401111561200757612006611f1f565b5b612012848285611fcb565b509392505050565b5f82601f83011261202e5761202d611de0565b5b813561203e848260208601611fd9565b91505092915050565b5f805f806080858703121561205f5761205e611ae5565b5b5f61206c87828801611d16565b945050602061207d87828801611d16565b935050604061208e87828801611c69565b925050606085013567ffffffffffffffff8111156120af576120ae611ae9565b5b6120bb8782880161201a565b91505092959194509250565b5f80604083850312156120dd576120dc611ae5565b5b5f6120ea85828601611d16565b92505060206120fb85828601611d16565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061214957607f821691505b60208210810361215c5761215b612105565b5b50919050565b5f81905092915050565b50565b5f61217a5f83612162565b91506121858261216c565b5f82019050919050565b5f6121998261216f565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6121d7601083611baa565b91506121e2826121a3565b602082019050919050565b5f6020820190508181035f830152612204816121cb565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026122717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612236565b61227b8683612236565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6122b66122b16122ac84611c4a565b612293565b611c4a565b9050919050565b5f819050919050565b6122cf8361229c565b6122e36122db826122bd565b848454612242565b825550505050565b5f90565b6122f76122eb565b6123028184846122c6565b505050565b5b818110156123255761231a5f826122ef565b600181019050612308565b5050565b601f82111561236a5761233b81612215565b61234484612227565b81016020851015612353578190505b61236761235f85612227565b830182612307565b50505b505050565b5f82821c905092915050565b5f61238a5f198460080261236f565b1980831691505092915050565b5f6123a2838361237b565b9150826002028217905092915050565b6123bc838361220b565b67ffffffffffffffff8111156123d5576123d4611f23565b5b6123df8254612132565b6123ea828285612329565b5f601f831160018114612417575f8415612405578287013590505b61240f8582612397565b865550612476565b601f19841661242586612215565b5f5b8281101561244c57848901358255600182019150602085019450602081019050612427565b868310156124695784890135612465601f89168261237b565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6124b682611c4a565b91506124c183611c4a565b92508282019050808211156124d9576124d861247f565b5b92915050565b7f4265796f6e64206d617820737570706c790000000000000000000000000000005f82015250565b5f612513601183611baa565b915061251e826124df565b602082019050919050565b5f6020820190508181035f83015261254081612507565b9050919050565b5f61255182611c4a565b915061255c83611c4a565b925082820261256a81611c4a565b915082820484148315176125815761258061247f565b5b5092915050565b5f81905092915050565b5f815461259e81612132565b6125a88186612588565b9450600182165f81146125c257600181146125d757612609565b60ff1983168652811515820286019350612609565b6125e085612215565b5f5b83811015612601578154818901526001820191506020810190506125e2565b838801955050505b50505092915050565b5f61261c82611ba0565b6126268185612588565b9350612636818560208601611bba565b80840191505092915050565b5f61264d8286612592565b91506126598285612612565b91506126658284612592565b9150819050949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f61269682612672565b6126a0818561267c565b93506126b0818560208601611bba565b6126b981611be2565b840191505092915050565b5f6080820190506126d75f830187611cd8565b6126e46020830186611cd8565b6126f16040830185611d68565b8181036060830152612703818461268c565b905095945050505050565b5f8151905061271c81611b18565b92915050565b5f6020828403121561273757612736611ae5565b5b5f6127448482850161270e565b9150509291505056fea2646970667358221220e69763879c30d8d055813355651e5327f0f2ab14552fc16cdd8166dcdf578eac64736f6c63430008160033

Deployed Bytecode

0x6080604052600436106101b6575f3560e01c8063715018a6116100eb578063b88d4fde11610089578063d5abeb0111610063578063d5abeb011461057a578063e985e9c5146105a4578063f2fde38b146105e0578063f968adbe14610608576101b6565b8063b88d4fde146104fa578063c6f6f21614610516578063c87b56dd1461053e576101b6565b80638da5cb5b116100c55780638da5cb5b1461046257806395d89b411461048c578063a0712d68146104b6578063a22cb465146104d2576101b6565b8063715018a61461040e5780637d8966e4146104245780638ba4cc3c1461043a576101b6565b80633ccfd60b116101585780636352211e116101325780636352211e146103425780636ad1fe021461037e5780636c0360eb146103a857806370a08231146103d2576101b6565b80633ccfd60b146102e857806342842e0e146102fe57806355f804b31461031a576101b6565b8063095ea7b311610194578063095ea7b31461025c57806313faede61461027857806318160ddd146102a257806323b872dd146102cc576101b6565b806301ffc9a7146101ba57806306fdde03146101f6578063081812fc14610220575b5f80fd5b3480156101c5575f80fd5b506101e060048036038101906101db9190611b42565b610632565b6040516101ed9190611b87565b60405180910390f35b348015610201575f80fd5b5061020a6106c3565b6040516102179190611c2a565b60405180910390f35b34801561022b575f80fd5b5061024660048036038101906102419190611c7d565b610753565b6040516102539190611ce7565b60405180910390f35b61027660048036038101906102719190611d2a565b6107cd565b005b348015610283575f80fd5b5061028c61090c565b6040516102999190611d77565b60405180910390f35b3480156102ad575f80fd5b506102b6610912565b6040516102c39190611d77565b60405180910390f35b6102e660048036038101906102e19190611d90565b610927565b005b3480156102f3575f80fd5b506102fc610c35565b005b61031860048036038101906103139190611d90565b610ce8565b005b348015610325575f80fd5b50610340600480360381019061033b9190611e41565b610d07565b005b34801561034d575f80fd5b5061036860048036038101906103639190611c7d565b610d25565b6040516103759190611ce7565b60405180910390f35b348015610389575f80fd5b50610392610d36565b60405161039f9190611b87565b60405180910390f35b3480156103b3575f80fd5b506103bc610d48565b6040516103c99190611c2a565b60405180910390f35b3480156103dd575f80fd5b506103f860048036038101906103f39190611e8c565b610dd4565b6040516104059190611d77565b60405180910390f35b348015610419575f80fd5b50610422610e89565b005b34801561042f575f80fd5b50610438610e9c565b005b348015610445575f80fd5b50610460600480360381019061045b9190611d2a565b610ece565b005b34801561046d575f80fd5b50610476610f3a565b6040516104839190611ce7565b60405180910390f35b348015610497575f80fd5b506104a0610f62565b6040516104ad9190611c2a565b60405180910390f35b6104d060048036038101906104cb9190611c7d565b610ff2565b005b3480156104dd575f80fd5b506104f860048036038101906104f39190611ee1565b611113565b005b610514600480360381019061050f9190612047565b611219565b005b348015610521575f80fd5b5061053c60048036038101906105379190611c7d565b61128b565b005b348015610549575f80fd5b50610564600480360381019061055f9190611c7d565b61129d565b6040516105719190611c2a565b60405180910390f35b348015610585575f80fd5b5061058e611313565b60405161059b9190611d77565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c591906120c7565b611319565b6040516105d79190611b87565b60405180910390f35b3480156105eb575f80fd5b5061060660048036038101906106019190611e8c565b6113a7565b005b348015610613575f80fd5b5061061c61142b565b6040516106299190611d77565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106bc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106d290612132565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe90612132565b80156107495780601f1061072057610100808354040283529160200191610749565b820191905f5260205f20905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b5f61075d82611431565b610793576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6107d782610d25565b90508073ffffffffffffffffffffffffffffffffffffffff166107f861148b565b73ffffffffffffffffffffffffffffffffffffffff161461085b576108248161081f61148b565b611319565b61085a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b5f61091b611492565b6001545f540303905090565b5f6109318261149a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610998576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806109a38461155d565b915091506109b981876109b461148b565b611580565b610a05576109ce866109c961148b565b611319565b610a04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a6a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a7786868660016115c3565b8015610a81575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610b4985610b258888876115c9565b7c0200000000000000000000000000000000000000000000000000000000176115f0565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610bc5575f6001850190505f60045f8381526020019081526020015f205403610bc3575f548114610bc2578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c2d868686600161161a565b505050505050565b610c3d611620565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610c629061218f565b5f6040518083038185875af1925050503d805f8114610c9c576040519150601f19603f3d011682016040523d82523d5f602084013e610ca1565b606091505b5050905080610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906121ed565b60405180910390fd5b50565b610d0283838360405180602001604052805f815250611219565b505050565b610d0f611620565b8181600d9182610d209291906123b2565b505050565b5f610d2f8261149a565b9050919050565b600c5f9054906101000a900460ff1681565b600d8054610d5590612132565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190612132565b8015610dcc5780601f10610da357610100808354040283529160200191610dcc565b820191905f5260205f20905b815481529060010190602001808311610daf57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e91611620565b610e9a5f6116a7565b565b610ea4611620565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b610ed6611620565b600a5481610ee2610912565b610eec91906124ac565b10610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390612529565b60405180910390fd5b610f36828261176a565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f7190612132565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d90612132565b8015610fe85780601f10610fbf57610100808354040283529160200191610fe8565b820191905f5260205f20905b815481529060010190602001808311610fcb57829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff16611037576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611043611913565b61104d91906124ac565b10611084576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5481106110bf576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806009546110cd9190612547565b341015611106576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611110338261176a565b50565b8060075f61111f61148b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111c861148b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120d9190611b87565b60405180910390a35050565b611224848484610927565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146112855761124e84848484611924565b611284576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611293611620565b80600b8190555050565b60606112a882611431565b6112de576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d6112e983611a6f565b600e6040516020016112fd93929190612642565b6040516020818303038152906040529050919050565b600a5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6113af611620565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361141f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016114169190611ce7565b60405180910390fd5b611428816116a7565b50565b600b5481565b5f8161143b611492565b1115801561144957505f5482105b801561148457505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806114a8611492565b11611526575f54811015611525575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611523575b5f81036115195760045f836001900393508381526020019081526020015f205490506114f2565b8092505050611558565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86115df868684611abe565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611628611ac6565b73ffffffffffffffffffffffffffffffffffffffff16611646610f3a565b73ffffffffffffffffffffffffffffffffffffffff16146116a557611669611ac6565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161169c9190611ce7565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f82036117a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117b45f8483856115c3565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611826836118175f865f6115c9565b61182085611acd565b176115f0565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146118c05780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611887565b505f82036118fa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061190e5f84838561161a565b505050565b5f61191c611492565b5f5403905090565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261194961148b565b8786866040518563ffffffff1660e01b815260040161196b94939291906126c4565b6020604051808303815f875af19250505080156119a657506040513d601f19601f820116820180604052508101906119a39190612722565b60015b611a1c573d805f81146119d4576040519150601f19603f3d011682016040523d82523d5f602084013e6119d9565b606091505b505f815103611a14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611aa957600184039350600a81066030018453600a8104905080611a87575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b2181611aed565b8114611b2b575f80fd5b50565b5f81359050611b3c81611b18565b92915050565b5f60208284031215611b5757611b56611ae5565b5b5f611b6484828501611b2e565b91505092915050565b5f8115159050919050565b611b8181611b6d565b82525050565b5f602082019050611b9a5f830184611b78565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611bd7578082015181840152602081019050611bbc565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bfc82611ba0565b611c068185611baa565b9350611c16818560208601611bba565b611c1f81611be2565b840191505092915050565b5f6020820190508181035f830152611c428184611bf2565b905092915050565b5f819050919050565b611c5c81611c4a565b8114611c66575f80fd5b50565b5f81359050611c7781611c53565b92915050565b5f60208284031215611c9257611c91611ae5565b5b5f611c9f84828501611c69565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cd182611ca8565b9050919050565b611ce181611cc7565b82525050565b5f602082019050611cfa5f830184611cd8565b92915050565b611d0981611cc7565b8114611d13575f80fd5b50565b5f81359050611d2481611d00565b92915050565b5f8060408385031215611d4057611d3f611ae5565b5b5f611d4d85828601611d16565b9250506020611d5e85828601611c69565b9150509250929050565b611d7181611c4a565b82525050565b5f602082019050611d8a5f830184611d68565b92915050565b5f805f60608486031215611da757611da6611ae5565b5b5f611db486828701611d16565b9350506020611dc586828701611d16565b9250506040611dd686828701611c69565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611e0157611e00611de0565b5b8235905067ffffffffffffffff811115611e1e57611e1d611de4565b5b602083019150836001820283011115611e3a57611e39611de8565b5b9250929050565b5f8060208385031215611e5757611e56611ae5565b5b5f83013567ffffffffffffffff811115611e7457611e73611ae9565b5b611e8085828601611dec565b92509250509250929050565b5f60208284031215611ea157611ea0611ae5565b5b5f611eae84828501611d16565b91505092915050565b611ec081611b6d565b8114611eca575f80fd5b50565b5f81359050611edb81611eb7565b92915050565b5f8060408385031215611ef757611ef6611ae5565b5b5f611f0485828601611d16565b9250506020611f1585828601611ecd565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611f5982611be2565b810181811067ffffffffffffffff82111715611f7857611f77611f23565b5b80604052505050565b5f611f8a611adc565b9050611f968282611f50565b919050565b5f67ffffffffffffffff821115611fb557611fb4611f23565b5b611fbe82611be2565b9050602081019050919050565b828183375f83830152505050565b5f611feb611fe684611f9b565b611f81565b90508281526020810184848401111561200757612006611f1f565b5b612012848285611fcb565b509392505050565b5f82601f83011261202e5761202d611de0565b5b813561203e848260208601611fd9565b91505092915050565b5f805f806080858703121561205f5761205e611ae5565b5b5f61206c87828801611d16565b945050602061207d87828801611d16565b935050604061208e87828801611c69565b925050606085013567ffffffffffffffff8111156120af576120ae611ae9565b5b6120bb8782880161201a565b91505092959194509250565b5f80604083850312156120dd576120dc611ae5565b5b5f6120ea85828601611d16565b92505060206120fb85828601611d16565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061214957607f821691505b60208210810361215c5761215b612105565b5b50919050565b5f81905092915050565b50565b5f61217a5f83612162565b91506121858261216c565b5f82019050919050565b5f6121998261216f565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6121d7601083611baa565b91506121e2826121a3565b602082019050919050565b5f6020820190508181035f830152612204816121cb565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026122717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612236565b61227b8683612236565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6122b66122b16122ac84611c4a565b612293565b611c4a565b9050919050565b5f819050919050565b6122cf8361229c565b6122e36122db826122bd565b848454612242565b825550505050565b5f90565b6122f76122eb565b6123028184846122c6565b505050565b5b818110156123255761231a5f826122ef565b600181019050612308565b5050565b601f82111561236a5761233b81612215565b61234484612227565b81016020851015612353578190505b61236761235f85612227565b830182612307565b50505b505050565b5f82821c905092915050565b5f61238a5f198460080261236f565b1980831691505092915050565b5f6123a2838361237b565b9150826002028217905092915050565b6123bc838361220b565b67ffffffffffffffff8111156123d5576123d4611f23565b5b6123df8254612132565b6123ea828285612329565b5f601f831160018114612417575f8415612405578287013590505b61240f8582612397565b865550612476565b601f19841661242586612215565b5f5b8281101561244c57848901358255600182019150602085019450602081019050612427565b868310156124695784890135612465601f89168261237b565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6124b682611c4a565b91506124c183611c4a565b92508282019050808211156124d9576124d861247f565b5b92915050565b7f4265796f6e64206d617820737570706c790000000000000000000000000000005f82015250565b5f612513601183611baa565b915061251e826124df565b602082019050919050565b5f6020820190508181035f83015261254081612507565b9050919050565b5f61255182611c4a565b915061255c83611c4a565b925082820261256a81611c4a565b915082820484148315176125815761258061247f565b5b5092915050565b5f81905092915050565b5f815461259e81612132565b6125a88186612588565b9450600182165f81146125c257600181146125d757612609565b60ff1983168652811515820286019350612609565b6125e085612215565b5f5b83811015612601578154818901526001820191506020810190506125e2565b838801955050505b50505092915050565b5f61261c82611ba0565b6126268185612588565b9350612636818560208601611bba565b80840191505092915050565b5f61264d8286612592565b91506126598285612612565b91506126658284612592565b9150819050949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f61269682612672565b6126a0818561267c565b93506126b0818560208601611bba565b6126b981611be2565b840191505092915050565b5f6080820190506126d75f830187611cd8565b6126e46020830186611cd8565b6126f16040830185611d68565b8181036060830152612703818461268c565b905095945050505050565b5f8151905061271c81611b18565b92915050565b5f6020828403121561273757612736611ae5565b5b5f6127448482850161270e565b9150509291505056fea2646970667358221220e69763879c30d8d055813355651e5327f0f2ab14552fc16cdd8166dcdf578eac64736f6c63430008160033

Deployed Bytecode Sourcemap

76417:2041:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43307:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44209:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50700:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50133:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76471:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39960:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54339:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78282:173;;;;;;;;;;;;;:::i;:::-;;57260:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77972:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45602:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76584:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77378:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41144:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24067:103;;;;;;;;;;;;;:::i;:::-;;78186:72;;;;;;;;;;;;;:::i;:::-;;77174:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23392:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44385:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76824:342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51258:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58051:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78080:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77449:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76512:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51649:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24325:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76550:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43307:639;43392:4;43731:10;43716:25;;:11;:25;;;;:102;;;;43808:10;43793:25;;:11;:25;;;;43716:102;:179;;;;43885:10;43870:25;;:11;:25;;;;43716:179;43696:199;;43307:639;;;:::o;44209:100::-;44263:13;44296:5;44289:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44209:100;:::o;50700:218::-;50776:7;50801:16;50809:7;50801;:16::i;:::-;50796:64;;50826:34;;;;;;;;;;;;;;50796:64;50880:15;:24;50896:7;50880:24;;;;;;;;;;;:30;;;;;;;;;;;;50873:37;;50700:218;;;:::o;50133:408::-;50222:13;50238:16;50246:7;50238;:16::i;:::-;50222:32;;50294:5;50271:28;;:19;:17;:19::i;:::-;:28;;;50267:175;;50319:44;50336:5;50343:19;:17;:19::i;:::-;50319:16;:44::i;:::-;50314:128;;50391:35;;;;;;;;;;;;;;50314:128;50267:175;50487:2;50454:15;:24;50470:7;50454:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50525:7;50521:2;50505:28;;50514:5;50505:28;;;;;;;;;;;;50211:330;50133:408;;:::o;76471:34::-;;;;:::o;39960:323::-;40021:7;40249:15;:13;:15::i;:::-;40234:12;;40218:13;;:28;:46;40211:53;;39960:323;:::o;54339:2825::-;54481:27;54511;54530:7;54511:18;:27::i;:::-;54481:57;;54596:4;54555:45;;54571:19;54555:45;;;54551:86;;54609:28;;;;;;;;;;;;;;54551:86;54651:27;54680:23;54707:35;54734:7;54707:26;:35::i;:::-;54650:92;;;;54842:68;54867:15;54884:4;54890:19;:17;:19::i;:::-;54842:24;:68::i;:::-;54837:180;;54930:43;54947:4;54953:19;:17;:19::i;:::-;54930:16;:43::i;:::-;54925:92;;54982:35;;;;;;;;;;;;;;54925:92;54837:180;55048:1;55034:16;;:2;:16;;;55030:52;;55059:23;;;;;;;;;;;;;;55030:52;55095:43;55117:4;55123:2;55127:7;55136:1;55095:21;:43::i;:::-;55231:15;55228:160;;;55371:1;55350:19;55343:30;55228:160;55768:18;:24;55787:4;55768:24;;;;;;;;;;;;;;;;55766:26;;;;;;;;;;;;55837:18;:22;55856:2;55837:22;;;;;;;;;;;;;;;;55835:24;;;;;;;;;;;56159:146;56196:2;56245:45;56260:4;56266:2;56270:19;56245:14;:45::i;:::-;36359:8;56217:73;56159:18;:146::i;:::-;56130:17;:26;56148:7;56130:26;;;;;;;;;;;:175;;;;56476:1;36359:8;56425:19;:47;:52;56421:627;;56498:19;56530:1;56520:7;:11;56498:33;;56687:1;56653:17;:30;56671:11;56653:30;;;;;;;;;;;;:35;56649:384;;56791:13;;56776:11;:28;56772:242;;56971:19;56938:17;:30;56956:11;56938:30;;;;;;;;;;;:52;;;;56772:242;56649:384;56479:569;56421:627;57095:7;57091:2;57076:27;;57085:4;57076:27;;;;;;;;;;;;57114:42;57135:4;57141:2;57145:7;57154:1;57114:20;:42::i;:::-;54470:2694;;;54339:2825;;;:::o;78282:173::-;23278:13;:11;:13::i;:::-;78333:12:::1;78351:10;:15;;78374:21;78351:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78332:68;;;78419:7;78411:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;78321:134;78282:173::o:0;57260:193::-;57406:39;57423:4;57429:2;57433:7;57406:39;;;;;;;;;;;;:16;:39::i;:::-;57260:193;;;:::o;77972:100::-;23278:13;:11;:13::i;:::-;78057:7:::1;;78047;:17;;;;;;;:::i;:::-;;77972:100:::0;;:::o;45602:152::-;45674:7;45717:27;45736:7;45717:18;:27::i;:::-;45694:52;;45602:152;;;:::o;76584:24::-;;;;;;;;;;;;;:::o;77378:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41144:233::-;41216:7;41257:1;41240:19;;:5;:19;;;41236:60;;41268:28;;;;;;;;;;;;;;41236:60;35303:13;41314:18;:25;41333:5;41314:25;;;;;;;;;;;;;;;;:55;41307:62;;41144:233;;;:::o;24067:103::-;23278:13;:11;:13::i;:::-;24132:30:::1;24159:1;24132:18;:30::i;:::-;24067:103::o:0;78186:72::-;23278:13;:11;:13::i;:::-;78246:4:::1;;;;;;;;;;;78245:5;78238:4;;:12;;;;;;;;;;;;;;;;;;78186:72::o:0;77174:180::-;23278:13;:11;:13::i;:::-;77285:9:::1;;77275:7;77259:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:35;77251:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;77327:19;77333:3;77338:7;77327:5;:19::i;:::-;77174:180:::0;;:::o;23392:87::-;23438:7;23465:6;;;;;;;;;;;23458:13;;23392:87;:::o;44385:104::-;44441:13;44474:7;44467:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44385:104;:::o;76824:342::-;76888:4;;;;;;;;;;;76883:33;;76901:15;;;;;;;;;;;;;;76883:33;76959:9;;76948:7;76931:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:37;76927:68;;76977:18;;;;;;;;;;;;;;76927:68;77021:8;;77010:7;:19;77006:49;;77038:17;;;;;;;;;;;;;;77006:49;77089:7;77082:4;;:14;;;;:::i;:::-;77070:9;:26;77066:53;;;77105:14;;;;;;;;;;;;;;77066:53;77132:26;77138:10;77150:7;77132:5;:26::i;:::-;76824:342;:::o;51258:234::-;51405:8;51353:18;:39;51372:19;:17;:19::i;:::-;51353:39;;;;;;;;;;;;;;;:49;51393:8;51353:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;51465:8;51429:55;;51444:19;:17;:19::i;:::-;51429:55;;;51475:8;51429:55;;;;;;:::i;:::-;;;;;;;;51258:234;;:::o;58051:407::-;58226:31;58239:4;58245:2;58249:7;58226:12;:31::i;:::-;58290:1;58272:2;:14;;;:19;58268:183;;58311:56;58342:4;58348:2;58352:7;58361:5;58311:30;:56::i;:::-;58306:145;;58395:40;;;;;;;;;;;;;;58306:145;58268:183;58051:407;;;;:::o;78080:98::-;23278:13;:11;:13::i;:::-;78161:9:::1;78150:8;:20;;;;78080:98:::0;:::o;77449:298::-;77567:13;77603:16;77611:7;77603;:16::i;:::-;77598:59;;77628:29;;;;;;;;;;;;;;77598:59;77699:7;77708:18;77718:7;77708:9;:18::i;:::-;77728:9;77682:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77668:71;;77449:298;;;:::o;76512:31::-;;;;:::o;51649:164::-;51746:4;51770:18;:25;51789:5;51770:25;;;;;;;;;;;;;;;:35;51796:8;51770:35;;;;;;;;;;;;;;;;;;;;;;;;;51763:42;;51649:164;;;;:::o;24325:220::-;23278:13;:11;:13::i;:::-;24430:1:::1;24410:22;;:8;:22;;::::0;24406:93:::1;;24484:1;24456:31;;;;;;;;;;;:::i;:::-;;;;;;;;24406:93;24509:28;24528:8;24509:18;:28::i;:::-;24325:220:::0;:::o;76550:27::-;;;;:::o;52071:282::-;52136:4;52192:7;52173:15;:13;:15::i;:::-;:26;;:66;;;;;52226:13;;52216:7;:23;52173:66;:153;;;;;52325:1;36079:8;52277:17;:26;52295:7;52277:26;;;;;;;;;;;;:44;:49;52173:153;52153:173;;52071:282;;;:::o;74379:105::-;74439:7;74466:10;74459:17;;74379:105;:::o;77755:93::-;77812:7;77839:1;77832:8;;77755:93;:::o;46757:1275::-;46824:7;46844:12;46859:7;46844:22;;46927:4;46908:15;:13;:15::i;:::-;:23;46904:1061;;46961:13;;46954:4;:20;46950:1015;;;46999:14;47016:17;:23;47034:4;47016:23;;;;;;;;;;;;46999:40;;47133:1;36079:8;47105:6;:24;:29;47101:845;;47770:113;47787:1;47777:6;:11;47770:113;;47830:17;:25;47848:6;;;;;;;47830:25;;;;;;;;;;;;47821:34;;47770:113;;;47916:6;47909:13;;;;;;47101:845;46976:989;46950:1015;46904:1061;47993:31;;;;;;;;;;;;;;46757:1275;;;;:::o;53234:485::-;53336:27;53365:23;53406:38;53447:15;:24;53463:7;53447:24;;;;;;;;;;;53406:65;;53624:18;53601:41;;53681:19;53675:26;53656:45;;53586:126;53234:485;;;:::o;52462:659::-;52611:11;52776:16;52769:5;52765:28;52756:37;;52936:16;52925:9;52921:32;52908:45;;53086:15;53075:9;53072:30;53064:5;53053:9;53050:20;53047:56;53037:66;;52462:659;;;;;:::o;59120:159::-;;;;;:::o;73688:311::-;73823:7;73843:16;36483:3;73869:19;:41;;73843:68;;36483:3;73937:31;73948:4;73954:2;73958:9;73937:10;:31::i;:::-;73929:40;;:62;;73922:69;;;73688:311;;;;;:::o;48580:450::-;48660:14;48828:16;48821:5;48817:28;48808:37;;49005:5;48991:11;48966:23;48962:41;48959:52;48952:5;48949:63;48939:73;;48580:450;;;;:::o;59944:158::-;;;;;:::o;23557:166::-;23628:12;:10;:12::i;:::-;23617:23;;:7;:5;:7::i;:::-;:23;;;23613:103;;23691:12;:10;:12::i;:::-;23664:40;;;;;;;;;;;:::i;:::-;;;;;;;;23613:103;23557:166::o;24705:191::-;24779:16;24798:6;;;;;;;;;;;24779:25;;24824:8;24815:6;;:17;;;;;;;;;;;;;;;;;;24879:8;24848:40;;24869:8;24848:40;;;;;;;;;;;;24768:128;24705:191;:::o;61720:2966::-;61793:20;61816:13;;61793:36;;61856:1;61844:8;:13;61840:44;;61866:18;;;;;;;;;;;;;;61840:44;61897:61;61927:1;61931:2;61935:12;61949:8;61897:21;:61::i;:::-;62441:1;35441:2;62411:1;:26;;62410:32;62398:8;:45;62372:18;:22;62391:2;62372:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;62720:139;62757:2;62811:33;62834:1;62838:2;62842:1;62811:14;:33::i;:::-;62778:30;62799:8;62778:20;:30::i;:::-;:66;62720:18;:139::i;:::-;62686:17;:31;62704:12;62686:31;;;;;;;;;;;:173;;;;62876:16;62907:11;62936:8;62921:12;:23;62907:37;;63457:16;63453:2;63449:25;63437:37;;63829:12;63789:8;63748:1;63686:25;63627:1;63566;63539:335;64200:1;64186:12;64182:20;64140:346;64241:3;64232:7;64229:16;64140:346;;64459:7;64449:8;64446:1;64419:25;64416:1;64413;64408:59;64294:1;64285:7;64281:15;64270:26;;64140:346;;;64144:77;64531:1;64519:8;:13;64515:45;;64541:19;;;;;;;;;;;;;;64515:45;64593:3;64577:13;:19;;;;62146:2462;;64618:60;64647:1;64651:2;64655:12;64669:8;64618:20;:60::i;:::-;61782:2904;61720:2966;;:::o;40381:296::-;40436:7;40643:15;:13;:15::i;:::-;40627:13;;:31;40620:38;;40381:296;:::o;60542:716::-;60705:4;60751:2;60726:45;;;60772:19;:17;:19::i;:::-;60793:4;60799:7;60808:5;60726:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60722:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61026:1;61009:6;:13;:18;61005:235;;61055:40;;;;;;;;;;;;;;61005:235;61198:6;61192:13;61183:6;61179:2;61175:15;61168:38;60722:529;60895:54;;;60885:64;;;:6;:64;;;;60878:71;;;60542:716;;;;;;:::o;74586:1745::-;74651:17;75085:4;75078;75072:11;75068:22;75177:1;75171:4;75164:15;75252:4;75249:1;75245:12;75238:19;;75334:1;75329:3;75322:14;75438:3;75677:5;75659:428;75685:1;75659:428;;;75725:1;75720:3;75716:11;75709:18;;75896:2;75890:4;75886:13;75882:2;75878:22;75873:3;75865:36;75990:2;75984:4;75980:13;75972:21;;76057:4;75659:428;76047:25;75659:428;75663:21;76126:3;76121;76117:13;76241:4;76236:3;76232:14;76225:21;;76306:6;76301:3;76294:19;74690:1634;;;74586:1745;;;:::o;73389:147::-;73526:6;73389:147;;;;;:::o;21508:98::-;21561:7;21588:10;21581:17;;21508:98;:::o;49132:324::-;49202:14;49435:1;49425:8;49422:15;49396:24;49392:46;49382:56;;49132:324;;;:::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:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:147::-;12438:11;12475:3;12460:18;;12337:147;;;;:::o;12490:114::-;;:::o;12610:398::-;12769:3;12790:83;12871:1;12866:3;12790:83;:::i;:::-;12783:90;;12882:93;12971:3;12882:93;:::i;:::-;13000:1;12995:3;12991:11;12984:18;;12610:398;;;:::o;13014:379::-;13198:3;13220:147;13363:3;13220:147;:::i;:::-;13213:154;;13384:3;13377:10;;13014:379;;;:::o;13399:166::-;13539:18;13535:1;13527:6;13523:14;13516:42;13399:166;:::o;13571:366::-;13713:3;13734:67;13798:2;13793:3;13734:67;:::i;:::-;13727:74;;13810:93;13899:3;13810:93;:::i;:::-;13928:2;13923:3;13919:12;13912:19;;13571:366;;;:::o;13943:419::-;14109:4;14147:2;14136:9;14132:18;14124:26;;14196:9;14190:4;14186:20;14182:1;14171:9;14167:17;14160:47;14224:131;14350:4;14224:131;:::i;:::-;14216:139;;13943:419;;;:::o;14368:97::-;14427:6;14455:3;14445:13;;14368:97;;;;:::o;14471:141::-;14520:4;14543:3;14535:11;;14566:3;14563:1;14556:14;14600:4;14597:1;14587:18;14579:26;;14471:141;;;:::o;14618:93::-;14655:6;14702:2;14697;14690:5;14686:14;14682:23;14672:33;;14618:93;;;:::o;14717:107::-;14761:8;14811:5;14805:4;14801:16;14780:37;;14717:107;;;;:::o;14830:393::-;14899:6;14949:1;14937:10;14933:18;14972:97;15002:66;14991:9;14972:97;:::i;:::-;15090:39;15120:8;15109:9;15090:39;:::i;:::-;15078:51;;15162:4;15158:9;15151:5;15147:21;15138:30;;15211:4;15201:8;15197:19;15190:5;15187:30;15177:40;;14906:317;;14830:393;;;;;:::o;15229:60::-;15257:3;15278:5;15271:12;;15229:60;;;:::o;15295:142::-;15345:9;15378:53;15396:34;15405:24;15423:5;15405:24;:::i;:::-;15396:34;:::i;:::-;15378:53;:::i;:::-;15365:66;;15295:142;;;:::o;15443:75::-;15486:3;15507:5;15500:12;;15443:75;;;:::o;15524:269::-;15634:39;15665:7;15634:39;:::i;:::-;15695:91;15744:41;15768:16;15744:41;:::i;:::-;15736:6;15729:4;15723:11;15695:91;:::i;:::-;15689:4;15682:105;15600:193;15524:269;;;:::o;15799:73::-;15844:3;15799:73;:::o;15878:189::-;15955:32;;:::i;:::-;15996:65;16054:6;16046;16040:4;15996:65;:::i;:::-;15931:136;15878:189;;:::o;16073:186::-;16133:120;16150:3;16143:5;16140:14;16133:120;;;16204:39;16241:1;16234:5;16204:39;:::i;:::-;16177:1;16170:5;16166:13;16157:22;;16133:120;;;16073:186;;:::o;16265:543::-;16366:2;16361:3;16358:11;16355:446;;;16400:38;16432:5;16400:38;:::i;:::-;16484:29;16502:10;16484:29;:::i;:::-;16474:8;16470:44;16667:2;16655:10;16652:18;16649:49;;;16688:8;16673:23;;16649:49;16711:80;16767:22;16785:3;16767:22;:::i;:::-;16757:8;16753:37;16740:11;16711:80;:::i;:::-;16370:431;;16355:446;16265:543;;;:::o;16814:117::-;16868:8;16918:5;16912:4;16908:16;16887:37;;16814:117;;;;:::o;16937:169::-;16981:6;17014:51;17062:1;17058:6;17050:5;17047:1;17043:13;17014:51;:::i;:::-;17010:56;17095:4;17089;17085:15;17075:25;;16988:118;16937:169;;;;:::o;17111:295::-;17187:4;17333:29;17358:3;17352:4;17333:29;:::i;:::-;17325:37;;17395:3;17392:1;17388:11;17382:4;17379:21;17371:29;;17111:295;;;;:::o;17411:1403::-;17535:44;17575:3;17570;17535:44;:::i;:::-;17644:18;17636:6;17633:30;17630:56;;;17666:18;;:::i;:::-;17630:56;17710:38;17742:4;17736:11;17710:38;:::i;:::-;17795:67;17855:6;17847;17841:4;17795:67;:::i;:::-;17889:1;17918:2;17910:6;17907:14;17935:1;17930:632;;;;18606:1;18623:6;18620:84;;;18679:9;18674:3;18670:19;18657:33;18648:42;;18620:84;18730:67;18790:6;18783:5;18730:67;:::i;:::-;18724:4;18717:81;18579:229;17900:908;;17930:632;17982:4;17978:9;17970:6;17966:22;18016:37;18048:4;18016:37;:::i;:::-;18075:1;18089:215;18103:7;18100:1;18097:14;18089:215;;;18189:9;18184:3;18180:19;18167:33;18159:6;18152:49;18240:1;18232:6;18228:14;18218:24;;18287:2;18276:9;18272:18;18259:31;;18126:4;18123:1;18119:12;18114:17;;18089:215;;;18332:6;18323:7;18320:19;18317:186;;;18397:9;18392:3;18388:19;18375:33;18440:48;18482:4;18474:6;18470:17;18459:9;18440:48;:::i;:::-;18432:6;18425:64;18340:163;18317:186;18549:1;18545;18537:6;18533:14;18529:22;18523:4;18516:36;17937:625;;;17900:908;;17510:1304;;;17411:1403;;;:::o;18820:180::-;18868:77;18865:1;18858:88;18965:4;18962:1;18955:15;18989:4;18986:1;18979:15;19006:191;19046:3;19065:20;19083:1;19065:20;:::i;:::-;19060:25;;19099:20;19117:1;19099:20;:::i;:::-;19094:25;;19142:1;19139;19135:9;19128:16;;19163:3;19160:1;19157:10;19154:36;;;19170:18;;:::i;:::-;19154:36;19006:191;;;;:::o;19203:167::-;19343:19;19339:1;19331:6;19327:14;19320:43;19203:167;:::o;19376:366::-;19518:3;19539:67;19603:2;19598:3;19539:67;:::i;:::-;19532:74;;19615:93;19704:3;19615:93;:::i;:::-;19733:2;19728:3;19724:12;19717:19;;19376:366;;;:::o;19748:419::-;19914:4;19952:2;19941:9;19937:18;19929:26;;20001:9;19995:4;19991:20;19987:1;19976:9;19972:17;19965:47;20029:131;20155:4;20029:131;:::i;:::-;20021:139;;19748:419;;;:::o;20173:410::-;20213:7;20236:20;20254:1;20236:20;:::i;:::-;20231:25;;20270:20;20288:1;20270:20;:::i;:::-;20265:25;;20325:1;20322;20318:9;20347:30;20365:11;20347:30;:::i;:::-;20336:41;;20526:1;20517:7;20513:15;20510:1;20507:22;20487:1;20480:9;20460:83;20437:139;;20556:18;;:::i;:::-;20437:139;20221:362;20173:410;;;;:::o;20589:148::-;20691:11;20728:3;20713:18;;20589:148;;;;:::o;20767:874::-;20870:3;20907:5;20901:12;20936:36;20962:9;20936:36;:::i;:::-;20988:89;21070:6;21065:3;20988:89;:::i;:::-;20981:96;;21108:1;21097:9;21093:17;21124:1;21119:166;;;;21299:1;21294:341;;;;21086:549;;21119:166;21203:4;21199:9;21188;21184:25;21179:3;21172:38;21265:6;21258:14;21251:22;21243:6;21239:35;21234:3;21230:45;21223:52;;21119:166;;21294:341;21361:38;21393:5;21361:38;:::i;:::-;21421:1;21435:154;21449:6;21446:1;21443:13;21435:154;;;21523:7;21517:14;21513:1;21508:3;21504:11;21497:35;21573:1;21564:7;21560:15;21549:26;;21471:4;21468:1;21464:12;21459:17;;21435:154;;;21618:6;21613:3;21609:16;21602:23;;21301:334;;21086:549;;20874:767;;20767:874;;;;:::o;21647:390::-;21753:3;21781:39;21814:5;21781:39;:::i;:::-;21836:89;21918:6;21913:3;21836:89;:::i;:::-;21829:96;;21934:65;21992:6;21987:3;21980:4;21973:5;21969:16;21934:65;:::i;:::-;22024:6;22019:3;22015:16;22008:23;;21757:280;21647:390;;;;:::o;22043:583::-;22265:3;22287:92;22375:3;22366:6;22287:92;:::i;:::-;22280:99;;22396:95;22487:3;22478:6;22396:95;:::i;:::-;22389:102;;22508:92;22596:3;22587:6;22508:92;:::i;:::-;22501:99;;22617:3;22610:10;;22043:583;;;;;;:::o;22632:98::-;22683:6;22717:5;22711:12;22701:22;;22632:98;;;:::o;22736:168::-;22819:11;22853:6;22848:3;22841:19;22893:4;22888:3;22884:14;22869:29;;22736:168;;;;:::o;22910:373::-;22996:3;23024:38;23056:5;23024:38;:::i;:::-;23078:70;23141:6;23136:3;23078:70;:::i;:::-;23071:77;;23157:65;23215:6;23210:3;23203:4;23196:5;23192:16;23157:65;:::i;:::-;23247:29;23269:6;23247:29;:::i;:::-;23242:3;23238:39;23231:46;;23000:283;22910:373;;;;:::o;23289:640::-;23484:4;23522:3;23511:9;23507:19;23499:27;;23536:71;23604:1;23593:9;23589:17;23580:6;23536:71;:::i;:::-;23617:72;23685:2;23674:9;23670:18;23661:6;23617:72;:::i;:::-;23699;23767:2;23756:9;23752:18;23743:6;23699:72;:::i;:::-;23818:9;23812:4;23808:20;23803:2;23792:9;23788:18;23781:48;23846:76;23917:4;23908:6;23846:76;:::i;:::-;23838:84;;23289:640;;;;;;;:::o;23935:141::-;23991:5;24022:6;24016:13;24007:22;;24038:32;24064:5;24038:32;:::i;:::-;23935:141;;;;:::o;24082:349::-;24151:6;24200:2;24188:9;24179:7;24175:23;24171:32;24168:119;;;24206:79;;:::i;:::-;24168:119;24326:1;24351:63;24406:7;24397:6;24386:9;24382:22;24351:63;:::i;:::-;24341:73;;24297:127;24082:349;;;;:::o

Swarm Source

ipfs://e69763879c30d8d055813355651e5327f0f2ab14552fc16cdd8166dcdf578eac
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.