ETH Price: $3,154.06 (-4.29%)
Gas: 4 Gwei

Token

Bong Squad (BS420)
 

Overview

Max Total Supply

260 BS420

Holders

128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BS420
0x6e13875e2009e7eac8697ea51eb7782c40a82d31
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:
BongSquad

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-24
*/

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// 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/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: 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: @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: BongSquad/BongSquad.sol


//         // SPDX-License-Identifier: Apache-2.0


//         
// //          
// //   ____                    ____                        _ 
// //  | __ )  ___  _ __   __ _/ ___|  __ _ _   _  __ _  __| |
// //  |  _ \ / _ \| '_ \ / _` \___ \ / _` | | | |/ _` |/ _` |
// //  | |_) | (_) | | | | (_| |___) | (_| | |_| | (_| | (_| |
// //  |____/_\___/|_| |_|\__, |____/ \__, |\__,_|\__,_|\__,_|
// //    | || ||___ \ / _ \___/          |_|                  
// //    | || |_ __) | | | |                                  
// //    |__   _/ __/| |_| |                                  
// //       |_||_____|\___/                                   
                                                        

// //      
//         * @custom: version 1.0.1
//         */

        pragma solidity >=0.8.13 <0.9.0;






        contract BongSquad is ERC721A, Ownable, ReentrancyGuard  , DefaultOperatorFilterer{
            using Strings for uint256;
            uint256 public _maxSupply = 4200;
            uint256 public maxMintAmountPerWallet = 10;
            uint256 public maxMintAmountPerTx = 10;
            string baseURL = "";
            string ExtensionURL = ".json";
            uint256 _initalPrice = 0 ether;
            uint256 public costOfNFT = 0.00420 ether;
            uint256 public numberOfFreeNFTs = 1;
            
            string HiddenURL;
            bool public revealed = false;
            bool public paused = true;


            error ContractPaused();
            error MaxMintWalletExceeded();
            error MaxSupply();
            error InvalidMintAmount();
            error InsufficientFund();
            error NoSmartContract();
            error TokenNotExisting();

        constructor(string memory _initBaseURI) ERC721A("Bong Squad", "BS420") {
            baseURL = _initBaseURI;
        }

        // ================== Mint Function =======================

        modifier mintCompliance(uint256 _mintAmount) {
            if (msg.sender != tx.origin) revert NoSmartContract();
            if (totalSupply()  + _mintAmount > _maxSupply) revert MaxSupply();
            if (_mintAmount > maxMintAmountPerTx) revert InvalidMintAmount();
            if(paused) revert ContractPaused();
            _;
        }

        modifier mintPriceCompliance(uint256 _mintAmount) {
            if (balanceOf(msg.sender) + _mintAmount > maxMintAmountPerWallet) revert MaxMintWalletExceeded();
            if (_mintAmount < 0 || _mintAmount > maxMintAmountPerWallet) revert InvalidMintAmount();
            if (msg.value < checkCost(_mintAmount)) revert InsufficientFund();

             _;
        }

        
        /// @notice compliance of minting
        /// @dev user (msg.sender) mint
        /// @param _mintAmount the amount of tokens to mint
        function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
        _safeMint(msg.sender, _mintAmount);
        }


        /// @dev user (msg.sender) mint
        /// @param _mintAmount the amount of tokens to mint 
        /// @return value from number to mint
        function checkCost(uint256 _mintAmount) public view returns (uint256) {
          uint256 totalMints = _mintAmount + balanceOf(msg.sender);
          if ((totalMints <= numberOfFreeNFTs) ) {
          return _initalPrice;
          } else if ((balanceOf(msg.sender) < numberOfFreeNFTs) && (totalMints > numberOfFreeNFTs) ) { 
          uint256 total = costOfNFT * (_mintAmount - numberOfFreeNFTs);
          return total;
          } 
          else {
          uint256 total2 = costOfNFT * _mintAmount;
          return total2;
            }
        }
        


        /// @notice airdrop function to airdrop same amount of tokens to addresses
        /// @dev only owner function
        /// @param accounts  array of addresses
      /// @param amount the amount of tokens to airdrop users
         function airdrop(address[] memory accounts, uint256 amount) public onlyOwner mintCompliance(amount) {
        require(paused, "Airdrop is available only during paused state");

        for (uint256 i = 0; i < accounts.length; i++) {
            _safeMint(accounts[i], amount);
          }
      }


        // =================== Orange Functions (Owner Only) ===============

        /// @dev pause/unpause minting
        function pause() public onlyOwner {
          paused = !paused;
        }

        

        /// @dev set URI
        /// @param uri  new URI
        function setbaseURL(string memory uri) public onlyOwner{
          baseURL = uri;
        }

        /// @dev extension URI like 'json'
        function setExtensionURL(string memory uri) public onlyOwner{
          ExtensionURL = uri;
        }
        
        /// @dev set new cost of tokenId in WEI
        /// @param _cost  new price in wei
        function setCostPrice(uint256 _cost) public onlyOwner{
          costOfNFT = _cost;
        } 

        /// @dev only owner
        /// @param supply  new max supply
        function setMaxSupply(uint256 supply) public onlyOwner{
          _maxSupply = supply;
        }

        /// @dev only owner
        /// @param perTx  new max mint per transaction
        function setMaxMintAmountPerTx(uint256 perTx) public onlyOwner{
          maxMintAmountPerTx = perTx;
        }

        /// @dev only owner
        /// @param perWallet  new max mint per wallet
        function setMaxMintAmountPerWallet(uint256 perWallet) public onlyOwner{
          maxMintAmountPerWallet = perWallet;
        }  
        
        /// @dev only owner
        /// @param perWallet set free number of nft per wallet
        function setnumberOfFreeNFTs(uint256 perWallet) public onlyOwner{
          numberOfFreeNFTs = perWallet;
        }            

        // ================================ Withdraw Function ====================

        /// @notice withdraw ether from contract.
        /// @dev only owner function
        function withdraw() public onlyOwner nonReentrant{
          

          

        (bool owner, ) = payable(owner()).call{value: address(this).balance}('');
        require(owner);
        }
        // =================== Blue Functions (View Only) ====================

        /// @dev return uri of token ID
        /// @param tokenId  token ID to find uri for
        ///@return value for 'tokenId uri'
        function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) {
          if (!_exists(tokenId)) revert TokenNotExisting();   

        

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ExtensionURL))
        : '';
        }
        
        /// @dev tokenId to start (1)
        function _startTokenId() internal view virtual override returns (uint256) {
          return 1;
        }

        ///@dev maxSupply of token
        /// @return max supply
        function _baseURI() internal view virtual override returns (string memory) {
          return baseURL;
        }

    
        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
          function transferFrom(address from, address to, uint256 tokenId) public payable  override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
        }
        
        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
        function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
        }

        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
        function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public payable
       override
        onlyAllowedOperator(from)
        {
        super.safeTransferFrom(from, to, tokenId, data);
        }
        

}

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":"ContractPaused","type":"error"},{"inputs":[],"name":"InsufficientFund","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"MaxMintWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSmartContract","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TokenNotExisting","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOfNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfFreeNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setnumberOfFreeNFTs","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":"nonpayable","type":"function"}]

6080604052611068600a55600a600b55600a600c5560405180602001604052806000815250600d908162000034919062000742565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90816200007b919062000742565b506000600f55660eebe0b40e800060105560016011556000601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff021916908315150217905550348015620000d457600080fd5b5060405162004174380380620041748339818101604052810190620000fa91906200098d565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020017f426f6e67205371756164000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f425334323000000000000000000000000000000000000000000000000000000081525081600290816200018e919062000742565b508060039081620001a0919062000742565b50620001b1620003f160201b60201c565b6000819055505050620001d9620001cd620003fa60201b60201c565b6200040260201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d65780156200029c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200026292919062000a23565b600060405180830381600087803b1580156200027d57600080fd5b505af115801562000292573d6000803e3d6000fd5b50505050620003d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000356576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200031c92919062000a23565b600060405180830381600087803b1580156200033757600080fd5b505af11580156200034c573d6000803e3d6000fd5b50505050620003d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200039f919062000a50565b600060405180830381600087803b158015620003ba57600080fd5b505af1158015620003cf573d6000803e3d6000fd5b505050505b5b5b505080600d9081620003e9919062000742565b505062000a6d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200054a57607f821691505b60208210810362000560576200055f62000502565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200058b565b620005d686836200058b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006236200061d6200061784620005ee565b620005f8565b620005ee565b9050919050565b6000819050919050565b6200063f8362000602565b620006576200064e826200062a565b84845462000598565b825550505050565b600090565b6200066e6200065f565b6200067b81848462000634565b505050565b5b81811015620006a3576200069760008262000664565b60018101905062000681565b5050565b601f821115620006f257620006bc8162000566565b620006c7846200057b565b81016020851015620006d7578190505b620006ef620006e6856200057b565b83018262000680565b50505b505050565b600082821c905092915050565b60006200071760001984600802620006f7565b1980831691505092915050565b600062000732838362000704565b9150826002028217905092915050565b6200074d82620004c8565b67ffffffffffffffff811115620007695762000768620004d3565b5b62000775825462000531565b62000782828285620006a7565b600060209050601f831160018114620007ba5760008415620007a5578287015190505b620007b1858262000724565b86555062000821565b601f198416620007ca8662000566565b60005b82811015620007f457848901518255600182019150602085019450602081019050620007cd565b8683101562000814578489015162000810601f89168262000704565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620008638262000847565b810181811067ffffffffffffffff82111715620008855762000884620004d3565b5b80604052505050565b60006200089a62000829565b9050620008a8828262000858565b919050565b600067ffffffffffffffff821115620008cb57620008ca620004d3565b5b620008d68262000847565b9050602081019050919050565b60005b8381101562000903578082015181840152602081019050620008e6565b60008484015250505050565b6000620009266200092084620008ad565b6200088e565b90508281526020810184848401111562000945576200094462000842565b5b62000952848285620008e3565b509392505050565b600082601f8301126200097257620009716200083d565b5b8151620009848482602086016200090f565b91505092915050565b600060208284031215620009a657620009a562000833565b5b600082015167ffffffffffffffff811115620009c757620009c662000838565b5b620009d5848285016200095a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a0b82620009de565b9050919050565b62000a1d81620009fe565b82525050565b600060408201905062000a3a600083018562000a12565b62000a49602083018462000a12565b9392505050565b600060208201905062000a67600083018462000a12565b92915050565b6136f78062000a7d6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063c204642c1161006f578063c204642c14610742578063c87b56dd1461076b578063e098ff73146107a8578063e985e9c5146107d3578063f2fde38b146108105761021a565b8063a22cb4651461067e578063b071401b146106a7578063b0fe6414146106d0578063b88d4fde146106fb578063bc951b91146107175761021a565b80638da5cb5b116100f25780638da5cb5b146105b857806393e90b23146105e357806394354fd01461060c57806395d89b4114610637578063a0712d68146106625761021a565b806370a0823114610524578063715018a614610561578063766b7d09146105785780638456cb59146105a15761021a565b806341f43434116101a65780635c975abb116101755780635c975abb14610441578063626ab3b81461046c5780636352211e14610495578063676f2602146104d25780636f8b44b0146104fb5761021a565b806341f43434146103a657806342842e0e146103d15780634d534a7d146103ed57806351830227146104165761021a565b806311b4a832116101ed57806311b4a832146102e057806318160ddd1461031d57806322f4596f1461034857806323b872dd146103735780633ccfd60b1461038f5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612618565b610839565b6040516102539190612660565b60405180910390f35b34801561026857600080fd5b506102716108cb565b60405161027e919061270b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612763565b61095d565b6040516102bb91906127d1565b60405180910390f35b6102de60048036038101906102d99190612818565b6109dc565b005b3480156102ec57600080fd5b5061030760048036038101906103029190612763565b610b20565b6040516103149190612867565b60405180910390f35b34801561032957600080fd5b50610332610bb2565b60405161033f9190612867565b60405180910390f35b34801561035457600080fd5b5061035d610bc9565b60405161036a9190612867565b60405180910390f35b61038d60048036038101906103889190612882565b610bcf565b005b34801561039b57600080fd5b506103a4610c1e565b005b3480156103b257600080fd5b506103bb610cb6565b6040516103c89190612934565b60405180910390f35b6103eb60048036038101906103e69190612882565b610cc8565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612a84565b610d17565b005b34801561042257600080fd5b5061042b610d32565b6040516104389190612660565b60405180910390f35b34801561044d57600080fd5b50610456610d45565b6040516104639190612660565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190612a84565b610d58565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190612763565b610d73565b6040516104c991906127d1565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612763565b610d85565b005b34801561050757600080fd5b50610522600480360381019061051d9190612763565b610d97565b005b34801561053057600080fd5b5061054b60048036038101906105469190612acd565b610da9565b6040516105589190612867565b60405180910390f35b34801561056d57600080fd5b50610576610e61565b005b34801561058457600080fd5b5061059f600480360381019061059a9190612763565b610e75565b005b3480156105ad57600080fd5b506105b6610e87565b005b3480156105c457600080fd5b506105cd610ebb565b6040516105da91906127d1565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612763565b610ee5565b005b34801561061857600080fd5b50610621610ef7565b60405161062e9190612867565b60405180910390f35b34801561064357600080fd5b5061064c610efd565b604051610659919061270b565b60405180910390f35b61067c60048036038101906106779190612763565b610f8f565b005b34801561068a57600080fd5b506106a560048036038101906106a09190612b26565b6111ae565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190612763565b6112b9565b005b3480156106dc57600080fd5b506106e56112cb565b6040516106f29190612867565b60405180910390f35b61071560048036038101906107109190612c07565b6112d1565b005b34801561072357600080fd5b5061072c611322565b6040516107399190612867565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612d52565b611328565b005b34801561077757600080fd5b50610792600480360381019061078d9190612763565b6114ff565b60405161079f919061270b565b60405180910390f35b3480156107b457600080fd5b506107bd6115a0565b6040516107ca9190612867565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190612dae565b6115a6565b6040516108079190612660565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190612acd565b61163a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108da90612e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461090690612e1d565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b6000610968826116bd565b61099e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e782610d73565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0861171c565b73ffffffffffffffffffffffffffffffffffffffff1614610a6b57610a3481610a2f61171c565b6115a6565b610a6a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610b2c33610da9565b83610b379190612e7d565b90506011548111610b4d57600f54915050610bad565b601154610b5933610da9565b108015610b67575060115481115b15610b9557600060115484610b7c9190612eb1565b601054610b899190612ee5565b90508092505050610bad565b600083601054610ba59190612ee5565b905080925050505b919050565b6000610bbc611724565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c0d57610c0c3361172d565b5b610c1884848461182a565b50505050565b610c26611b4c565b610c2e611bca565b6000610c38610ebb565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c5b90612f58565b60006040518083038185875af1925050503d8060008114610c98576040519150601f19603f3d011682016040523d82523d6000602084013e610c9d565b606091505b5050905080610cab57600080fd5b50610cb4611c19565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d0657610d053361172d565b5b610d11848484611c23565b50505050565b610d1f611b4c565b80600e9081610d2e919061310f565b5050565b601360009054906101000a900460ff1681565b601360019054906101000a900460ff1681565b610d60611b4c565b80600d9081610d6f919061310f565b5050565b6000610d7e82611c43565b9050919050565b610d8d611b4c565b8060108190555050565b610d9f611b4c565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e10576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e69611b4c565b610e736000611d0f565b565b610e7d611b4c565b80600b8190555050565b610e8f611b4c565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eed611b4c565b8060118190555050565b600c5481565b606060038054610f0c90612e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3890612e1d565b8015610f855780601f10610f5a57610100808354040283529160200191610f85565b820191906000526020600020905b815481529060010190602001808311610f6857829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ff5576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611001610bb2565b61100b9190612e7d565b1115611043576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5481111561107f576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff16156110c6576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b54816110d433610da9565b6110de9190612e7d565b1115611116576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008110806111265750600b5481115b1561115d576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61116681610b20565b34101561119f576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111a93384611dd5565b505050565b80600760006111bb61171c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126861171c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ad9190612660565b60405180910390a35050565b6112c1611b4c565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461130f5761130e3361172d565b5b61131b85858585611df3565b5050505050565b600b5481565b611330611b4c565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611396576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816113a2610bb2565b6113ac9190612e7d565b11156113e4576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611420576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611467576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff166114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613253565b60405180910390fd5b60005b83518110156114f9576114e68482815181106114d8576114d7613273565b5b602002602001015184611dd5565b80806114f1906132a2565b9150506114b9565b50505050565b606061150a826116bd565b611540576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061154a611e66565b9050600081511161156a5760405180602001604052806000815250611598565b8061157484611ef8565b600e604051602001611588939291906133a9565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611642611b4c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a89061344c565b60405180910390fd5b6116ba81611d0f565b50565b6000816116c8611724565b111580156116d7575060005482105b8015611715575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611827576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016117a492919061346c565b602060405180830381865afa1580156117c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e591906134aa565b61182657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161181d91906127d1565b60405180910390fd5b5b50565b600061183582611c43565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461189c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806118a884611fc6565b915091506118be81876118b961171c565b611fed565b61190a576118d3866118ce61171c565b6115a6565b611909576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611970576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61197d8686866001612031565b801561198857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a5685611a32888887612037565b7c02000000000000000000000000000000000000000000000000000000001761205f565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611adc5760006001850190506000600460008381526020019081526020016000205403611ada576000548114611ad9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b44868686600161208a565b505050505050565b611b54612090565b73ffffffffffffffffffffffffffffffffffffffff16611b72610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613523565b60405180910390fd5b565b600260095403611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c069061358f565b60405180910390fd5b6002600981905550565b6001600981905550565b611c3e838383604051806020016040528060008152506112d1565b505050565b60008082905080611c52611724565b11611cd857600054811015611cd75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611cd5575b60008103611ccb576004600083600190039350838152602001908152602001600020549050611ca1565b8092505050611d0a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611def828260405180602001604052806000815250612098565b5050565b611dfe848484610bcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e6057611e2984848484612135565b611e5f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611e7590612e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea190612e1d565b8015611eee5780601f10611ec357610100808354040283529160200191611eee565b820191906000526020600020905b815481529060010190602001808311611ed157829003601f168201915b5050505050905090565b606060006001611f0784612285565b01905060008167ffffffffffffffff811115611f2657611f25612959565b5b6040519080825280601f01601f191660200182016040528015611f585781602001600182028036833780820191505090505b509050600082602001820190505b600115611fbb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611faf57611fae6135af565b5b04945060008503611f66575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861204e8686846123d8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6120a283836123e1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461213057600080549050600083820390505b6120e26000868380600101945086612135565b612118576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120cf57816000541461212d57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261215b61171c565b8786866040518563ffffffff1660e01b815260040161217d9493929190613633565b6020604051808303816000875af19250505080156121b957506040513d601f19601f820116820180604052508101906121b69190613694565b60015b612232573d80600081146121e9576040519150601f19603f3d011682016040523d82523d6000602084013e6121ee565b606091505b50600081510361222a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122e3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816122d9576122d86135af565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612320576d04ee2d6d415b85acef81000000008381612316576123156135af565b5b0492506020810190505b662386f26fc10000831061234f57662386f26fc100008381612345576123446135af565b5b0492506010810190505b6305f5e1008310612378576305f5e100838161236e5761236d6135af565b5b0492506008810190505b612710831061239d576127108381612393576123926135af565b5b0492506004810190505b606483106123c057606483816123b6576123b56135af565b5b0492506002810190505b600a83106123cf576001810190505b80915050919050565b60009392505050565b60008054905060008203612421576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61242e6000848385612031565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124a5836124966000866000612037565b61249f8561259c565b1761205f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461254657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061250b565b5060008203612581576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612597600084838561208a565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125f5816125c0565b811461260057600080fd5b50565b600081359050612612816125ec565b92915050565b60006020828403121561262e5761262d6125b6565b5b600061263c84828501612603565b91505092915050565b60008115159050919050565b61265a81612645565b82525050565b60006020820190506126756000830184612651565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126b557808201518184015260208101905061269a565b60008484015250505050565b6000601f19601f8301169050919050565b60006126dd8261267b565b6126e78185612686565b93506126f7818560208601612697565b612700816126c1565b840191505092915050565b6000602082019050818103600083015261272581846126d2565b905092915050565b6000819050919050565b6127408161272d565b811461274b57600080fd5b50565b60008135905061275d81612737565b92915050565b600060208284031215612779576127786125b6565b5b60006127878482850161274e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127bb82612790565b9050919050565b6127cb816127b0565b82525050565b60006020820190506127e660008301846127c2565b92915050565b6127f5816127b0565b811461280057600080fd5b50565b600081359050612812816127ec565b92915050565b6000806040838503121561282f5761282e6125b6565b5b600061283d85828601612803565b925050602061284e8582860161274e565b9150509250929050565b6128618161272d565b82525050565b600060208201905061287c6000830184612858565b92915050565b60008060006060848603121561289b5761289a6125b6565b5b60006128a986828701612803565b93505060206128ba86828701612803565b92505060406128cb8682870161274e565b9150509250925092565b6000819050919050565b60006128fa6128f56128f084612790565b6128d5565b612790565b9050919050565b600061290c826128df565b9050919050565b600061291e82612901565b9050919050565b61292e81612913565b82525050565b60006020820190506129496000830184612925565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612991826126c1565b810181811067ffffffffffffffff821117156129b0576129af612959565b5b80604052505050565b60006129c36125ac565b90506129cf8282612988565b919050565b600067ffffffffffffffff8211156129ef576129ee612959565b5b6129f8826126c1565b9050602081019050919050565b82818337600083830152505050565b6000612a27612a22846129d4565b6129b9565b905082815260208101848484011115612a4357612a42612954565b5b612a4e848285612a05565b509392505050565b600082601f830112612a6b57612a6a61294f565b5b8135612a7b848260208601612a14565b91505092915050565b600060208284031215612a9a57612a996125b6565b5b600082013567ffffffffffffffff811115612ab857612ab76125bb565b5b612ac484828501612a56565b91505092915050565b600060208284031215612ae357612ae26125b6565b5b6000612af184828501612803565b91505092915050565b612b0381612645565b8114612b0e57600080fd5b50565b600081359050612b2081612afa565b92915050565b60008060408385031215612b3d57612b3c6125b6565b5b6000612b4b85828601612803565b9250506020612b5c85828601612b11565b9150509250929050565b600067ffffffffffffffff821115612b8157612b80612959565b5b612b8a826126c1565b9050602081019050919050565b6000612baa612ba584612b66565b6129b9565b905082815260208101848484011115612bc657612bc5612954565b5b612bd1848285612a05565b509392505050565b600082601f830112612bee57612bed61294f565b5b8135612bfe848260208601612b97565b91505092915050565b60008060008060808587031215612c2157612c206125b6565b5b6000612c2f87828801612803565b9450506020612c4087828801612803565b9350506040612c518782880161274e565b925050606085013567ffffffffffffffff811115612c7257612c716125bb565b5b612c7e87828801612bd9565b91505092959194509250565b600067ffffffffffffffff821115612ca557612ca4612959565b5b602082029050602081019050919050565b600080fd5b6000612cce612cc984612c8a565b6129b9565b90508083825260208201905060208402830185811115612cf157612cf0612cb6565b5b835b81811015612d1a5780612d068882612803565b845260208401935050602081019050612cf3565b5050509392505050565b600082601f830112612d3957612d3861294f565b5b8135612d49848260208601612cbb565b91505092915050565b60008060408385031215612d6957612d686125b6565b5b600083013567ffffffffffffffff811115612d8757612d866125bb565b5b612d9385828601612d24565b9250506020612da48582860161274e565b9150509250929050565b60008060408385031215612dc557612dc46125b6565b5b6000612dd385828601612803565b9250506020612de485828601612803565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3557607f821691505b602082108103612e4857612e47612dee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e888261272d565b9150612e938361272d565b9250828201905080821115612eab57612eaa612e4e565b5b92915050565b6000612ebc8261272d565b9150612ec78361272d565b9250828203905081811115612edf57612ede612e4e565b5b92915050565b6000612ef08261272d565b9150612efb8361272d565b9250828202612f098161272d565b91508282048414831517612f2057612f1f612e4e565b5b5092915050565b600081905092915050565b50565b6000612f42600083612f27565b9150612f4d82612f32565b600082019050919050565b6000612f6382612f35565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612fcf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f92565b612fd98683612f92565b95508019841693508086168417925050509392505050565b600061300c6130076130028461272d565b6128d5565b61272d565b9050919050565b6000819050919050565b61302683612ff1565b61303a61303282613013565b848454612f9f565b825550505050565b600090565b61304f613042565b61305a81848461301d565b505050565b5b8181101561307e57613073600082613047565b600181019050613060565b5050565b601f8211156130c35761309481612f6d565b61309d84612f82565b810160208510156130ac578190505b6130c06130b885612f82565b83018261305f565b50505b505050565b600082821c905092915050565b60006130e6600019846008026130c8565b1980831691505092915050565b60006130ff83836130d5565b9150826002028217905092915050565b6131188261267b565b67ffffffffffffffff81111561313157613130612959565b5b61313b8254612e1d565b613146828285613082565b600060209050601f8311600181146131795760008415613167578287015190505b61317185826130f3565b8655506131d9565b601f19841661318786612f6d565b60005b828110156131af5784890151825560018201915060208501945060208101905061318a565b868310156131cc57848901516131c8601f8916826130d5565b8355505b6001600288020188555050505b505050505050565b7f41697264726f7020697320617661696c61626c65206f6e6c7920647572696e6760008201527f2070617573656420737461746500000000000000000000000000000000000000602082015250565b600061323d602d83612686565b9150613248826131e1565b604082019050919050565b6000602082019050818103600083015261326c81613230565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006132ad8261272d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132df576132de612e4e565b5b600182019050919050565b600081905092915050565b60006133008261267b565b61330a81856132ea565b935061331a818560208601612697565b80840191505092915050565b6000815461333381612e1d565b61333d81866132ea565b94506001821660008114613358576001811461336d576133a0565b60ff19831686528115158202860193506133a0565b61337685612f6d565b60005b8381101561339857815481890152600182019150602081019050613379565b838801955050505b50505092915050565b60006133b582866132f5565b91506133c182856132f5565b91506133cd8284613326565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613436602683612686565b9150613441826133da565b604082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b600060408201905061348160008301856127c2565b61348e60208301846127c2565b9392505050565b6000815190506134a481612afa565b92915050565b6000602082840312156134c0576134bf6125b6565b5b60006134ce84828501613495565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061350d602083612686565b9150613518826134d7565b602082019050919050565b6000602082019050818103600083015261353c81613500565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613579601f83612686565b915061358482613543565b602082019050919050565b600060208201905081810360008301526135a88161356c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613605826135de565b61360f81856135e9565b935061361f818560208601612697565b613628816126c1565b840191505092915050565b600060808201905061364860008301876127c2565b61365560208301866127c2565b6136626040830185612858565b818103606083015261367481846135fa565b905095945050505050565b60008151905061368e816125ec565b92915050565b6000602082840312156136aa576136a96125b6565b5b60006136b88482850161367f565b9150509291505056fea2646970667358221220df98d7764ba861b2cdf60ffdd95556778a9d4bc6aeae1a08f05785fcf15b2c5764736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50314c336d4268764532664c58457861434542524475654d6758694e413453576d763134547a5638615375632f00000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063c204642c1161006f578063c204642c14610742578063c87b56dd1461076b578063e098ff73146107a8578063e985e9c5146107d3578063f2fde38b146108105761021a565b8063a22cb4651461067e578063b071401b146106a7578063b0fe6414146106d0578063b88d4fde146106fb578063bc951b91146107175761021a565b80638da5cb5b116100f25780638da5cb5b146105b857806393e90b23146105e357806394354fd01461060c57806395d89b4114610637578063a0712d68146106625761021a565b806370a0823114610524578063715018a614610561578063766b7d09146105785780638456cb59146105a15761021a565b806341f43434116101a65780635c975abb116101755780635c975abb14610441578063626ab3b81461046c5780636352211e14610495578063676f2602146104d25780636f8b44b0146104fb5761021a565b806341f43434146103a657806342842e0e146103d15780634d534a7d146103ed57806351830227146104165761021a565b806311b4a832116101ed57806311b4a832146102e057806318160ddd1461031d57806322f4596f1461034857806323b872dd146103735780633ccfd60b1461038f5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612618565b610839565b6040516102539190612660565b60405180910390f35b34801561026857600080fd5b506102716108cb565b60405161027e919061270b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612763565b61095d565b6040516102bb91906127d1565b60405180910390f35b6102de60048036038101906102d99190612818565b6109dc565b005b3480156102ec57600080fd5b5061030760048036038101906103029190612763565b610b20565b6040516103149190612867565b60405180910390f35b34801561032957600080fd5b50610332610bb2565b60405161033f9190612867565b60405180910390f35b34801561035457600080fd5b5061035d610bc9565b60405161036a9190612867565b60405180910390f35b61038d60048036038101906103889190612882565b610bcf565b005b34801561039b57600080fd5b506103a4610c1e565b005b3480156103b257600080fd5b506103bb610cb6565b6040516103c89190612934565b60405180910390f35b6103eb60048036038101906103e69190612882565b610cc8565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612a84565b610d17565b005b34801561042257600080fd5b5061042b610d32565b6040516104389190612660565b60405180910390f35b34801561044d57600080fd5b50610456610d45565b6040516104639190612660565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190612a84565b610d58565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190612763565b610d73565b6040516104c991906127d1565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612763565b610d85565b005b34801561050757600080fd5b50610522600480360381019061051d9190612763565b610d97565b005b34801561053057600080fd5b5061054b60048036038101906105469190612acd565b610da9565b6040516105589190612867565b60405180910390f35b34801561056d57600080fd5b50610576610e61565b005b34801561058457600080fd5b5061059f600480360381019061059a9190612763565b610e75565b005b3480156105ad57600080fd5b506105b6610e87565b005b3480156105c457600080fd5b506105cd610ebb565b6040516105da91906127d1565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612763565b610ee5565b005b34801561061857600080fd5b50610621610ef7565b60405161062e9190612867565b60405180910390f35b34801561064357600080fd5b5061064c610efd565b604051610659919061270b565b60405180910390f35b61067c60048036038101906106779190612763565b610f8f565b005b34801561068a57600080fd5b506106a560048036038101906106a09190612b26565b6111ae565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190612763565b6112b9565b005b3480156106dc57600080fd5b506106e56112cb565b6040516106f29190612867565b60405180910390f35b61071560048036038101906107109190612c07565b6112d1565b005b34801561072357600080fd5b5061072c611322565b6040516107399190612867565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612d52565b611328565b005b34801561077757600080fd5b50610792600480360381019061078d9190612763565b6114ff565b60405161079f919061270b565b60405180910390f35b3480156107b457600080fd5b506107bd6115a0565b6040516107ca9190612867565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190612dae565b6115a6565b6040516108079190612660565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190612acd565b61163a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108da90612e1d565b80601f016020809104026020016040519081016040528092919081815260200182805461090690612e1d565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b6000610968826116bd565b61099e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e782610d73565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0861171c565b73ffffffffffffffffffffffffffffffffffffffff1614610a6b57610a3481610a2f61171c565b6115a6565b610a6a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610b2c33610da9565b83610b379190612e7d565b90506011548111610b4d57600f54915050610bad565b601154610b5933610da9565b108015610b67575060115481115b15610b9557600060115484610b7c9190612eb1565b601054610b899190612ee5565b90508092505050610bad565b600083601054610ba59190612ee5565b905080925050505b919050565b6000610bbc611724565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c0d57610c0c3361172d565b5b610c1884848461182a565b50505050565b610c26611b4c565b610c2e611bca565b6000610c38610ebb565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c5b90612f58565b60006040518083038185875af1925050503d8060008114610c98576040519150601f19603f3d011682016040523d82523d6000602084013e610c9d565b606091505b5050905080610cab57600080fd5b50610cb4611c19565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d0657610d053361172d565b5b610d11848484611c23565b50505050565b610d1f611b4c565b80600e9081610d2e919061310f565b5050565b601360009054906101000a900460ff1681565b601360019054906101000a900460ff1681565b610d60611b4c565b80600d9081610d6f919061310f565b5050565b6000610d7e82611c43565b9050919050565b610d8d611b4c565b8060108190555050565b610d9f611b4c565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e10576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e69611b4c565b610e736000611d0f565b565b610e7d611b4c565b80600b8190555050565b610e8f611b4c565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eed611b4c565b8060118190555050565b600c5481565b606060038054610f0c90612e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3890612e1d565b8015610f855780601f10610f5a57610100808354040283529160200191610f85565b820191906000526020600020905b815481529060010190602001808311610f6857829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ff5576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611001610bb2565b61100b9190612e7d565b1115611043576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5481111561107f576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff16156110c6576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b54816110d433610da9565b6110de9190612e7d565b1115611116576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008110806111265750600b5481115b1561115d576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61116681610b20565b34101561119f576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111a93384611dd5565b505050565b80600760006111bb61171c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126861171c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ad9190612660565b60405180910390a35050565b6112c1611b4c565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461130f5761130e3361172d565b5b61131b85858585611df3565b5050505050565b600b5481565b611330611b4c565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611396576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816113a2610bb2565b6113ac9190612e7d565b11156113e4576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611420576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611467576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff166114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613253565b60405180910390fd5b60005b83518110156114f9576114e68482815181106114d8576114d7613273565b5b602002602001015184611dd5565b80806114f1906132a2565b9150506114b9565b50505050565b606061150a826116bd565b611540576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061154a611e66565b9050600081511161156a5760405180602001604052806000815250611598565b8061157484611ef8565b600e604051602001611588939291906133a9565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611642611b4c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a89061344c565b60405180910390fd5b6116ba81611d0f565b50565b6000816116c8611724565b111580156116d7575060005482105b8015611715575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611827576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016117a492919061346c565b602060405180830381865afa1580156117c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e591906134aa565b61182657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161181d91906127d1565b60405180910390fd5b5b50565b600061183582611c43565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461189c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806118a884611fc6565b915091506118be81876118b961171c565b611fed565b61190a576118d3866118ce61171c565b6115a6565b611909576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611970576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61197d8686866001612031565b801561198857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a5685611a32888887612037565b7c02000000000000000000000000000000000000000000000000000000001761205f565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611adc5760006001850190506000600460008381526020019081526020016000205403611ada576000548114611ad9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b44868686600161208a565b505050505050565b611b54612090565b73ffffffffffffffffffffffffffffffffffffffff16611b72610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613523565b60405180910390fd5b565b600260095403611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c069061358f565b60405180910390fd5b6002600981905550565b6001600981905550565b611c3e838383604051806020016040528060008152506112d1565b505050565b60008082905080611c52611724565b11611cd857600054811015611cd75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611cd5575b60008103611ccb576004600083600190039350838152602001908152602001600020549050611ca1565b8092505050611d0a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611def828260405180602001604052806000815250612098565b5050565b611dfe848484610bcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e6057611e2984848484612135565b611e5f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611e7590612e1d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea190612e1d565b8015611eee5780601f10611ec357610100808354040283529160200191611eee565b820191906000526020600020905b815481529060010190602001808311611ed157829003601f168201915b5050505050905090565b606060006001611f0784612285565b01905060008167ffffffffffffffff811115611f2657611f25612959565b5b6040519080825280601f01601f191660200182016040528015611f585781602001600182028036833780820191505090505b509050600082602001820190505b600115611fbb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611faf57611fae6135af565b5b04945060008503611f66575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861204e8686846123d8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6120a283836123e1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461213057600080549050600083820390505b6120e26000868380600101945086612135565b612118576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120cf57816000541461212d57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261215b61171c565b8786866040518563ffffffff1660e01b815260040161217d9493929190613633565b6020604051808303816000875af19250505080156121b957506040513d601f19601f820116820180604052508101906121b69190613694565b60015b612232573d80600081146121e9576040519150601f19603f3d011682016040523d82523d6000602084013e6121ee565b606091505b50600081510361222a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122e3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816122d9576122d86135af565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612320576d04ee2d6d415b85acef81000000008381612316576123156135af565b5b0492506020810190505b662386f26fc10000831061234f57662386f26fc100008381612345576123446135af565b5b0492506010810190505b6305f5e1008310612378576305f5e100838161236e5761236d6135af565b5b0492506008810190505b612710831061239d576127108381612393576123926135af565b5b0492506004810190505b606483106123c057606483816123b6576123b56135af565b5b0492506002810190505b600a83106123cf576001810190505b80915050919050565b60009392505050565b60008054905060008203612421576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61242e6000848385612031565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124a5836124966000866000612037565b61249f8561259c565b1761205f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461254657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061250b565b5060008203612581576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612597600084838561208a565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125f5816125c0565b811461260057600080fd5b50565b600081359050612612816125ec565b92915050565b60006020828403121561262e5761262d6125b6565b5b600061263c84828501612603565b91505092915050565b60008115159050919050565b61265a81612645565b82525050565b60006020820190506126756000830184612651565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126b557808201518184015260208101905061269a565b60008484015250505050565b6000601f19601f8301169050919050565b60006126dd8261267b565b6126e78185612686565b93506126f7818560208601612697565b612700816126c1565b840191505092915050565b6000602082019050818103600083015261272581846126d2565b905092915050565b6000819050919050565b6127408161272d565b811461274b57600080fd5b50565b60008135905061275d81612737565b92915050565b600060208284031215612779576127786125b6565b5b60006127878482850161274e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127bb82612790565b9050919050565b6127cb816127b0565b82525050565b60006020820190506127e660008301846127c2565b92915050565b6127f5816127b0565b811461280057600080fd5b50565b600081359050612812816127ec565b92915050565b6000806040838503121561282f5761282e6125b6565b5b600061283d85828601612803565b925050602061284e8582860161274e565b9150509250929050565b6128618161272d565b82525050565b600060208201905061287c6000830184612858565b92915050565b60008060006060848603121561289b5761289a6125b6565b5b60006128a986828701612803565b93505060206128ba86828701612803565b92505060406128cb8682870161274e565b9150509250925092565b6000819050919050565b60006128fa6128f56128f084612790565b6128d5565b612790565b9050919050565b600061290c826128df565b9050919050565b600061291e82612901565b9050919050565b61292e81612913565b82525050565b60006020820190506129496000830184612925565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612991826126c1565b810181811067ffffffffffffffff821117156129b0576129af612959565b5b80604052505050565b60006129c36125ac565b90506129cf8282612988565b919050565b600067ffffffffffffffff8211156129ef576129ee612959565b5b6129f8826126c1565b9050602081019050919050565b82818337600083830152505050565b6000612a27612a22846129d4565b6129b9565b905082815260208101848484011115612a4357612a42612954565b5b612a4e848285612a05565b509392505050565b600082601f830112612a6b57612a6a61294f565b5b8135612a7b848260208601612a14565b91505092915050565b600060208284031215612a9a57612a996125b6565b5b600082013567ffffffffffffffff811115612ab857612ab76125bb565b5b612ac484828501612a56565b91505092915050565b600060208284031215612ae357612ae26125b6565b5b6000612af184828501612803565b91505092915050565b612b0381612645565b8114612b0e57600080fd5b50565b600081359050612b2081612afa565b92915050565b60008060408385031215612b3d57612b3c6125b6565b5b6000612b4b85828601612803565b9250506020612b5c85828601612b11565b9150509250929050565b600067ffffffffffffffff821115612b8157612b80612959565b5b612b8a826126c1565b9050602081019050919050565b6000612baa612ba584612b66565b6129b9565b905082815260208101848484011115612bc657612bc5612954565b5b612bd1848285612a05565b509392505050565b600082601f830112612bee57612bed61294f565b5b8135612bfe848260208601612b97565b91505092915050565b60008060008060808587031215612c2157612c206125b6565b5b6000612c2f87828801612803565b9450506020612c4087828801612803565b9350506040612c518782880161274e565b925050606085013567ffffffffffffffff811115612c7257612c716125bb565b5b612c7e87828801612bd9565b91505092959194509250565b600067ffffffffffffffff821115612ca557612ca4612959565b5b602082029050602081019050919050565b600080fd5b6000612cce612cc984612c8a565b6129b9565b90508083825260208201905060208402830185811115612cf157612cf0612cb6565b5b835b81811015612d1a5780612d068882612803565b845260208401935050602081019050612cf3565b5050509392505050565b600082601f830112612d3957612d3861294f565b5b8135612d49848260208601612cbb565b91505092915050565b60008060408385031215612d6957612d686125b6565b5b600083013567ffffffffffffffff811115612d8757612d866125bb565b5b612d9385828601612d24565b9250506020612da48582860161274e565b9150509250929050565b60008060408385031215612dc557612dc46125b6565b5b6000612dd385828601612803565b9250506020612de485828601612803565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3557607f821691505b602082108103612e4857612e47612dee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e888261272d565b9150612e938361272d565b9250828201905080821115612eab57612eaa612e4e565b5b92915050565b6000612ebc8261272d565b9150612ec78361272d565b9250828203905081811115612edf57612ede612e4e565b5b92915050565b6000612ef08261272d565b9150612efb8361272d565b9250828202612f098161272d565b91508282048414831517612f2057612f1f612e4e565b5b5092915050565b600081905092915050565b50565b6000612f42600083612f27565b9150612f4d82612f32565b600082019050919050565b6000612f6382612f35565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612fcf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f92565b612fd98683612f92565b95508019841693508086168417925050509392505050565b600061300c6130076130028461272d565b6128d5565b61272d565b9050919050565b6000819050919050565b61302683612ff1565b61303a61303282613013565b848454612f9f565b825550505050565b600090565b61304f613042565b61305a81848461301d565b505050565b5b8181101561307e57613073600082613047565b600181019050613060565b5050565b601f8211156130c35761309481612f6d565b61309d84612f82565b810160208510156130ac578190505b6130c06130b885612f82565b83018261305f565b50505b505050565b600082821c905092915050565b60006130e6600019846008026130c8565b1980831691505092915050565b60006130ff83836130d5565b9150826002028217905092915050565b6131188261267b565b67ffffffffffffffff81111561313157613130612959565b5b61313b8254612e1d565b613146828285613082565b600060209050601f8311600181146131795760008415613167578287015190505b61317185826130f3565b8655506131d9565b601f19841661318786612f6d565b60005b828110156131af5784890151825560018201915060208501945060208101905061318a565b868310156131cc57848901516131c8601f8916826130d5565b8355505b6001600288020188555050505b505050505050565b7f41697264726f7020697320617661696c61626c65206f6e6c7920647572696e6760008201527f2070617573656420737461746500000000000000000000000000000000000000602082015250565b600061323d602d83612686565b9150613248826131e1565b604082019050919050565b6000602082019050818103600083015261326c81613230565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006132ad8261272d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132df576132de612e4e565b5b600182019050919050565b600081905092915050565b60006133008261267b565b61330a81856132ea565b935061331a818560208601612697565b80840191505092915050565b6000815461333381612e1d565b61333d81866132ea565b94506001821660008114613358576001811461336d576133a0565b60ff19831686528115158202860193506133a0565b61337685612f6d565b60005b8381101561339857815481890152600182019150602081019050613379565b838801955050505b50505092915050565b60006133b582866132f5565b91506133c182856132f5565b91506133cd8284613326565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613436602683612686565b9150613441826133da565b604082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b600060408201905061348160008301856127c2565b61348e60208301846127c2565b9392505050565b6000815190506134a481612afa565b92915050565b6000602082840312156134c0576134bf6125b6565b5b60006134ce84828501613495565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061350d602083612686565b9150613518826134d7565b602082019050919050565b6000602082019050818103600083015261353c81613500565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613579601f83612686565b915061358482613543565b602082019050919050565b600060208201905081810360008301526135a88161356c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613605826135de565b61360f81856135e9565b935061361f818560208601612697565b613628816126c1565b840191505092915050565b600060808201905061364860008301876127c2565b61365560208301866127c2565b6136626040830185612858565b818103606083015261367481846135fa565b905095945050505050565b60008151905061368e816125ec565b92915050565b6000602082840312156136aa576136a96125b6565b5b60006136b88482850161367f565b9150509291505056fea2646970667358221220df98d7764ba861b2cdf60ffdd95556778a9d4bc6aeae1a08f05785fcf15b2c5764736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50314c336d4268764532664c58457861434542524475654d6758694e413453576d763134547a5638615375632f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmP1L3mBhvE2fLXExaCEBRDueMgXiNA4SWmv14TzV8aSuc/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d50314c336d4268764532664c5845786143454252447565
Arg [3] : 4d6758694e413453576d763134547a5638615375632f00000000000000000000


Deployed Bytecode Sourcemap

79486:7671:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41974:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42876:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49367:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48800:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81844:564;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38627:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79623:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86142:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84770:197;;;;;;;;;;;;;:::i;:::-;;2927:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86521:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83410:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80053:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80096:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83261:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44269:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83626:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83806:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39811:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77781:103;;;;;;;;;;;;;:::i;:::-;;84210:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83103:75;;;;;;;;;;;;;:::i;:::-;;77133:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84454:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79727:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43052:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81512:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49925:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84001:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79958:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86899:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79670:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82667:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85198:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79903:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50316:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78039:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41974:639;42059:4;42398:10;42383:25;;:11;:25;;;;:102;;;;42475:10;42460:25;;:11;:25;;;;42383:102;:179;;;;42552:10;42537:25;;:11;:25;;;;42383:179;42363:199;;41974:639;;;:::o;42876:100::-;42930:13;42963:5;42956:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42876:100;:::o;49367:218::-;49443:7;49468:16;49476:7;49468;:16::i;:::-;49463:64;;49493:34;;;;;;;;;;;;;;49463:64;49547:15;:24;49563:7;49547:24;;;;;;;;;;;:30;;;;;;;;;;;;49540:37;;49367:218;;;:::o;48800:408::-;48889:13;48905:16;48913:7;48905;:16::i;:::-;48889:32;;48961:5;48938:28;;:19;:17;:19::i;:::-;:28;;;48934:175;;48986:44;49003:5;49010:19;:17;:19::i;:::-;48986:16;:44::i;:::-;48981:128;;49058:35;;;;;;;;;;;;;;48981:128;48934:175;49154:2;49121:15;:24;49137:7;49121:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49192:7;49188:2;49172:28;;49181:5;49172:28;;;;;;;;;;;;48878:330;48800:408;;:::o;81844:564::-;81905:7;81927:18;81962:21;81972:10;81962:9;:21::i;:::-;81948:11;:35;;;;:::i;:::-;81927:56;;82015:16;;82001:10;:30;81996:401;;82055:12;;82048:19;;;;;81996:401;82116:16;;82092:21;82102:10;82092:9;:21::i;:::-;:40;82091:77;;;;;82151:16;;82138:10;:29;82091:77;82087:310;;;82185:13;82228:16;;82214:11;:30;;;;:::i;:::-;82201:9;;:44;;;;:::i;:::-;82185:60;;82265:5;82258:12;;;;;;82087:310;82315:14;82344:11;82332:9;;:23;;;;:::i;:::-;82315:40;;82375:6;82368:13;;;;81844:564;;;;:::o;38627:323::-;38688:7;38916:15;:13;:15::i;:::-;38901:12;;38885:13;;:28;:46;38878:53;;38627:323;:::o;79623:32::-;;;;:::o;86142:176::-;86252:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;86269:37:::1;86288:4;86294:2;86298:7;86269:18;:37::i;:::-;86142:176:::0;;;;:::o;84770:197::-;77019:13;:11;:13::i;:::-;7770:21:::1;:19;:21::i;:::-;84859:10:::2;84883:7;:5;:7::i;:::-;84875:21;;84904;84875:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84858:72;;;84949:5;84941:14;;;::::0;::::2;;84819:148;7814:20:::1;:18;:20::i;:::-;84770:197::o:0;2927:143::-;3027:42;2927:143;:::o;86521:183::-;86634:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;86651:41:::1;86674:4;86680:2;86684:7;86651:22;:41::i;:::-;86521:183:::0;;;;:::o;83410:103::-;77019:13;:11;:13::i;:::-;83498:3:::1;83483:12;:18;;;;;;:::i;:::-;;83410:103:::0;:::o;80053:28::-;;;;;;;;;;;;;:::o;80096:25::-;;;;;;;;;;;;;:::o;83261:93::-;77019:13;:11;:13::i;:::-;83339:3:::1;83329:7;:13;;;;;;:::i;:::-;;83261:93:::0;:::o;44269:152::-;44341:7;44384:27;44403:7;44384:18;:27::i;:::-;44361:52;;44269:152;;;:::o;83626:95::-;77019:13;:11;:13::i;:::-;83704:5:::1;83692:9;:17;;;;83626:95:::0;:::o;83806:98::-;77019:13;:11;:13::i;:::-;83886:6:::1;83873:10;:19;;;;83806:98:::0;:::o;39811:233::-;39883:7;39924:1;39907:19;;:5;:19;;;39903:60;;39935:28;;;;;;;;;;;;;;39903:60;33970:13;39981:18;:25;40000:5;39981:25;;;;;;;;;;;;;;;;:55;39974:62;;39811:233;;;:::o;77781:103::-;77019:13;:11;:13::i;:::-;77846:30:::1;77873:1;77846:18;:30::i;:::-;77781:103::o:0;84210:129::-;77019:13;:11;:13::i;:::-;84318:9:::1;84293:22;:34;;;;84210:129:::0;:::o;83103:75::-;77019:13;:11;:13::i;:::-;83160:6:::1;;;;;;;;;;;83159:7;83150:6;;:16;;;;;;;;;;;;;;;;;;83103:75::o:0;77133:87::-;77179:7;77206:6;;;;;;;;;;;77199:13;;77133:87;:::o;84454:117::-;77019:13;:11;:13::i;:::-;84550:9:::1;84531:16;:28;;;;84454:117:::0;:::o;79727:38::-;;;;:::o;43052:104::-;43108:13;43141:7;43134:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43052:104;:::o;81512:168::-;81577:11;80688:9;80674:23;;:10;:23;;;80670:53;;80706:17;;;;;;;;;;;;;;80670:53;80773:10;;80759:11;80742:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;80738:65;;;80792:11;;;;;;;;;;;;;;80738:65;80836:18;;80822:11;:32;80818:64;;;80863:19;;;;;;;;;;;;;;80818:64;80900:6;;;;;;;;;;;80897:34;;;80915:16;;;;;;;;;;;;;;80897:34;81610:11:::1;81078:22;;81064:11;81040:21;81050:10;81040:9;:21::i;:::-;:35;;;;:::i;:::-;:60;81036:96;;;81109:23;;;;;;;;;;;;;;81036:96;81165:1;81151:11;:15;:55;;;;81184:22;;81170:11;:36;81151:55;81147:87;;;81215:19;;;;;;;;;;;;;;81147:87;81265:22;81275:11;81265:9;:22::i;:::-;81253:9;:34;81249:65;;;81296:18;;;;;;;;;;;;;;81249:65;81634:34:::2;81644:10;81656:11;81634:9;:34::i;:::-;80946:1:::1;81512:168:::0;;:::o;49925:234::-;50072:8;50020:18;:39;50039:19;:17;:19::i;:::-;50020:39;;;;;;;;;;;;;;;:49;50060:8;50020:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;50132:8;50096:55;;50111:19;:17;:19::i;:::-;50096:55;;;50142:8;50096:55;;;;;;:::i;:::-;;;;;;;;49925:234;;:::o;84001:113::-;77019:13;:11;:13::i;:::-;84097:5:::1;84076:18;:26;;;;84001:113:::0;:::o;79958:35::-;;;;:::o;86899:243::-;87057:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;87083:47:::1;87106:4;87112:2;87116:7;87125:4;87083:22;:47::i;:::-;86899:243:::0;;;;;:::o;79670:42::-;;;;:::o;82667:302::-;77019:13;:11;:13::i;:::-;82759:6:::1;80688:9;80674:23;;:10;:23;;;80670:53;;80706:17;;;;;;;;;;;;;;80670:53;80773:10;;80759:11;80742:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;80738:65;;;80792:11;;;;;;;;;;;;;;80738:65;80836:18;;80822:11;:32;80818:64;;;80863:19;;;;;;;;;;;;;;80818:64;80900:6;;;;;;;;;;;80897:34;;;80915:16;;;;;;;;;;;;;;80897:34;82786:6:::2;;;;;;;;;;;82778:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;82860:9;82855:105;82879:8;:15;82875:1;:19;82855:105;;;82916:30;82926:8;82935:1;82926:11;;;;;;;;:::i;:::-;;;;;;;;82939:6;82916:9;:30::i;:::-;82896:3;;;;;:::i;:::-;;;;82855:105;;;;77043:1:::1;82667:302:::0;;:::o;85198:381::-;85272:13;85305:16;85313:7;85305;:16::i;:::-;85300:48;;85330:18;;;;;;;;;;;;;;85300:48;85376:28;85407:10;:8;:10::i;:::-;85376:41;;85466:1;85441:14;85435:28;:32;:132;;;;;;;;;;;;;;;;;85503:14;85519:18;:7;:16;:18::i;:::-;85539:12;85486:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85435:132;85428:139;;;85198:381;;;:::o;79903:40::-;;;;:::o;50316:164::-;50413:4;50437:18;:25;50456:5;50437:25;;;;;;;;;;;;;;;:35;50463:8;50437:35;;;;;;;;;;;;;;;;;;;;;;;;;50430:42;;50316:164;;;;:::o;78039:201::-;77019:13;:11;:13::i;:::-;78148:1:::1;78128:22;;:8;:22;;::::0;78120:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;78204:28;78223:8;78204:18;:28::i;:::-;78039:201:::0;:::o;50738:282::-;50803:4;50859:7;50840:15;:13;:15::i;:::-;:26;;:66;;;;;50893:13;;50883:7;:23;50840:66;:153;;;;;50992:1;34746:8;50944:17;:26;50962:7;50944:26;;;;;;;;;;;;:44;:49;50840:153;50820:173;;50738:282;;;:::o;73046:105::-;73106:7;73133:10;73126:17;;73046:105;:::o;85638:107::-;85703:7;85732:1;85725:8;;85638:107;:::o;4506:419::-;4745:1;3027:42;4697:45;;;:49;4693:225;;;3027:42;4768;;;4819:4;4826:8;4768:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4763:144;;4882:8;4863:28;;;;;;;;;;;:::i;:::-;;;;;;;;4763:144;4693:225;4506:419;:::o;53006:2825::-;53148:27;53178;53197:7;53178:18;:27::i;:::-;53148:57;;53263:4;53222:45;;53238:19;53222:45;;;53218:86;;53276:28;;;;;;;;;;;;;;53218:86;53318:27;53347:23;53374:35;53401:7;53374:26;:35::i;:::-;53317:92;;;;53509:68;53534:15;53551:4;53557:19;:17;:19::i;:::-;53509:24;:68::i;:::-;53504:180;;53597:43;53614:4;53620:19;:17;:19::i;:::-;53597:16;:43::i;:::-;53592:92;;53649:35;;;;;;;;;;;;;;53592:92;53504:180;53715:1;53701:16;;:2;:16;;;53697:52;;53726:23;;;;;;;;;;;;;;53697:52;53762:43;53784:4;53790:2;53794:7;53803:1;53762:21;:43::i;:::-;53898:15;53895:160;;;54038:1;54017:19;54010:30;53895:160;54435:18;:24;54454:4;54435:24;;;;;;;;;;;;;;;;54433:26;;;;;;;;;;;;54504:18;:22;54523:2;54504:22;;;;;;;;;;;;;;;;54502:24;;;;;;;;;;;54826:146;54863:2;54912:45;54927:4;54933:2;54937:19;54912:14;:45::i;:::-;35026:8;54884:73;54826:18;:146::i;:::-;54797:17;:26;54815:7;54797:26;;;;;;;;;;;:175;;;;55143:1;35026:8;55092:19;:47;:52;55088:627;;55165:19;55197:1;55187:7;:11;55165:33;;55354:1;55320:17;:30;55338:11;55320:30;;;;;;;;;;;;:35;55316:384;;55458:13;;55443:11;:28;55439:242;;55638:19;55605:17;:30;55623:11;55605:30;;;;;;;;;;;:52;;;;55439:242;55316:384;55146:569;55088:627;55762:7;55758:2;55743:27;;55752:4;55743:27;;;;;;;;;;;;55781:42;55802:4;55808:2;55812:7;55821:1;55781:20;:42::i;:::-;53137:2694;;;53006:2825;;;:::o;77298:132::-;77373:12;:10;:12::i;:::-;77362:23;;:7;:5;:7::i;:::-;:23;;;77354:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77298:132::o;7850:293::-;7252:1;7984:7;;:19;7976:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7252:1;8117:7;:18;;;;7850:293::o;8151:213::-;7208:1;8334:7;:22;;;;8151:213::o;55927:193::-;56073:39;56090:4;56096:2;56100:7;56073:39;;;;;;;;;;;;:16;:39::i;:::-;55927:193;;;:::o;45424:1275::-;45491:7;45511:12;45526:7;45511:22;;45594:4;45575:15;:13;:15::i;:::-;:23;45571:1061;;45628:13;;45621:4;:20;45617:1015;;;45666:14;45683:17;:23;45701:4;45683:23;;;;;;;;;;;;45666:40;;45800:1;34746:8;45772:6;:24;:29;45768:845;;46437:113;46454:1;46444:6;:11;46437:113;;46497:17;:25;46515:6;;;;;;;46497:25;;;;;;;;;;;;46488:34;;46437:113;;;46583:6;46576:13;;;;;;45768:845;45643:989;45617:1015;45571:1061;46660:31;;;;;;;;;;;;;;45424:1275;;;;:::o;78400:191::-;78474:16;78493:6;;;;;;;;;;;78474:25;;78519:8;78510:6;;:17;;;;;;;;;;;;;;;;;;78574:8;78543:40;;78564:8;78543:40;;;;;;;;;;;;78463:128;78400:191;:::o;66878:112::-;66955:27;66965:2;66969:8;66955:27;;;;;;;;;;;;:9;:27::i;:::-;66878:112;;:::o;56718:407::-;56893:31;56906:4;56912:2;56916:7;56893:12;:31::i;:::-;56957:1;56939:2;:14;;;:19;56935:183;;56978:56;57009:4;57015:2;57019:7;57028:5;56978:30;:56::i;:::-;56973:145;;57062:40;;;;;;;;;;;;;;56973:145;56935:183;56718:407;;;;:::o;85825:114::-;85885:13;85920:7;85913:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85825:114;:::o;21676:716::-;21732:13;21783:14;21820:1;21800:17;21811:5;21800:10;:17::i;:::-;:21;21783:38;;21836:20;21870:6;21859:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21836:41;;21892:11;22021:6;22017:2;22013:15;22005:6;22001:28;21994:35;;22058:288;22065:4;22058:288;;;22090:5;;;;;;;;22232:8;22227:2;22220:5;22216:14;22211:30;22206:3;22198:44;22288:2;22279:11;;;;;;:::i;:::-;;;;;22322:1;22313:5;:10;22058:288;22309:21;22058:288;22367:6;22360:13;;;;;21676:716;;;:::o;51901:485::-;52003:27;52032:23;52073:38;52114:15;:24;52130:7;52114:24;;;;;;;;;;;52073:65;;52291:18;52268:41;;52348:19;52342:26;52323:45;;52253:126;51901:485;;;:::o;51129:659::-;51278:11;51443:16;51436:5;51432:28;51423:37;;51603:16;51592:9;51588:32;51575:45;;51753:15;51742:9;51739:30;51731:5;51720:9;51717:20;51714:56;51704:66;;51129:659;;;;;:::o;57787:159::-;;;;;:::o;72355:311::-;72490:7;72510:16;35150:3;72536:19;:41;;72510:68;;35150:3;72604:31;72615:4;72621:2;72625:9;72604:10;:31::i;:::-;72596:40;;:62;;72589:69;;;72355:311;;;;;:::o;47247:450::-;47327:14;47495:16;47488:5;47484:28;47475:37;;47672:5;47658:11;47633:23;47629:41;47626:52;47619:5;47616:63;47606:73;;47247:450;;;;:::o;58611:158::-;;;;;:::o;75684:98::-;75737:7;75764:10;75757:17;;75684:98;:::o;66105:689::-;66236:19;66242:2;66246:8;66236:5;:19::i;:::-;66315:1;66297:2;:14;;;:19;66293:483;;66337:11;66351:13;;66337:27;;66383:13;66405:8;66399:3;:14;66383:30;;66432:233;66463:62;66502:1;66506:2;66510:7;;;;;;66519:5;66463:30;:62::i;:::-;66458:167;;66561:40;;;;;;;;;;;;;;66458:167;66660:3;66652:5;:11;66432:233;;66747:3;66730:13;;:20;66726:34;;66752:8;;;66726:34;66318:458;;66293:483;66105:689;;;:::o;59209:716::-;59372:4;59418:2;59393:45;;;59439:19;:17;:19::i;:::-;59460:4;59466:7;59475:5;59393:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59389:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59693:1;59676:6;:13;:18;59672:235;;59722:40;;;;;;;;;;;;;;59672:235;59865:6;59859:13;59850:6;59846:2;59842:15;59835:38;59389:529;59562:54;;;59552:64;;;:6;:64;;;;59545:71;;;59209:716;;;;;;:::o;18542:922::-;18595:7;18615:14;18632:1;18615:18;;18682:6;18673:5;:15;18669:102;;18718:6;18709:15;;;;;;:::i;:::-;;;;;18753:2;18743:12;;;;18669:102;18798:6;18789:5;:15;18785:102;;18834:6;18825:15;;;;;;:::i;:::-;;;;;18869:2;18859:12;;;;18785:102;18914:6;18905:5;:15;18901:102;;18950:6;18941:15;;;;;;:::i;:::-;;;;;18985:2;18975:12;;;;18901:102;19030:5;19021;:14;19017:99;;19065:5;19056:14;;;;;;:::i;:::-;;;;;19099:1;19089:11;;;;19017:99;19143:5;19134;:14;19130:99;;19178:5;19169:14;;;;;;:::i;:::-;;;;;19212:1;19202:11;;;;19130:99;19256:5;19247;:14;19243:99;;19291:5;19282:14;;;;;;:::i;:::-;;;;;19325:1;19315:11;;;;19243:99;19369:5;19360;:14;19356:66;;19405:1;19395:11;;;;19356:66;19450:6;19443:13;;;18542:922;;;:::o;72056:147::-;72193:6;72056:147;;;;;:::o;60387:2966::-;60460:20;60483:13;;60460:36;;60523:1;60511:8;:13;60507:44;;60533:18;;;;;;;;;;;;;;60507:44;60564:61;60594:1;60598:2;60602:12;60616:8;60564:21;:61::i;:::-;61108:1;34108:2;61078:1;:26;;61077:32;61065:8;:45;61039:18;:22;61058:2;61039:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;61387:139;61424:2;61478:33;61501:1;61505:2;61509:1;61478:14;:33::i;:::-;61445:30;61466:8;61445:20;:30::i;:::-;:66;61387:18;:139::i;:::-;61353:17;:31;61371:12;61353:31;;;;;;;;;;;:173;;;;61543:16;61574:11;61603:8;61588:12;:23;61574:37;;62124:16;62120:2;62116:25;62104:37;;62496:12;62456:8;62415:1;62353:25;62294:1;62233;62206:335;62867:1;62853:12;62849:20;62807:346;62908:3;62899:7;62896:16;62807:346;;63126:7;63116:8;63113:1;63086:25;63083:1;63080;63075:59;62961:1;62952:7;62948:15;62937:26;;62807:346;;;62811:77;63198:1;63186:8;:13;63182:45;;63208:19;;;;;;;;;;;;;;63182:45;63260:3;63244:13;:19;;;;60813:2462;;63285:60;63314:1;63318:2;63322:12;63336:8;63285:20;:60::i;:::-;60449:2904;60387:2966;;:::o;47799:324::-;47869:14;48102:1;48092:8;48089:15;48063:24;48059:46;48049:56;;47799:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:311::-;12686:4;12776:18;12768:6;12765:30;12762:56;;;12798:18;;:::i;:::-;12762:56;12848:4;12840:6;12836:17;12828:25;;12908:4;12902;12898:15;12890:23;;12609:311;;;:::o;12926:117::-;13035:1;13032;13025:12;13066:710;13162:5;13187:81;13203:64;13260:6;13203:64;:::i;:::-;13187:81;:::i;:::-;13178:90;;13288:5;13317:6;13310:5;13303:21;13351:4;13344:5;13340:16;13333:23;;13404:4;13396:6;13392:17;13384:6;13380:30;13433:3;13425:6;13422:15;13419:122;;;13452:79;;:::i;:::-;13419:122;13567:6;13550:220;13584:6;13579:3;13576:15;13550:220;;;13659:3;13688:37;13721:3;13709:10;13688:37;:::i;:::-;13683:3;13676:50;13755:4;13750:3;13746:14;13739:21;;13626:144;13610:4;13605:3;13601:14;13594:21;;13550:220;;;13554:21;13168:608;;13066:710;;;;;:::o;13799:370::-;13870:5;13919:3;13912:4;13904:6;13900:17;13896:27;13886:122;;13927:79;;:::i;:::-;13886:122;14044:6;14031:20;14069:94;14159:3;14151:6;14144:4;14136:6;14132:17;14069:94;:::i;:::-;14060:103;;13876:293;13799:370;;;;:::o;14175:684::-;14268:6;14276;14325:2;14313:9;14304:7;14300:23;14296:32;14293:119;;;14331:79;;:::i;:::-;14293:119;14479:1;14468:9;14464:17;14451:31;14509:18;14501:6;14498:30;14495:117;;;14531:79;;:::i;:::-;14495:117;14636:78;14706:7;14697:6;14686:9;14682:22;14636:78;:::i;:::-;14626:88;;14422:302;14763:2;14789:53;14834:7;14825:6;14814:9;14810:22;14789:53;:::i;:::-;14779:63;;14734:118;14175:684;;;;;:::o;14865:474::-;14933:6;14941;14990:2;14978:9;14969:7;14965:23;14961:32;14958:119;;;14996:79;;:::i;:::-;14958:119;15116:1;15141:53;15186:7;15177:6;15166:9;15162:22;15141:53;:::i;:::-;15131:63;;15087:117;15243:2;15269:53;15314:7;15305:6;15294:9;15290:22;15269:53;:::i;:::-;15259:63;;15214:118;14865:474;;;;;:::o;15345:180::-;15393:77;15390:1;15383:88;15490:4;15487:1;15480:15;15514:4;15511:1;15504:15;15531:320;15575:6;15612:1;15606:4;15602:12;15592:22;;15659:1;15653:4;15649:12;15680:18;15670:81;;15736:4;15728:6;15724:17;15714:27;;15670:81;15798:2;15790:6;15787:14;15767:18;15764:38;15761:84;;15817:18;;:::i;:::-;15761:84;15582:269;15531:320;;;:::o;15857:180::-;15905:77;15902:1;15895:88;16002:4;15999:1;15992:15;16026:4;16023:1;16016:15;16043:191;16083:3;16102:20;16120:1;16102:20;:::i;:::-;16097:25;;16136:20;16154:1;16136:20;:::i;:::-;16131:25;;16179:1;16176;16172:9;16165:16;;16200:3;16197:1;16194:10;16191:36;;;16207:18;;:::i;:::-;16191:36;16043:191;;;;:::o;16240:194::-;16280:4;16300:20;16318:1;16300:20;:::i;:::-;16295:25;;16334:20;16352:1;16334:20;:::i;:::-;16329:25;;16378:1;16375;16371:9;16363:17;;16402:1;16396:4;16393:11;16390:37;;;16407:18;;:::i;:::-;16390:37;16240:194;;;;:::o;16440:410::-;16480:7;16503:20;16521:1;16503:20;:::i;:::-;16498:25;;16537:20;16555:1;16537:20;:::i;:::-;16532:25;;16592:1;16589;16585:9;16614:30;16632:11;16614:30;:::i;:::-;16603:41;;16793:1;16784:7;16780:15;16777:1;16774:22;16754:1;16747:9;16727:83;16704:139;;16823:18;;:::i;:::-;16704:139;16488:362;16440:410;;;;:::o;16856:147::-;16957:11;16994:3;16979:18;;16856:147;;;;:::o;17009:114::-;;:::o;17129:398::-;17288:3;17309:83;17390:1;17385:3;17309:83;:::i;:::-;17302:90;;17401:93;17490:3;17401:93;:::i;:::-;17519:1;17514:3;17510:11;17503:18;;17129:398;;;:::o;17533:379::-;17717:3;17739:147;17882:3;17739:147;:::i;:::-;17732:154;;17903:3;17896:10;;17533:379;;;:::o;17918:141::-;17967:4;17990:3;17982:11;;18013:3;18010:1;18003:14;18047:4;18044:1;18034:18;18026:26;;17918:141;;;:::o;18065:93::-;18102:6;18149:2;18144;18137:5;18133:14;18129:23;18119:33;;18065:93;;;:::o;18164:107::-;18208:8;18258:5;18252:4;18248:16;18227:37;;18164:107;;;;:::o;18277:393::-;18346:6;18396:1;18384:10;18380:18;18419:97;18449:66;18438:9;18419:97;:::i;:::-;18537:39;18567:8;18556:9;18537:39;:::i;:::-;18525:51;;18609:4;18605:9;18598:5;18594:21;18585:30;;18658:4;18648:8;18644:19;18637:5;18634:30;18624:40;;18353:317;;18277:393;;;;;:::o;18676:142::-;18726:9;18759:53;18777:34;18786:24;18804:5;18786:24;:::i;:::-;18777:34;:::i;:::-;18759:53;:::i;:::-;18746:66;;18676:142;;;:::o;18824:75::-;18867:3;18888:5;18881:12;;18824:75;;;:::o;18905:269::-;19015:39;19046:7;19015:39;:::i;:::-;19076:91;19125:41;19149:16;19125:41;:::i;:::-;19117:6;19110:4;19104:11;19076:91;:::i;:::-;19070:4;19063:105;18981:193;18905:269;;;:::o;19180:73::-;19225:3;19180:73;:::o;19259:189::-;19336:32;;:::i;:::-;19377:65;19435:6;19427;19421:4;19377:65;:::i;:::-;19312:136;19259:189;;:::o;19454:186::-;19514:120;19531:3;19524:5;19521:14;19514:120;;;19585:39;19622:1;19615:5;19585:39;:::i;:::-;19558:1;19551:5;19547:13;19538:22;;19514:120;;;19454:186;;:::o;19646:543::-;19747:2;19742:3;19739:11;19736:446;;;19781:38;19813:5;19781:38;:::i;:::-;19865:29;19883:10;19865:29;:::i;:::-;19855:8;19851:44;20048:2;20036:10;20033:18;20030:49;;;20069:8;20054:23;;20030:49;20092:80;20148:22;20166:3;20148:22;:::i;:::-;20138:8;20134:37;20121:11;20092:80;:::i;:::-;19751:431;;19736:446;19646:543;;;:::o;20195:117::-;20249:8;20299:5;20293:4;20289:16;20268:37;;20195:117;;;;:::o;20318:169::-;20362:6;20395:51;20443:1;20439:6;20431:5;20428:1;20424:13;20395:51;:::i;:::-;20391:56;20476:4;20470;20466:15;20456:25;;20369:118;20318:169;;;;:::o;20492:295::-;20568:4;20714:29;20739:3;20733:4;20714:29;:::i;:::-;20706:37;;20776:3;20773:1;20769:11;20763:4;20760:21;20752:29;;20492:295;;;;:::o;20792:1395::-;20909:37;20942:3;20909:37;:::i;:::-;21011:18;21003:6;21000:30;20997:56;;;21033:18;;:::i;:::-;20997:56;21077:38;21109:4;21103:11;21077:38;:::i;:::-;21162:67;21222:6;21214;21208:4;21162:67;:::i;:::-;21256:1;21280:4;21267:17;;21312:2;21304:6;21301:14;21329:1;21324:618;;;;21986:1;22003:6;22000:77;;;22052:9;22047:3;22043:19;22037:26;22028:35;;22000:77;22103:67;22163:6;22156:5;22103:67;:::i;:::-;22097:4;22090:81;21959:222;21294:887;;21324:618;21376:4;21372:9;21364:6;21360:22;21410:37;21442:4;21410:37;:::i;:::-;21469:1;21483:208;21497:7;21494:1;21491:14;21483:208;;;21576:9;21571:3;21567:19;21561:26;21553:6;21546:42;21627:1;21619:6;21615:14;21605:24;;21674:2;21663:9;21659:18;21646:31;;21520:4;21517:1;21513:12;21508:17;;21483:208;;;21719:6;21710:7;21707:19;21704:179;;;21777:9;21772:3;21768:19;21762:26;21820:48;21862:4;21854:6;21850:17;21839:9;21820:48;:::i;:::-;21812:6;21805:64;21727:156;21704:179;21929:1;21925;21917:6;21913:14;21909:22;21903:4;21896:36;21331:611;;;21294:887;;20884:1303;;;20792:1395;;:::o;22193:232::-;22333:34;22329:1;22321:6;22317:14;22310:58;22402:15;22397:2;22389:6;22385:15;22378:40;22193:232;:::o;22431:366::-;22573:3;22594:67;22658:2;22653:3;22594:67;:::i;:::-;22587:74;;22670:93;22759:3;22670:93;:::i;:::-;22788:2;22783:3;22779:12;22772:19;;22431:366;;;:::o;22803:419::-;22969:4;23007:2;22996:9;22992:18;22984:26;;23056:9;23050:4;23046:20;23042:1;23031:9;23027:17;23020:47;23084:131;23210:4;23084:131;:::i;:::-;23076:139;;22803:419;;;:::o;23228:180::-;23276:77;23273:1;23266:88;23373:4;23370:1;23363:15;23397:4;23394:1;23387:15;23414:233;23453:3;23476:24;23494:5;23476:24;:::i;:::-;23467:33;;23522:66;23515:5;23512:77;23509:103;;23592:18;;:::i;:::-;23509:103;23639:1;23632:5;23628:13;23621:20;;23414:233;;;:::o;23653:148::-;23755:11;23792:3;23777:18;;23653:148;;;;:::o;23807:390::-;23913:3;23941:39;23974:5;23941:39;:::i;:::-;23996:89;24078:6;24073:3;23996:89;:::i;:::-;23989:96;;24094:65;24152:6;24147:3;24140:4;24133:5;24129:16;24094:65;:::i;:::-;24184:6;24179:3;24175:16;24168:23;;23917:280;23807:390;;;;:::o;24227:874::-;24330:3;24367:5;24361:12;24396:36;24422:9;24396:36;:::i;:::-;24448:89;24530:6;24525:3;24448:89;:::i;:::-;24441:96;;24568:1;24557:9;24553:17;24584:1;24579:166;;;;24759:1;24754:341;;;;24546:549;;24579:166;24663:4;24659:9;24648;24644:25;24639:3;24632:38;24725:6;24718:14;24711:22;24703:6;24699:35;24694:3;24690:45;24683:52;;24579:166;;24754:341;24821:38;24853:5;24821:38;:::i;:::-;24881:1;24895:154;24909:6;24906:1;24903:13;24895:154;;;24983:7;24977:14;24973:1;24968:3;24964:11;24957:35;25033:1;25024:7;25020:15;25009:26;;24931:4;24928:1;24924:12;24919:17;;24895:154;;;25078:6;25073:3;25069:16;25062:23;;24761:334;;24546:549;;24334:767;;24227:874;;;;:::o;25107:589::-;25332:3;25354:95;25445:3;25436:6;25354:95;:::i;:::-;25347:102;;25466:95;25557:3;25548:6;25466:95;:::i;:::-;25459:102;;25578:92;25666:3;25657:6;25578:92;:::i;:::-;25571:99;;25687:3;25680:10;;25107:589;;;;;;:::o;25702:225::-;25842:34;25838:1;25830:6;25826:14;25819:58;25911:8;25906:2;25898:6;25894:15;25887:33;25702:225;:::o;25933:366::-;26075:3;26096:67;26160:2;26155:3;26096:67;:::i;:::-;26089:74;;26172:93;26261:3;26172:93;:::i;:::-;26290:2;26285:3;26281:12;26274:19;;25933:366;;;:::o;26305:419::-;26471:4;26509:2;26498:9;26494:18;26486:26;;26558:9;26552:4;26548:20;26544:1;26533:9;26529:17;26522:47;26586:131;26712:4;26586:131;:::i;:::-;26578:139;;26305:419;;;:::o;26730:332::-;26851:4;26889:2;26878:9;26874:18;26866:26;;26902:71;26970:1;26959:9;26955:17;26946:6;26902:71;:::i;:::-;26983:72;27051:2;27040:9;27036:18;27027:6;26983:72;:::i;:::-;26730:332;;;;;:::o;27068:137::-;27122:5;27153:6;27147:13;27138:22;;27169:30;27193:5;27169:30;:::i;:::-;27068:137;;;;:::o;27211:345::-;27278:6;27327:2;27315:9;27306:7;27302:23;27298:32;27295:119;;;27333:79;;:::i;:::-;27295:119;27453:1;27478:61;27531:7;27522:6;27511:9;27507:22;27478:61;:::i;:::-;27468:71;;27424:125;27211:345;;;;:::o;27562:182::-;27702:34;27698:1;27690:6;27686:14;27679:58;27562:182;:::o;27750:366::-;27892:3;27913:67;27977:2;27972:3;27913:67;:::i;:::-;27906:74;;27989:93;28078:3;27989:93;:::i;:::-;28107:2;28102:3;28098:12;28091:19;;27750:366;;;:::o;28122:419::-;28288:4;28326:2;28315:9;28311:18;28303:26;;28375:9;28369:4;28365:20;28361:1;28350:9;28346:17;28339:47;28403:131;28529:4;28403:131;:::i;:::-;28395:139;;28122:419;;;:::o;28547:181::-;28687:33;28683:1;28675:6;28671:14;28664:57;28547:181;:::o;28734:366::-;28876:3;28897:67;28961:2;28956:3;28897:67;:::i;:::-;28890:74;;28973:93;29062:3;28973:93;:::i;:::-;29091:2;29086:3;29082:12;29075:19;;28734:366;;;:::o;29106:419::-;29272:4;29310:2;29299:9;29295:18;29287:26;;29359:9;29353:4;29349:20;29345:1;29334:9;29330:17;29323:47;29387:131;29513:4;29387:131;:::i;:::-;29379:139;;29106:419;;;:::o;29531:180::-;29579:77;29576:1;29569:88;29676:4;29673:1;29666:15;29700:4;29697:1;29690:15;29717:98;29768:6;29802:5;29796:12;29786:22;;29717:98;;;:::o;29821:168::-;29904:11;29938:6;29933:3;29926:19;29978:4;29973:3;29969:14;29954:29;;29821:168;;;;:::o;29995:373::-;30081:3;30109:38;30141:5;30109:38;:::i;:::-;30163:70;30226:6;30221:3;30163:70;:::i;:::-;30156:77;;30242:65;30300:6;30295:3;30288:4;30281:5;30277:16;30242:65;:::i;:::-;30332:29;30354:6;30332:29;:::i;:::-;30327:3;30323:39;30316:46;;30085:283;29995:373;;;;:::o;30374:640::-;30569:4;30607:3;30596:9;30592:19;30584:27;;30621:71;30689:1;30678:9;30674:17;30665:6;30621:71;:::i;:::-;30702:72;30770:2;30759:9;30755:18;30746:6;30702:72;:::i;:::-;30784;30852:2;30841:9;30837:18;30828:6;30784:72;:::i;:::-;30903:9;30897:4;30893:20;30888:2;30877:9;30873:18;30866:48;30931:76;31002:4;30993:6;30931:76;:::i;:::-;30923:84;;30374:640;;;;;;;:::o;31020:141::-;31076:5;31107:6;31101:13;31092:22;;31123:32;31149:5;31123:32;:::i;:::-;31020:141;;;;:::o;31167:349::-;31236:6;31285:2;31273:9;31264:7;31260:23;31256:32;31253:119;;;31291:79;;:::i;:::-;31253:119;31411:1;31436:63;31491:7;31482:6;31471:9;31467:22;31436:63;:::i;:::-;31426:73;;31382:127;31167:349;;;;:::o

Swarm Source

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