ETH Price: $3,253.78 (+2.61%)
Gas: 2 Gwei

Token

RedRock (RED)
 

Overview

Max Total Supply

999 RED

Holders

272

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 RED
0x7959A7cB7d3cC564c1526D51B52Da32D6c631390
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RedRock

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-21
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: 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/artifacts/FinalContractGE.sol



pragma solidity >=0.8.9 <0.9.0;





contract RedRock is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint;

  string public uriPrefix = '';
  string public hiddenMetadataUri;
  string public uriSuffix = '.json';
  
  
  uint public maxSupply = 999;
  uint public freeSupply = 999;
  uint public cost = 0.002 ether;
  uint public maxMintAmountPerTx = 10;
  uint public maxPerWallet = 10;

  bool public paused = true;
  bool public revealed = false;

  mapping(address => bool) public freeMintClaimed;


  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  // ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~
  modifier mintCompliance(uint _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(_mintAmount + balanceOf(_msgSender()) <= maxPerWallet, 'Only 10 allowed per wallet!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint _mintAmount) {
    if (freeMintClaimed[_msgSender()] || totalSupply() >= freeSupply) {
      require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    }
    _;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Mint Functions ~~~~~~~~~~~~~~~~~~~~

     function Mint(uint256 amount) external payable {
        require(!paused, "contract is paused");
        require(msg.sender == tx.origin, "Cannot mint from contract");

        require(totalSupply() + amount <= maxSupply, "max supply would be exceeded");
        uint minted = _numberMinted(msg.sender);

        require(minted + amount <= maxPerWallet, "max mint per wallet would be exceeded");

        uint chargeableCount;

        if (minted == 0) {
            chargeableCount = amount - 1;
            require(amount > 0, "amount must be greater than 0");
            require(msg.value >= cost * chargeableCount, "value not met");
        } else {
            chargeableCount = amount;
            require(amount > 0, "amount must be greater than 0");
            require(msg.value >= cost * chargeableCount, "value not met");
        }
        _safeMint(msg.sender, amount);
    }
  
  // ~~~~~~~~~~~~~~~~~~~~ Various Checks ~~~~~~~~~~~~~~~~~~~~
    function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }

  function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  // ~~~~~~~~~~~~~~~~~~~~ onlyOwner Functions ~~~~~~~~~~~~~~~~~~~~

      function mintForAddress(uint256 _mintAmount, address _receiver) external onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _safeMint(_receiver, _mintAmount);
    }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

     function setmaxPerWallet(uint _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setFreeSupply(uint _freeQty) public onlyOwner {
    freeSupply = _freeQty;
  }


  function setmaxSupply(uint _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Withdraw Functions ~~~~~~~~~~~~~~~~~~~~
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }
/*

*/
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeQty","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setmaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040525f6080908152600a906200001990826200025a565b50604080518082019091526005815264173539b7b760d91b6020820152600c906200004590826200025a565b506103e7600d819055600e5566071afd498d0000600f55600a60108190556011556012805461ffff1916600117905534801562000080575f80fd5b506040516200225438038062002254833981016040819052620000a391620003cc565b82826002620000b383826200025a565b506003620000c282826200025a565b50505f805550620000d333620000ec565b6001600955620000e3816200013d565b50505062000457565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200014762000159565b600b6200015582826200025a565b5050565b6008546001600160a01b03163314620001b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001e357607f821691505b6020821081036200020257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000255575f81815260208120601f850160051c81016020861015620002305750805b601f850160051c820191505b8181101562000251578281556001016200023c565b5050505b505050565b81516001600160401b03811115620002765762000276620001ba565b6200028e81620002878454620001ce565b8462000208565b602080601f831160018114620002c4575f8415620002ac5750858301515b5f19600386901b1c1916600185901b17855562000251565b5f85815260208120601f198616915b82811015620002f457888601518255948401946001909101908401620002d3565b50858210156200031257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82601f83011262000332575f80fd5b81516001600160401b03808211156200034f576200034f620001ba565b604051601f8301601f19908116603f011681019082821181831017156200037a576200037a620001ba565b8160405283815260209250868385880101111562000396575f80fd5b5f91505b83821015620003b957858201830151818301840152908201906200039a565b5f93810190920192909252949350505050565b5f805f60608486031215620003df575f80fd5b83516001600160401b0380821115620003f6575f80fd5b620004048783880162000322565b945060208601519150808211156200041a575f80fd5b620004288783880162000322565b935060408601519150808211156200043e575f80fd5b506200044d8682870162000322565b9150509250925092565b611def80620004655f395ff3fe60806040526004361061023e575f3560e01c806360d3e1ae11610134578063a45ba8e7116100b3578063e0a8085311610078578063e0a80853146105fd578063e0ec7c361461061c578063e985e9c51461064a578063efbd73f414610669578063f2fde38b14610688578063f676308a146106a7575f80fd5b8063a45ba8e714610583578063b071401b14610597578063b88d4fde146105b6578063c87b56dd146105c9578063d5abeb01146105e8575f80fd5b80637ec4a659116100f95780637ec4a659146104ff5780638da5cb5b1461051e57806394354fd01461053b57806395d89b4114610550578063a22cb46514610564575f80fd5b806360d3e1ae1461047a57806362b99ad4146104995780636352211e146104ad57806370a08231146104cc578063715018a6146104eb575f80fd5b806323b872dd116101c0578063453c231011610185578063453c2310146103fb5780634fdd43cb14610410578063518302271461042f5780635503a0e81461044d5780635c975abb14610461575f80fd5b806323b872dd1461038d57806324a6ab0c146103a05780633ccfd60b146103b557806342842e0e146103c957806344a0d68a146103dc575f80fd5b806313faede61161020657806313faede6146102f657806316ba10e01461031957806316c38b3c1461033857806318160ddd14610357578063228025e81461036e575f80fd5b806301ffc9a71461024257806306fdde03146102765780630788370314610297578063081812fc146102ac578063095ea7b3146102e3575b5f80fd5b34801561024d575f80fd5b5061026161025c366004611832565b6106c6565b60405190151581526020015b60405180910390f35b348015610281575f80fd5b5061028a610717565b60405161026d919061189a565b6102aa6102a53660046118ac565b6107a7565b005b3480156102b7575f80fd5b506102cb6102c63660046118ac565b610a93565b6040516001600160a01b03909116815260200161026d565b6102aa6102f13660046118de565b610ad5565b348015610301575f80fd5b5061030b600f5481565b60405190815260200161026d565b348015610324575f80fd5b506102aa61033336600461198d565b610b73565b348015610343575f80fd5b506102aa6103523660046119e1565b610b8b565b348015610362575f80fd5b506001545f540361030b565b348015610379575f80fd5b506102aa6103883660046118ac565b610ba6565b6102aa61039b3660046119fa565b610bb3565b3480156103ab575f80fd5b5061030b600e5481565b3480156103c0575f80fd5b506102aa610d43565b6102aa6103d73660046119fa565b610dcc565b3480156103e7575f80fd5b506102aa6103f63660046118ac565b610de6565b348015610406575f80fd5b5061030b60115481565b34801561041b575f80fd5b506102aa61042a36600461198d565b610df3565b34801561043a575f80fd5b5060125461026190610100900460ff1681565b348015610458575f80fd5b5061028a610e07565b34801561046c575f80fd5b506012546102619060ff1681565b348015610485575f80fd5b506102aa6104943660046118ac565b610e93565b3480156104a4575f80fd5b5061028a610ea0565b3480156104b8575f80fd5b506102cb6104c73660046118ac565b610ead565b3480156104d7575f80fd5b5061030b6104e6366004611a33565b610eb7565b3480156104f6575f80fd5b506102aa610f04565b34801561050a575f80fd5b506102aa61051936600461198d565b610f15565b348015610529575f80fd5b506008546001600160a01b03166102cb565b348015610546575f80fd5b5061030b60105481565b34801561055b575f80fd5b5061028a610f29565b34801561056f575f80fd5b506102aa61057e366004611a4c565b610f38565b34801561058e575f80fd5b5061028a610fa3565b3480156105a2575f80fd5b506102aa6105b13660046118ac565b610fb0565b6102aa6105c4366004611a7d565b610fbd565b3480156105d4575f80fd5b5061028a6105e33660046118ac565b611007565b3480156105f3575f80fd5b5061030b600d5481565b348015610608575f80fd5b506102aa6106173660046119e1565b611175565b348015610627575f80fd5b50610261610636366004611a33565b60136020525f908152604090205460ff1681565b348015610655575f80fd5b50610261610664366004611af4565b611197565b348015610674575f80fd5b506102aa610683366004611b1c565b6111c4565b348015610693575f80fd5b506102aa6106a2366004611a33565b611235565b3480156106b2575f80fd5b506102aa6106c13660046118ac565b6112ae565b5f6301ffc9a760e01b6001600160e01b0319831614806106f657506380ac58cd60e01b6001600160e01b03198316145b806107115750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461072690611b3d565b80601f016020809104026020016040519081016040528092919081815260200182805461075290611b3d565b801561079d5780601f106107745761010080835404028352916020019161079d565b820191905f5260205f20905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b60125460ff16156107f45760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064015b60405180910390fd5b3332146108435760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e742066726f6d20636f6e74726163740000000000000060448201526064016107eb565b600d54816108536001545f540390565b61085d9190611b89565b11156108ab5760405162461bcd60e51b815260206004820152601c60248201527f6d617820737570706c7920776f756c642062652065786365656465640000000060448201526064016107eb565b335f908152600560205260409081902054601154911c67ffffffffffffffff16906108d68383611b89565b11156109325760405162461bcd60e51b815260206004820152602560248201527f6d6178206d696e74207065722077616c6c657420776f756c6420626520657863604482015264195959195960da1b60648201526084016107eb565b5f815f036109e857610945600184611b9c565b90505f83116109965760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016107eb565b80600f546109a49190611baf565b3410156109e35760405162461bcd60e51b815260206004820152600d60248201526c1d985b1d59481b9bdd081b595d609a1b60448201526064016107eb565b610a84565b508180610a375760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016107eb565b80600f54610a459190611baf565b341015610a845760405162461bcd60e51b815260206004820152600d60248201526c1d985b1d59481b9bdd081b595d609a1b60448201526064016107eb565b610a8e33846112bb565b505050565b5f610a9d826112d4565b610aba576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610adf82610ead565b9050336001600160a01b03821614610b1857610afb8133611197565b610b18576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b7b6112f9565b600c610b878282611c0b565b5050565b610b936112f9565b6012805460ff1916911515919091179055565b610bae6112f9565b600d55565b5f610bbd82611353565b9050836001600160a01b0316816001600160a01b031614610bf05760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610c3c57610c1f8633611197565b610c3c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c6357604051633a954ecd60e21b815260040160405180910390fd5b8015610c6d575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610cf957600184015f818152600460205260408120549003610cf7575f548114610cf7575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d4b6112f9565b610d536113b4565b5f610d666008546001600160a01b031690565b6001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610dad576040519150601f19603f3d011682016040523d82523d5f602084013e610db2565b606091505b5050905080610dbf575f80fd5b50610dca6001600955565b565b610a8e83838360405180602001604052805f815250610fbd565b610dee6112f9565b600f55565b610dfb6112f9565b600b610b878282611c0b565b600c8054610e1490611b3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4090611b3d565b8015610e8b5780601f10610e6257610100808354040283529160200191610e8b565b820191905f5260205f20905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b610e9b6112f9565b601155565b600a8054610e1490611b3d565b5f61071182611353565b5f6001600160a01b038216610edf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b610f0c6112f9565b610dca5f61140d565b610f1d6112f9565b600a610b878282611c0b565b60606003805461072690611b3d565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610e1490611b3d565b610fb86112f9565b601055565b610fc8848484610bb3565b6001600160a01b0383163b1561100157610fe48484848461145e565b611001576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611012826112d4565b6110765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107eb565b601254610100900460ff1615155f0361111957600b805461109690611b3d565b80601f01602080910402602001604051908101604052809291908181526020018280546110c290611b3d565b801561110d5780601f106110e45761010080835404028352916020019161110d565b820191905f5260205f20905b8154815290600101906020018083116110f057829003601f168201915b50505050509050919050565b5f611122611546565b90505f8151116111405760405180602001604052805f81525061116e565b8061114a84611555565b600c60405160200161115e93929190611cc7565b6040516020818303038152906040525b9392505050565b61117d6112f9565b601280549115156101000261ff0019909216919091179055565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6111cc6112f9565b600d54826111dc6001545f540390565b6111e69190611b89565b111561122b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107eb565b610b8781836112bb565b61123d6112f9565b6001600160a01b0381166112a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107eb565b6112ab8161140d565b50565b6112b66112f9565b600e55565b610b87828260405180602001604052805f8152506115e5565b5f8054821080156107115750505f90815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610dca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107eb565b5f815f5481101561139b575f8181526004602052604081205490600160e01b82169003611399575b805f0361116e57505f19015f8181526004602052604090205461137b565b505b604051636f96cda160e11b815260040160405180910390fd5b6002600954036114065760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107eb565b6002600955565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611492903390899088908890600401611d62565b6020604051808303815f875af19250505080156114cc575060408051601f3d908101601f191682019092526114c991810190611d9e565b60015b611528573d8080156114f9576040519150601f19603f3d011682016040523d82523d5f602084013e6114fe565b606091505b5080515f03611520576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461072690611b3d565b60605f6115618361164e565b60010190505f8167ffffffffffffffff81111561158057611580611906565b6040519080825280601f01601f1916602001820160405280156115aa576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115b457509392505050565b6115ef8383611725565b6001600160a01b0383163b15610a8e575f548281035b6116175f86838060010194508661145e565b611634576040516368d2bf6b60e11b815260040160405180910390fd5b81811061160557815f5414611647575f80fd5b5050505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061168c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106116b8576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106116d657662386f26fc10000830492506010015b6305f5e10083106116ee576305f5e100830492506008015b612710831061170257612710830492506004015b60648310611714576064830492506002015b600a83106107115760010192915050565b5f8054908290036117495760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146117f55780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001016117bf565b50815f0361181557604051622e076360e81b815260040160405180910390fd5b5f5550505050565b6001600160e01b0319811681146112ab575f80fd5b5f60208284031215611842575f80fd5b813561116e8161181d565b5f5b8381101561186757818101518382015260200161184f565b50505f910152565b5f815180845261188681602086016020860161184d565b601f01601f19169290920160200192915050565b602081525f61116e602083018461186f565b5f602082840312156118bc575f80fd5b5035919050565b80356001600160a01b03811681146118d9575f80fd5b919050565b5f80604083850312156118ef575f80fd5b6118f8836118c3565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561193457611934611906565b604051601f8501601f19908116603f0116810190828211818310171561195c5761195c611906565b81604052809350858152868686011115611974575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561199d575f80fd5b813567ffffffffffffffff8111156119b3575f80fd5b8201601f810184136119c3575f80fd5b61153e8482356020840161191a565b803580151581146118d9575f80fd5b5f602082840312156119f1575f80fd5b61116e826119d2565b5f805f60608486031215611a0c575f80fd5b611a15846118c3565b9250611a23602085016118c3565b9150604084013590509250925092565b5f60208284031215611a43575f80fd5b61116e826118c3565b5f8060408385031215611a5d575f80fd5b611a66836118c3565b9150611a74602084016119d2565b90509250929050565b5f805f8060808587031215611a90575f80fd5b611a99856118c3565b9350611aa7602086016118c3565b925060408501359150606085013567ffffffffffffffff811115611ac9575f80fd5b8501601f81018713611ad9575f80fd5b611ae88782356020840161191a565b91505092959194509250565b5f8060408385031215611b05575f80fd5b611b0e836118c3565b9150611a74602084016118c3565b5f8060408385031215611b2d575f80fd5b82359150611a74602084016118c3565b600181811c90821680611b5157607f821691505b602082108103611b6f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561071157610711611b75565b8181038181111561071157610711611b75565b808202811582820484141761071157610711611b75565b601f821115610a8e575f81815260208120601f850160051c81016020861015611bec5750805b601f850160051c820191505b81811015610d3b57828155600101611bf8565b815167ffffffffffffffff811115611c2557611c25611906565b611c3981611c338454611b3d565b84611bc6565b602080601f831160018114611c6c575f8415611c555750858301515b5f19600386901b1c1916600185901b178555610d3b565b5f85815260208120601f198616915b82811015611c9a57888601518255948401946001909101908401611c7b565b5085821015611cb757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f84516020611cd98285838a0161184d565b855191840191611cec8184848a0161184d565b85549201915f90611cfc81611b3d565b60018281168015611d145760018114611d2957611d52565b60ff1984168752821515830287019450611d52565b895f52855f205f5b84811015611d4a57815489820152908301908701611d31565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611d949083018461186f565b9695505050505050565b5f60208284031215611dae575f80fd5b815161116e8161181d56fea2646970667358221220b174cd664a1daefbfc9b9a22c51576266609e59d8843e7dce7feaf3d9b1ebf0364736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007526564526f636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352454400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261666b72656968376664616c706f746b6a7361736233716368686c346369786d66706e697661797a32706b74716a666d36627962657863736b6d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023e575f3560e01c806360d3e1ae11610134578063a45ba8e7116100b3578063e0a8085311610078578063e0a80853146105fd578063e0ec7c361461061c578063e985e9c51461064a578063efbd73f414610669578063f2fde38b14610688578063f676308a146106a7575f80fd5b8063a45ba8e714610583578063b071401b14610597578063b88d4fde146105b6578063c87b56dd146105c9578063d5abeb01146105e8575f80fd5b80637ec4a659116100f95780637ec4a659146104ff5780638da5cb5b1461051e57806394354fd01461053b57806395d89b4114610550578063a22cb46514610564575f80fd5b806360d3e1ae1461047a57806362b99ad4146104995780636352211e146104ad57806370a08231146104cc578063715018a6146104eb575f80fd5b806323b872dd116101c0578063453c231011610185578063453c2310146103fb5780634fdd43cb14610410578063518302271461042f5780635503a0e81461044d5780635c975abb14610461575f80fd5b806323b872dd1461038d57806324a6ab0c146103a05780633ccfd60b146103b557806342842e0e146103c957806344a0d68a146103dc575f80fd5b806313faede61161020657806313faede6146102f657806316ba10e01461031957806316c38b3c1461033857806318160ddd14610357578063228025e81461036e575f80fd5b806301ffc9a71461024257806306fdde03146102765780630788370314610297578063081812fc146102ac578063095ea7b3146102e3575b5f80fd5b34801561024d575f80fd5b5061026161025c366004611832565b6106c6565b60405190151581526020015b60405180910390f35b348015610281575f80fd5b5061028a610717565b60405161026d919061189a565b6102aa6102a53660046118ac565b6107a7565b005b3480156102b7575f80fd5b506102cb6102c63660046118ac565b610a93565b6040516001600160a01b03909116815260200161026d565b6102aa6102f13660046118de565b610ad5565b348015610301575f80fd5b5061030b600f5481565b60405190815260200161026d565b348015610324575f80fd5b506102aa61033336600461198d565b610b73565b348015610343575f80fd5b506102aa6103523660046119e1565b610b8b565b348015610362575f80fd5b506001545f540361030b565b348015610379575f80fd5b506102aa6103883660046118ac565b610ba6565b6102aa61039b3660046119fa565b610bb3565b3480156103ab575f80fd5b5061030b600e5481565b3480156103c0575f80fd5b506102aa610d43565b6102aa6103d73660046119fa565b610dcc565b3480156103e7575f80fd5b506102aa6103f63660046118ac565b610de6565b348015610406575f80fd5b5061030b60115481565b34801561041b575f80fd5b506102aa61042a36600461198d565b610df3565b34801561043a575f80fd5b5060125461026190610100900460ff1681565b348015610458575f80fd5b5061028a610e07565b34801561046c575f80fd5b506012546102619060ff1681565b348015610485575f80fd5b506102aa6104943660046118ac565b610e93565b3480156104a4575f80fd5b5061028a610ea0565b3480156104b8575f80fd5b506102cb6104c73660046118ac565b610ead565b3480156104d7575f80fd5b5061030b6104e6366004611a33565b610eb7565b3480156104f6575f80fd5b506102aa610f04565b34801561050a575f80fd5b506102aa61051936600461198d565b610f15565b348015610529575f80fd5b506008546001600160a01b03166102cb565b348015610546575f80fd5b5061030b60105481565b34801561055b575f80fd5b5061028a610f29565b34801561056f575f80fd5b506102aa61057e366004611a4c565b610f38565b34801561058e575f80fd5b5061028a610fa3565b3480156105a2575f80fd5b506102aa6105b13660046118ac565b610fb0565b6102aa6105c4366004611a7d565b610fbd565b3480156105d4575f80fd5b5061028a6105e33660046118ac565b611007565b3480156105f3575f80fd5b5061030b600d5481565b348015610608575f80fd5b506102aa6106173660046119e1565b611175565b348015610627575f80fd5b50610261610636366004611a33565b60136020525f908152604090205460ff1681565b348015610655575f80fd5b50610261610664366004611af4565b611197565b348015610674575f80fd5b506102aa610683366004611b1c565b6111c4565b348015610693575f80fd5b506102aa6106a2366004611a33565b611235565b3480156106b2575f80fd5b506102aa6106c13660046118ac565b6112ae565b5f6301ffc9a760e01b6001600160e01b0319831614806106f657506380ac58cd60e01b6001600160e01b03198316145b806107115750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461072690611b3d565b80601f016020809104026020016040519081016040528092919081815260200182805461075290611b3d565b801561079d5780601f106107745761010080835404028352916020019161079d565b820191905f5260205f20905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b60125460ff16156107f45760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064015b60405180910390fd5b3332146108435760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e742066726f6d20636f6e74726163740000000000000060448201526064016107eb565b600d54816108536001545f540390565b61085d9190611b89565b11156108ab5760405162461bcd60e51b815260206004820152601c60248201527f6d617820737570706c7920776f756c642062652065786365656465640000000060448201526064016107eb565b335f908152600560205260409081902054601154911c67ffffffffffffffff16906108d68383611b89565b11156109325760405162461bcd60e51b815260206004820152602560248201527f6d6178206d696e74207065722077616c6c657420776f756c6420626520657863604482015264195959195960da1b60648201526084016107eb565b5f815f036109e857610945600184611b9c565b90505f83116109965760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016107eb565b80600f546109a49190611baf565b3410156109e35760405162461bcd60e51b815260206004820152600d60248201526c1d985b1d59481b9bdd081b595d609a1b60448201526064016107eb565b610a84565b508180610a375760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016107eb565b80600f54610a459190611baf565b341015610a845760405162461bcd60e51b815260206004820152600d60248201526c1d985b1d59481b9bdd081b595d609a1b60448201526064016107eb565b610a8e33846112bb565b505050565b5f610a9d826112d4565b610aba576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610adf82610ead565b9050336001600160a01b03821614610b1857610afb8133611197565b610b18576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b7b6112f9565b600c610b878282611c0b565b5050565b610b936112f9565b6012805460ff1916911515919091179055565b610bae6112f9565b600d55565b5f610bbd82611353565b9050836001600160a01b0316816001600160a01b031614610bf05760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610c3c57610c1f8633611197565b610c3c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c6357604051633a954ecd60e21b815260040160405180910390fd5b8015610c6d575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610cf957600184015f818152600460205260408120549003610cf7575f548114610cf7575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d4b6112f9565b610d536113b4565b5f610d666008546001600160a01b031690565b6001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610dad576040519150601f19603f3d011682016040523d82523d5f602084013e610db2565b606091505b5050905080610dbf575f80fd5b50610dca6001600955565b565b610a8e83838360405180602001604052805f815250610fbd565b610dee6112f9565b600f55565b610dfb6112f9565b600b610b878282611c0b565b600c8054610e1490611b3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4090611b3d565b8015610e8b5780601f10610e6257610100808354040283529160200191610e8b565b820191905f5260205f20905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b610e9b6112f9565b601155565b600a8054610e1490611b3d565b5f61071182611353565b5f6001600160a01b038216610edf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b610f0c6112f9565b610dca5f61140d565b610f1d6112f9565b600a610b878282611c0b565b60606003805461072690611b3d565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610e1490611b3d565b610fb86112f9565b601055565b610fc8848484610bb3565b6001600160a01b0383163b1561100157610fe48484848461145e565b611001576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611012826112d4565b6110765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107eb565b601254610100900460ff1615155f0361111957600b805461109690611b3d565b80601f01602080910402602001604051908101604052809291908181526020018280546110c290611b3d565b801561110d5780601f106110e45761010080835404028352916020019161110d565b820191905f5260205f20905b8154815290600101906020018083116110f057829003601f168201915b50505050509050919050565b5f611122611546565b90505f8151116111405760405180602001604052805f81525061116e565b8061114a84611555565b600c60405160200161115e93929190611cc7565b6040516020818303038152906040525b9392505050565b61117d6112f9565b601280549115156101000261ff0019909216919091179055565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6111cc6112f9565b600d54826111dc6001545f540390565b6111e69190611b89565b111561122b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107eb565b610b8781836112bb565b61123d6112f9565b6001600160a01b0381166112a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107eb565b6112ab8161140d565b50565b6112b66112f9565b600e55565b610b87828260405180602001604052805f8152506115e5565b5f8054821080156107115750505f90815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610dca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107eb565b5f815f5481101561139b575f8181526004602052604081205490600160e01b82169003611399575b805f0361116e57505f19015f8181526004602052604090205461137b565b505b604051636f96cda160e11b815260040160405180910390fd5b6002600954036114065760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107eb565b6002600955565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611492903390899088908890600401611d62565b6020604051808303815f875af19250505080156114cc575060408051601f3d908101601f191682019092526114c991810190611d9e565b60015b611528573d8080156114f9576040519150601f19603f3d011682016040523d82523d5f602084013e6114fe565b606091505b5080515f03611520576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461072690611b3d565b60605f6115618361164e565b60010190505f8167ffffffffffffffff81111561158057611580611906565b6040519080825280601f01601f1916602001820160405280156115aa576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115b457509392505050565b6115ef8383611725565b6001600160a01b0383163b15610a8e575f548281035b6116175f86838060010194508661145e565b611634576040516368d2bf6b60e11b815260040160405180910390fd5b81811061160557815f5414611647575f80fd5b5050505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061168c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106116b8576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106116d657662386f26fc10000830492506010015b6305f5e10083106116ee576305f5e100830492506008015b612710831061170257612710830492506004015b60648310611714576064830492506002015b600a83106107115760010192915050565b5f8054908290036117495760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146117f55780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001016117bf565b50815f0361181557604051622e076360e81b815260040160405180910390fd5b5f5550505050565b6001600160e01b0319811681146112ab575f80fd5b5f60208284031215611842575f80fd5b813561116e8161181d565b5f5b8381101561186757818101518382015260200161184f565b50505f910152565b5f815180845261188681602086016020860161184d565b601f01601f19169290920160200192915050565b602081525f61116e602083018461186f565b5f602082840312156118bc575f80fd5b5035919050565b80356001600160a01b03811681146118d9575f80fd5b919050565b5f80604083850312156118ef575f80fd5b6118f8836118c3565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561193457611934611906565b604051601f8501601f19908116603f0116810190828211818310171561195c5761195c611906565b81604052809350858152868686011115611974575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561199d575f80fd5b813567ffffffffffffffff8111156119b3575f80fd5b8201601f810184136119c3575f80fd5b61153e8482356020840161191a565b803580151581146118d9575f80fd5b5f602082840312156119f1575f80fd5b61116e826119d2565b5f805f60608486031215611a0c575f80fd5b611a15846118c3565b9250611a23602085016118c3565b9150604084013590509250925092565b5f60208284031215611a43575f80fd5b61116e826118c3565b5f8060408385031215611a5d575f80fd5b611a66836118c3565b9150611a74602084016119d2565b90509250929050565b5f805f8060808587031215611a90575f80fd5b611a99856118c3565b9350611aa7602086016118c3565b925060408501359150606085013567ffffffffffffffff811115611ac9575f80fd5b8501601f81018713611ad9575f80fd5b611ae88782356020840161191a565b91505092959194509250565b5f8060408385031215611b05575f80fd5b611b0e836118c3565b9150611a74602084016118c3565b5f8060408385031215611b2d575f80fd5b82359150611a74602084016118c3565b600181811c90821680611b5157607f821691505b602082108103611b6f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561071157610711611b75565b8181038181111561071157610711611b75565b808202811582820484141761071157610711611b75565b601f821115610a8e575f81815260208120601f850160051c81016020861015611bec5750805b601f850160051c820191505b81811015610d3b57828155600101611bf8565b815167ffffffffffffffff811115611c2557611c25611906565b611c3981611c338454611b3d565b84611bc6565b602080601f831160018114611c6c575f8415611c555750858301515b5f19600386901b1c1916600185901b178555610d3b565b5f85815260208120601f198616915b82811015611c9a57888601518255948401946001909101908401611c7b565b5085821015611cb757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f84516020611cd98285838a0161184d565b855191840191611cec8184848a0161184d565b85549201915f90611cfc81611b3d565b60018281168015611d145760018114611d2957611d52565b60ff1984168752821515830287019450611d52565b895f52855f205f5b84811015611d4a57815489820152908301908701611d31565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611d949083018461186f565b9695505050505050565b5f60208284031215611dae575f80fd5b815161116e8161181d56fea2646970667358221220b174cd664a1daefbfc9b9a22c51576266609e59d8843e7dce7feaf3d9b1ebf0364736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007526564526f636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352454400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261666b72656968376664616c706f746b6a7361736233716368686c346369786d66706e697661797a32706b74716a666d36627962657863736b6d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): RedRock
Arg [1] : _tokenSymbol (string): RED
Arg [2] : _hiddenMetadataUri (string): ipfs://bafkreih7fdalpotkjsasb3qchhl4cixmfpnivayz2pktqjfm6bybexcskm/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 526564526f636b00000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5245440000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f6261666b72656968376664616c706f746b6a73617362337163
Arg [9] : 68686c346369786d66706e697661797a32706b74716a666d3662796265786373
Arg [10] : 6b6d2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

75715:4499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42585:639;;;;;;;;;;-1:-1:-1;42585:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42585:639:0;;;;;;;;43487:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;77109:909::-;;;;;;:::i;:::-;;:::i;:::-;;49978:218;;;;;;;;;;-1:-1:-1;49978:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;49978:218:0;1533:203:1;49411:408:0;;;;;;:::i;:::-;;:::i;75985:30::-;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;75985:30:0;2178:177:1;79601:100:0;;;;;;;;;;-1:-1:-1;79601:100:0;;;;;:::i;:::-;;:::i;79707:77::-;;;;;;;;;;-1:-1:-1;79707:77:0;;;;;:::i;:::-;;:::i;39238:323::-;;;;;;;;;;-1:-1:-1;39512:12:0;;39299:7;39496:13;:28;39238:323;;79887:91;;;;;;;;;;-1:-1:-1;79887:91:0;;;;;:::i;:::-;;:::i;53617:2825::-;;;;;;:::i;:::-;;:::i;75952:28::-;;;;;;;;;;;;;;;;80051:150;;;;;;;;;;;;;:::i;56538:193::-;;;;;;:::i;:::-;;:::i;79035:71::-;;;;;;;;;;-1:-1:-1;79035:71:0;;;;;:::i;:::-;;:::i;76060:29::-;;;;;;;;;;;;;;;;79357:132;;;;;;;;;;-1:-1:-1;79357:132:0;;;;;:::i;:::-;;:::i;76126:28::-;;;;;;;;;;-1:-1:-1;76126:28:0;;;;;;;;;;;75874:33;;;;;;;;;;;;;:::i;76096:25::-;;;;;;;;;;-1:-1:-1;76096:25:0;;;;;;;;79248:103;;;;;;;;;;-1:-1:-1;79248:103:0;;;;;:::i;:::-;;:::i;75805:28::-;;;;;;;;;;;;;:::i;44880:152::-;;;;;;;;;;-1:-1:-1;44880:152:0;;;;;:::i;:::-;;:::i;40422:233::-;;;;;;;;;;-1:-1:-1;40422:233:0;;;;;:::i;:::-;;:::i;23364:103::-;;;;;;;;;;;;;:::i;79495:100::-;;;;;;;;;;-1:-1:-1;79495:100:0;;;;;:::i;:::-;;:::i;22723:87::-;;;;;;;;;;-1:-1:-1;22796:6:0;;-1:-1:-1;;;;;22796:6:0;22723:87;;76020:35;;;;;;;;;;;;;;;;43663:104;;;;;;;;;;;;;:::i;50536:234::-;;;;;;;;;;-1:-1:-1;50536:234:0;;;;;:::i;:::-;;:::i;75838:31::-;;;;;;;;;;;;;:::i;79112:127::-;;;;;;;;;;-1:-1:-1;79112:127:0;;;;;:::i;:::-;;:::i;57329:407::-;;;;;;:::i;:::-;;:::i;78201:442::-;;;;;;;;;;-1:-1:-1;78201:442:0;;;;;:::i;:::-;;:::i;75920:27::-;;;;;;;;;;;;;;;;78948:81;;;;;;;;;;-1:-1:-1;78948:81:0;;;;;:::i;:::-;;:::i;76161:47::-;;;;;;;;;;-1:-1:-1;76161:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50927:164;;;;;;;;;;-1:-1:-1;50927:164:0;;;;;:::i;:::-;;:::i;78723:219::-;;;;;;;;;;-1:-1:-1;78723:219:0;;;;;:::i;:::-;;:::i;23622:201::-;;;;;;;;;;-1:-1:-1;23622:201:0;;;;;:::i;:::-;;:::i;79790:89::-;;;;;;;;;;-1:-1:-1;79790:89:0;;;;;:::i;:::-;;:::i;42585:639::-;42670:4;-1:-1:-1;;;;;;;;;42994:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;43071:25:0;;;42994:102;:179;;;-1:-1:-1;;;;;;;;;;43148:25:0;;;42994:179;42974:199;42585:639;-1:-1:-1;;42585:639:0:o;43487:100::-;43541:13;43574:5;43567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43487:100;:::o;77109:909::-;77176:6;;;;77175:7;77167:38;;;;-1:-1:-1;;;77167:38:0;;6501:2:1;77167:38:0;;;6483:21:1;6540:2;6520:18;;;6513:30;-1:-1:-1;;;6559:18:1;;;6552:48;6617:18;;77167:38:0;;;;;;;;;77224:10;77238:9;77224:23;77216:61;;;;-1:-1:-1;;;77216:61:0;;6848:2:1;77216:61:0;;;6830:21:1;6887:2;6867:18;;;6860:30;6926:27;6906:18;;;6899:55;6971:18;;77216:61:0;6646:349:1;77216:61:0;77324:9;;77314:6;77298:13;39512:12;;39299:7;39496:13;:28;;39238:323;77298:13;:22;;;;:::i;:::-;:35;;77290:76;;;;-1:-1:-1;;;77290:76:0;;7464:2:1;77290:76:0;;;7446:21:1;7503:2;7483:18;;;7476:30;7542;7522:18;;;7515:58;7590:18;;77290:76:0;7262:352:1;77290:76:0;77405:10;77377:11;40826:25;;;:18;:25;;34719:2;40826:25;;;;;77456:12;;40826:50;;34581:13;40825:82;;77437:15;77446:6;40825:82;77437:15;:::i;:::-;:31;;77429:81;;;;-1:-1:-1;;;77429:81:0;;7821:2:1;77429:81:0;;;7803:21:1;7860:2;7840:18;;;7833:30;7899:34;7879:18;;;7872:62;-1:-1:-1;;;7950:18:1;;;7943:35;7995:19;;77429:81:0;7619:401:1;77429:81:0;77523:20;77560:6;77570:1;77560:11;77556:415;;77606:10;77615:1;77606:6;:10;:::i;:::-;77588:28;;77648:1;77639:6;:10;77631:52;;;;-1:-1:-1;;;77631:52:0;;8360:2:1;77631:52:0;;;8342:21:1;8399:2;8379:18;;;8372:30;8438:31;8418:18;;;8411:59;8487:18;;77631:52:0;8158:353:1;77631:52:0;77726:15;77719:4;;:22;;;;:::i;:::-;77706:9;:35;;77698:61;;;;-1:-1:-1;;;77698:61:0;;8891:2:1;77698:61:0;;;8873:21:1;8930:2;8910:18;;;8903:30;-1:-1:-1;;;8949:18:1;;;8942:43;9002:18;;77698:61:0;8689:337:1;77698:61:0;77556:415;;;-1:-1:-1;77810:6:0;77839:10;77831:52;;;;-1:-1:-1;;;77831:52:0;;8360:2:1;77831:52:0;;;8342:21:1;8399:2;8379:18;;;8372:30;8438:31;8418:18;;;8411:59;8487:18;;77831:52:0;8158:353:1;77831:52:0;77926:15;77919:4;;:22;;;;:::i;:::-;77906:9;:35;;77898:61;;;;-1:-1:-1;;;77898:61:0;;8891:2:1;77898:61:0;;;8873:21:1;8930:2;8910:18;;;8903:30;-1:-1:-1;;;8949:18:1;;;8942:43;9002:18;;77898:61:0;8689:337:1;77898:61:0;77981:29;77991:10;78003:6;77981:9;:29::i;:::-;77156:862;;77109:909;:::o;49978:218::-;50054:7;50079:16;50087:7;50079;:16::i;:::-;50074:64;;50104:34;;-1:-1:-1;;;50104:34:0;;;;;;;;;;;50074:64;-1:-1:-1;50158:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;50158:30:0;;49978:218::o;49411:408::-;49500:13;49516:16;49524:7;49516;:16::i;:::-;49500:32;-1:-1:-1;73744:10:0;-1:-1:-1;;;;;49549:28:0;;;49545:175;;49597:44;49614:5;73744:10;50927:164;:::i;49597:44::-;49592:128;;49669:35;;-1:-1:-1;;;49669:35:0;;;;;;;;;;;49592:128;49732:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;49732:35:0;-1:-1:-1;;;;;49732:35:0;;;;;;;;;49783:28;;49732:24;;49783:28;;;;;;;49489:330;49411:408;;:::o;79601:100::-;22609:13;:11;:13::i;:::-;79673:9:::1;:22;79685:10:::0;79673:9;:22:::1;:::i;:::-;;79601:100:::0;:::o;79707:77::-;22609:13;:11;:13::i;:::-;79763:6:::1;:15:::0;;-1:-1:-1;;79763:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;79707:77::o;79887:91::-;22609:13;:11;:13::i;:::-;79950:9:::1;:22:::0;79887:91::o;53617:2825::-;53759:27;53789;53808:7;53789:18;:27::i;:::-;53759:57;;53874:4;-1:-1:-1;;;;;53833:45:0;53849:19;-1:-1:-1;;;;;53833:45:0;;53829:86;;53887:28;;-1:-1:-1;;;53887:28:0;;;;;;;;;;;53829:86;53929:27;52725:24;;;:15;:24;;;;;52953:26;;73744:10;52350:30;;;-1:-1:-1;;;;;52043:28:0;;52328:20;;;52325:56;54115:180;;54208:43;54225:4;73744:10;50927:164;:::i;54208:43::-;54203:92;;54260:35;;-1:-1:-1;;;54260:35:0;;;;;;;;;;;54203:92;-1:-1:-1;;;;;54312:16:0;;54308:52;;54337:23;;-1:-1:-1;;;54337:23:0;;;;;;;;;;;54308:52;54509:15;54506:160;;;54649:1;54628:19;54621:30;54506:160;-1:-1:-1;;;;;55046:24:0;;;;;;;:18;:24;;;;;;55044:26;;-1:-1:-1;;55044:26:0;;;55115:22;;;;;;;;;55113:24;;-1:-1:-1;55113:24:0;;;48269:11;48244:23;48240:41;48227:63;-1:-1:-1;;;48227:63:0;55408:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;55703:47:0;;:52;;55699:627;;55808:1;55798:11;;55776:19;55931:30;;;:17;:30;;;;;;:35;;55927:384;;56069:13;;56054:11;:28;56050:242;;56216:30;;;;:17;:30;;;;;:52;;;56050:242;55757:569;55699:627;56373:7;56369:2;-1:-1:-1;;;;;56354:27:0;56363:4;-1:-1:-1;;;;;56354:27:0;;;;;;;;;;;56392:42;53748:2694;;;53617:2825;;;:::o;80051:150::-;22609:13;:11;:13::i;:::-;2378:21:::1;:19;:21::i;:::-;80109:7:::2;80130;22796:6:::0;;-1:-1:-1;;;;;22796:6:0;;22723:87;80130:7:::2;-1:-1:-1::0;;;;;80122:21:0::2;80151;80122:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80108:69;;;80192:2;80184:11;;;::::0;::::2;;80101:100;2422:20:::1;1816:1:::0;2942:7;:22;2759:213;2422:20:::1;80051:150::o:0;56538:193::-;56684:39;56701:4;56707:2;56711:7;56684:39;;;;;;;;;;;;:16;:39::i;79035:71::-;22609:13;:11;:13::i;:::-;79088:4:::1;:12:::0;79035:71::o;79357:132::-;22609:13;:11;:13::i;:::-;79445:17:::1;:38;79465:18:::0;79445:17;:38:::1;:::i;75874:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79248:103::-;22609:13;:11;:13::i;:::-;79317:12:::1;:28:::0;79248:103::o;75805:28::-;;;;;;;:::i;44880:152::-;44952:7;44995:27;45014:7;44995:18;:27::i;40422:233::-;40494:7;-1:-1:-1;;;;;40518:19:0;;40514:60;;40546:28;;-1:-1:-1;;;40546:28:0;;;;;;;;;;;40514:60;-1:-1:-1;;;;;;40592:25:0;;;;;:18;:25;;;;;;34581:13;40592:55;;40422:233::o;23364:103::-;22609:13;:11;:13::i;:::-;23429:30:::1;23456:1;23429:18;:30::i;79495:100::-:0;22609:13;:11;:13::i;:::-;79567:9:::1;:22;79579:10:::0;79567:9;:22:::1;:::i;43663:104::-:0;43719:13;43752:7;43745:14;;;;;:::i;50536:234::-;73744:10;50631:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;50631:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;50631:60:0;;;;;;;;;;50707:55;;540:41:1;;;50631:49:0;;73744:10;50707:55;;513:18:1;50707:55:0;;;;;;;50536:234;;:::o;75838:31::-;;;;;;;:::i;79112:127::-;22609:13;:11;:13::i;:::-;79193:18:::1;:40:::0;79112:127::o;57329:407::-;57504:31;57517:4;57523:2;57527:7;57504:12;:31::i;:::-;-1:-1:-1;;;;;57550:14:0;;;:19;57546:183;;57589:56;57620:4;57626:2;57630:7;57639:5;57589:30;:56::i;:::-;57584:145;;57673:40;;-1:-1:-1;;;57673:40:0;;;;;;;;;;;57584:145;57329:407;;;;:::o;78201:442::-;78272:13;78302:17;78310:8;78302:7;:17::i;:::-;78294:77;;;;-1:-1:-1;;;78294:77:0;;11647:2:1;78294:77:0;;;11629:21:1;11686:2;11666:18;;;11659:30;11725:34;11705:18;;;11698:62;-1:-1:-1;;;11776:18:1;;;11769:45;11831:19;;78294:77:0;11445:411:1;78294:77:0;78384:8;;;;;;;:17;;78396:5;78384:17;78380:64;;78419:17;78412:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78201:442;;;:::o;78380:64::-;78452:28;78483:10;:8;:10::i;:::-;78452:41;;78538:1;78513:14;78507:28;:32;:130;;;;;;;;;;;;;;;;;78575:14;78591:19;:8;:17;:19::i;:::-;78612:9;78558:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78507:130;78500:137;78201:442;-1:-1:-1;;;78201:442:0:o;78948:81::-;22609:13;:11;:13::i;:::-;79006:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;79006:17:0;;::::1;::::0;;;::::1;::::0;;78948:81::o;50927:164::-;-1:-1:-1;;;;;51048:25:0;;;51024:4;51048:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50927:164::o;78723:219::-;22609:13;:11;:13::i;:::-;78856:9:::1;;78841:11;78825:13;39512:12:::0;;39299:7;39496:13;:28;;39238:323;78825:13:::1;:27;;;;:::i;:::-;:40;;78817:73;;;::::0;-1:-1:-1;;;78817:73:0;;13324:2:1;78817:73:0::1;::::0;::::1;13306:21:1::0;13363:2;13343:18;;;13336:30;-1:-1:-1;;;13382:18:1;;;13375:50;13442:18;;78817:73:0::1;13122:344:1::0;78817:73:0::1;78901:33;78911:9;78922:11;78901:9;:33::i;23622:201::-:0;22609:13;:11;:13::i;:::-;-1:-1:-1;;;;;23711:22:0;::::1;23703:73;;;::::0;-1:-1:-1;;;23703:73:0;;13673:2:1;23703:73:0::1;::::0;::::1;13655:21:1::0;13712:2;13692:18;;;13685:30;13751:34;13731:18;;;13724:62;-1:-1:-1;;;13802:18:1;;;13795:36;13848:19;;23703:73:0::1;13471:402:1::0;23703:73:0::1;23787:28;23806:8;23787:18;:28::i;:::-;23622:201:::0;:::o;79790:89::-;22609:13;:11;:13::i;:::-;79852:10:::1;:21:::0;79790:89::o;67489:112::-;67566:27;67576:2;67580:8;67566:27;;;;;;;;;;;;:9;:27::i;51349:282::-;51414:4;51504:13;;51494:7;:23;51451:153;;;;-1:-1:-1;;51555:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;51555:44:0;:49;;51349:282::o;22888:132::-;22796:6;;-1:-1:-1;;;;;22796:6:0;73744:10;22952:23;22944:68;;;;-1:-1:-1;;;22944:68:0;;14080:2:1;22944:68:0;;;14062:21:1;;;14099:18;;;14092:30;14158:34;14138:18;;;14131:62;14210:18;;22944:68:0;13878:356:1;46035:1275:0;46102:7;46137;46239:13;;46232:4;:20;46228:1015;;;46277:14;46294:23;;;:17;:23;;;;;;;-1:-1:-1;;;46383:24:0;;:29;;46379:845;;47048:113;47055:6;47065:1;47055:11;47048:113;;-1:-1:-1;;;47126:6:0;47108:25;;;;:17;:25;;;;;;47048:113;;46379:845;46254:989;46228:1015;47271:31;;-1:-1:-1;;;47271:31:0;;;;;;;;;;;2458:293;1860:1;2592:7;;:19;2584:63;;;;-1:-1:-1;;;2584:63:0;;14441:2:1;2584:63:0;;;14423:21:1;14480:2;14460:18;;;14453:30;14519:33;14499:18;;;14492:61;14570:18;;2584:63:0;14239:355:1;2584:63:0;1860:1;2725:7;:18;2458:293::o;23983:191::-;24076:6;;;-1:-1:-1;;;;;24093:17:0;;;-1:-1:-1;;;;;;24093:17:0;;;;;;;24126:40;;24076:6;;;24093:17;24076:6;;24126:40;;24057:16;;24126:40;24046:128;23983:191;:::o;59820:716::-;60004:88;;-1:-1:-1;;;60004:88:0;;59983:4;;-1:-1:-1;;;;;60004:45:0;;;;;:88;;73744:10;;60071:4;;60077:7;;60086:5;;60004:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60004:88:0;;;;;;;;-1:-1:-1;;60004:88:0;;;;;;;;;;;;:::i;:::-;;;60000:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60287:6;:13;60304:1;60287:18;60283:235;;60333:40;;-1:-1:-1;;;60333:40:0;;;;;;;;;;;60283:235;60476:6;60470:13;60461:6;60457:2;60453:15;60446:38;60000:529;-1:-1:-1;;;;;;60163:64:0;-1:-1:-1;;;60163:64:0;;-1:-1:-1;60000:529:0;59820:716;;;;;;:::o;78091:104::-;78151:13;78180:9;78173:16;;;;;:::i;18193:716::-;18249:13;18300:14;18317:17;18328:5;18317:10;:17::i;:::-;18337:1;18317:21;18300:38;;18353:20;18387:6;18376:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18376:18:0;-1:-1:-1;18353:41:0;-1:-1:-1;18518:28:0;;;18534:2;18518:28;18575:288;-1:-1:-1;;18607:5:0;-1:-1:-1;;;18744:2:0;18733:14;;18728:30;18607:5;18715:44;18805:2;18796:11;;;-1:-1:-1;18826:21:0;18575:288;18826:21;-1:-1:-1;18884:6:0;18193:716;-1:-1:-1;;;18193:716:0:o;66716:689::-;66847:19;66853:2;66857:8;66847:5;:19::i;:::-;-1:-1:-1;;;;;66908:14:0;;;:19;66904:483;;66948:11;66962:13;67010:14;;;67043:233;67074:62;67113:1;67117:2;67121:7;;;;;;67130:5;67074:30;:62::i;:::-;67069:167;;67172:40;;-1:-1:-1;;;67172:40:0;;;;;;;;;;;67069:167;67271:3;67263:5;:11;67043:233;;67358:3;67341:13;;:20;67337:34;;67363:8;;;67337:34;66929:458;;66716:689;;;:::o;15027:948::-;15080:7;;-1:-1:-1;;;15158:17:0;;15154:106;;-1:-1:-1;;;15196:17:0;;;-1:-1:-1;15242:2:0;15232:12;15154:106;15287:8;15278:5;:17;15274:106;;15325:8;15316:17;;;-1:-1:-1;15362:2:0;15352:12;15274:106;15407:8;15398:5;:17;15394:106;;15445:8;15436:17;;;-1:-1:-1;15482:2:0;15472:12;15394:106;15527:7;15518:5;:16;15514:103;;15564:7;15555:16;;;-1:-1:-1;15600:1:0;15590:11;15514:103;15644:7;15635:5;:16;15631:103;;15681:7;15672:16;;;-1:-1:-1;15717:1:0;15707:11;15631:103;15761:7;15752:5;:16;15748:103;;15798:7;15789:16;;;-1:-1:-1;15834:1:0;15824:11;15748:103;15878:7;15869:5;:16;15865:68;;15916:1;15906:11;15961:6;15027:948;-1:-1:-1;;15027:948:0:o;60998:2966::-;61071:20;61094:13;;;61122;;;61118:44;;61144:18;;-1:-1:-1;;;61144:18:0;;;;;;;;;;;61118:44;-1:-1:-1;;;;;61650:22:0;;;;;;:18;:22;;;;34719:2;61650:22;;;:71;;61688:32;61676:45;;61650:71;;;61964:31;;;:17;:31;;;;;-1:-1:-1;48700:15:0;;48674:24;48670:46;48269:11;48244:23;48240:41;48237:52;48227:63;;61964:173;;62199:23;;;;61964:31;;61650:22;;62964:25;61650:22;;62817:335;63478:1;63464:12;63460:20;63418:346;63519:3;63510:7;63507:16;63418:346;;63737:7;63727:8;63724:1;63697:25;63694:1;63691;63686:59;63572:1;63559:15;63418:346;;;63422:77;63797:8;63809:1;63797:13;63793:45;;63819:19;;-1:-1:-1;;;63819:19:0;;;;;;;;;;;63793:45;63855:13;:19;-1:-1:-1;77156:862:0;;77109:909;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:127::-;2421:10;2416:3;2412:20;2409:1;2402:31;2452:4;2449:1;2442:15;2476:4;2473:1;2466:15;2492:632;2557:5;2587:18;2628:2;2620:6;2617:14;2614:40;;;2634:18;;:::i;:::-;2709:2;2703:9;2677:2;2763:15;;-1:-1:-1;;2759:24:1;;;2785:2;2755:33;2751:42;2739:55;;;2809:18;;;2829:22;;;2806:46;2803:72;;;2855:18;;:::i;:::-;2895:10;2891:2;2884:22;2924:6;2915:15;;2954:6;2946;2939:22;2994:3;2985:6;2980:3;2976:16;2973:25;2970:45;;;3011:1;3008;3001:12;2970:45;3061:6;3056:3;3049:4;3041:6;3037:17;3024:44;3116:1;3109:4;3100:6;3092;3088:19;3084:30;3077:41;;;;2492:632;;;;;:::o;3129:451::-;3198:6;3251:2;3239:9;3230:7;3226:23;3222:32;3219:52;;;3267:1;3264;3257:12;3219:52;3307:9;3294:23;3340:18;3332:6;3329:30;3326:50;;;3372:1;3369;3362:12;3326:50;3395:22;;3448:4;3440:13;;3436:27;-1:-1:-1;3426:55:1;;3477:1;3474;3467:12;3426:55;3500:74;3566:7;3561:2;3548:16;3543:2;3539;3535:11;3500:74;:::i;3585:160::-;3650:20;;3706:13;;3699:21;3689:32;;3679:60;;3735:1;3732;3725:12;3750:180;3806:6;3859:2;3847:9;3838:7;3834:23;3830:32;3827:52;;;3875:1;3872;3865:12;3827:52;3898:26;3914:9;3898:26;:::i;3935:328::-;4012:6;4020;4028;4081:2;4069:9;4060:7;4056:23;4052:32;4049:52;;;4097:1;4094;4087:12;4049:52;4120:29;4139:9;4120:29;:::i;:::-;4110:39;;4168:38;4202:2;4191:9;4187:18;4168:38;:::i;:::-;4158:48;;4253:2;4242:9;4238:18;4225:32;4215:42;;3935:328;;;;;:::o;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:254::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4459:254;;;;;:::o;4718:667::-;4813:6;4821;4829;4837;4890:3;4878:9;4869:7;4865:23;4861:33;4858:53;;;4907:1;4904;4897:12;4858:53;4930:29;4949:9;4930:29;:::i;:::-;4920:39;;4978:38;5012:2;5001:9;4997:18;4978:38;:::i;:::-;4968:48;;5063:2;5052:9;5048:18;5035:32;5025:42;;5118:2;5107:9;5103:18;5090:32;5145:18;5137:6;5134:30;5131:50;;;5177:1;5174;5167:12;5131:50;5200:22;;5253:4;5245:13;;5241:27;-1:-1:-1;5231:55:1;;5282:1;5279;5272:12;5231:55;5305:74;5371:7;5366:2;5353:16;5348:2;5344;5340:11;5305:74;:::i;:::-;5295:84;;;4718:667;;;;;;;:::o;5390:260::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;5655:254::-;5723:6;5731;5784:2;5772:9;5763:7;5759:23;5755:32;5752:52;;;5800:1;5797;5790:12;5752:52;5836:9;5823:23;5813:33;;5865:38;5899:2;5888:9;5884:18;5865:38;:::i;5914:380::-;5993:1;5989:12;;;;6036;;;6057:61;;6111:4;6103:6;6099:17;6089:27;;6057:61;6164:2;6156:6;6153:14;6133:18;6130:38;6127:161;;6210:10;6205:3;6201:20;6198:1;6191:31;6245:4;6242:1;6235:15;6273:4;6270:1;6263:15;6127:161;;5914:380;;;:::o;7000:127::-;7061:10;7056:3;7052:20;7049:1;7042:31;7092:4;7089:1;7082:15;7116:4;7113:1;7106:15;7132:125;7197:9;;;7218:10;;;7215:36;;;7231:18;;:::i;8025:128::-;8092:9;;;8113:11;;;8110:37;;;8127:18;;:::i;8516:168::-;8589:9;;;8620;;8637:15;;;8631:22;;8617:37;8607:71;;8658:18;;:::i;9157:545::-;9259:2;9254:3;9251:11;9248:448;;;9295:1;9320:5;9316:2;9309:17;9365:4;9361:2;9351:19;9435:2;9423:10;9419:19;9416:1;9412:27;9406:4;9402:38;9471:4;9459:10;9456:20;9453:47;;;-1:-1:-1;9494:4:1;9453:47;9549:2;9544:3;9540:12;9537:1;9533:20;9527:4;9523:31;9513:41;;9604:82;9622:2;9615:5;9612:13;9604:82;;;9667:17;;;9648:1;9637:13;9604:82;;9878:1352;10004:3;9998:10;10031:18;10023:6;10020:30;10017:56;;;10053:18;;:::i;:::-;10082:97;10172:6;10132:38;10164:4;10158:11;10132:38;:::i;:::-;10126:4;10082:97;:::i;:::-;10234:4;;10298:2;10287:14;;10315:1;10310:663;;;;11017:1;11034:6;11031:89;;;-1:-1:-1;11086:19:1;;;11080:26;11031:89;-1:-1:-1;;9835:1:1;9831:11;;;9827:24;9823:29;9813:40;9859:1;9855:11;;;9810:57;11133:81;;10280:944;;10310:663;9104:1;9097:14;;;9141:4;9128:18;;-1:-1:-1;;10346:20:1;;;10464:236;10478:7;10475:1;10472:14;10464:236;;;10567:19;;;10561:26;10546:42;;10659:27;;;;10627:1;10615:14;;;;10494:19;;10464:236;;;10468:3;10728:6;10719:7;10716:19;10713:201;;;10789:19;;;10783:26;-1:-1:-1;;10872:1:1;10868:14;;;10884:3;10864:24;10860:37;10856:42;10841:58;10826:74;;10713:201;-1:-1:-1;;;;;10960:1:1;10944:14;;;10940:22;10927:36;;-1:-1:-1;9878:1352:1:o;11861:1256::-;12085:3;12123:6;12117:13;12149:4;12162:64;12219:6;12214:3;12209:2;12201:6;12197:15;12162:64;:::i;:::-;12289:13;;12248:16;;;;12311:68;12289:13;12248:16;12346:15;;;12311:68;:::i;:::-;12468:13;;12401:20;;;12441:1;;12506:36;12468:13;12506:36;:::i;:::-;12561:1;12578:18;;;12605:141;;;;12760:1;12755:337;;;;12571:521;;12605:141;-1:-1:-1;;12640:24:1;;12626:39;;12717:16;;12710:24;12696:39;;12685:51;;;-1:-1:-1;12605:141:1;;12755:337;12786:6;12783:1;12776:17;12834:2;12831:1;12821:16;12859:1;12873:169;12887:8;12884:1;12881:15;12873:169;;;12969:14;;12954:13;;;12947:37;13012:16;;;;12904:10;;12873:169;;;12877:3;;13073:8;13066:5;13062:20;13055:27;;12571:521;-1:-1:-1;13108:3:1;;11861:1256;-1:-1:-1;;;;;;;;;;11861:1256:1:o;14599:489::-;-1:-1:-1;;;;;14868:15:1;;;14850:34;;14920:15;;14915:2;14900:18;;14893:43;14967:2;14952:18;;14945:34;;;15015:3;15010:2;14995:18;;14988:31;;;14793:4;;15036:46;;15062:19;;15054:6;15036:46;:::i;:::-;15028:54;14599:489;-1:-1:-1;;;;;;14599:489:1:o;15093:249::-;15162:6;15215:2;15203:9;15194:7;15190:23;15186:32;15183:52;;;15231:1;15228;15221:12;15183:52;15263:9;15257:16;15282:30;15306:5;15282:30;:::i

Swarm Source

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

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