ETH Price: $3,096.65 (+0.95%)
Gas: 17 Gwei

Token

Squatzilla PePe (SPP)
 

Overview

Max Total Supply

3,560 SPP

Holders

3,277

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SPP
0x69d242e299ec05ea460489d90aecddc03a2b9ebe
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:
SquatzillaPePe

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.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;
    }
}

// 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.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.9;






 
 
 
contract SquatzillaPePe is ERC721A, Ownable, ReentrancyGuard, ERC2981 { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 6969;
    uint256 public _mintPrice = 0.005 ether;
    uint256 public _maxMintPerTx = 10;
 
    uint256 public _maxFreeMintPerAddr = 1;
    uint256 public _maxFreeMintSupply = 6969;
     uint256 public devSupply = 10;
 
    using Strings for uint256;
    string public baseURI;
 
    mapping(address => uint256) private _mintedFreeAmount;
 
 
    // Royalties
    address public royaltyAdd;
 
    constructor(string memory initBaseURI) ERC721A("Squatzilla PePe", "SPP") {
        baseURI = initBaseURI;
        setDefaultRoyalty(msg.sender, 500); // 5%
    }
 
    // Set default royalty account & percentage
    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) public {
        royaltyAdd = _receiver;
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }
 
    // Set token specific royalty
    function setTokenRoyalty(
        uint256 tokenId,
        uint96 feeNumerator
    ) external onlyOwner {
        _setTokenRoyalty(tokenId, royaltyAdd, feeNumerator);
    }
 
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view override returns (address, uint256) {
        // Get royalty info from ERC2981 base implementation
        (, uint royaltyAmt) = super.royaltyInfo(_tokenId, _salePrice);
        // Royalty address is always the one specified in this contract 
        return (royaltyAdd, royaltyAmt);
    }
 
    // /**
    //  * @dev See {IERC165-supportsInterface}.
    //  */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || 
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }
 
 
    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());
 
        if (isFree) {
            cost = 0;
        }
 
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply - devSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");
 
        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }
 
        _safeMint(msg.sender, count);
    }
 
     function devMint() public onlyOwner {
        devTotal += devSupply;
        emit DevMintEvent(_msgSender(), devTotal, devSupply);
        _safeMint(msg.sender, devSupply);
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
 
 
function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Block X2Y2
        if (operator == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354) {
            return false;
        }
 
 
        return super.isApprovedForAll(owner, operator);
    }
 
 
 
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }
 
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
 
    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }
 
    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }
 
    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611b39600d556611c37937e08000600e55600a600f556001601055611b39601155600a6012553480156200003757600080fd5b50604051620041e1380380620041e183398181016040528101906200005d919062000693565b6040518060400160405280600f81526020017f53717561747a696c6c61205065506500000000000000000000000000000000008152506040518060400160405280600381526020017f53505000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e192919062000446565b508060039080519060200190620000fa92919062000446565b506200010b6200016f60201b60201c565b600081905550505062000133620001276200017460201b60201c565b6200017c60201b60201c565b600160098190555080601390805190602001906200015392919062000446565b5062000168336101f46200024260201b60201c565b5062000863565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200029582826200029960201b60201c565b5050565b620002a96200043c60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200030a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000301906200076b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200037c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037390620007dd565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b82805462000454906200082e565b90600052602060002090601f016020900481019282620004785760008555620004c4565b82601f106200049357805160ff1916838001178555620004c4565b82800160010185558215620004c4579182015b82811115620004c3578251825591602001919060010190620004a6565b5b509050620004d39190620004d7565b5090565b5b80821115620004f2576000816000905550600101620004d8565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200055f8262000514565b810181811067ffffffffffffffff8211171562000581576200058062000525565b5b80604052505050565b600062000596620004f6565b9050620005a4828262000554565b919050565b600067ffffffffffffffff821115620005c757620005c662000525565b5b620005d28262000514565b9050602081019050919050565b60005b83811015620005ff578082015181840152602081019050620005e2565b838111156200060f576000848401525b50505050565b60006200062c6200062684620005a9565b6200058a565b9050828152602081018484840111156200064b576200064a6200050f565b5b62000658848285620005df565b509392505050565b600082601f8301126200067857620006776200050a565b5b81516200068a84826020860162000615565b91505092915050565b600060208284031215620006ac57620006ab62000500565b5b600082015167ffffffffffffffff811115620006cd57620006cc62000505565b5b620006db8482850162000660565b91505092915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000753602a83620006e4565b91506200076082620006f5565b604082019050919050565b60006020820190508181036000830152620007868162000744565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000620007c5601983620006e4565b9150620007d2826200078d565b602082019050919050565b60006020820190508181036000830152620007f881620007b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200084757607f821691505b6020821081036200085d576200085c620007ff565b5b50919050565b61396e80620008736000396000f3fe6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106dd578063c87b56dd146106f9578063de314a5914610736578063e985e9c514610761578063f2fde38b1461079e57610204565b806395d89b41146106425780639cb57d201461066d578063a0712d6814610698578063a22cb465146106b457610204565b8063715018a6116100e7578063715018a6146105975780637c69e207146105ae5780638da5cb5b146105c557806391b7f5ed146105f057806392910eec1461061957610204565b80636352211e146104c957806367a4f4a9146105065780636c0360eb1461052f57806370a082311461055a57610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461042457806341c66d0a1461042e57806342842e0e1461045957806355f804b3146104755780635e1c4b601461049e57610204565b8063190866921461037457806322f4596f1461039f57806323b872dd146103ca5780632a55205a146103e657610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461031e57806318160ddd1461034957610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906128a2565b6107c7565b60405161023d91906128ea565b60405180910390f35b34801561025257600080fd5b5061025b6108c1565b604051610268919061291e565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906129db565b6108c7565b005b3480156102a657600080fd5b506102af610916565b6040516102bc9190612ab4565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612b02565b6109a8565b6040516102f99190612b3e565b60405180910390f35b61031c60048036038101906103179190612b59565b610a27565b005b34801561032a57600080fd5b50610333610b6b565b604051610340919061291e565b60405180910390f35b34801561035557600080fd5b5061035e610b71565b60405161036b919061291e565b60405180910390f35b34801561038057600080fd5b50610389610b88565b6040516103969190612b3e565b60405180910390f35b3480156103ab57600080fd5b506103b4610bae565b6040516103c1919061291e565b60405180910390f35b6103e460048036038101906103df9190612b99565b610bb4565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612bec565b610ed6565b60405161041b929190612c2c565b60405180910390f35b61042c610f18565b005b34801561043a57600080fd5b50610443610fa9565b604051610450919061291e565b60405180910390f35b610473600480360381019061046e9190612b99565b610faf565b005b34801561048157600080fd5b5061049c60048036038101906104979190612d8a565b610fcf565b005b3480156104aa57600080fd5b506104b3610ff1565b6040516104c0919061291e565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190612b02565b610ff7565b6040516104fd9190612b3e565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612dd3565b611009565b005b34801561053b57600080fd5b50610544611042565b6040516105519190612ab4565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612e13565b6110d0565b60405161058e919061291e565b60405180910390f35b3480156105a357600080fd5b506105ac611188565b005b3480156105ba57600080fd5b506105c361119c565b005b3480156105d157600080fd5b506105da611213565b6040516105e79190612b3e565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612b02565b61123d565b005b34801561062557600080fd5b50610640600480360381019061063b9190612b02565b61124f565b005b34801561064e57600080fd5b50610657611261565b6040516106649190612ab4565b60405180910390f35b34801561067957600080fd5b506106826112f3565b60405161068f919061291e565b60405180910390f35b6106b260048036038101906106ad9190612b02565b6112f9565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612e6c565b611540565b005b6106f760048036038101906106f29190612f4d565b61164b565b005b34801561070557600080fd5b50610720600480360381019061071b9190612b02565b6116be565b60405161072d9190612ab4565b60405180910390f35b34801561074257600080fd5b5061074b61173a565b604051610758919061291e565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612fd0565b611740565b60405161079591906128ea565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190612e13565b6117a5565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109128282611828565b5050565b6060600280546109259061303f565b80601f01602080910402602001604051908101604052809291908181526020018280546109519061303f565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b3826119bd565b6109e9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282610ff7565b90508073ffffffffffffffffffffffffffffffffffffffff16610a53611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ab657610a7f81610a7a611a1c565b611740565b610ab5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610b7b611a24565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bbf82611a29565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c26576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3284611af5565b91509150610c488187610c43611a1c565b611b1c565b610c9457610c5d86610c58611a1c565b611740565b610c93576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cfa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d078686866001611b60565b8015610d1257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de085610dbc888887611b66565b7c020000000000000000000000000000000000000000000000000000000017611b8e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e665760006001850190506000600460008381526020019081526020016000205403610e64576000548114610e63578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ece8686866001611bb9565b505050505050565b6000806000610ee58585611bbf565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f20611da9565b610f28611e27565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f4e906130a1565b60006040518083038185875af1925050503d8060008114610f8b576040519150601f19603f3d011682016040523d82523d6000602084013e610f90565b606091505b5050905080610f9e57600080fd5b50610fa7611e76565b565b60125481565b610fca8383836040518060200160405280600081525061164b565b505050565b610fd7611da9565b8060139080519060200190610fed929190612793565b5050565b60115481565b600061100282611a29565b9050919050565b611011611da9565b61103e82601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611e80565b5050565b6013805461104f9061303f565b80601f016020809104026020016040519081016040528092919081815260200182805461107b9061303f565b80156110c85780601f1061109d576101008083540402835291602001916110c8565b820191906000526020600020905b8154815290600101906020018083116110ab57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611137576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611190611da9565b61119a6000612027565b565b6111a4611da9565b601254600c60008282546111b891906130e5565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e6111e86120ed565b600c546012546040516111fd9392919061313b565b60405180910390a1611211336012546120f5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611245611da9565b80600e8190555050565b611257611da9565b8060118190555050565b6060600380546112709061303f565b80601f016020809104026020016040519081016040528092919081815260200182805461129c9061303f565b80156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b5050505050905090565b60105481565b6000600e5490506000600160115461131191906130e5565b8361131a610b71565b61132491906130e5565b10801561137d575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461137a91906130e5565b11155b806113ba575061138b611213565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b905080156113c757600091505b81836113d39190613172565b341015611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613218565b60405180910390fd5b6001601254600d546114279190613238565b61143191906130e5565b8361143a610b71565b61144491906130e5565b10611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906132b8565b60405180910390fd5b6001600f5461149391906130e5565b83106114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90613324565b60405180910390fd5b80156115315782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461152991906130e5565b925050819055505b61153b33846120f5565b505050565b806007600061154d611a1c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115fa611a1c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163f91906128ea565b60405180910390a35050565b611656848484610bb4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116b85761168184848484612113565b6116b7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116c9826119bd565b611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff906133b6565b60405180910390fd5b601361171383612263565b6040516020016117249291906134f2565b6040516020818303038152906040529050919050565b600f5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611792576000905061179f565b61179c8383612331565b90505b92915050565b6117ad611da9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390613593565b60405180910390fd5b61182581612027565b50565b6118306123c5565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613625565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613691565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816119c8611a24565b111580156119d7575060005482105b8015611a15575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a38611a24565b11611abe57600054811015611abd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611abb575b60008103611ab1576004600083600190039350838152602001908152602001600020549050611a87565b8092505050611af0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7d8686846123cf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611d5457600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611d5e6123c5565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611d8a9190613172565b611d9491906136e0565b90508160000151819350935050509250929050565b611db16120ed565b73ffffffffffffffffffffffffffffffffffffffff16611dcf611213565b73ffffffffffffffffffffffffffffffffffffffff1614611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061375d565b60405180910390fd5b565b600260095403611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e63906137c9565b60405180910390fd5b6002600981905550565b6001600981905550565b611e886123c5565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90613625565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c90613835565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b61210f8282604051806020016040528060008152506123d8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612139611a1c565b8786866040518563ffffffff1660e01b815260040161215b94939291906138aa565b6020604051808303816000875af192505050801561219757506040513d601f19601f82011682018060405250810190612194919061390b565b60015b612210573d80600081146121c7576040519150601f19603f3d011682016040523d82523d6000602084013e6121cc565b606091505b506000815103612208576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161227284612475565b01905060008167ffffffffffffffff81111561229157612290612c5f565b5b6040519080825280601f01601f1916602001820160405280156122c35781602001600182028036833780820191505090505b509050600082602001820190505b600115612326578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161231a576123196136b1565b5b049450600085036122d1575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612710905090565b60009392505050565b6123e283836125c8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461247057600080549050600083820390505b6124226000868380600101945086612113565b612458576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061240f57816000541461246d57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124d3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124c9576124c86136b1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612510576d04ee2d6d415b85acef81000000008381612506576125056136b1565b5b0492506020810190505b662386f26fc10000831061253f57662386f26fc100008381612535576125346136b1565b5b0492506010810190505b6305f5e1008310612568576305f5e100838161255e5761255d6136b1565b5b0492506008810190505b612710831061258d576127108381612583576125826136b1565b5b0492506004810190505b606483106125b057606483816125a6576125a56136b1565b5b0492506002810190505b600a83106125bf576001810190505b80915050919050565b60008054905060008203612608576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126156000848385611b60565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061268c8361267d6000866000611b66565b61268685612783565b17611b8e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461272d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126f2565b5060008203612768576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061277e6000848385611bb9565b505050565b60006001821460e11b9050919050565b82805461279f9061303f565b90600052602060002090601f0160209004810192826127c15760008555612808565b82601f106127da57805160ff1916838001178555612808565b82800160010185558215612808579182015b828111156128075782518255916020019190600101906127ec565b5b5090506128159190612819565b5090565b5b8082111561283257600081600090555060010161281a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61287f8161284a565b811461288a57600080fd5b50565b60008135905061289c81612876565b92915050565b6000602082840312156128b8576128b7612840565b5b60006128c68482850161288d565b91505092915050565b60008115159050919050565b6128e4816128cf565b82525050565b60006020820190506128ff60008301846128db565b92915050565b6000819050919050565b61291881612905565b82525050565b6000602082019050612933600083018461290f565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061296482612939565b9050919050565b61297481612959565b811461297f57600080fd5b50565b6000813590506129918161296b565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6129b881612997565b81146129c357600080fd5b50565b6000813590506129d5816129af565b92915050565b600080604083850312156129f2576129f1612840565b5b6000612a0085828601612982565b9250506020612a11858286016129c6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a55578082015181840152602081019050612a3a565b83811115612a64576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a8682612a1b565b612a908185612a26565b9350612aa0818560208601612a37565b612aa981612a6a565b840191505092915050565b60006020820190508181036000830152612ace8184612a7b565b905092915050565b612adf81612905565b8114612aea57600080fd5b50565b600081359050612afc81612ad6565b92915050565b600060208284031215612b1857612b17612840565b5b6000612b2684828501612aed565b91505092915050565b612b3881612959565b82525050565b6000602082019050612b536000830184612b2f565b92915050565b60008060408385031215612b7057612b6f612840565b5b6000612b7e85828601612982565b9250506020612b8f85828601612aed565b9150509250929050565b600080600060608486031215612bb257612bb1612840565b5b6000612bc086828701612982565b9350506020612bd186828701612982565b9250506040612be286828701612aed565b9150509250925092565b60008060408385031215612c0357612c02612840565b5b6000612c1185828601612aed565b9250506020612c2285828601612aed565b9150509250929050565b6000604082019050612c416000830185612b2f565b612c4e602083018461290f565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9782612a6a565b810181811067ffffffffffffffff82111715612cb657612cb5612c5f565b5b80604052505050565b6000612cc9612836565b9050612cd58282612c8e565b919050565b600067ffffffffffffffff821115612cf557612cf4612c5f565b5b612cfe82612a6a565b9050602081019050919050565b82818337600083830152505050565b6000612d2d612d2884612cda565b612cbf565b905082815260208101848484011115612d4957612d48612c5a565b5b612d54848285612d0b565b509392505050565b600082601f830112612d7157612d70612c55565b5b8135612d81848260208601612d1a565b91505092915050565b600060208284031215612da057612d9f612840565b5b600082013567ffffffffffffffff811115612dbe57612dbd612845565b5b612dca84828501612d5c565b91505092915050565b60008060408385031215612dea57612de9612840565b5b6000612df885828601612aed565b9250506020612e09858286016129c6565b9150509250929050565b600060208284031215612e2957612e28612840565b5b6000612e3784828501612982565b91505092915050565b612e49816128cf565b8114612e5457600080fd5b50565b600081359050612e6681612e40565b92915050565b60008060408385031215612e8357612e82612840565b5b6000612e9185828601612982565b9250506020612ea285828601612e57565b9150509250929050565b600067ffffffffffffffff821115612ec757612ec6612c5f565b5b612ed082612a6a565b9050602081019050919050565b6000612ef0612eeb84612eac565b612cbf565b905082815260208101848484011115612f0c57612f0b612c5a565b5b612f17848285612d0b565b509392505050565b600082601f830112612f3457612f33612c55565b5b8135612f44848260208601612edd565b91505092915050565b60008060008060808587031215612f6757612f66612840565b5b6000612f7587828801612982565b9450506020612f8687828801612982565b9350506040612f9787828801612aed565b925050606085013567ffffffffffffffff811115612fb857612fb7612845565b5b612fc487828801612f1f565b91505092959194509250565b60008060408385031215612fe757612fe6612840565b5b6000612ff585828601612982565b925050602061300685828601612982565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305757607f821691505b60208210810361306a57613069613010565b5b50919050565b600081905092915050565b50565b600061308b600083613070565b91506130968261307b565b600082019050919050565b60006130ac8261307e565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f082612905565b91506130fb83612905565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131305761312f6130b6565b5b828201905092915050565b60006060820190506131506000830186612b2f565b61315d602083018561290f565b61316a604083018461290f565b949350505050565b600061317d82612905565b915061318883612905565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131c1576131c06130b6565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613202601d83612a26565b915061320d826131cc565b602082019050919050565b60006020820190508181036000830152613231816131f5565b9050919050565b600061324382612905565b915061324e83612905565b925082821015613261576132606130b6565b5b828203905092915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b60006132a2600983612a26565b91506132ad8261326c565b602082019050919050565b600060208201905081810360008301526132d181613295565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061330e601383612a26565b9150613319826132d8565b602082019050919050565b6000602082019050818103600083015261333d81613301565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133a0602f83612a26565b91506133ab82613344565b604082019050919050565b600060208201905081810360008301526133cf81613393565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546134038161303f565b61340d81866133d6565b9450600182166000811461342857600181146134395761346c565b60ff1983168652818601935061346c565b613442856133e1565b60005b8381101561346457815481890152600182019150602081019050613445565b838801955050505b50505092915050565b600061348082612a1b565b61348a81856133d6565b935061349a818560208601612a37565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134dc6005836133d6565b91506134e7826134a6565b600582019050919050565b60006134fe82856133f6565b915061350a8284613475565b9150613515826134cf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061357d602683612a26565b915061358882613521565b604082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061360f602a83612a26565b915061361a826135b3565b604082019050919050565b6000602082019050818103600083015261363e81613602565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061367b601983612a26565b915061368682613645565b602082019050919050565b600060208201905081810360008301526136aa8161366e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136eb82612905565b91506136f683612905565b925082613706576137056136b1565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613747602083612a26565b915061375282613711565b602082019050919050565b600060208201905081810360008301526137768161373a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137b3601f83612a26565b91506137be8261377d565b602082019050919050565b600060208201905081810360008301526137e2816137a6565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b600061381f601b83612a26565b915061382a826137e9565b602082019050919050565b6000602082019050818103600083015261384e81613812565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061387c82613855565b6138868185613860565b9350613896818560208601612a37565b61389f81612a6a565b840191505092915050565b60006080820190506138bf6000830187612b2f565b6138cc6020830186612b2f565b6138d9604083018561290f565b81810360608301526138eb8184613871565b905095945050505050565b60008151905061390581612876565b92915050565b60006020828403121561392157613920612840565b5b600061392f848285016138f6565b9150509291505056fea2646970667358221220ff433b04a2a1c09fda77faab99b7776be863c319b1ed22bd8f88bd679e23890964736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006468747470733a2f2f636f707065722d656c6465726c792d726176656e2d3234352e6d7970696e6174612e636c6f75642f697066732f516d506b4c4631655175533362576235374e6b467a764276706637526d554d47454c3334396b32336e6d50757a422f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106dd578063c87b56dd146106f9578063de314a5914610736578063e985e9c514610761578063f2fde38b1461079e57610204565b806395d89b41146106425780639cb57d201461066d578063a0712d6814610698578063a22cb465146106b457610204565b8063715018a6116100e7578063715018a6146105975780637c69e207146105ae5780638da5cb5b146105c557806391b7f5ed146105f057806392910eec1461061957610204565b80636352211e146104c957806367a4f4a9146105065780636c0360eb1461052f57806370a082311461055a57610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461042457806341c66d0a1461042e57806342842e0e1461045957806355f804b3146104755780635e1c4b601461049e57610204565b8063190866921461037457806322f4596f1461039f57806323b872dd146103ca5780632a55205a146103e657610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461031e57806318160ddd1461034957610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906128a2565b6107c7565b60405161023d91906128ea565b60405180910390f35b34801561025257600080fd5b5061025b6108c1565b604051610268919061291e565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906129db565b6108c7565b005b3480156102a657600080fd5b506102af610916565b6040516102bc9190612ab4565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612b02565b6109a8565b6040516102f99190612b3e565b60405180910390f35b61031c60048036038101906103179190612b59565b610a27565b005b34801561032a57600080fd5b50610333610b6b565b604051610340919061291e565b60405180910390f35b34801561035557600080fd5b5061035e610b71565b60405161036b919061291e565b60405180910390f35b34801561038057600080fd5b50610389610b88565b6040516103969190612b3e565b60405180910390f35b3480156103ab57600080fd5b506103b4610bae565b6040516103c1919061291e565b60405180910390f35b6103e460048036038101906103df9190612b99565b610bb4565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612bec565b610ed6565b60405161041b929190612c2c565b60405180910390f35b61042c610f18565b005b34801561043a57600080fd5b50610443610fa9565b604051610450919061291e565b60405180910390f35b610473600480360381019061046e9190612b99565b610faf565b005b34801561048157600080fd5b5061049c60048036038101906104979190612d8a565b610fcf565b005b3480156104aa57600080fd5b506104b3610ff1565b6040516104c0919061291e565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190612b02565b610ff7565b6040516104fd9190612b3e565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612dd3565b611009565b005b34801561053b57600080fd5b50610544611042565b6040516105519190612ab4565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612e13565b6110d0565b60405161058e919061291e565b60405180910390f35b3480156105a357600080fd5b506105ac611188565b005b3480156105ba57600080fd5b506105c361119c565b005b3480156105d157600080fd5b506105da611213565b6040516105e79190612b3e565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612b02565b61123d565b005b34801561062557600080fd5b50610640600480360381019061063b9190612b02565b61124f565b005b34801561064e57600080fd5b50610657611261565b6040516106649190612ab4565b60405180910390f35b34801561067957600080fd5b506106826112f3565b60405161068f919061291e565b60405180910390f35b6106b260048036038101906106ad9190612b02565b6112f9565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612e6c565b611540565b005b6106f760048036038101906106f29190612f4d565b61164b565b005b34801561070557600080fd5b50610720600480360381019061071b9190612b02565b6116be565b60405161072d9190612ab4565b60405180910390f35b34801561074257600080fd5b5061074b61173a565b604051610758919061291e565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612fd0565b611740565b60405161079591906128ea565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190612e13565b6117a5565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109128282611828565b5050565b6060600280546109259061303f565b80601f01602080910402602001604051908101604052809291908181526020018280546109519061303f565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b3826119bd565b6109e9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282610ff7565b90508073ffffffffffffffffffffffffffffffffffffffff16610a53611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ab657610a7f81610a7a611a1c565b611740565b610ab5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610b7b611a24565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bbf82611a29565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c26576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3284611af5565b91509150610c488187610c43611a1c565b611b1c565b610c9457610c5d86610c58611a1c565b611740565b610c93576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cfa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d078686866001611b60565b8015610d1257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de085610dbc888887611b66565b7c020000000000000000000000000000000000000000000000000000000017611b8e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e665760006001850190506000600460008381526020019081526020016000205403610e64576000548114610e63578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ece8686866001611bb9565b505050505050565b6000806000610ee58585611bbf565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f20611da9565b610f28611e27565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f4e906130a1565b60006040518083038185875af1925050503d8060008114610f8b576040519150601f19603f3d011682016040523d82523d6000602084013e610f90565b606091505b5050905080610f9e57600080fd5b50610fa7611e76565b565b60125481565b610fca8383836040518060200160405280600081525061164b565b505050565b610fd7611da9565b8060139080519060200190610fed929190612793565b5050565b60115481565b600061100282611a29565b9050919050565b611011611da9565b61103e82601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611e80565b5050565b6013805461104f9061303f565b80601f016020809104026020016040519081016040528092919081815260200182805461107b9061303f565b80156110c85780601f1061109d576101008083540402835291602001916110c8565b820191906000526020600020905b8154815290600101906020018083116110ab57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611137576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611190611da9565b61119a6000612027565b565b6111a4611da9565b601254600c60008282546111b891906130e5565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e6111e86120ed565b600c546012546040516111fd9392919061313b565b60405180910390a1611211336012546120f5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611245611da9565b80600e8190555050565b611257611da9565b8060118190555050565b6060600380546112709061303f565b80601f016020809104026020016040519081016040528092919081815260200182805461129c9061303f565b80156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b5050505050905090565b60105481565b6000600e5490506000600160115461131191906130e5565b8361131a610b71565b61132491906130e5565b10801561137d575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461137a91906130e5565b11155b806113ba575061138b611213565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b905080156113c757600091505b81836113d39190613172565b341015611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613218565b60405180910390fd5b6001601254600d546114279190613238565b61143191906130e5565b8361143a610b71565b61144491906130e5565b10611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906132b8565b60405180910390fd5b6001600f5461149391906130e5565b83106114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90613324565b60405180910390fd5b80156115315782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461152991906130e5565b925050819055505b61153b33846120f5565b505050565b806007600061154d611a1c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115fa611a1c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163f91906128ea565b60405180910390a35050565b611656848484610bb4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116b85761168184848484612113565b6116b7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116c9826119bd565b611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff906133b6565b60405180910390fd5b601361171383612263565b6040516020016117249291906134f2565b6040516020818303038152906040529050919050565b600f5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611792576000905061179f565b61179c8383612331565b90505b92915050565b6117ad611da9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390613593565b60405180910390fd5b61182581612027565b50565b6118306123c5565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613625565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613691565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816119c8611a24565b111580156119d7575060005482105b8015611a15575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a38611a24565b11611abe57600054811015611abd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611abb575b60008103611ab1576004600083600190039350838152602001908152602001600020549050611a87565b8092505050611af0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7d8686846123cf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611d5457600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611d5e6123c5565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611d8a9190613172565b611d9491906136e0565b90508160000151819350935050509250929050565b611db16120ed565b73ffffffffffffffffffffffffffffffffffffffff16611dcf611213565b73ffffffffffffffffffffffffffffffffffffffff1614611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061375d565b60405180910390fd5b565b600260095403611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e63906137c9565b60405180910390fd5b6002600981905550565b6001600981905550565b611e886123c5565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90613625565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c90613835565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b61210f8282604051806020016040528060008152506123d8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612139611a1c565b8786866040518563ffffffff1660e01b815260040161215b94939291906138aa565b6020604051808303816000875af192505050801561219757506040513d601f19601f82011682018060405250810190612194919061390b565b60015b612210573d80600081146121c7576040519150601f19603f3d011682016040523d82523d6000602084013e6121cc565b606091505b506000815103612208576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161227284612475565b01905060008167ffffffffffffffff81111561229157612290612c5f565b5b6040519080825280601f01601f1916602001820160405280156122c35781602001600182028036833780820191505090505b509050600082602001820190505b600115612326578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161231a576123196136b1565b5b049450600085036122d1575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612710905090565b60009392505050565b6123e283836125c8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461247057600080549050600083820390505b6124226000868380600101945086612113565b612458576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061240f57816000541461246d57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124d3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124c9576124c86136b1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612510576d04ee2d6d415b85acef81000000008381612506576125056136b1565b5b0492506020810190505b662386f26fc10000831061253f57662386f26fc100008381612535576125346136b1565b5b0492506010810190505b6305f5e1008310612568576305f5e100838161255e5761255d6136b1565b5b0492506008810190505b612710831061258d576127108381612583576125826136b1565b5b0492506004810190505b606483106125b057606483816125a6576125a56136b1565b5b0492506002810190505b600a83106125bf576001810190505b80915050919050565b60008054905060008203612608576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126156000848385611b60565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061268c8361267d6000866000611b66565b61268685612783565b17611b8e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461272d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126f2565b5060008203612768576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061277e6000848385611bb9565b505050565b60006001821460e11b9050919050565b82805461279f9061303f565b90600052602060002090601f0160209004810192826127c15760008555612808565b82601f106127da57805160ff1916838001178555612808565b82800160010185558215612808579182015b828111156128075782518255916020019190600101906127ec565b5b5090506128159190612819565b5090565b5b8082111561283257600081600090555060010161281a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61287f8161284a565b811461288a57600080fd5b50565b60008135905061289c81612876565b92915050565b6000602082840312156128b8576128b7612840565b5b60006128c68482850161288d565b91505092915050565b60008115159050919050565b6128e4816128cf565b82525050565b60006020820190506128ff60008301846128db565b92915050565b6000819050919050565b61291881612905565b82525050565b6000602082019050612933600083018461290f565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061296482612939565b9050919050565b61297481612959565b811461297f57600080fd5b50565b6000813590506129918161296b565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6129b881612997565b81146129c357600080fd5b50565b6000813590506129d5816129af565b92915050565b600080604083850312156129f2576129f1612840565b5b6000612a0085828601612982565b9250506020612a11858286016129c6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a55578082015181840152602081019050612a3a565b83811115612a64576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a8682612a1b565b612a908185612a26565b9350612aa0818560208601612a37565b612aa981612a6a565b840191505092915050565b60006020820190508181036000830152612ace8184612a7b565b905092915050565b612adf81612905565b8114612aea57600080fd5b50565b600081359050612afc81612ad6565b92915050565b600060208284031215612b1857612b17612840565b5b6000612b2684828501612aed565b91505092915050565b612b3881612959565b82525050565b6000602082019050612b536000830184612b2f565b92915050565b60008060408385031215612b7057612b6f612840565b5b6000612b7e85828601612982565b9250506020612b8f85828601612aed565b9150509250929050565b600080600060608486031215612bb257612bb1612840565b5b6000612bc086828701612982565b9350506020612bd186828701612982565b9250506040612be286828701612aed565b9150509250925092565b60008060408385031215612c0357612c02612840565b5b6000612c1185828601612aed565b9250506020612c2285828601612aed565b9150509250929050565b6000604082019050612c416000830185612b2f565b612c4e602083018461290f565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9782612a6a565b810181811067ffffffffffffffff82111715612cb657612cb5612c5f565b5b80604052505050565b6000612cc9612836565b9050612cd58282612c8e565b919050565b600067ffffffffffffffff821115612cf557612cf4612c5f565b5b612cfe82612a6a565b9050602081019050919050565b82818337600083830152505050565b6000612d2d612d2884612cda565b612cbf565b905082815260208101848484011115612d4957612d48612c5a565b5b612d54848285612d0b565b509392505050565b600082601f830112612d7157612d70612c55565b5b8135612d81848260208601612d1a565b91505092915050565b600060208284031215612da057612d9f612840565b5b600082013567ffffffffffffffff811115612dbe57612dbd612845565b5b612dca84828501612d5c565b91505092915050565b60008060408385031215612dea57612de9612840565b5b6000612df885828601612aed565b9250506020612e09858286016129c6565b9150509250929050565b600060208284031215612e2957612e28612840565b5b6000612e3784828501612982565b91505092915050565b612e49816128cf565b8114612e5457600080fd5b50565b600081359050612e6681612e40565b92915050565b60008060408385031215612e8357612e82612840565b5b6000612e9185828601612982565b9250506020612ea285828601612e57565b9150509250929050565b600067ffffffffffffffff821115612ec757612ec6612c5f565b5b612ed082612a6a565b9050602081019050919050565b6000612ef0612eeb84612eac565b612cbf565b905082815260208101848484011115612f0c57612f0b612c5a565b5b612f17848285612d0b565b509392505050565b600082601f830112612f3457612f33612c55565b5b8135612f44848260208601612edd565b91505092915050565b60008060008060808587031215612f6757612f66612840565b5b6000612f7587828801612982565b9450506020612f8687828801612982565b9350506040612f9787828801612aed565b925050606085013567ffffffffffffffff811115612fb857612fb7612845565b5b612fc487828801612f1f565b91505092959194509250565b60008060408385031215612fe757612fe6612840565b5b6000612ff585828601612982565b925050602061300685828601612982565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305757607f821691505b60208210810361306a57613069613010565b5b50919050565b600081905092915050565b50565b600061308b600083613070565b91506130968261307b565b600082019050919050565b60006130ac8261307e565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f082612905565b91506130fb83612905565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131305761312f6130b6565b5b828201905092915050565b60006060820190506131506000830186612b2f565b61315d602083018561290f565b61316a604083018461290f565b949350505050565b600061317d82612905565b915061318883612905565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131c1576131c06130b6565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613202601d83612a26565b915061320d826131cc565b602082019050919050565b60006020820190508181036000830152613231816131f5565b9050919050565b600061324382612905565b915061324e83612905565b925082821015613261576132606130b6565b5b828203905092915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b60006132a2600983612a26565b91506132ad8261326c565b602082019050919050565b600060208201905081810360008301526132d181613295565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061330e601383612a26565b9150613319826132d8565b602082019050919050565b6000602082019050818103600083015261333d81613301565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133a0602f83612a26565b91506133ab82613344565b604082019050919050565b600060208201905081810360008301526133cf81613393565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546134038161303f565b61340d81866133d6565b9450600182166000811461342857600181146134395761346c565b60ff1983168652818601935061346c565b613442856133e1565b60005b8381101561346457815481890152600182019150602081019050613445565b838801955050505b50505092915050565b600061348082612a1b565b61348a81856133d6565b935061349a818560208601612a37565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134dc6005836133d6565b91506134e7826134a6565b600582019050919050565b60006134fe82856133f6565b915061350a8284613475565b9150613515826134cf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061357d602683612a26565b915061358882613521565b604082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061360f602a83612a26565b915061361a826135b3565b604082019050919050565b6000602082019050818103600083015261363e81613602565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061367b601983612a26565b915061368682613645565b602082019050919050565b600060208201905081810360008301526136aa8161366e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136eb82612905565b91506136f683612905565b925082613706576137056136b1565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613747602083612a26565b915061375282613711565b602082019050919050565b600060208201905081810360008301526137768161373a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137b3601f83612a26565b91506137be8261377d565b602082019050919050565b600060208201905081810360008301526137e2816137a6565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b600061381f601b83612a26565b915061382a826137e9565b602082019050919050565b6000602082019050818103600083015261384e81613812565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061387c82613855565b6138868185613860565b9350613896818560208601612a37565b61389f81612a6a565b840191505092915050565b60006080820190506138bf6000830187612b2f565b6138cc6020830186612b2f565b6138d9604083018561290f565b81810360608301526138eb8184613871565b905095945050505050565b60008151905061390581612876565b92915050565b60006020828403121561392157613920612840565b5b600061392f848285016138f6565b9150509291505056fea2646970667358221220ff433b04a2a1c09fda77faab99b7776be863c319b1ed22bd8f88bd679e23890964736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006468747470733a2f2f636f707065722d656c6465726c792d726176656e2d3234352e6d7970696e6174612e636c6f75642f697066732f516d506b4c4631655175533362576235374e6b467a764276706637526d554d47454c3334396b32336e6d50757a422f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): https://copper-elderly-raven-245.mypinata.cloud/ipfs/QmPkLF1eQuS3bWb57NkFzvBvpf7RmUMGEL349k23nmPuzB/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 68747470733a2f2f636f707065722d656c6465726c792d726176656e2d323435
Arg [3] : 2e6d7970696e6174612e636c6f75642f697066732f516d506b4c463165517553
Arg [4] : 3362576235374e6b467a764276706637526d554d47454c3334396b32336e6d50
Arg [5] : 757a422f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

80238:4390:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81938:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80465:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81090:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48041:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54532:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53965:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80396:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43792:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80833:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80426:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58171:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81491:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;84420:205;;;:::i;:::-;;80647:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61092:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84104:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80599:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49434:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81305:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80718:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44976:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27918:103;;;;;;;;;;;;;:::i;:::-;;83084:182;;;;;;;;;;;;;:::i;:::-;;27270:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84314:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84201:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48217;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80554:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82366:708;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55090:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61883:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83745:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80511:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83391:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28176:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81938:416;82041:4;82080:26;82065:41;;;:11;:41;;;;:84;;;;82139:10;82124:25;;:11;:25;;;;82065:84;:161;;;;82216:10;82201:25;;:11;:25;;;;82065:161;:238;;;;82293:10;82278:25;;:11;:25;;;;82065:238;82058:245;;81938:416;;;:::o;80465:39::-;;;;:::o;81090:171::-;81189:9;81176:10;;:22;;;;;;;;;;;;;;;;;;81209:44;81228:9;81239:13;81209:18;:44::i;:::-;81090:171;;:::o;48041:100::-;48095:13;48128:5;48121:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48041:100;:::o;54532:218::-;54608:7;54633:16;54641:7;54633;:16::i;:::-;54628:64;;54658:34;;;;;;;;;;;;;;54628:64;54712:15;:24;54728:7;54712:24;;;;;;;;;;;:30;;;;;;;;;;;;54705:37;;54532:218;;;:::o;53965:408::-;54054:13;54070:16;54078:7;54070;:16::i;:::-;54054:32;;54126:5;54103:28;;:19;:17;:19::i;:::-;:28;;;54099:175;;54151:44;54168:5;54175:19;:17;:19::i;:::-;54151:16;:44::i;:::-;54146:128;;54223:35;;;;;;;;;;;;;;54146:128;54099:175;54319:2;54286:15;:24;54302:7;54286:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;54357:7;54353:2;54337:28;;54346:5;54337:28;;;;;;;;;;;;54043:330;53965:408;;:::o;80396:23::-;;;;:::o;43792:323::-;43853:7;44081:15;:13;:15::i;:::-;44066:12;;44050:13;;:28;:46;44043:53;;43792:323;:::o;80833:25::-;;;;;;;;;;;;;:::o;80426:32::-;;;;:::o;58171:2825::-;58313:27;58343;58362:7;58343:18;:27::i;:::-;58313:57;;58428:4;58387:45;;58403:19;58387:45;;;58383:86;;58441:28;;;;;;;;;;;;;;58383:86;58483:27;58512:23;58539:35;58566:7;58539:26;:35::i;:::-;58482:92;;;;58674:68;58699:15;58716:4;58722:19;:17;:19::i;:::-;58674:24;:68::i;:::-;58669:180;;58762:43;58779:4;58785:19;:17;:19::i;:::-;58762:16;:43::i;:::-;58757:92;;58814:35;;;;;;;;;;;;;;58757:92;58669:180;58880:1;58866:16;;:2;:16;;;58862:52;;58891:23;;;;;;;;;;;;;;58862:52;58927:43;58949:4;58955:2;58959:7;58968:1;58927:21;:43::i;:::-;59063:15;59060:160;;;59203:1;59182:19;59175:30;59060:160;59600:18;:24;59619:4;59600:24;;;;;;;;;;;;;;;;59598:26;;;;;;;;;;;;59669:18;:22;59688:2;59669:22;;;;;;;;;;;;;;;;59667:24;;;;;;;;;;;59991:146;60028:2;60077:45;60092:4;60098:2;60102:19;60077:14;:45::i;:::-;40191:8;60049:73;59991:18;:146::i;:::-;59962:17;:26;59980:7;59962:26;;;;;;;;;;;:175;;;;60308:1;40191:8;60257:19;:47;:52;60253:627;;60330:19;60362:1;60352:7;:11;60330:33;;60519:1;60485:17;:30;60503:11;60485:30;;;;;;;;;;;;:35;60481:384;;60623:13;;60608:11;:28;60604:242;;60803:19;60770:17;:30;60788:11;60770:30;;;;;;;;;;;:52;;;;60604:242;60481:384;60311:569;60253:627;60927:7;60923:2;60908:27;;60917:4;60908:27;;;;;;;;;;;;60946:42;60967:4;60973:2;60977:7;60986:1;60946:20;:42::i;:::-;58302:2694;;;58171:2825;;;:::o;81491:365::-;81580:7;81589;81674:15;81693:39;81711:8;81721:10;81693:17;:39::i;:::-;81671:61;;;81825:10;;;;;;;;;;;81837;81817:31;;;;;81491:365;;;;;:::o;84420:205::-;27156:13;:11;:13::i;:::-;24541:21:::1;:19;:21::i;:::-;84490:12:::2;84516:10;84508:24;;84554:21;84508:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84489:101;;;84609:7;84601:16;;;::::0;::::2;;84478:147;24585:20:::1;:18;:20::i;:::-;84420:205::o:0;80647:29::-;;;;:::o;61092:193::-;61238:39;61255:4;61261:2;61265:7;61238:39;;;;;;;;;;;;:16;:39::i;:::-;61092:193;;;:::o;84104:88::-;27156:13;:11;:13::i;:::-;84181:3:::1;84171:7;:13;;;;;;;;;;;;:::i;:::-;;84104:88:::0;:::o;80599:40::-;;;;:::o;49434:152::-;49506:7;49549:27;49568:7;49549:18;:27::i;:::-;49526:52;;49434:152;;;:::o;81305:177::-;27156:13;:11;:13::i;:::-;81423:51:::1;81440:7;81449:10;;;;;;;;;;;81461:12;81423:16;:51::i;:::-;81305:177:::0;;:::o;80718:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44976:233::-;45048:7;45089:1;45072:19;;:5;:19;;;45068:60;;45100:28;;;;;;;;;;;;;;45068:60;39135:13;45146:18;:25;45165:5;45146:25;;;;;;;;;;;;;;;;:55;45139:62;;44976:233;;;:::o;27918:103::-;27156:13;:11;:13::i;:::-;27983:30:::1;28010:1;27983:18;:30::i;:::-;27918:103::o:0;83084:182::-;27156:13;:11;:13::i;:::-;83143:9:::1;;83131:8;;:21;;;;;;;:::i;:::-;;;;;;;;83168:47;83181:12;:10;:12::i;:::-;83195:8;;83205:9;;83168:47;;;;;;;;:::i;:::-;;;;;;;;83226:32;83236:10;83248:9;;83226;:32::i;:::-;83084:182::o:0;27270:87::-;27316:7;27343:6;;;;;;;;;;;27336:13;;27270:87;:::o;84314:97::-;27156:13;:11;:13::i;:::-;84394:9:::1;84381:10;:22;;;;84314:97:::0;:::o;84201:104::-;27156:13;:11;:13::i;:::-;84291:6:::1;84270:18;:27;;;;84201:104:::0;:::o;48217:::-;48273:13;48306:7;48299:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48217:104;:::o;80554:38::-;;;;:::o;82366:708::-;82423:12;82438:10;;82423:25;;82459:11;82520:1;82499:18;;:22;;;;:::i;:::-;82491:5;82475:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;82474:127;;;;;82581:19;;82572:5;82540:17;:29;82558:10;82540:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;82474:127;82473:169;;;;82634:7;:5;:7::i;:::-;82620:21;;:10;:21;;;82473:169;82459:183;;82660:6;82656:47;;;82690:1;82683:8;;82656:47;82745:4;82737:5;:12;;;;:::i;:::-;82724:9;:25;;82716:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;82851:1;82839:9;;82826:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;82818:5;82802:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;82794:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;82909:1;82893:13;;:17;;;;:::i;:::-;82885:5;:25;82877:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;82952:6;82948:77;;;83008:5;82975:17;:29;82993:10;82975:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;82948:77;83038:28;83048:10;83060:5;83038:9;:28::i;:::-;82412:662;;82366:708;:::o;55090:234::-;55237:8;55185:18;:39;55204:19;:17;:19::i;:::-;55185:39;;;;;;;;;;;;;;;:49;55225:8;55185:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;55297:8;55261:55;;55276:19;:17;:19::i;:::-;55261:55;;;55307:8;55261:55;;;;;;:::i;:::-;;;;;;;;55090:234;;:::o;61883:407::-;62058:31;62071:4;62077:2;62081:7;62058:12;:31::i;:::-;62122:1;62104:2;:14;;;:19;62100:183;;62143:56;62174:4;62180:2;62184:7;62193:5;62143:30;:56::i;:::-;62138:145;;62227:40;;;;;;;;;;;;;;62138:145;62100:183;61883:407;;;;:::o;83745:350::-;83863:13;83916:16;83924:7;83916;:16::i;:::-;83894:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;84049:7;84058:18;:7;:16;:18::i;:::-;84032:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84018:69;;83745:350;;;:::o;80511:33::-;;;;:::o;83391:339::-;83516:4;83577:42;83565:54;;:8;:54;;;83561:99;;83643:5;83636:12;;;;83561:99;83683:39;83706:5;83713:8;83683:22;:39::i;:::-;83676:46;;83391:339;;;;;:::o;28176:201::-;27156:13;:11;:13::i;:::-;28285:1:::1;28265:22;;:8;:22;;::::0;28257:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;28341:28;28360:8;28341:18;:28::i;:::-;28176:201:::0;:::o;5592:332::-;5711:17;:15;:17::i;:::-;5695:33;;:12;:33;;;;5687:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5814:1;5794:22;;:8;:22;;;5786:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5881:35;;;;;;;;5893:8;5881:35;;;;;;5903:12;5881:35;;;;;5859:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5592:332;;:::o;55903:282::-;55968:4;56024:7;56005:15;:13;:15::i;:::-;:26;;:66;;;;;56058:13;;56048:7;:23;56005:66;:153;;;;;56157:1;39911:8;56109:17;:26;56127:7;56109:26;;;;;;;;;;;;:44;:49;56005:153;55985:173;;55903:282;;;:::o;78211:105::-;78271:7;78298:10;78291:17;;78211:105;:::o;43308:92::-;43364:7;43308:92;:::o;50589:1275::-;50656:7;50676:12;50691:7;50676:22;;50759:4;50740:15;:13;:15::i;:::-;:23;50736:1061;;50793:13;;50786:4;:20;50782:1015;;;50831:14;50848:17;:23;50866:4;50848:23;;;;;;;;;;;;50831:40;;50965:1;39911:8;50937:6;:24;:29;50933:845;;51602:113;51619:1;51609:6;:11;51602:113;;51662:17;:25;51680:6;;;;;;;51662:25;;;;;;;;;;;;51653:34;;51602:113;;;51748:6;51741:13;;;;;;50933:845;50808:989;50782:1015;50736:1061;51825:31;;;;;;;;;;;;;;50589:1275;;;;:::o;57066:485::-;57168:27;57197:23;57238:38;57279:15;:24;57295:7;57279:24;;;;;;;;;;;57238:65;;57456:18;57433:41;;57513:19;57507:26;57488:45;;57418:126;57066:485;;;:::o;56294:659::-;56443:11;56608:16;56601:5;56597:28;56588:37;;56768:16;56757:9;56753:32;56740:45;;56918:15;56907:9;56904:30;56896:5;56885:9;56882:20;56879:56;56869:66;;56294:659;;;;;:::o;62952:159::-;;;;;:::o;77520:311::-;77655:7;77675:16;40315:3;77701:19;:41;;77675:68;;40315:3;77769:31;77780:4;77786:2;77790:9;77769:10;:31::i;:::-;77761:40;;:62;;77754:69;;;77520:311;;;;;:::o;52412:450::-;52492:14;52660:16;52653:5;52649:28;52640:37;;52837:5;52823:11;52798:23;52794:41;52791:52;52784:5;52781:63;52771:73;;52412:450;;;;:::o;63776:158::-;;;;;:::o;4500:442::-;4597:7;4606;4626:26;4655:17;:27;4673:8;4655:27;;;;;;;;;;;4626:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4727:1;4699:30;;:7;:16;;;:30;;;4695:92;;4756:19;4746:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695:92;4799:21;4864:17;:15;:17::i;:::-;4823:58;;4837:7;:23;;;4824:36;;:10;:36;;;;:::i;:::-;4823:58;;;;:::i;:::-;4799:82;;4902:7;:16;;;4920:13;4894:40;;;;;;4500:442;;;;;:::o;27435:132::-;27510:12;:10;:12::i;:::-;27499:23;;:7;:5;:7::i;:::-;:23;;;27491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27435:132::o;24621:293::-;24023:1;24755:7;;:19;24747:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;24023:1;24888:7;:18;;;;24621:293::o;24922:213::-;23979:1;25105:7;:22;;;;24922:213::o;6375:390::-;6543:17;:15;:17::i;:::-;6527:33;;:12;:33;;;;6519:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;6646:1;6626:22;;:8;:22;;;6618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;6722:35;;;;;;;;6734:8;6722:35;;;;;;6744:12;6722:35;;;;;6693:17;:26;6711:7;6693:26;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6375:390;;;:::o;28537:191::-;28611:16;28630:6;;;;;;;;;;;28611:25;;28656:8;28647:6;;:17;;;;;;;;;;;;;;;;;;28711:8;28680:40;;28701:8;28680:40;;;;;;;;;;;;28600:128;28537:191;:::o;25821:98::-;25874:7;25901:10;25894:17;;25821:98;:::o;72043:112::-;72120:27;72130:2;72134:8;72120:27;;;;;;;;;;;;:9;:27::i;:::-;72043:112;;:::o;64374:716::-;64537:4;64583:2;64558:45;;;64604:19;:17;:19::i;:::-;64625:4;64631:7;64640:5;64558:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64554:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64858:1;64841:6;:13;:18;64837:235;;64887:40;;;;;;;;;;;;;;64837:235;65030:6;65024:13;65015:6;65011:2;65007:15;65000:38;64554:529;64727:54;;;64717:64;;;:6;:64;;;;64710:71;;;64374:716;;;;;;:::o;20302:::-;20358:13;20409:14;20446:1;20426:17;20437:5;20426:10;:17::i;:::-;:21;20409:38;;20462:20;20496:6;20485:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20462:41;;20518:11;20647:6;20643:2;20639:15;20631:6;20627:28;20620:35;;20684:288;20691:4;20684:288;;;20716:5;;;;;;;;20858:8;20853:2;20846:5;20842:14;20837:30;20832:3;20824:44;20914:2;20905:11;;;;;;:::i;:::-;;;;;20948:1;20939:5;:10;20684:288;20935:21;20684:288;20993:6;20986:13;;;;;20302:716;;;:::o;55481:164::-;55578:4;55602:18;:25;55621:5;55602:25;;;;;;;;;;;;;;;:35;55628:8;55602:35;;;;;;;;;;;;;;;;;;;;;;;;;55595:42;;55481:164;;;;:::o;5224:97::-;5282:6;5308:5;5301:12;;5224:97;:::o;77221:147::-;77358:6;77221:147;;;;;:::o;71270:689::-;71401:19;71407:2;71411:8;71401:5;:19::i;:::-;71480:1;71462:2;:14;;;:19;71458:483;;71502:11;71516:13;;71502:27;;71548:13;71570:8;71564:3;:14;71548:30;;71597:233;71628:62;71667:1;71671:2;71675:7;;;;;;71684:5;71628:30;:62::i;:::-;71623:167;;71726:40;;;;;;;;;;;;;;71623:167;71825:3;71817:5;:11;71597:233;;71912:3;71895:13;;:20;71891:34;;71917:8;;;71891:34;71483:458;;71458:483;71270:689;;;:::o;17168:922::-;17221:7;17241:14;17258:1;17241:18;;17308:6;17299:5;:15;17295:102;;17344:6;17335:15;;;;;;:::i;:::-;;;;;17379:2;17369:12;;;;17295:102;17424:6;17415:5;:15;17411:102;;17460:6;17451:15;;;;;;:::i;:::-;;;;;17495:2;17485:12;;;;17411:102;17540:6;17531:5;:15;17527:102;;17576:6;17567:15;;;;;;:::i;:::-;;;;;17611:2;17601:12;;;;17527:102;17656:5;17647;:14;17643:99;;17691:5;17682:14;;;;;;:::i;:::-;;;;;17725:1;17715:11;;;;17643:99;17769:5;17760;:14;17756:99;;17804:5;17795:14;;;;;;:::i;:::-;;;;;17838:1;17828:11;;;;17756:99;17882:5;17873;:14;17869:99;;17917:5;17908:14;;;;;;:::i;:::-;;;;;17951:1;17941:11;;;;17869:99;17995:5;17986;:14;17982:66;;18031:1;18021:11;;;;17982:66;18076:6;18069:13;;;17168:922;;;:::o;65552:2966::-;65625:20;65648:13;;65625:36;;65688:1;65676:8;:13;65672:44;;65698:18;;;;;;;;;;;;;;65672:44;65729:61;65759:1;65763:2;65767:12;65781:8;65729:21;:61::i;:::-;66273:1;39273:2;66243:1;:26;;66242:32;66230:8;:45;66204:18;:22;66223:2;66204:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;66552:139;66589:2;66643:33;66666:1;66670:2;66674:1;66643:14;:33::i;:::-;66610:30;66631:8;66610:20;:30::i;:::-;:66;66552:18;:139::i;:::-;66518:17;:31;66536:12;66518:31;;;;;;;;;;;:173;;;;66708:16;66739:11;66768:8;66753:12;:23;66739:37;;67289:16;67285:2;67281:25;67269:37;;67661:12;67621:8;67580:1;67518:25;67459:1;67398;67371:335;68032:1;68018:12;68014:20;67972:346;68073:3;68064:7;68061:16;67972:346;;68291:7;68281:8;68278:1;68251:25;68248:1;68245;68240:59;68126:1;68117:7;68113:15;68102:26;;67972:346;;;67976:77;68363:1;68351:8;:13;68347:45;;68373:19;;;;;;;;;;;;;;68347:45;68425:3;68409:13;:19;;;;65978:2462;;68450:60;68479:1;68483:2;68487:12;68501:8;68450:20;:60::i;:::-;65614:2904;65552:2966;;:::o;52964:324::-;53034:14;53267:1;53257:8;53254:15;53228:24;53224:46;53214:56;;52964:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:126::-;1990:7;2030:42;2023:5;2019:54;2008:65;;1953:126;;;:::o;2085:96::-;2122:7;2151:24;2169:5;2151:24;:::i;:::-;2140:35;;2085:96;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:109::-;2496:7;2536:26;2529:5;2525:38;2514:49;;2460:109;;;:::o;2575:120::-;2647:23;2664:5;2647:23;:::i;:::-;2640:5;2637:34;2627:62;;2685:1;2682;2675:12;2627:62;2575:120;:::o;2701:137::-;2746:5;2784:6;2771:20;2762:29;;2800:32;2826:5;2800:32;:::i;:::-;2701:137;;;;:::o;2844:472::-;2911:6;2919;2968:2;2956:9;2947:7;2943:23;2939:32;2936:119;;;2974:79;;:::i;:::-;2936:119;3094:1;3119:53;3164:7;3155:6;3144:9;3140:22;3119:53;:::i;:::-;3109:63;;3065:117;3221:2;3247:52;3291:7;3282:6;3271:9;3267:22;3247:52;:::i;:::-;3237:62;;3192:117;2844:472;;;;;:::o;3322:99::-;3374:6;3408:5;3402:12;3392:22;;3322:99;;;:::o;3427:169::-;3511:11;3545:6;3540:3;3533:19;3585:4;3580:3;3576:14;3561:29;;3427:169;;;;:::o;3602:307::-;3670:1;3680:113;3694:6;3691:1;3688:13;3680:113;;;3779:1;3774:3;3770:11;3764:18;3760:1;3755:3;3751:11;3744:39;3716:2;3713:1;3709:10;3704:15;;3680:113;;;3811:6;3808:1;3805:13;3802:101;;;3891:1;3882:6;3877:3;3873:16;3866:27;3802:101;3651:258;3602:307;;;:::o;3915:102::-;3956:6;4007:2;4003:7;3998:2;3991:5;3987:14;3983:28;3973:38;;3915:102;;;:::o;4023:364::-;4111:3;4139:39;4172:5;4139:39;:::i;:::-;4194:71;4258:6;4253:3;4194:71;:::i;:::-;4187:78;;4274:52;4319:6;4314:3;4307:4;4300:5;4296:16;4274:52;:::i;:::-;4351:29;4373:6;4351:29;:::i;:::-;4346:3;4342:39;4335:46;;4115:272;4023:364;;;;:::o;4393:313::-;4506:4;4544:2;4533:9;4529:18;4521:26;;4593:9;4587:4;4583:20;4579:1;4568:9;4564:17;4557:47;4621:78;4694:4;4685:6;4621:78;:::i;:::-;4613:86;;4393:313;;;;:::o;4712:122::-;4785:24;4803:5;4785:24;:::i;:::-;4778:5;4775:35;4765:63;;4824:1;4821;4814:12;4765:63;4712:122;:::o;4840:139::-;4886:5;4924:6;4911:20;4902:29;;4940:33;4967:5;4940:33;:::i;:::-;4840:139;;;;:::o;4985:329::-;5044:6;5093:2;5081:9;5072:7;5068:23;5064:32;5061:119;;;5099:79;;:::i;:::-;5061:119;5219:1;5244:53;5289:7;5280:6;5269:9;5265:22;5244:53;:::i;:::-;5234:63;;5190:117;4985:329;;;;:::o;5320:118::-;5407:24;5425:5;5407:24;:::i;:::-;5402:3;5395:37;5320:118;;:::o;5444:222::-;5537:4;5575:2;5564:9;5560:18;5552:26;;5588:71;5656:1;5645:9;5641:17;5632:6;5588:71;:::i;:::-;5444:222;;;;:::o;5672:474::-;5740:6;5748;5797:2;5785:9;5776:7;5772:23;5768:32;5765:119;;;5803:79;;:::i;:::-;5765:119;5923:1;5948:53;5993:7;5984:6;5973:9;5969:22;5948:53;:::i;:::-;5938:63;;5894:117;6050:2;6076:53;6121:7;6112:6;6101:9;6097:22;6076:53;:::i;:::-;6066:63;;6021:118;5672:474;;;;;:::o;6152:619::-;6229:6;6237;6245;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6547:2;6573:53;6618:7;6609:6;6598:9;6594:22;6573:53;:::i;:::-;6563:63;;6518:118;6675:2;6701:53;6746:7;6737:6;6726:9;6722:22;6701:53;:::i;:::-;6691:63;;6646:118;6152:619;;;;;:::o;6777:474::-;6845:6;6853;6902:2;6890:9;6881:7;6877:23;6873:32;6870:119;;;6908:79;;:::i;:::-;6870:119;7028:1;7053:53;7098:7;7089:6;7078:9;7074:22;7053:53;:::i;:::-;7043:63;;6999:117;7155:2;7181:53;7226:7;7217:6;7206:9;7202:22;7181:53;:::i;:::-;7171:63;;7126:118;6777:474;;;;;:::o;7257:332::-;7378:4;7416:2;7405:9;7401:18;7393:26;;7429:71;7497:1;7486:9;7482:17;7473:6;7429:71;:::i;:::-;7510:72;7578:2;7567:9;7563:18;7554:6;7510:72;:::i;:::-;7257:332;;;;;:::o;7595:117::-;7704:1;7701;7694:12;7718:117;7827:1;7824;7817:12;7841:180;7889:77;7886:1;7879:88;7986:4;7983:1;7976:15;8010:4;8007:1;8000:15;8027:281;8110:27;8132:4;8110:27;:::i;:::-;8102:6;8098:40;8240:6;8228:10;8225:22;8204:18;8192:10;8189:34;8186:62;8183:88;;;8251:18;;:::i;:::-;8183:88;8291:10;8287:2;8280:22;8070:238;8027:281;;:::o;8314:129::-;8348:6;8375:20;;:::i;:::-;8365:30;;8404:33;8432:4;8424:6;8404:33;:::i;:::-;8314:129;;;:::o;8449:308::-;8511:4;8601:18;8593:6;8590:30;8587:56;;;8623:18;;:::i;:::-;8587:56;8661:29;8683:6;8661:29;:::i;:::-;8653:37;;8745:4;8739;8735:15;8727:23;;8449:308;;;:::o;8763:154::-;8847:6;8842:3;8837;8824:30;8909:1;8900:6;8895:3;8891:16;8884:27;8763:154;;;:::o;8923:412::-;9001:5;9026:66;9042:49;9084:6;9042:49;:::i;:::-;9026:66;:::i;:::-;9017:75;;9115:6;9108:5;9101:21;9153:4;9146:5;9142:16;9191:3;9182:6;9177:3;9173:16;9170:25;9167:112;;;9198:79;;:::i;:::-;9167:112;9288:41;9322:6;9317:3;9312;9288:41;:::i;:::-;9007:328;8923:412;;;;;:::o;9355:340::-;9411:5;9460:3;9453:4;9445:6;9441:17;9437:27;9427:122;;9468:79;;:::i;:::-;9427:122;9585:6;9572:20;9610:79;9685:3;9677:6;9670:4;9662:6;9658:17;9610:79;:::i;:::-;9601:88;;9417:278;9355:340;;;;:::o;9701:509::-;9770:6;9819:2;9807:9;9798:7;9794:23;9790:32;9787:119;;;9825:79;;:::i;:::-;9787:119;9973:1;9962:9;9958:17;9945:31;10003:18;9995:6;9992:30;9989:117;;;10025:79;;:::i;:::-;9989:117;10130:63;10185:7;10176:6;10165:9;10161:22;10130:63;:::i;:::-;10120:73;;9916:287;9701:509;;;;:::o;10216:472::-;10283:6;10291;10340:2;10328:9;10319:7;10315:23;10311:32;10308:119;;;10346:79;;:::i;:::-;10308:119;10466:1;10491:53;10536:7;10527:6;10516:9;10512:22;10491:53;:::i;:::-;10481:63;;10437:117;10593:2;10619:52;10663:7;10654:6;10643:9;10639:22;10619:52;:::i;:::-;10609:62;;10564:117;10216:472;;;;;:::o;10694:329::-;10753:6;10802:2;10790:9;10781:7;10777:23;10773:32;10770:119;;;10808:79;;:::i;:::-;10770:119;10928:1;10953:53;10998:7;10989:6;10978:9;10974:22;10953:53;:::i;:::-;10943:63;;10899:117;10694:329;;;;:::o;11029:116::-;11099:21;11114:5;11099:21;:::i;:::-;11092:5;11089:32;11079:60;;11135:1;11132;11125:12;11079:60;11029:116;:::o;11151:133::-;11194:5;11232:6;11219:20;11210:29;;11248:30;11272:5;11248:30;:::i;:::-;11151:133;;;;:::o;11290:468::-;11355:6;11363;11412:2;11400:9;11391:7;11387:23;11383:32;11380:119;;;11418:79;;:::i;:::-;11380:119;11538:1;11563:53;11608:7;11599:6;11588:9;11584:22;11563:53;:::i;:::-;11553:63;;11509:117;11665:2;11691:50;11733:7;11724:6;11713:9;11709:22;11691:50;:::i;:::-;11681:60;;11636:115;11290:468;;;;;:::o;11764:307::-;11825:4;11915:18;11907:6;11904:30;11901:56;;;11937:18;;:::i;:::-;11901:56;11975:29;11997:6;11975:29;:::i;:::-;11967:37;;12059:4;12053;12049:15;12041:23;;11764:307;;;:::o;12077:410::-;12154:5;12179:65;12195:48;12236:6;12195:48;:::i;:::-;12179:65;:::i;:::-;12170:74;;12267:6;12260:5;12253:21;12305:4;12298:5;12294:16;12343:3;12334:6;12329:3;12325:16;12322:25;12319:112;;;12350:79;;:::i;:::-;12319:112;12440:41;12474:6;12469:3;12464;12440:41;:::i;:::-;12160:327;12077:410;;;;;:::o;12506:338::-;12561:5;12610:3;12603:4;12595:6;12591:17;12587:27;12577:122;;12618:79;;:::i;:::-;12577:122;12735:6;12722:20;12760:78;12834:3;12826:6;12819:4;12811:6;12807:17;12760:78;:::i;:::-;12751:87;;12567:277;12506:338;;;;:::o;12850:943::-;12945:6;12953;12961;12969;13018:3;13006:9;12997:7;12993:23;12989:33;12986:120;;;13025:79;;:::i;:::-;12986:120;13145:1;13170:53;13215:7;13206:6;13195:9;13191:22;13170:53;:::i;:::-;13160:63;;13116:117;13272:2;13298:53;13343:7;13334:6;13323:9;13319:22;13298:53;:::i;:::-;13288:63;;13243:118;13400:2;13426:53;13471:7;13462:6;13451:9;13447:22;13426:53;:::i;:::-;13416:63;;13371:118;13556:2;13545:9;13541:18;13528:32;13587:18;13579:6;13576:30;13573:117;;;13609:79;;:::i;:::-;13573:117;13714:62;13768:7;13759:6;13748:9;13744:22;13714:62;:::i;:::-;13704:72;;13499:287;12850:943;;;;;;;:::o;13799:474::-;13867:6;13875;13924:2;13912:9;13903:7;13899:23;13895:32;13892:119;;;13930:79;;:::i;:::-;13892:119;14050:1;14075:53;14120:7;14111:6;14100:9;14096:22;14075:53;:::i;:::-;14065:63;;14021:117;14177:2;14203:53;14248:7;14239:6;14228:9;14224:22;14203:53;:::i;:::-;14193:63;;14148:118;13799:474;;;;;:::o;14279:180::-;14327:77;14324:1;14317:88;14424:4;14421:1;14414:15;14448:4;14445:1;14438:15;14465:320;14509:6;14546:1;14540:4;14536:12;14526:22;;14593:1;14587:4;14583:12;14614:18;14604:81;;14670:4;14662:6;14658:17;14648:27;;14604:81;14732:2;14724:6;14721:14;14701:18;14698:38;14695:84;;14751:18;;:::i;:::-;14695:84;14516:269;14465:320;;;:::o;14791:147::-;14892:11;14929:3;14914:18;;14791:147;;;;:::o;14944:114::-;;:::o;15064:398::-;15223:3;15244:83;15325:1;15320:3;15244:83;:::i;:::-;15237:90;;15336:93;15425:3;15336:93;:::i;:::-;15454:1;15449:3;15445:11;15438:18;;15064:398;;;:::o;15468:379::-;15652:3;15674:147;15817:3;15674:147;:::i;:::-;15667:154;;15838:3;15831:10;;15468:379;;;:::o;15853:180::-;15901:77;15898:1;15891:88;15998:4;15995:1;15988:15;16022:4;16019:1;16012:15;16039:305;16079:3;16098:20;16116:1;16098:20;:::i;:::-;16093:25;;16132:20;16150:1;16132:20;:::i;:::-;16127:25;;16286:1;16218:66;16214:74;16211:1;16208:81;16205:107;;;16292:18;;:::i;:::-;16205:107;16336:1;16333;16329:9;16322:16;;16039:305;;;;:::o;16350:442::-;16499:4;16537:2;16526:9;16522:18;16514:26;;16550:71;16618:1;16607:9;16603:17;16594:6;16550:71;:::i;:::-;16631:72;16699:2;16688:9;16684:18;16675:6;16631:72;:::i;:::-;16713;16781:2;16770:9;16766:18;16757:6;16713:72;:::i;:::-;16350:442;;;;;;:::o;16798:348::-;16838:7;16861:20;16879:1;16861:20;:::i;:::-;16856:25;;16895:20;16913:1;16895:20;:::i;:::-;16890:25;;17083:1;17015:66;17011:74;17008:1;17005:81;17000:1;16993:9;16986:17;16982:105;16979:131;;;17090:18;;:::i;:::-;16979:131;17138:1;17135;17131:9;17120:20;;16798:348;;;;:::o;17152:179::-;17292:31;17288:1;17280:6;17276:14;17269:55;17152:179;:::o;17337:366::-;17479:3;17500:67;17564:2;17559:3;17500:67;:::i;:::-;17493:74;;17576:93;17665:3;17576:93;:::i;:::-;17694:2;17689:3;17685:12;17678:19;;17337:366;;;:::o;17709:419::-;17875:4;17913:2;17902:9;17898:18;17890:26;;17962:9;17956:4;17952:20;17948:1;17937:9;17933:17;17926:47;17990:131;18116:4;17990:131;:::i;:::-;17982:139;;17709:419;;;:::o;18134:191::-;18174:4;18194:20;18212:1;18194:20;:::i;:::-;18189:25;;18228:20;18246:1;18228:20;:::i;:::-;18223:25;;18267:1;18264;18261:8;18258:34;;;18272:18;;:::i;:::-;18258:34;18317:1;18314;18310:9;18302:17;;18134:191;;;;:::o;18331:159::-;18471:11;18467:1;18459:6;18455:14;18448:35;18331:159;:::o;18496:365::-;18638:3;18659:66;18723:1;18718:3;18659:66;:::i;:::-;18652:73;;18734:93;18823:3;18734:93;:::i;:::-;18852:2;18847:3;18843:12;18836:19;;18496:365;;;:::o;18867:419::-;19033:4;19071:2;19060:9;19056:18;19048:26;;19120:9;19114:4;19110:20;19106:1;19095:9;19091:17;19084:47;19148:131;19274:4;19148:131;:::i;:::-;19140:139;;18867:419;;;:::o;19292:169::-;19432:21;19428:1;19420:6;19416:14;19409:45;19292:169;:::o;19467:366::-;19609:3;19630:67;19694:2;19689:3;19630:67;:::i;:::-;19623:74;;19706:93;19795:3;19706:93;:::i;:::-;19824:2;19819:3;19815:12;19808:19;;19467:366;;;:::o;19839:419::-;20005:4;20043:2;20032:9;20028:18;20020:26;;20092:9;20086:4;20082:20;20078:1;20067:9;20063:17;20056:47;20120:131;20246:4;20120:131;:::i;:::-;20112:139;;19839:419;;;:::o;20264:234::-;20404:34;20400:1;20392:6;20388:14;20381:58;20473:17;20468:2;20460:6;20456:15;20449:42;20264:234;:::o;20504:366::-;20646:3;20667:67;20731:2;20726:3;20667:67;:::i;:::-;20660:74;;20743:93;20832:3;20743:93;:::i;:::-;20861:2;20856:3;20852:12;20845:19;;20504:366;;;:::o;20876:419::-;21042:4;21080:2;21069:9;21065:18;21057:26;;21129:9;21123:4;21119:20;21115:1;21104:9;21100:17;21093:47;21157:131;21283:4;21157:131;:::i;:::-;21149:139;;20876:419;;;:::o;21301:148::-;21403:11;21440:3;21425:18;;21301:148;;;;:::o;21455:141::-;21504:4;21527:3;21519:11;;21550:3;21547:1;21540:14;21584:4;21581:1;21571:18;21563:26;;21455:141;;;:::o;21626:845::-;21729:3;21766:5;21760:12;21795:36;21821:9;21795:36;:::i;:::-;21847:89;21929:6;21924:3;21847:89;:::i;:::-;21840:96;;21967:1;21956:9;21952:17;21983:1;21978:137;;;;22129:1;22124:341;;;;21945:520;;21978:137;22062:4;22058:9;22047;22043:25;22038:3;22031:38;22098:6;22093:3;22089:16;22082:23;;21978:137;;22124:341;22191:38;22223:5;22191:38;:::i;:::-;22251:1;22265:154;22279:6;22276:1;22273:13;22265:154;;;22353:7;22347:14;22343:1;22338:3;22334:11;22327:35;22403:1;22394:7;22390:15;22379:26;;22301:4;22298:1;22294:12;22289:17;;22265:154;;;22448:6;22443:3;22439:16;22432:23;;22131:334;;21945:520;;21733:738;;21626:845;;;;:::o;22477:377::-;22583:3;22611:39;22644:5;22611:39;:::i;:::-;22666:89;22748:6;22743:3;22666:89;:::i;:::-;22659:96;;22764:52;22809:6;22804:3;22797:4;22790:5;22786:16;22764:52;:::i;:::-;22841:6;22836:3;22832:16;22825:23;;22587:267;22477:377;;;;:::o;22860:155::-;23000:7;22996:1;22988:6;22984:14;22977:31;22860:155;:::o;23021:400::-;23181:3;23202:84;23284:1;23279:3;23202:84;:::i;:::-;23195:91;;23295:93;23384:3;23295:93;:::i;:::-;23413:1;23408:3;23404:11;23397:18;;23021:400;;;:::o;23427:695::-;23705:3;23727:92;23815:3;23806:6;23727:92;:::i;:::-;23720:99;;23836:95;23927:3;23918:6;23836:95;:::i;:::-;23829:102;;23948:148;24092:3;23948:148;:::i;:::-;23941:155;;24113:3;24106:10;;23427:695;;;;;:::o;24128:225::-;24268:34;24264:1;24256:6;24252:14;24245:58;24337:8;24332:2;24324:6;24320:15;24313:33;24128:225;:::o;24359:366::-;24501:3;24522:67;24586:2;24581:3;24522:67;:::i;:::-;24515:74;;24598:93;24687:3;24598:93;:::i;:::-;24716:2;24711:3;24707:12;24700:19;;24359:366;;;:::o;24731:419::-;24897:4;24935:2;24924:9;24920:18;24912:26;;24984:9;24978:4;24974:20;24970:1;24959:9;24955:17;24948:47;25012:131;25138:4;25012:131;:::i;:::-;25004:139;;24731:419;;;:::o;25156:229::-;25296:34;25292:1;25284:6;25280:14;25273:58;25365:12;25360:2;25352:6;25348:15;25341:37;25156:229;:::o;25391:366::-;25533:3;25554:67;25618:2;25613:3;25554:67;:::i;:::-;25547:74;;25630:93;25719:3;25630:93;:::i;:::-;25748:2;25743:3;25739:12;25732:19;;25391:366;;;:::o;25763:419::-;25929:4;25967:2;25956:9;25952:18;25944:26;;26016:9;26010:4;26006:20;26002:1;25991:9;25987:17;25980:47;26044:131;26170:4;26044:131;:::i;:::-;26036:139;;25763:419;;;:::o;26188:175::-;26328:27;26324:1;26316:6;26312:14;26305:51;26188:175;:::o;26369:366::-;26511:3;26532:67;26596:2;26591:3;26532:67;:::i;:::-;26525:74;;26608:93;26697:3;26608:93;:::i;:::-;26726:2;26721:3;26717:12;26710:19;;26369:366;;;:::o;26741:419::-;26907:4;26945:2;26934:9;26930:18;26922:26;;26994:9;26988:4;26984:20;26980:1;26969:9;26965:17;26958:47;27022:131;27148:4;27022:131;:::i;:::-;27014:139;;26741:419;;;:::o;27166:180::-;27214:77;27211:1;27204:88;27311:4;27308:1;27301:15;27335:4;27332:1;27325:15;27352:185;27392:1;27409:20;27427:1;27409:20;:::i;:::-;27404:25;;27443:20;27461:1;27443:20;:::i;:::-;27438:25;;27482:1;27472:35;;27487:18;;:::i;:::-;27472:35;27529:1;27526;27522:9;27517:14;;27352:185;;;;:::o;27543:182::-;27683:34;27679:1;27671:6;27667:14;27660:58;27543:182;:::o;27731:366::-;27873:3;27894:67;27958:2;27953:3;27894:67;:::i;:::-;27887:74;;27970:93;28059:3;27970:93;:::i;:::-;28088:2;28083:3;28079:12;28072:19;;27731:366;;;:::o;28103:419::-;28269:4;28307:2;28296:9;28292:18;28284:26;;28356:9;28350:4;28346:20;28342:1;28331:9;28327:17;28320:47;28384:131;28510:4;28384:131;:::i;:::-;28376:139;;28103:419;;;:::o;28528:181::-;28668:33;28664:1;28656:6;28652:14;28645:57;28528:181;:::o;28715:366::-;28857:3;28878:67;28942:2;28937:3;28878:67;:::i;:::-;28871:74;;28954:93;29043:3;28954:93;:::i;:::-;29072:2;29067:3;29063:12;29056:19;;28715:366;;;:::o;29087:419::-;29253:4;29291:2;29280:9;29276:18;29268:26;;29340:9;29334:4;29330:20;29326:1;29315:9;29311:17;29304:47;29368:131;29494:4;29368:131;:::i;:::-;29360:139;;29087:419;;;:::o;29512:177::-;29652:29;29648:1;29640:6;29636:14;29629:53;29512:177;:::o;29695:366::-;29837:3;29858:67;29922:2;29917:3;29858:67;:::i;:::-;29851:74;;29934:93;30023:3;29934:93;:::i;:::-;30052:2;30047:3;30043:12;30036:19;;29695:366;;;:::o;30067:419::-;30233:4;30271:2;30260:9;30256:18;30248:26;;30320:9;30314:4;30310:20;30306:1;30295:9;30291:17;30284:47;30348:131;30474:4;30348:131;:::i;:::-;30340:139;;30067:419;;;:::o;30492:98::-;30543:6;30577:5;30571:12;30561:22;;30492:98;;;:::o;30596:168::-;30679:11;30713:6;30708:3;30701:19;30753:4;30748:3;30744:14;30729:29;;30596:168;;;;:::o;30770:360::-;30856:3;30884:38;30916:5;30884:38;:::i;:::-;30938:70;31001:6;30996:3;30938:70;:::i;:::-;30931:77;;31017:52;31062:6;31057:3;31050:4;31043:5;31039:16;31017:52;:::i;:::-;31094:29;31116:6;31094:29;:::i;:::-;31089:3;31085:39;31078:46;;30860:270;30770:360;;;;:::o;31136:640::-;31331:4;31369:3;31358:9;31354:19;31346:27;;31383:71;31451:1;31440:9;31436:17;31427:6;31383:71;:::i;:::-;31464:72;31532:2;31521:9;31517:18;31508:6;31464:72;:::i;:::-;31546;31614:2;31603:9;31599:18;31590:6;31546:72;:::i;:::-;31665:9;31659:4;31655:20;31650:2;31639:9;31635:18;31628:48;31693:76;31764:4;31755:6;31693:76;:::i;:::-;31685:84;;31136:640;;;;;;;:::o;31782:141::-;31838:5;31869:6;31863:13;31854:22;;31885:32;31911:5;31885:32;:::i;:::-;31782:141;;;;:::o;31929:349::-;31998:6;32047:2;32035:9;32026:7;32022:23;32018:32;32015:119;;;32053:79;;:::i;:::-;32015:119;32173:1;32198:63;32253:7;32244:6;32233:9;32229:22;32198:63;:::i;:::-;32188:73;;32144:127;31929:349;;;;:::o

Swarm Source

ipfs://ff433b04a2a1c09fda77faab99b7776be863c319b1ed22bd8f88bd679e238909
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.