ETH Price: $2,597.96 (-16.47%)
 

Overview

Max Total Supply

18 OXA

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
prototypezero.eth
Balance
1 OXA
0xe56169888ab88d11c6ad4247b8650e72566f8569
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:
OxApe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-25
*/

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/OxApe.sol



pragma solidity ^0.8.7;






contract OxApe is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;


  string  public  baseTokenURI = "ipfs://bafybeibrlxwd3jp637xjwcelhakixcuqfsdymmrartmlsnmudu6nixnhyu";
  uint256 public  maxSupply = 10000;
  uint256 public  MAX_MINTS_PER_TX = 20;
  uint256 public  PUBLIC_SALE_PRICE = 0.001 ether;
  uint256 public  NUM_FREE_MINTS = 10000;
  uint256 public  MAX_FREE_PER_WALLET = 1;
  uint256 public freeNFTAlreadyMinted = 0;
  bool public isPublicSaleActive = false;

  constructor(

  ) ERC721A("OxApe", "OXA") {

  }


  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");

    if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    } else {
        if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                numberOfTokens <= MAX_FREE_PER_WALLET,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }
    _safeMint(msg.sender, numberOfTokens);
  }

  function setBaseURI(string memory baseURI)
    public
    onlyOwner
  {
    baseTokenURI = baseURI;
  }

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060428152602001620036a360429139600a9080519060200190620000359291906200023c565b50612710600b556014600c5566038d7ea4c68000600d55612710600e556001600f5560006010556000601160006101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280600581526020017f4f784170650000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f584100000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001099291906200023c565b508060039080519060200190620001229291906200023c565b50620001336200016960201b60201c565b60008190555050506200015b6200014f6200016e60201b60201c565b6200017660201b60201c565b600160098190555062000351565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024a90620002ec565b90600052602060002090601f0160209004810192826200026e5760008555620002ba565b82601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b5b80821115620002e8576000816000905550600101620002ce565b5090565b600060028204905060018216806200030557607f821691505b602082108114156200031c576200031b62000322565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61334280620003616000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106b6578063d5abeb01146106e1578063e985e9c51461070c578063efdc778814610749578063f2fde38b14610772576101f9565b8063a22cb46514610609578063b88d4fde14610632578063c6a91b421461064e578063c87b56dd14610679576101f9565b8063982d669e116100dc578063982d669e1461056e57806398710d1e146105995780639e9fcffc146105c4578063a0712d68146105ed576101f9565b806370a08231146104c4578063715018a6146105015780638da5cb5b1461051857806395d89b4114610543576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d146104025780633ccfd60b1461042b57806342842e0e1461044257806355f804b31461045e5780636352211e14610487576101f9565b8063193ad7b4146103675780631e84c41314610392578063202f298a146103bd57806323b872dd146103e6576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102ea57806318160ddd146103135780631919fed71461033e576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612589565b61079b565b6040516102329190612a6b565b60405180910390f35b34801561024757600080fd5b5061025061082d565b60405161025d9190612a86565b60405180910390f35b34801561027257600080fd5b5061027b6108bf565b6040516102889190612c28565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b3919061262c565b6108c5565b6040516102c59190612a04565b60405180910390f35b6102e860048036038101906102e3919061251c565b610944565b005b3480156102f657600080fd5b50610311600480360381019061030c919061262c565b610a88565b005b34801561031f57600080fd5b50610328610a9a565b6040516103359190612c28565b60405180910390f35b34801561034a57600080fd5b506103656004803603810190610360919061262c565b610ab1565b005b34801561037357600080fd5b5061037c610ac3565b6040516103899190612c28565b60405180910390f35b34801561039e57600080fd5b506103a7610ac9565b6040516103b49190612a6b565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df919061262c565b610adc565b005b61040060048036038101906103fb9190612406565b610aee565b005b34801561040e57600080fd5b506104296004803603810190610424919061255c565b610e13565b005b34801561043757600080fd5b50610440610e38565b005b61045c60048036038101906104579190612406565b610e5c565b005b34801561046a57600080fd5b50610485600480360381019061048091906125e3565b610e7c565b005b34801561049357600080fd5b506104ae60048036038101906104a9919061262c565b610e9e565b6040516104bb9190612a04565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612399565b610eb0565b6040516104f89190612c28565b60405180910390f35b34801561050d57600080fd5b50610516610f69565b005b34801561052457600080fd5b5061052d610f7d565b60405161053a9190612a04565b60405180910390f35b34801561054f57600080fd5b50610558610fa7565b6040516105659190612a86565b60405180910390f35b34801561057a57600080fd5b50610583611039565b6040516105909190612c28565b60405180910390f35b3480156105a557600080fd5b506105ae61103f565b6040516105bb9190612c28565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e6919061262c565b611045565b005b6106076004803603810190610602919061262c565b611057565b005b34801561061557600080fd5b50610630600480360381019061062b91906124dc565b611298565b005b61064c60048036038101906106479190612459565b6113a3565b005b34801561065a57600080fd5b50610663611416565b6040516106709190612c28565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061262c565b61141c565b6040516106ad9190612a86565b60405180910390f35b3480156106c257600080fd5b506106cb611498565b6040516106d89190612a86565b60405180910390f35b3480156106ed57600080fd5b506106f6611526565b6040516107039190612c28565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e91906123c6565b61152c565b6040516107409190612a6b565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b919061262c565b6115c0565b005b34801561077e57600080fd5b5061079960048036038101906107949190612399565b61166f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108265750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083c90612e93565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612e93565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b600d5481565b60006108d0826116f3565b610906576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094f82610e9e565b90508073ffffffffffffffffffffffffffffffffffffffff16610970611752565b73ffffffffffffffffffffffffffffffffffffffff16146109d35761099c81610997611752565b61152c565b6109d2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a9061175a565b80600e8190555050565b6000610aa46117d8565b6001546000540303905090565b610ab961175a565b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610ae461175a565b80600f8190555050565b6000610af9826117dd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b60576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6c846118ab565b91509150610b828187610b7d611752565b6118d2565b610bce57610b9786610b92611752565b61152c565b610bcd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c35576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c428686866001611916565b8015610c4d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1b85610cf788888761191c565b7c020000000000000000000000000000000000000000000000000000000017611944565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610da3576000600185019050600060046000838152602001908152602001600020541415610da1576000548114610da0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0b868686600161196f565b505050505050565b610e1b61175a565b80601160006101000a81548160ff02191690831515021790555050565b610e4061175a565b610e48611975565b610e5233476119c5565b610e5a611ab9565b565b610e77838383604051806020016040528060008152506113a3565b505050565b610e8461175a565b80600a9080519060200190610e9a9291906121ad565b5050565b6000610ea9826117dd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7161175a565b610f7b6000611ac3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fb690612e93565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe290612e93565b801561102f5780601f106110045761010080835404028352916020019161102f565b820191906000526020600020905b81548152906001019060200180831161101257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61104d61175a565b80600c8190555050565b601160009054906101000a900460ff166110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90612c08565b60405180910390fd5b6001600b546110b59190612d2d565b816110be610a9a565b6110c89190612d2d565b10611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90612aa8565b60405180910390fd5b600e54816010546111199190612d2d565b1115611174573481600d5461112e9190612d83565b111561116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690612bc8565b60405180910390fd5b61128b565b600f548161118133610eb0565b61118b9190612d2d565b111561122b573481600d546111a09190612d83565b11156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890612bc8565b60405180910390fd5b600c54811115611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612b28565b60405180910390fd5b61128a565b600f54811115611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790612b28565b60405180910390fd5b80601060008282546112829190612d2d565b925050819055505b5b6112953382611b89565b50565b80600760006112a5611752565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611352611752565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113979190612a6b565b60405180910390a35050565b6113ae848484610aee565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611410576113d984848484611ba7565b61140f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b6060611427826116f3565b611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90612b88565b60405180910390fd5b600a61147183611d07565b6040516020016114829291906129b5565b6040516020818303038152906040529050919050565b600a80546114a590612e93565b80601f01602080910402602001604051908101604052809291908181526020018280546114d190612e93565b801561151e5780601f106114f35761010080835404028352916020019161151e565b820191906000526020600020905b81548152906001019060200180831161150157829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115c861175a565b6000811161160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612ba8565b60405180910390fd5b600b5481611617610a9a565b6116219190612d2d565b1115611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990612b48565b60405180910390fd5b61166c3382611b89565b50565b61167761175a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90612ac8565b60405180910390fd5b6116f081611ac3565b50565b6000816116fe6117d8565b1115801561170d575060005482105b801561174b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611762611ddf565b73ffffffffffffffffffffffffffffffffffffffff16611780610f7d565b73ffffffffffffffffffffffffffffffffffffffff16146117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90612b68565b60405180910390fd5b565b600090565b600080829050806117ec6117d8565b11611874576000548110156118735760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611871575b600081141561186757600460008360019003935083815260200190815260200160002054905061183c565b80925050506118a6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611933868684611de7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095414156119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290612be8565b60405180910390fd5b6002600981905550565b80471015611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90612b08565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a2e906129ef565b60006040518083038185875af1925050503d8060008114611a6b576040519150601f19603f3d011682016040523d82523d6000602084013e611a70565b606091505b5050905080611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90612ae8565b60405180910390fd5b505050565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ba3828260405180602001604052806000815250611df0565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bcd611752565b8786866040518563ffffffff1660e01b8152600401611bef9493929190612a1f565b602060405180830381600087803b158015611c0957600080fd5b505af1925050508015611c3a57506040513d601f19601f82011682018060405250810190611c3791906125b6565b60015b611cb4573d8060008114611c6a576040519150601f19603f3d011682016040523d82523d6000602084013e611c6f565b606091505b50600081511415611cac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611d1684611e8d565b01905060008167ffffffffffffffff811115611d3557611d34612f83565b5b6040519080825280601f01601f191660200182016040528015611d675781602001600182028036833780820191505090505b509050600082602001820190505b600115611dd4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dbe57611dbd612f25565b5b0494506000851415611dcf57611dd4565b611d75565b819350505050919050565b600033905090565b60009392505050565b611dfa8383611fe0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e8857600080549050600083820390505b611e3a6000868380600101945086611ba7565b611e70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e27578160005414611e8557600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611eeb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ee157611ee0612f25565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f28576d04ee2d6d415b85acef81000000008381611f1e57611f1d612f25565b5b0492506020810190505b662386f26fc100008310611f5757662386f26fc100008381611f4d57611f4c612f25565b5b0492506010810190505b6305f5e1008310611f80576305f5e1008381611f7657611f75612f25565b5b0492506008810190505b6127108310611fa5576127108381611f9b57611f9a612f25565b5b0492506004810190505b60648310611fc85760648381611fbe57611fbd612f25565b5b0492506002810190505b600a8310611fd7576001810190505b80915050919050565b6000805490506000821415612021576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61202e6000848385611916565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120a583612096600086600061191c565b61209f8561219d565b17611944565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461214657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061210b565b506000821415612182576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612198600084838561196f565b505050565b60006001821460e11b9050919050565b8280546121b990612e93565b90600052602060002090601f0160209004810192826121db5760008555612222565b82601f106121f457805160ff1916838001178555612222565b82800160010185558215612222579182015b82811115612221578251825591602001919060010190612206565b5b50905061222f9190612233565b5090565b5b8082111561224c576000816000905550600101612234565b5090565b600061226361225e84612c68565b612c43565b90508281526020810184848401111561227f5761227e612fb7565b5b61228a848285612e51565b509392505050565b60006122a56122a084612c99565b612c43565b9050828152602081018484840111156122c1576122c0612fb7565b5b6122cc848285612e51565b509392505050565b6000813590506122e3816132b0565b92915050565b6000813590506122f8816132c7565b92915050565b60008135905061230d816132de565b92915050565b600081519050612322816132de565b92915050565b600082601f83011261233d5761233c612fb2565b5b813561234d848260208601612250565b91505092915050565b600082601f83011261236b5761236a612fb2565b5b813561237b848260208601612292565b91505092915050565b600081359050612393816132f5565b92915050565b6000602082840312156123af576123ae612fc1565b5b60006123bd848285016122d4565b91505092915050565b600080604083850312156123dd576123dc612fc1565b5b60006123eb858286016122d4565b92505060206123fc858286016122d4565b9150509250929050565b60008060006060848603121561241f5761241e612fc1565b5b600061242d868287016122d4565b935050602061243e868287016122d4565b925050604061244f86828701612384565b9150509250925092565b6000806000806080858703121561247357612472612fc1565b5b6000612481878288016122d4565b9450506020612492878288016122d4565b93505060406124a387828801612384565b925050606085013567ffffffffffffffff8111156124c4576124c3612fbc565b5b6124d087828801612328565b91505092959194509250565b600080604083850312156124f3576124f2612fc1565b5b6000612501858286016122d4565b9250506020612512858286016122e9565b9150509250929050565b6000806040838503121561253357612532612fc1565b5b6000612541858286016122d4565b925050602061255285828601612384565b9150509250929050565b60006020828403121561257257612571612fc1565b5b6000612580848285016122e9565b91505092915050565b60006020828403121561259f5761259e612fc1565b5b60006125ad848285016122fe565b91505092915050565b6000602082840312156125cc576125cb612fc1565b5b60006125da84828501612313565b91505092915050565b6000602082840312156125f9576125f8612fc1565b5b600082013567ffffffffffffffff81111561261757612616612fbc565b5b61262384828501612356565b91505092915050565b60006020828403121561264257612641612fc1565b5b600061265084828501612384565b91505092915050565b61266281612ddd565b82525050565b61267181612def565b82525050565b600061268282612cdf565b61268c8185612cf5565b935061269c818560208601612e60565b6126a581612fc6565b840191505092915050565b60006126bb82612cea565b6126c58185612d11565b93506126d5818560208601612e60565b6126de81612fc6565b840191505092915050565b60006126f482612cea565b6126fe8185612d22565b935061270e818560208601612e60565b80840191505092915050565b6000815461272781612e93565b6127318186612d22565b9450600182166000811461274c576001811461275d57612790565b60ff19831686528186019350612790565b61276685612cca565b60005b8381101561278857815481890152600182019150602081019050612769565b838801955050505b50505092915050565b60006127a6600783612d11565b91506127b182612fd7565b602082019050919050565b60006127c9602683612d11565b91506127d482613000565b604082019050919050565b60006127ec603a83612d11565b91506127f78261304f565b604082019050919050565b600061280f601d83612d11565b915061281a8261309e565b602082019050919050565b6000612832602283612d11565b915061283d826130c7565b604082019050919050565b6000612855601783612d11565b915061286082613116565b602082019050919050565b6000612878600583612d22565b91506128838261313f565b600582019050919050565b600061289b602083612d11565b91506128a682613168565b602082019050919050565b60006128be602f83612d11565b91506128c982613191565b604082019050919050565b60006128e1600083612d06565b91506128ec826131e0565b600082019050919050565b6000612904601383612d11565b915061290f826131e3565b602082019050919050565b6000612927601883612d11565b91506129328261320c565b602082019050919050565b600061294a601f83612d11565b915061295582613235565b602082019050919050565b600061296d601783612d11565b91506129788261325e565b602082019050919050565b6000612990600183612d22565b915061299b82613287565b600182019050919050565b6129af81612e47565b82525050565b60006129c1828561271a565b91506129cc82612983565b91506129d882846126e9565b91506129e38261286b565b91508190509392505050565b60006129fa826128d4565b9150819050919050565b6000602082019050612a196000830184612659565b92915050565b6000608082019050612a346000830187612659565b612a416020830186612659565b612a4e60408301856129a6565b8181036060830152612a608184612677565b905095945050505050565b6000602082019050612a806000830184612668565b92915050565b60006020820190508181036000830152612aa081846126b0565b905092915050565b60006020820190508181036000830152612ac181612799565b9050919050565b60006020820190508181036000830152612ae1816127bc565b9050919050565b60006020820190508181036000830152612b01816127df565b9050919050565b60006020820190508181036000830152612b2181612802565b9050919050565b60006020820190508181036000830152612b4181612825565b9050919050565b60006020820190508181036000830152612b6181612848565b9050919050565b60006020820190508181036000830152612b818161288e565b9050919050565b60006020820190508181036000830152612ba1816128b1565b9050919050565b60006020820190508181036000830152612bc1816128f7565b9050919050565b60006020820190508181036000830152612be18161291a565b9050919050565b60006020820190508181036000830152612c018161293d565b9050919050565b60006020820190508181036000830152612c2181612960565b9050919050565b6000602082019050612c3d60008301846129a6565b92915050565b6000612c4d612c5e565b9050612c598282612ec5565b919050565b6000604051905090565b600067ffffffffffffffff821115612c8357612c82612f83565b5b612c8c82612fc6565b9050602081019050919050565b600067ffffffffffffffff821115612cb457612cb3612f83565b5b612cbd82612fc6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3882612e47565b9150612d4383612e47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7857612d77612ef6565b5b828201905092915050565b6000612d8e82612e47565b9150612d9983612e47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dd257612dd1612ef6565b5b828202905092915050565b6000612de882612e27565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e7e578082015181840152602081019050612e63565b83811115612e8d576000848401525b50505050565b60006002820490506001821680612eab57607f821691505b60208210811415612ebf57612ebe612f54565b5b50919050565b612ece82612fc6565b810181811067ffffffffffffffff82111715612eed57612eec612f83565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6132b981612ddd565b81146132c457600080fd5b50565b6132d081612def565b81146132db57600080fd5b50565b6132e781612dfb565b81146132f257600080fd5b50565b6132fe81612e47565b811461330957600080fd5b5056fea26469706673582212207180f70216d49b6ab3c6d7b546111e493a73b56f7f100f198e2398b070313fdd64736f6c63430008070033697066733a2f2f6261667962656962726c787764336a70363337786a7763656c68616b6978637571667364796d6d726172746d6c736e6d756475366e69786e687975

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106b6578063d5abeb01146106e1578063e985e9c51461070c578063efdc778814610749578063f2fde38b14610772576101f9565b8063a22cb46514610609578063b88d4fde14610632578063c6a91b421461064e578063c87b56dd14610679576101f9565b8063982d669e116100dc578063982d669e1461056e57806398710d1e146105995780639e9fcffc146105c4578063a0712d68146105ed576101f9565b806370a08231146104c4578063715018a6146105015780638da5cb5b1461051857806395d89b4114610543576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d146104025780633ccfd60b1461042b57806342842e0e1461044257806355f804b31461045e5780636352211e14610487576101f9565b8063193ad7b4146103675780631e84c41314610392578063202f298a146103bd57806323b872dd146103e6576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102ea57806318160ddd146103135780631919fed71461033e576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612589565b61079b565b6040516102329190612a6b565b60405180910390f35b34801561024757600080fd5b5061025061082d565b60405161025d9190612a86565b60405180910390f35b34801561027257600080fd5b5061027b6108bf565b6040516102889190612c28565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b3919061262c565b6108c5565b6040516102c59190612a04565b60405180910390f35b6102e860048036038101906102e3919061251c565b610944565b005b3480156102f657600080fd5b50610311600480360381019061030c919061262c565b610a88565b005b34801561031f57600080fd5b50610328610a9a565b6040516103359190612c28565b60405180910390f35b34801561034a57600080fd5b506103656004803603810190610360919061262c565b610ab1565b005b34801561037357600080fd5b5061037c610ac3565b6040516103899190612c28565b60405180910390f35b34801561039e57600080fd5b506103a7610ac9565b6040516103b49190612a6b565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df919061262c565b610adc565b005b61040060048036038101906103fb9190612406565b610aee565b005b34801561040e57600080fd5b506104296004803603810190610424919061255c565b610e13565b005b34801561043757600080fd5b50610440610e38565b005b61045c60048036038101906104579190612406565b610e5c565b005b34801561046a57600080fd5b50610485600480360381019061048091906125e3565b610e7c565b005b34801561049357600080fd5b506104ae60048036038101906104a9919061262c565b610e9e565b6040516104bb9190612a04565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612399565b610eb0565b6040516104f89190612c28565b60405180910390f35b34801561050d57600080fd5b50610516610f69565b005b34801561052457600080fd5b5061052d610f7d565b60405161053a9190612a04565b60405180910390f35b34801561054f57600080fd5b50610558610fa7565b6040516105659190612a86565b60405180910390f35b34801561057a57600080fd5b50610583611039565b6040516105909190612c28565b60405180910390f35b3480156105a557600080fd5b506105ae61103f565b6040516105bb9190612c28565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e6919061262c565b611045565b005b6106076004803603810190610602919061262c565b611057565b005b34801561061557600080fd5b50610630600480360381019061062b91906124dc565b611298565b005b61064c60048036038101906106479190612459565b6113a3565b005b34801561065a57600080fd5b50610663611416565b6040516106709190612c28565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061262c565b61141c565b6040516106ad9190612a86565b60405180910390f35b3480156106c257600080fd5b506106cb611498565b6040516106d89190612a86565b60405180910390f35b3480156106ed57600080fd5b506106f6611526565b6040516107039190612c28565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e91906123c6565b61152c565b6040516107409190612a6b565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b919061262c565b6115c0565b005b34801561077e57600080fd5b5061079960048036038101906107949190612399565b61166f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108265750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083c90612e93565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612e93565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b600d5481565b60006108d0826116f3565b610906576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094f82610e9e565b90508073ffffffffffffffffffffffffffffffffffffffff16610970611752565b73ffffffffffffffffffffffffffffffffffffffff16146109d35761099c81610997611752565b61152c565b6109d2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a9061175a565b80600e8190555050565b6000610aa46117d8565b6001546000540303905090565b610ab961175a565b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610ae461175a565b80600f8190555050565b6000610af9826117dd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b60576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6c846118ab565b91509150610b828187610b7d611752565b6118d2565b610bce57610b9786610b92611752565b61152c565b610bcd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c35576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c428686866001611916565b8015610c4d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1b85610cf788888761191c565b7c020000000000000000000000000000000000000000000000000000000017611944565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610da3576000600185019050600060046000838152602001908152602001600020541415610da1576000548114610da0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0b868686600161196f565b505050505050565b610e1b61175a565b80601160006101000a81548160ff02191690831515021790555050565b610e4061175a565b610e48611975565b610e5233476119c5565b610e5a611ab9565b565b610e77838383604051806020016040528060008152506113a3565b505050565b610e8461175a565b80600a9080519060200190610e9a9291906121ad565b5050565b6000610ea9826117dd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7161175a565b610f7b6000611ac3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fb690612e93565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe290612e93565b801561102f5780601f106110045761010080835404028352916020019161102f565b820191906000526020600020905b81548152906001019060200180831161101257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61104d61175a565b80600c8190555050565b601160009054906101000a900460ff166110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90612c08565b60405180910390fd5b6001600b546110b59190612d2d565b816110be610a9a565b6110c89190612d2d565b10611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90612aa8565b60405180910390fd5b600e54816010546111199190612d2d565b1115611174573481600d5461112e9190612d83565b111561116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690612bc8565b60405180910390fd5b61128b565b600f548161118133610eb0565b61118b9190612d2d565b111561122b573481600d546111a09190612d83565b11156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890612bc8565b60405180910390fd5b600c54811115611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612b28565b60405180910390fd5b61128a565b600f54811115611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790612b28565b60405180910390fd5b80601060008282546112829190612d2d565b925050819055505b5b6112953382611b89565b50565b80600760006112a5611752565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611352611752565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113979190612a6b565b60405180910390a35050565b6113ae848484610aee565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611410576113d984848484611ba7565b61140f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b6060611427826116f3565b611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90612b88565b60405180910390fd5b600a61147183611d07565b6040516020016114829291906129b5565b6040516020818303038152906040529050919050565b600a80546114a590612e93565b80601f01602080910402602001604051908101604052809291908181526020018280546114d190612e93565b801561151e5780601f106114f35761010080835404028352916020019161151e565b820191906000526020600020905b81548152906001019060200180831161150157829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115c861175a565b6000811161160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612ba8565b60405180910390fd5b600b5481611617610a9a565b6116219190612d2d565b1115611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990612b48565b60405180910390fd5b61166c3382611b89565b50565b61167761175a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90612ac8565b60405180910390fd5b6116f081611ac3565b50565b6000816116fe6117d8565b1115801561170d575060005482105b801561174b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611762611ddf565b73ffffffffffffffffffffffffffffffffffffffff16611780610f7d565b73ffffffffffffffffffffffffffffffffffffffff16146117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90612b68565b60405180910390fd5b565b600090565b600080829050806117ec6117d8565b11611874576000548110156118735760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611871575b600081141561186757600460008360019003935083815260200190815260200160002054905061183c565b80925050506118a6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611933868684611de7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095414156119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290612be8565b60405180910390fd5b6002600981905550565b80471015611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90612b08565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a2e906129ef565b60006040518083038185875af1925050503d8060008114611a6b576040519150601f19603f3d011682016040523d82523d6000602084013e611a70565b606091505b5050905080611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90612ae8565b60405180910390fd5b505050565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ba3828260405180602001604052806000815250611df0565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bcd611752565b8786866040518563ffffffff1660e01b8152600401611bef9493929190612a1f565b602060405180830381600087803b158015611c0957600080fd5b505af1925050508015611c3a57506040513d601f19601f82011682018060405250810190611c3791906125b6565b60015b611cb4573d8060008114611c6a576040519150601f19603f3d011682016040523d82523d6000602084013e611c6f565b606091505b50600081511415611cac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611d1684611e8d565b01905060008167ffffffffffffffff811115611d3557611d34612f83565b5b6040519080825280601f01601f191660200182016040528015611d675781602001600182028036833780820191505090505b509050600082602001820190505b600115611dd4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dbe57611dbd612f25565b5b0494506000851415611dcf57611dd4565b611d75565b819350505050919050565b600033905090565b60009392505050565b611dfa8383611fe0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e8857600080549050600083820390505b611e3a6000868380600101945086611ba7565b611e70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e27578160005414611e8557600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611eeb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ee157611ee0612f25565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f28576d04ee2d6d415b85acef81000000008381611f1e57611f1d612f25565b5b0492506020810190505b662386f26fc100008310611f5757662386f26fc100008381611f4d57611f4c612f25565b5b0492506010810190505b6305f5e1008310611f80576305f5e1008381611f7657611f75612f25565b5b0492506008810190505b6127108310611fa5576127108381611f9b57611f9a612f25565b5b0492506004810190505b60648310611fc85760648381611fbe57611fbd612f25565b5b0492506002810190505b600a8310611fd7576001810190505b80915050919050565b6000805490506000821415612021576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61202e6000848385611916565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120a583612096600086600061191c565b61209f8561219d565b17611944565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461214657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061210b565b506000821415612182576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612198600084838561196f565b505050565b60006001821460e11b9050919050565b8280546121b990612e93565b90600052602060002090601f0160209004810192826121db5760008555612222565b82601f106121f457805160ff1916838001178555612222565b82800160010185558215612222579182015b82811115612221578251825591602001919060010190612206565b5b50905061222f9190612233565b5090565b5b8082111561224c576000816000905550600101612234565b5090565b600061226361225e84612c68565b612c43565b90508281526020810184848401111561227f5761227e612fb7565b5b61228a848285612e51565b509392505050565b60006122a56122a084612c99565b612c43565b9050828152602081018484840111156122c1576122c0612fb7565b5b6122cc848285612e51565b509392505050565b6000813590506122e3816132b0565b92915050565b6000813590506122f8816132c7565b92915050565b60008135905061230d816132de565b92915050565b600081519050612322816132de565b92915050565b600082601f83011261233d5761233c612fb2565b5b813561234d848260208601612250565b91505092915050565b600082601f83011261236b5761236a612fb2565b5b813561237b848260208601612292565b91505092915050565b600081359050612393816132f5565b92915050565b6000602082840312156123af576123ae612fc1565b5b60006123bd848285016122d4565b91505092915050565b600080604083850312156123dd576123dc612fc1565b5b60006123eb858286016122d4565b92505060206123fc858286016122d4565b9150509250929050565b60008060006060848603121561241f5761241e612fc1565b5b600061242d868287016122d4565b935050602061243e868287016122d4565b925050604061244f86828701612384565b9150509250925092565b6000806000806080858703121561247357612472612fc1565b5b6000612481878288016122d4565b9450506020612492878288016122d4565b93505060406124a387828801612384565b925050606085013567ffffffffffffffff8111156124c4576124c3612fbc565b5b6124d087828801612328565b91505092959194509250565b600080604083850312156124f3576124f2612fc1565b5b6000612501858286016122d4565b9250506020612512858286016122e9565b9150509250929050565b6000806040838503121561253357612532612fc1565b5b6000612541858286016122d4565b925050602061255285828601612384565b9150509250929050565b60006020828403121561257257612571612fc1565b5b6000612580848285016122e9565b91505092915050565b60006020828403121561259f5761259e612fc1565b5b60006125ad848285016122fe565b91505092915050565b6000602082840312156125cc576125cb612fc1565b5b60006125da84828501612313565b91505092915050565b6000602082840312156125f9576125f8612fc1565b5b600082013567ffffffffffffffff81111561261757612616612fbc565b5b61262384828501612356565b91505092915050565b60006020828403121561264257612641612fc1565b5b600061265084828501612384565b91505092915050565b61266281612ddd565b82525050565b61267181612def565b82525050565b600061268282612cdf565b61268c8185612cf5565b935061269c818560208601612e60565b6126a581612fc6565b840191505092915050565b60006126bb82612cea565b6126c58185612d11565b93506126d5818560208601612e60565b6126de81612fc6565b840191505092915050565b60006126f482612cea565b6126fe8185612d22565b935061270e818560208601612e60565b80840191505092915050565b6000815461272781612e93565b6127318186612d22565b9450600182166000811461274c576001811461275d57612790565b60ff19831686528186019350612790565b61276685612cca565b60005b8381101561278857815481890152600182019150602081019050612769565b838801955050505b50505092915050565b60006127a6600783612d11565b91506127b182612fd7565b602082019050919050565b60006127c9602683612d11565b91506127d482613000565b604082019050919050565b60006127ec603a83612d11565b91506127f78261304f565b604082019050919050565b600061280f601d83612d11565b915061281a8261309e565b602082019050919050565b6000612832602283612d11565b915061283d826130c7565b604082019050919050565b6000612855601783612d11565b915061286082613116565b602082019050919050565b6000612878600583612d22565b91506128838261313f565b600582019050919050565b600061289b602083612d11565b91506128a682613168565b602082019050919050565b60006128be602f83612d11565b91506128c982613191565b604082019050919050565b60006128e1600083612d06565b91506128ec826131e0565b600082019050919050565b6000612904601383612d11565b915061290f826131e3565b602082019050919050565b6000612927601883612d11565b91506129328261320c565b602082019050919050565b600061294a601f83612d11565b915061295582613235565b602082019050919050565b600061296d601783612d11565b91506129788261325e565b602082019050919050565b6000612990600183612d22565b915061299b82613287565b600182019050919050565b6129af81612e47565b82525050565b60006129c1828561271a565b91506129cc82612983565b91506129d882846126e9565b91506129e38261286b565b91508190509392505050565b60006129fa826128d4565b9150819050919050565b6000602082019050612a196000830184612659565b92915050565b6000608082019050612a346000830187612659565b612a416020830186612659565b612a4e60408301856129a6565b8181036060830152612a608184612677565b905095945050505050565b6000602082019050612a806000830184612668565b92915050565b60006020820190508181036000830152612aa081846126b0565b905092915050565b60006020820190508181036000830152612ac181612799565b9050919050565b60006020820190508181036000830152612ae1816127bc565b9050919050565b60006020820190508181036000830152612b01816127df565b9050919050565b60006020820190508181036000830152612b2181612802565b9050919050565b60006020820190508181036000830152612b4181612825565b9050919050565b60006020820190508181036000830152612b6181612848565b9050919050565b60006020820190508181036000830152612b818161288e565b9050919050565b60006020820190508181036000830152612ba1816128b1565b9050919050565b60006020820190508181036000830152612bc1816128f7565b9050919050565b60006020820190508181036000830152612be18161291a565b9050919050565b60006020820190508181036000830152612c018161293d565b9050919050565b60006020820190508181036000830152612c2181612960565b9050919050565b6000602082019050612c3d60008301846129a6565b92915050565b6000612c4d612c5e565b9050612c598282612ec5565b919050565b6000604051905090565b600067ffffffffffffffff821115612c8357612c82612f83565b5b612c8c82612fc6565b9050602081019050919050565b600067ffffffffffffffff821115612cb457612cb3612f83565b5b612cbd82612fc6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3882612e47565b9150612d4383612e47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7857612d77612ef6565b5b828201905092915050565b6000612d8e82612e47565b9150612d9983612e47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dd257612dd1612ef6565b5b828202905092915050565b6000612de882612e27565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e7e578082015181840152602081019050612e63565b83811115612e8d576000848401525b50505050565b60006002820490506001821680612eab57607f821691505b60208210811415612ebf57612ebe612f54565b5b50919050565b612ece82612fc6565b810181811067ffffffffffffffff82111715612eed57612eec612f83565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6132b981612ddd565b81146132c457600080fd5b50565b6132d081612def565b81146132db57600080fd5b50565b6132e781612dfb565b81146132f257600080fd5b50565b6132fe81612e47565b811461330957600080fd5b5056fea26469706673582212207180f70216d49b6ab3c6d7b546111e493a73b56f7f100f198e2398b070313fdd64736f6c63430008070033

Deployed Bytecode Sourcemap

82674:3327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43031:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43933:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82976:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50424:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49857:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85483:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39684:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85618:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83115:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83159:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85872:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54063:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85329:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84722:142;;;;;;;;;;;;;:::i;:::-;;56984:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84318:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45326:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40868:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81784:103;;;;;;;;;;;;;:::i;:::-;;81136:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44109:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83028:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83071:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85739:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83264:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50982:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57775:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82934:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84870:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82792:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82896:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51373:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84432:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82042:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43031:639;43116:4;43455:10;43440:25;;:11;:25;;;;:102;;;;43532:10;43517:25;;:11;:25;;;;43440:102;:179;;;;43609:10;43594:25;;:11;:25;;;;43440:179;43420:199;;43031:639;;;:::o;43933:100::-;43987:13;44020:5;44013:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43933:100;:::o;82976:47::-;;;;:::o;50424:218::-;50500:7;50525:16;50533:7;50525;:16::i;:::-;50520:64;;50550:34;;;;;;;;;;;;;;50520:64;50604:15;:24;50620:7;50604:24;;;;;;;;;;;:30;;;;;;;;;;;;50597:37;;50424:218;;;:::o;49857:408::-;49946:13;49962:16;49970:7;49962;:16::i;:::-;49946:32;;50018:5;49995:28;;:19;:17;:19::i;:::-;:28;;;49991:175;;50043:44;50060:5;50067:19;:17;:19::i;:::-;50043:16;:44::i;:::-;50038:128;;50115:35;;;;;;;;;;;;;;50038:128;49991:175;50211:2;50178:15;:24;50194:7;50178:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50249:7;50245:2;50229:28;;50238:5;50229:28;;;;;;;;;;;;49935:330;49857:408;;:::o;85483:129::-;81022:13;:11;:13::i;:::-;85593::::1;85576:14;:30;;;;85483:129:::0;:::o;39684:323::-;39745:7;39973:15;:13;:15::i;:::-;39958:12;;39942:13;;:28;:46;39935:53;;39684:323;:::o;85618:115::-;81022:13;:11;:13::i;:::-;85721:6:::1;85701:17;:26;;;;85618:115:::0;:::o;83115:39::-;;;;:::o;83159:38::-;;;;;;;;;;;;;:::o;85872:126::-;81022:13;:11;:13::i;:::-;85986:6:::1;85964:19;:28;;;;85872:126:::0;:::o;54063:2825::-;54205:27;54235;54254:7;54235:18;:27::i;:::-;54205:57;;54320:4;54279:45;;54295:19;54279:45;;;54275:86;;54333:28;;;;;;;;;;;;;;54275:86;54375:27;54404:23;54431:35;54458:7;54431:26;:35::i;:::-;54374:92;;;;54566:68;54591:15;54608:4;54614:19;:17;:19::i;:::-;54566:24;:68::i;:::-;54561:180;;54654:43;54671:4;54677:19;:17;:19::i;:::-;54654:16;:43::i;:::-;54649:92;;54706:35;;;;;;;;;;;;;;54649:92;54561:180;54772:1;54758:16;;:2;:16;;;54754:52;;;54783:23;;;;;;;;;;;;;;54754:52;54819:43;54841:4;54847:2;54851:7;54860:1;54819:21;:43::i;:::-;54955:15;54952:160;;;55095:1;55074:19;55067:30;54952:160;55492:18;:24;55511:4;55492:24;;;;;;;;;;;;;;;;55490:26;;;;;;;;;;;;55561:18;:22;55580:2;55561:22;;;;;;;;;;;;;;;;55559:24;;;;;;;;;;;55883:146;55920:2;55969:45;55984:4;55990:2;55994:19;55969:14;:45::i;:::-;36083:8;55941:73;55883:18;:146::i;:::-;55854:17;:26;55872:7;55854:26;;;;;;;;;;;:175;;;;56200:1;36083:8;56149:19;:47;:52;56145:627;;;56222:19;56254:1;56244:7;:11;56222:33;;56411:1;56377:17;:30;56395:11;56377:30;;;;;;;;;;;;:35;56373:384;;;56515:13;;56500:11;:28;56496:242;;56695:19;56662:17;:30;56680:11;56662:30;;;;;;;;;;;:52;;;;56496:242;56373:384;56203:569;56145:627;56819:7;56815:2;56800:27;;56809:4;56800:27;;;;;;;;;;;;56838:42;56859:4;56865:2;56869:7;56878:1;56838:20;:42::i;:::-;54194:2694;;;54063:2825;;;:::o;85329:148::-;81022:13;:11;:13::i;:::-;85452:19:::1;85431:18;;:40;;;;;;;;;;;;;;;;;;85329:148:::0;:::o;84722:142::-;81022:13;:11;:13::i;:::-;78407:21:::1;:19;:21::i;:::-;84797:61:::2;84823:10;84836:21;84797:17;:61::i;:::-;78451:20:::1;:18;:20::i;:::-;84722:142::o:0;56984:193::-;57130:39;57147:4;57153:2;57157:7;57130:39;;;;;;;;;;;;:16;:39::i;:::-;56984:193;;;:::o;84318:108::-;81022:13;:11;:13::i;:::-;84413:7:::1;84398:12;:22;;;;;;;;;;;;:::i;:::-;;84318:108:::0;:::o;45326:152::-;45398:7;45441:27;45460:7;45441:18;:27::i;:::-;45418:52;;45326:152;;;:::o;40868:233::-;40940:7;40981:1;40964:19;;:5;:19;;;40960:60;;;40992:28;;;;;;;;;;;;;;40960:60;35027:13;41038:18;:25;41057:5;41038:25;;;;;;;;;;;;;;;;:55;41031:62;;40868:233;;;:::o;81784:103::-;81022:13;:11;:13::i;:::-;81849:30:::1;81876:1;81849:18;:30::i;:::-;81784:103::o:0;81136:87::-;81182:7;81209:6;;;;;;;;;;;81202:13;;81136:87;:::o;44109:104::-;44165:13;44198:7;44191:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44109:104;:::o;83028:38::-;;;;:::o;83071:39::-;;;;:::o;85739:127::-;81022:13;:11;:13::i;:::-;85854:6:::1;85835:16;:25;;;;85739:127:::0;:::o;83264:1048::-;83351:18;;;;;;;;;;;83343:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;83457:1;83445:9;;:13;;;;:::i;:::-;83428:14;83412:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;83404:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;83522:14;;83505;83482:20;;:37;;;;:::i;:::-;:54;83479:784;;;83610:9;83591:14;83571:17;;:34;;;;:::i;:::-;83570:49;;83548:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;83479:784;;;83741:19;;83724:14;83700:21;83710:10;83700:9;:21::i;:::-;:38;;;;:::i;:::-;:60;83696:560;;;83835:9;83816:14;83796:17;;:34;;;;:::i;:::-;83795:49;;83773:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;83947:16;;83929:14;:34;;83907:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;83696:560;;;84102:19;;84084:14;:37;;84058:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;84230:14;84206:20;;:38;;;;;;;:::i;:::-;;;;;;;;83696:560;83479:784;84269:37;84279:10;84291:14;84269:9;:37::i;:::-;83264:1048;:::o;50982:234::-;51129:8;51077:18;:39;51096:19;:17;:19::i;:::-;51077:39;;;;;;;;;;;;;;;:49;51117:8;51077:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;51189:8;51153:55;;51168:19;:17;:19::i;:::-;51153:55;;;51199:8;51153:55;;;;;;:::i;:::-;;;;;;;;50982:234;;:::o;57775:407::-;57950:31;57963:4;57969:2;57973:7;57950:12;:31::i;:::-;58014:1;57996:2;:14;;;:19;57992:183;;58035:56;58066:4;58072:2;58076:7;58085:5;58035:30;:56::i;:::-;58030:145;;58119:40;;;;;;;;;;;;;;58030:145;57992:183;57775:407;;;;:::o;82934:37::-;;;;:::o;84870:312::-;84966:13;85007:17;85015:8;85007:7;:17::i;:::-;84991:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;85127:12;85146:19;:8;:17;:19::i;:::-;85110:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85096:80;;84870:312;;;:::o;82792:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82896:33::-;;;;:::o;51373:164::-;51470:4;51494:18;:25;51513:5;51494:25;;;;;;;;;;;;;;;:35;51520:8;51494:35;;;;;;;;;;;;;;;;;;;;;;;;;51487:42;;51373:164;;;;:::o;84432:284::-;81022:13;:11;:13::i;:::-;84533:1:::1;84522:8;:12;84506:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;84622:9;;84610:8;84594:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;84578:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;84679:31;84689:10;84701:8;84679:9;:31::i;:::-;84432:284:::0;:::o;82042:201::-;81022:13;:11;:13::i;:::-;82151:1:::1;82131:22;;:8;:22;;;;82123:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;82207:28;82226:8;82207:18;:28::i;:::-;82042:201:::0;:::o;51795:282::-;51860:4;51916:7;51897:15;:13;:15::i;:::-;:26;;:66;;;;;51950:13;;51940:7;:23;51897:66;:153;;;;;52049:1;35803:8;52001:17;:26;52019:7;52001:26;;;;;;;;;;;;:44;:49;51897:153;51877:173;;51795:282;;;:::o;74103:105::-;74163:7;74190:10;74183:17;;74103:105;:::o;81301:132::-;81376:12;:10;:12::i;:::-;81365:23;;:7;:5;:7::i;:::-;:23;;;81357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81301:132::o;39200:92::-;39256:7;39200:92;:::o;46481:1275::-;46548:7;46568:12;46583:7;46568:22;;46651:4;46632:15;:13;:15::i;:::-;:23;46628:1061;;46685:13;;46678:4;:20;46674:1015;;;46723:14;46740:17;:23;46758:4;46740:23;;;;;;;;;;;;46723:40;;46857:1;35803:8;46829:6;:24;:29;46825:845;;;47494:113;47511:1;47501:6;:11;47494:113;;;47554:17;:25;47572:6;;;;;;;47554:25;;;;;;;;;;;;47545:34;;47494:113;;;47640:6;47633:13;;;;;;46825:845;46700:989;46674:1015;46628:1061;47717:31;;;;;;;;;;;;;;46481:1275;;;;:::o;52958:485::-;53060:27;53089:23;53130:38;53171:15;:24;53187:7;53171:24;;;;;;;;;;;53130:65;;53348:18;53325:41;;53405:19;53399:26;53380:45;;53310:126;52958:485;;;:::o;52186:659::-;52335:11;52500:16;52493:5;52489:28;52480:37;;52660:16;52649:9;52645:32;52632:45;;52810:15;52799:9;52796:30;52788:5;52777:9;52774:20;52771:56;52761:66;;52186:659;;;;;:::o;58844:159::-;;;;;:::o;73412:311::-;73547:7;73567:16;36207:3;73593:19;:41;;73567:68;;36207:3;73661:31;73672:4;73678:2;73682:9;73661:10;:31::i;:::-;73653:40;;:62;;73646:69;;;73412:311;;;;;:::o;48304:450::-;48384:14;48552:16;48545:5;48541:28;48532:37;;48729:5;48715:11;48690:23;48686:41;48683:52;48676:5;48673:63;48663:73;;48304:450;;;;:::o;59668:158::-;;;;;:::o;78487:293::-;77889:1;78621:7;;:19;;78613:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;77889:1;78754:7;:18;;;;78487:293::o;2494:317::-;2609:6;2584:21;:31;;2576:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2663:12;2681:9;:14;;2703:6;2681:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2662:52;;;2733:7;2725:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2565:246;2494:317;;:::o;78788:213::-;77845:1;78971:7;:22;;;;78788:213::o;82403:191::-;82477:16;82496:6;;;;;;;;;;;82477:25;;82522:8;82513:6;;:17;;;;;;;;;;;;;;;;;;82577:8;82546:40;;82567:8;82546:40;;;;;;;;;;;;82466:128;82403:191;:::o;67935:112::-;68012:27;68022:2;68026:8;68012:27;;;;;;;;;;;;:9;:27::i;:::-;67935:112;;:::o;60266:716::-;60429:4;60475:2;60450:45;;;60496:19;:17;:19::i;:::-;60517:4;60523:7;60532:5;60450:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60446:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60750:1;60733:6;:13;:18;60729:235;;;60779:40;;;;;;;;;;;;;;60729:235;60922:6;60916:13;60907:6;60903:2;60899:15;60892:38;60446:529;60619:54;;;60609:64;;;:6;:64;;;;60602:71;;;60266:716;;;;;;:::o;22733:::-;22789:13;22840:14;22877:1;22857:17;22868:5;22857:10;:17::i;:::-;:21;22840:38;;22893:20;22927:6;22916:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22893:41;;22949:11;23078:6;23074:2;23070:15;23062:6;23058:28;23051:35;;23115:288;23122:4;23115:288;;;23147:5;;;;;;;;23289:8;23284:2;23277:5;23273:14;23268:30;23263:3;23255:44;23345:2;23336:11;;;;;;:::i;:::-;;;;;23379:1;23370:5;:10;23366:21;;;23382:5;;23366:21;23115:288;;;23424:6;23417:13;;;;;22733:716;;;:::o;79687:98::-;79740:7;79767:10;79760:17;;79687:98;:::o;73113:147::-;73250:6;73113:147;;;;;:::o;67162:689::-;67293:19;67299:2;67303:8;67293:5;:19::i;:::-;67372:1;67354:2;:14;;;:19;67350:483;;67394:11;67408:13;;67394:27;;67440:13;67462:8;67456:3;:14;67440:30;;67489:233;67520:62;67559:1;67563:2;67567:7;;;;;;67576:5;67520:30;:62::i;:::-;67515:167;;67618:40;;;;;;;;;;;;;;67515:167;67717:3;67709:5;:11;67489:233;;67804:3;67787:13;;:20;67783:34;;67809:8;;;67783:34;67375:458;;67350:483;67162:689;;;:::o;19599:922::-;19652:7;19672:14;19689:1;19672:18;;19739:6;19730:5;:15;19726:102;;19775:6;19766:15;;;;;;:::i;:::-;;;;;19810:2;19800:12;;;;19726:102;19855:6;19846:5;:15;19842:102;;19891:6;19882:15;;;;;;:::i;:::-;;;;;19926:2;19916:12;;;;19842:102;19971:6;19962:5;:15;19958:102;;20007:6;19998:15;;;;;;:::i;:::-;;;;;20042:2;20032:12;;;;19958:102;20087:5;20078;:14;20074:99;;20122:5;20113:14;;;;;;:::i;:::-;;;;;20156:1;20146:11;;;;20074:99;20200:5;20191;:14;20187:99;;20235:5;20226:14;;;;;;:::i;:::-;;;;;20269:1;20259:11;;;;20187:99;20313:5;20304;:14;20300:99;;20348:5;20339:14;;;;;;:::i;:::-;;;;;20382:1;20372:11;;;;20300:99;20426:5;20417;:14;20413:66;;20462:1;20452:11;;;;20413:66;20507:6;20500:13;;;19599:922;;;:::o;61444:2966::-;61517:20;61540:13;;61517:36;;61580:1;61568:8;:13;61564:44;;;61590:18;;;;;;;;;;;;;;61564:44;61621:61;61651:1;61655:2;61659:12;61673:8;61621:21;:61::i;:::-;62165:1;35165:2;62135:1;:26;;62134:32;62122:8;:45;62096:18;:22;62115:2;62096:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;62444:139;62481:2;62535:33;62558:1;62562:2;62566:1;62535:14;:33::i;:::-;62502:30;62523:8;62502:20;:30::i;:::-;:66;62444:18;:139::i;:::-;62410:17;:31;62428:12;62410:31;;;;;;;;;;;:173;;;;62600:16;62631:11;62660:8;62645:12;:23;62631:37;;63181:16;63177:2;63173:25;63161:37;;63553:12;63513:8;63472:1;63410:25;63351:1;63290;63263:335;63924:1;63910:12;63906:20;63864:346;63965:3;63956:7;63953:16;63864:346;;64183:7;64173:8;64170:1;64143:25;64140:1;64137;64132:59;64018:1;64009:7;64005:15;63994:26;;63864:346;;;63868:77;64255:1;64243:8;:13;64239:45;;;64265:19;;;;;;;;;;;;;;64239:45;64317:3;64301:13;:19;;;;61870:2462;;64342:60;64371:1;64375:2;64379:12;64393:8;64342:20;:60::i;:::-;61506:2904;61444:2966;;:::o;48856:324::-;48926:14;49159:1;49149:8;49146:15;49120:24;49116:46;49106:56;;48856:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:400::-;12111:3;12132:84;12214:1;12209:3;12132:84;:::i;:::-;12125:91;;12225:93;12314:3;12225:93;:::i;:::-;12343:1;12338:3;12334:11;12327:18;;11951:400;;;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:::-;12871:3;12892:67;12956:2;12951:3;12892:67;:::i;:::-;12885:74;;12968:93;13057:3;12968:93;:::i;:::-;13086:2;13081:3;13077:12;13070:19;;12729:366;;;:::o;13101:398::-;13260:3;13281:83;13362:1;13357:3;13281:83;:::i;:::-;13274:90;;13373:93;13462:3;13373:93;:::i;:::-;13491:1;13486:3;13482:11;13475:18;;13101:398;;;:::o;13505:366::-;13647:3;13668:67;13732:2;13727:3;13668:67;:::i;:::-;13661:74;;13744:93;13833:3;13744:93;:::i;:::-;13862:2;13857:3;13853:12;13846:19;;13505:366;;;:::o;13877:::-;14019:3;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14116:93;14205:3;14116:93;:::i;:::-;14234:2;14229:3;14225:12;14218:19;;13877:366;;;:::o;14249:::-;14391:3;14412:67;14476:2;14471:3;14412:67;:::i;:::-;14405:74;;14488:93;14577:3;14488:93;:::i;:::-;14606:2;14601:3;14597:12;14590:19;;14249:366;;;:::o;14621:::-;14763:3;14784:67;14848:2;14843:3;14784:67;:::i;:::-;14777:74;;14860:93;14949:3;14860:93;:::i;:::-;14978:2;14973:3;14969:12;14962:19;;14621:366;;;:::o;14993:400::-;15153:3;15174:84;15256:1;15251:3;15174:84;:::i;:::-;15167:91;;15267:93;15356:3;15267:93;:::i;:::-;15385:1;15380:3;15376:11;15369:18;;14993:400;;;:::o;15399:118::-;15486:24;15504:5;15486:24;:::i;:::-;15481:3;15474:37;15399:118;;:::o;15523:961::-;15902:3;15924:92;16012:3;16003:6;15924:92;:::i;:::-;15917:99;;16033:148;16177:3;16033:148;:::i;:::-;16026:155;;16198:95;16289:3;16280:6;16198:95;:::i;:::-;16191:102;;16310:148;16454:3;16310:148;:::i;:::-;16303:155;;16475:3;16468:10;;15523:961;;;;;:::o;16490:379::-;16674:3;16696:147;16839:3;16696:147;:::i;:::-;16689:154;;16860:3;16853:10;;16490:379;;;:::o;16875:222::-;16968:4;17006:2;16995:9;16991:18;16983:26;;17019:71;17087:1;17076:9;17072:17;17063:6;17019:71;:::i;:::-;16875:222;;;;:::o;17103:640::-;17298:4;17336:3;17325:9;17321:19;17313:27;;17350:71;17418:1;17407:9;17403:17;17394:6;17350:71;:::i;:::-;17431:72;17499:2;17488:9;17484:18;17475:6;17431:72;:::i;:::-;17513;17581:2;17570:9;17566:18;17557:6;17513:72;:::i;:::-;17632:9;17626:4;17622:20;17617:2;17606:9;17602:18;17595:48;17660:76;17731:4;17722:6;17660:76;:::i;:::-;17652:84;;17103:640;;;;;;;:::o;17749:210::-;17836:4;17874:2;17863:9;17859:18;17851:26;;17887:65;17949:1;17938:9;17934:17;17925:6;17887:65;:::i;:::-;17749:210;;;;:::o;17965:313::-;18078:4;18116:2;18105:9;18101:18;18093:26;;18165:9;18159:4;18155:20;18151:1;18140:9;18136:17;18129:47;18193:78;18266:4;18257:6;18193:78;:::i;:::-;18185:86;;17965:313;;;;:::o;18284:419::-;18450:4;18488:2;18477:9;18473:18;18465:26;;18537:9;18531:4;18527:20;18523:1;18512:9;18508:17;18501:47;18565:131;18691:4;18565:131;:::i;:::-;18557:139;;18284:419;;;:::o;18709:::-;18875:4;18913:2;18902:9;18898:18;18890:26;;18962:9;18956:4;18952:20;18948:1;18937:9;18933:17;18926:47;18990:131;19116:4;18990:131;:::i;:::-;18982:139;;18709:419;;;:::o;19134:::-;19300:4;19338:2;19327:9;19323:18;19315:26;;19387:9;19381:4;19377:20;19373:1;19362:9;19358:17;19351:47;19415:131;19541:4;19415:131;:::i;:::-;19407:139;;19134:419;;;:::o;19559:::-;19725:4;19763:2;19752:9;19748:18;19740:26;;19812:9;19806:4;19802:20;19798:1;19787:9;19783:17;19776:47;19840:131;19966:4;19840:131;:::i;:::-;19832:139;;19559:419;;;:::o;19984:::-;20150:4;20188:2;20177:9;20173:18;20165:26;;20237:9;20231:4;20227:20;20223:1;20212:9;20208:17;20201:47;20265:131;20391:4;20265:131;:::i;:::-;20257:139;;19984:419;;;:::o;20409:::-;20575:4;20613:2;20602:9;20598:18;20590:26;;20662:9;20656:4;20652:20;20648:1;20637:9;20633:17;20626:47;20690:131;20816:4;20690:131;:::i;:::-;20682:139;;20409:419;;;:::o;20834:::-;21000:4;21038:2;21027:9;21023:18;21015:26;;21087:9;21081:4;21077:20;21073:1;21062:9;21058:17;21051:47;21115:131;21241:4;21115:131;:::i;:::-;21107:139;;20834:419;;;:::o;21259:::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:131;21666:4;21540:131;:::i;:::-;21532:139;;21259:419;;;:::o;21684:::-;21850:4;21888:2;21877:9;21873:18;21865:26;;21937:9;21931:4;21927:20;21923:1;21912:9;21908:17;21901:47;21965:131;22091:4;21965:131;:::i;:::-;21957:139;;21684:419;;;:::o;22109:::-;22275:4;22313:2;22302:9;22298:18;22290:26;;22362:9;22356:4;22352:20;22348:1;22337:9;22333:17;22326:47;22390:131;22516:4;22390:131;:::i;:::-;22382:139;;22109:419;;;:::o;22534:::-;22700:4;22738:2;22727:9;22723:18;22715:26;;22787:9;22781:4;22777:20;22773:1;22762:9;22758:17;22751:47;22815:131;22941:4;22815:131;:::i;:::-;22807:139;;22534:419;;;:::o;22959:::-;23125:4;23163:2;23152:9;23148:18;23140:26;;23212:9;23206:4;23202:20;23198:1;23187:9;23183:17;23176:47;23240:131;23366:4;23240:131;:::i;:::-;23232:139;;22959:419;;;:::o;23384:222::-;23477:4;23515:2;23504:9;23500:18;23492:26;;23528:71;23596:1;23585:9;23581:17;23572:6;23528:71;:::i;:::-;23384:222;;;;:::o;23612:129::-;23646:6;23673:20;;:::i;:::-;23663:30;;23702:33;23730:4;23722:6;23702:33;:::i;:::-;23612:129;;;:::o;23747:75::-;23780:6;23813:2;23807:9;23797:19;;23747:75;:::o;23828:307::-;23889:4;23979:18;23971:6;23968:30;23965:56;;;24001:18;;:::i;:::-;23965:56;24039:29;24061:6;24039:29;:::i;:::-;24031:37;;24123:4;24117;24113:15;24105:23;;23828:307;;;:::o;24141:308::-;24203:4;24293:18;24285:6;24282:30;24279:56;;;24315:18;;:::i;:::-;24279:56;24353:29;24375:6;24353:29;:::i;:::-;24345:37;;24437:4;24431;24427:15;24419:23;;24141:308;;;:::o;24455:141::-;24504:4;24527:3;24519:11;;24550:3;24547:1;24540:14;24584:4;24581:1;24571:18;24563:26;;24455:141;;;:::o;24602:98::-;24653:6;24687:5;24681:12;24671:22;;24602:98;;;:::o;24706:99::-;24758:6;24792:5;24786:12;24776:22;;24706:99;;;:::o;24811:168::-;24894:11;24928:6;24923:3;24916:19;24968:4;24963:3;24959:14;24944:29;;24811:168;;;;:::o;24985:147::-;25086:11;25123:3;25108:18;;24985:147;;;;:::o;25138:169::-;25222:11;25256:6;25251:3;25244:19;25296:4;25291:3;25287:14;25272:29;;25138:169;;;;:::o;25313:148::-;25415:11;25452:3;25437:18;;25313:148;;;;:::o;25467:305::-;25507:3;25526:20;25544:1;25526:20;:::i;:::-;25521:25;;25560:20;25578:1;25560:20;:::i;:::-;25555:25;;25714:1;25646:66;25642:74;25639:1;25636:81;25633:107;;;25720:18;;:::i;:::-;25633:107;25764:1;25761;25757:9;25750:16;;25467:305;;;;:::o;25778:348::-;25818:7;25841:20;25859:1;25841:20;:::i;:::-;25836:25;;25875:20;25893:1;25875:20;:::i;:::-;25870:25;;26063:1;25995:66;25991:74;25988:1;25985:81;25980:1;25973:9;25966:17;25962:105;25959:131;;;26070:18;;:::i;:::-;25959:131;26118:1;26115;26111:9;26100:20;;25778:348;;;;:::o;26132:96::-;26169:7;26198:24;26216:5;26198:24;:::i;:::-;26187:35;;26132:96;;;:::o;26234:90::-;26268:7;26311:5;26304:13;26297:21;26286:32;;26234:90;;;:::o;26330:149::-;26366:7;26406:66;26399:5;26395:78;26384:89;;26330:149;;;:::o;26485:126::-;26522:7;26562:42;26555:5;26551:54;26540:65;;26485:126;;;:::o;26617:77::-;26654:7;26683:5;26672:16;;26617:77;;;:::o;26700:154::-;26784:6;26779:3;26774;26761:30;26846:1;26837:6;26832:3;26828:16;26821:27;26700:154;;;:::o;26860:307::-;26928:1;26938:113;26952:6;26949:1;26946:13;26938:113;;;27037:1;27032:3;27028:11;27022:18;27018:1;27013:3;27009:11;27002:39;26974:2;26971:1;26967:10;26962:15;;26938:113;;;27069:6;27066:1;27063:13;27060:101;;;27149:1;27140:6;27135:3;27131:16;27124:27;27060:101;26909:258;26860:307;;;:::o;27173:320::-;27217:6;27254:1;27248:4;27244:12;27234:22;;27301:1;27295:4;27291:12;27322:18;27312:81;;27378:4;27370:6;27366:17;27356:27;;27312:81;27440:2;27432:6;27429:14;27409:18;27406:38;27403:84;;;27459:18;;:::i;:::-;27403:84;27224:269;27173:320;;;:::o;27499:281::-;27582:27;27604:4;27582:27;:::i;:::-;27574:6;27570:40;27712:6;27700:10;27697:22;27676:18;27664:10;27661:34;27658:62;27655:88;;;27723:18;;:::i;:::-;27655:88;27763:10;27759:2;27752:22;27542:238;27499:281;;:::o;27786:180::-;27834:77;27831:1;27824:88;27931:4;27928:1;27921:15;27955:4;27952:1;27945:15;27972:180;28020:77;28017:1;28010:88;28117:4;28114:1;28107:15;28141:4;28138:1;28131:15;28158:180;28206:77;28203:1;28196:88;28303:4;28300:1;28293:15;28327:4;28324:1;28317:15;28344:180;28392:77;28389:1;28382:88;28489:4;28486:1;28479:15;28513:4;28510:1;28503:15;28530:117;28639:1;28636;28629:12;28653:117;28762:1;28759;28752:12;28776:117;28885:1;28882;28875:12;28899:117;29008:1;29005;28998:12;29022:102;29063:6;29114:2;29110:7;29105:2;29098:5;29094:14;29090:28;29080:38;;29022:102;;;:::o;29130:157::-;29270:9;29266:1;29258:6;29254:14;29247:33;29130:157;:::o;29293:225::-;29433:34;29429:1;29421:6;29417:14;29410:58;29502:8;29497:2;29489:6;29485:15;29478:33;29293:225;:::o;29524:245::-;29664:34;29660:1;29652:6;29648:14;29641:58;29733:28;29728:2;29720:6;29716:15;29709:53;29524:245;:::o;29775:179::-;29915:31;29911:1;29903:6;29899:14;29892:55;29775:179;:::o;29960:221::-;30100:34;30096:1;30088:6;30084:14;30077:58;30169:4;30164:2;30156:6;30152:15;30145:29;29960:221;:::o;30187:173::-;30327:25;30323:1;30315:6;30311:14;30304:49;30187:173;:::o;30366:155::-;30506:7;30502:1;30494:6;30490:14;30483:31;30366:155;:::o;30527:182::-;30667:34;30663:1;30655:6;30651:14;30644:58;30527:182;:::o;30715:234::-;30855:34;30851:1;30843:6;30839:14;30832:58;30924:17;30919:2;30911:6;30907:15;30900:42;30715:234;:::o;30955:114::-;;:::o;31075:169::-;31215:21;31211:1;31203:6;31199:14;31192:45;31075:169;:::o;31250:174::-;31390:26;31386:1;31378:6;31374:14;31367:50;31250:174;:::o;31430:181::-;31570:33;31566:1;31558:6;31554:14;31547:57;31430:181;:::o;31617:173::-;31757:25;31753:1;31745:6;31741:14;31734:49;31617:173;:::o;31796:151::-;31936:3;31932:1;31924:6;31920:14;31913:27;31796:151;:::o;31953:122::-;32026:24;32044:5;32026:24;:::i;:::-;32019:5;32016:35;32006:63;;32065:1;32062;32055:12;32006:63;31953:122;:::o;32081:116::-;32151:21;32166:5;32151:21;:::i;:::-;32144:5;32141:32;32131:60;;32187:1;32184;32177:12;32131:60;32081:116;:::o;32203:120::-;32275:23;32292:5;32275:23;:::i;:::-;32268:5;32265:34;32255:62;;32313:1;32310;32303:12;32255:62;32203:120;:::o;32329:122::-;32402:24;32420:5;32402:24;:::i;:::-;32395:5;32392:35;32382:63;;32441:1;32438;32431:12;32382:63;32329:122;:::o

Swarm Source

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