ETH Price: $2,971.67 (-3.98%)
Gas: 3 Gwei

Token

NinjaZombies (NZ)
 

Overview

Max Total Supply

4,200 NZ

Holders

285

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 NZ
0x56c6a93cf4167ed039a62c59c3b144cf962fb99d
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:
NinjaZombies

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-02
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/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/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

    /**
     * @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 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
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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;

    /**
     * @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;

    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// 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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

// 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/NinjaZombies.sol



pragma solidity ^0.8.9;



contract NinjaZombies is ERC721, Ownable {

    using Strings for uint256;

    uint public mintPrice = 20000000000000000; // Mint price varies in each mint phase.
    uint public maxSupply; // Total supply varies depending on Mint Phases but main collection supply cannot be more than 5000.
    uint256 public totalSupply;
    uint256 public constant maxMintPerTransaction = 50;
    string public baseUri;
    string public uriExtension = ".json";

    constructor() ERC721("NinjaZombies", "NZ") {
        baseUri = "ipfs://QmTrXSsJ6gCLJ5tbceCUcgqKHDXMjMuggMsXNtEAUYGSzF/";
    }


    function mint(uint256 _numTokens) external payable {

        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + _numTokens <= maxSupply, "Sale is not active or max supply exceeded!");

        require(_numTokens <= maxMintPerTransaction, "Maximum mint per transaction limit");
        
        if (msg.sender != owner()) {
            require(_numTokens * mintPrice <= msg.value, "Not enough funds");
        }

        for(uint256 i = 1; i <= _numTokens; ++i) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        totalSupply += _numTokens;
        
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        mintPrice = _price;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        if (_maxSupply > 5000) {
            maxSupply = 5000; // Total supply of Ninja Zombies Collection
        } else {
            maxSupply = _maxSupply;
        }
    }

    function withdraw() external payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
 
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), uriExtension))
            : "";
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseUri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"nonpayable","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":"nonpayable","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":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266470de4df8200006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200005591906200048f565b503480156200006357600080fd5b506040518060400160405280600c81526020017f4e696e6a615a6f6d6269657300000000000000000000000000000000000000008152506040518060400160405280600281526020017f4e5a0000000000000000000000000000000000000000000000000000000000008152508160009081620000e191906200048f565b508060019081620000f391906200048f565b505050620001166200010a6200014760201b60201c565b6200014f60201b60201c565b60405180606001604052806036815260200162003c3060369139600a90816200014091906200048f565b5062000576565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029757607f821691505b602082108103620002ad57620002ac6200024f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002d8565b620003238683620002d8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003706200036a62000364846200033b565b62000345565b6200033b565b9050919050565b6000819050919050565b6200038c836200034f565b620003a46200039b8262000377565b848454620002e5565b825550505050565b600090565b620003bb620003ac565b620003c881848462000381565b505050565b5b81811015620003f057620003e4600082620003b1565b600181019050620003ce565b5050565b601f8211156200043f576200040981620002b3565b6200041484620002c8565b8101602085101562000424578190505b6200043c6200043385620002c8565b830182620003cd565b50505b505050565b600082821c905092915050565b6000620004646000198460080262000444565b1980831691505092915050565b60006200047f838362000451565b9150826002028217905092915050565b6200049a8262000215565b67ffffffffffffffff811115620004b657620004b562000220565b5b620004c282546200027e565b620004cf828285620003f4565b600060209050601f831160018114620005075760008415620004f2578287015190505b620004fe858262000471565b8655506200056e565b601f1984166200051786620002b3565b60005b8281101562000541578489015182556001820191506020850194506020810190506200051a565b868310156200056157848901516200055d601f89168262000451565b8355505b6001600288020188555050505b505050505050565b6136aa80620005866000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610586578063e985e9c5146105b1578063f2fde38b146105ee578063f4a0a528146106175761019c565b8063a22cb465146104f7578063b88d4fde14610520578063c87b56dd146105495761019c565b806395d89b41116100c657806395d89b411461045c5780639abc832014610487578063a0712d68146104b2578063a0bcfc7f146104ce5761019c565b806370a08231146103dd578063715018a61461041a5780638da5cb5b146104315761019c565b806323b872dd1161015957806352ee46961161013357806352ee4696146103215780636352211e1461034c5780636817c76c146103895780636f8b44b0146103b45761019c565b806323b872dd146102c55780633ccfd60b146102ee57806342842e0e146102f85761019c565b806301f56997146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610640565b6040516101c39190612108565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee919061218f565b610645565b60405161020091906121d7565b60405180910390f35b34801561021557600080fd5b5061021e610727565b60405161022b9190612282565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906122d0565b6107b9565b604051610268919061233e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612385565b6107ff565b005b3480156102a657600080fd5b506102af610916565b6040516102bc9190612108565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906123c5565b61091c565b005b6102f661097c565b005b34801561030457600080fd5b5061031f600480360381019061031a91906123c5565b610a04565b005b34801561032d57600080fd5b50610336610a24565b6040516103439190612282565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906122d0565b610ab2565b604051610380919061233e565b60405180910390f35b34801561039557600080fd5b5061039e610b38565b6040516103ab9190612108565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906122d0565b610b3e565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612418565b610b69565b6040516104119190612108565b60405180910390f35b34801561042657600080fd5b5061042f610c20565b005b34801561043d57600080fd5b50610446610c34565b604051610453919061233e565b60405180910390f35b34801561046857600080fd5b50610471610c5e565b60405161047e9190612282565b60405180910390f35b34801561049357600080fd5b5061049c610cf0565b6040516104a99190612282565b60405180910390f35b6104cc60048036038101906104c791906122d0565b610d7e565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061257a565b610ef6565b005b34801561050357600080fd5b5061051e600480360381019061051991906125ef565b610f11565b005b34801561052c57600080fd5b50610547600480360381019061054291906126d0565b610f27565b005b34801561055557600080fd5b50610570600480360381019061056b91906122d0565b610f89565b60405161057d9190612282565b60405180910390f35b34801561059257600080fd5b5061059b611033565b6040516105a89190612108565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612753565b611039565b6040516105e591906121d7565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190612418565b6110cd565b005b34801561062357600080fd5b5061063e600480360381019061063991906122d0565b611150565b005b603281565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610720575061071f82611162565b5b9050919050565b606060008054610736906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610762906127c2565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b60006107c4826111cc565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080a82610ab2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361087a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087190612865565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610899611217565b73ffffffffffffffffffffffffffffffffffffffff1614806108c857506108c7816108c2611217565b611039565b5b610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe906128f7565b60405180910390fd5b610911838361121f565b505050565b60095481565b61092d610927611217565b826112d8565b61096c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096390612989565b60405180910390fd5b61097783838361136d565b505050565b610984611666565b600061098e610c34565b73ffffffffffffffffffffffffffffffffffffffff16476040516109b1906129da565b60006040518083038185875af1925050503d80600081146109ee576040519150601f19603f3d011682016040523d82523d6000602084013e6109f3565b606091505b5050905080610a0157600080fd5b50565b610a1f83838360405180602001604052806000815250610f27565b505050565b600b8054610a31906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5d906127c2565b8015610aaa5780601f10610a7f57610100808354040283529160200191610aaa565b820191906000526020600020905b815481529060010190602001808311610a8d57829003601f168201915b505050505081565b600080610abe836116e4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690612a3b565b60405180910390fd5b80915050919050565b60075481565b610b46611666565b611388811115610b5e57611388600881905550610b66565b806008819055505b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090612acd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c28611666565b610c326000611721565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c6d906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c99906127c2565b8015610ce65780601f10610cbb57610100808354040283529160200191610ce6565b820191906000526020600020905b815481529060010190602001808311610cc957829003601f168201915b5050505050905090565b600a8054610cfd906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d29906127c2565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b505050505081565b600060095490506008548282610d949190612b1c565b1115610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612bc2565b60405180910390fd5b6032821115610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090612c54565b60405180910390fd5b610e21610c34565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea4573460075483610e629190612c74565b1115610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90612d02565b60405180910390fd5b5b6000600190505b828111610ed857610ec7338284610ec29190612b1c565b6117e7565b80610ed190612d22565b9050610eab565b508160096000828254610eeb9190612b1c565b925050819055505050565b610efe611666565b80600a9081610f0d9190612f16565b5050565b610f23610f1c611217565b8383611805565b5050565b610f38610f32611217565b836112d8565b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90612989565b60405180910390fd5b610f8384848484611971565b50505050565b6060610f94826119cd565b610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca9061305a565b60405180910390fd5b6000610fdd611a0e565b90506000815111610ffd576040518060200160405280600081525061102b565b8061100784611aa0565b600b60405160200161101b93929190613139565b6040516020818303038152906040525b915050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110d5611666565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906131dc565b60405180910390fd5b61114d81611721565b50565b611158611666565b8060078190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111d5816119cd565b611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90612a3b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661129283610ab2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112e483610ab2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061132657506113258185611039565b5b8061136457508373ffffffffffffffffffffffffffffffffffffffff1661134c846107b9565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661138d82610ab2565b73ffffffffffffffffffffffffffffffffffffffff16146113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da9061326e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613300565b60405180910390fd5b61145f8383836001611b6e565b8273ffffffffffffffffffffffffffffffffffffffff1661147f82610ab2565b73ffffffffffffffffffffffffffffffffffffffff16146114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc9061326e565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116618383836001611b74565b505050565b61166e611217565b73ffffffffffffffffffffffffffffffffffffffff1661168c610c34565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d99061336c565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611801828260405180602001604052806000815250611b7a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906133d8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161196491906121d7565b60405180910390a3505050565b61197c84848461136d565b61198884848484611bd5565b6119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be9061346a565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166119ef836116e4565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a8054611a1d906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a49906127c2565b8015611a965780601f10611a6b57610100808354040283529160200191611a96565b820191906000526020600020905b815481529060010190602001808311611a7957829003601f168201915b5050505050905090565b606060006001611aaf84611d5c565b01905060008167ffffffffffffffff811115611ace57611acd61244f565b5b6040519080825280601f01601f191660200182016040528015611b005781602001600182028036833780820191505090505b509050600082602001820190505b600115611b63578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b5757611b5661348a565b5b04945060008503611b0e575b819350505050919050565b50505050565b50505050565b611b848383611eaf565b611b916000848484611bd5565b611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc79061346a565b60405180910390fd5b505050565b6000611bf68473ffffffffffffffffffffffffffffffffffffffff166120cc565b15611d4f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c1f611217565b8786866040518563ffffffff1660e01b8152600401611c41949392919061350e565b6020604051808303816000875af1925050508015611c7d57506040513d601f19601f82011682018060405250810190611c7a919061356f565b60015b611cff573d8060008114611cad576040519150601f19603f3d011682016040523d82523d6000602084013e611cb2565b606091505b506000815103611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9061346a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d54565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611dba577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611db057611daf61348a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611df7576d04ee2d6d415b85acef81000000008381611ded57611dec61348a565b5b0492506020810190505b662386f26fc100008310611e2657662386f26fc100008381611e1c57611e1b61348a565b5b0492506010810190505b6305f5e1008310611e4f576305f5e1008381611e4557611e4461348a565b5b0492506008810190505b6127108310611e74576127108381611e6a57611e6961348a565b5b0492506004810190505b60648310611e975760648381611e8d57611e8c61348a565b5b0492506002810190505b600a8310611ea6576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f15906135e8565b60405180910390fd5b611f27816119cd565b15611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613654565b60405180910390fd5b611f75600083836001611b6e565b611f7e816119cd565b15611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590613654565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120c8600083836001611b74565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000819050919050565b612102816120ef565b82525050565b600060208201905061211d60008301846120f9565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61216c81612137565b811461217757600080fd5b50565b60008135905061218981612163565b92915050565b6000602082840312156121a5576121a461212d565b5b60006121b38482850161217a565b91505092915050565b60008115159050919050565b6121d1816121bc565b82525050565b60006020820190506121ec60008301846121c8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561222c578082015181840152602081019050612211565b60008484015250505050565b6000601f19601f8301169050919050565b6000612254826121f2565b61225e81856121fd565b935061226e81856020860161220e565b61227781612238565b840191505092915050565b6000602082019050818103600083015261229c8184612249565b905092915050565b6122ad816120ef565b81146122b857600080fd5b50565b6000813590506122ca816122a4565b92915050565b6000602082840312156122e6576122e561212d565b5b60006122f4848285016122bb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612328826122fd565b9050919050565b6123388161231d565b82525050565b6000602082019050612353600083018461232f565b92915050565b6123628161231d565b811461236d57600080fd5b50565b60008135905061237f81612359565b92915050565b6000806040838503121561239c5761239b61212d565b5b60006123aa85828601612370565b92505060206123bb858286016122bb565b9150509250929050565b6000806000606084860312156123de576123dd61212d565b5b60006123ec86828701612370565b93505060206123fd86828701612370565b925050604061240e868287016122bb565b9150509250925092565b60006020828403121561242e5761242d61212d565b5b600061243c84828501612370565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61248782612238565b810181811067ffffffffffffffff821117156124a6576124a561244f565b5b80604052505050565b60006124b9612123565b90506124c5828261247e565b919050565b600067ffffffffffffffff8211156124e5576124e461244f565b5b6124ee82612238565b9050602081019050919050565b82818337600083830152505050565b600061251d612518846124ca565b6124af565b9050828152602081018484840111156125395761253861244a565b5b6125448482856124fb565b509392505050565b600082601f83011261256157612560612445565b5b813561257184826020860161250a565b91505092915050565b6000602082840312156125905761258f61212d565b5b600082013567ffffffffffffffff8111156125ae576125ad612132565b5b6125ba8482850161254c565b91505092915050565b6125cc816121bc565b81146125d757600080fd5b50565b6000813590506125e9816125c3565b92915050565b600080604083850312156126065761260561212d565b5b600061261485828601612370565b9250506020612625858286016125da565b9150509250929050565b600067ffffffffffffffff82111561264a5761264961244f565b5b61265382612238565b9050602081019050919050565b600061267361266e8461262f565b6124af565b90508281526020810184848401111561268f5761268e61244a565b5b61269a8482856124fb565b509392505050565b600082601f8301126126b7576126b6612445565b5b81356126c7848260208601612660565b91505092915050565b600080600080608085870312156126ea576126e961212d565b5b60006126f887828801612370565b945050602061270987828801612370565b935050604061271a878288016122bb565b925050606085013567ffffffffffffffff81111561273b5761273a612132565b5b612747878288016126a2565b91505092959194509250565b6000806040838503121561276a5761276961212d565b5b600061277885828601612370565b925050602061278985828601612370565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061284f6021836121fd565b915061285a826127f3565b604082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006128e1603d836121fd565b91506128ec82612885565b604082019050919050565b60006020820190508181036000830152612910816128d4565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612973602d836121fd565b915061297e82612917565b604082019050919050565b600060208201905081810360008301526129a281612966565b9050919050565b600081905092915050565b50565b60006129c46000836129a9565b91506129cf826129b4565b600082019050919050565b60006129e5826129b7565b9150819050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612a256018836121fd565b9150612a30826129ef565b602082019050919050565b60006020820190508181036000830152612a5481612a18565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612ab76029836121fd565b9150612ac282612a5b565b604082019050919050565b60006020820190508181036000830152612ae681612aaa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b27826120ef565b9150612b32836120ef565b9250828201905080821115612b4a57612b49612aed565b5b92915050565b7f53616c65206973206e6f7420616374697665206f72206d617820737570706c7960008201527f2065786365656465642100000000000000000000000000000000000000000000602082015250565b6000612bac602a836121fd565b9150612bb782612b50565b604082019050919050565b60006020820190508181036000830152612bdb81612b9f565b9050919050565b7f4d6178696d756d206d696e7420706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c3e6022836121fd565b9150612c4982612be2565b604082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b6000612c7f826120ef565b9150612c8a836120ef565b9250828202612c98816120ef565b91508282048414831517612caf57612cae612aed565b5b5092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b6000612cec6010836121fd565b9150612cf782612cb6565b602082019050919050565b60006020820190508181036000830152612d1b81612cdf565b9050919050565b6000612d2d826120ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612d5f57612d5e612aed565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612dcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d8f565b612dd68683612d8f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612e13612e0e612e09846120ef565b612dee565b6120ef565b9050919050565b6000819050919050565b612e2d83612df8565b612e41612e3982612e1a565b848454612d9c565b825550505050565b600090565b612e56612e49565b612e61818484612e24565b505050565b5b81811015612e8557612e7a600082612e4e565b600181019050612e67565b5050565b601f821115612eca57612e9b81612d6a565b612ea484612d7f565b81016020851015612eb3578190505b612ec7612ebf85612d7f565b830182612e66565b50505b505050565b600082821c905092915050565b6000612eed60001984600802612ecf565b1980831691505092915050565b6000612f068383612edc565b9150826002028217905092915050565b612f1f826121f2565b67ffffffffffffffff811115612f3857612f3761244f565b5b612f4282546127c2565b612f4d828285612e89565b600060209050601f831160018114612f805760008415612f6e578287015190505b612f788582612efa565b865550612fe0565b601f198416612f8e86612d6a565b60005b82811015612fb657848901518255600182019150602085019450602081019050612f91565b86831015612fd35784890151612fcf601f891682612edc565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613044602f836121fd565b915061304f82612fe8565b604082019050919050565b6000602082019050818103600083015261307381613037565b9050919050565b600081905092915050565b6000613090826121f2565b61309a818561307a565b93506130aa81856020860161220e565b80840191505092915050565b600081546130c3816127c2565b6130cd818661307a565b945060018216600081146130e857600181146130fd57613130565b60ff1983168652811515820286019350613130565b61310685612d6a565b60005b8381101561312857815481890152600182019150602081019050613109565b838801955050505b50505092915050565b60006131458286613085565b91506131518285613085565b915061315d82846130b6565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131c66026836121fd565b91506131d18261316a565b604082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006132586025836121fd565b9150613263826131fc565b604082019050919050565b600060208201905081810360008301526132878161324b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132ea6024836121fd565b91506132f58261328e565b604082019050919050565b60006020820190508181036000830152613319816132dd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133566020836121fd565b915061336182613320565b602082019050919050565b6000602082019050818103600083015261338581613349565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006133c26019836121fd565b91506133cd8261338c565b602082019050919050565b600060208201905081810360008301526133f1816133b5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006134546032836121fd565b915061345f826133f8565b604082019050919050565b6000602082019050818103600083015261348381613447565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006134e0826134b9565b6134ea81856134c4565b93506134fa81856020860161220e565b61350381612238565b840191505092915050565b6000608082019050613523600083018761232f565b613530602083018661232f565b61353d60408301856120f9565b818103606083015261354f81846134d5565b905095945050505050565b60008151905061356981612163565b92915050565b6000602082840312156135855761358461212d565b5b60006135938482850161355a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135d26020836121fd565b91506135dd8261359c565b602082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061363e601c836121fd565b915061364982613608565b602082019050919050565b6000602082019050818103600083015261366d81613631565b905091905056fea26469706673582212206ff3035b48fc0ff59ceeb4aab87ea69f24f07d9f2675fb23bec786481e00282064736f6c63430008120033697066733a2f2f516d54725853734a3667434c4a357462636543556367714b4844584d6a4d7567674d73584e744541555947537a462f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610586578063e985e9c5146105b1578063f2fde38b146105ee578063f4a0a528146106175761019c565b8063a22cb465146104f7578063b88d4fde14610520578063c87b56dd146105495761019c565b806395d89b41116100c657806395d89b411461045c5780639abc832014610487578063a0712d68146104b2578063a0bcfc7f146104ce5761019c565b806370a08231146103dd578063715018a61461041a5780638da5cb5b146104315761019c565b806323b872dd1161015957806352ee46961161013357806352ee4696146103215780636352211e1461034c5780636817c76c146103895780636f8b44b0146103b45761019c565b806323b872dd146102c55780633ccfd60b146102ee57806342842e0e146102f85761019c565b806301f56997146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610640565b6040516101c39190612108565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee919061218f565b610645565b60405161020091906121d7565b60405180910390f35b34801561021557600080fd5b5061021e610727565b60405161022b9190612282565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906122d0565b6107b9565b604051610268919061233e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612385565b6107ff565b005b3480156102a657600080fd5b506102af610916565b6040516102bc9190612108565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906123c5565b61091c565b005b6102f661097c565b005b34801561030457600080fd5b5061031f600480360381019061031a91906123c5565b610a04565b005b34801561032d57600080fd5b50610336610a24565b6040516103439190612282565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906122d0565b610ab2565b604051610380919061233e565b60405180910390f35b34801561039557600080fd5b5061039e610b38565b6040516103ab9190612108565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906122d0565b610b3e565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612418565b610b69565b6040516104119190612108565b60405180910390f35b34801561042657600080fd5b5061042f610c20565b005b34801561043d57600080fd5b50610446610c34565b604051610453919061233e565b60405180910390f35b34801561046857600080fd5b50610471610c5e565b60405161047e9190612282565b60405180910390f35b34801561049357600080fd5b5061049c610cf0565b6040516104a99190612282565b60405180910390f35b6104cc60048036038101906104c791906122d0565b610d7e565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061257a565b610ef6565b005b34801561050357600080fd5b5061051e600480360381019061051991906125ef565b610f11565b005b34801561052c57600080fd5b50610547600480360381019061054291906126d0565b610f27565b005b34801561055557600080fd5b50610570600480360381019061056b91906122d0565b610f89565b60405161057d9190612282565b60405180910390f35b34801561059257600080fd5b5061059b611033565b6040516105a89190612108565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612753565b611039565b6040516105e591906121d7565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190612418565b6110cd565b005b34801561062357600080fd5b5061063e600480360381019061063991906122d0565b611150565b005b603281565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610720575061071f82611162565b5b9050919050565b606060008054610736906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610762906127c2565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b60006107c4826111cc565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080a82610ab2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361087a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087190612865565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610899611217565b73ffffffffffffffffffffffffffffffffffffffff1614806108c857506108c7816108c2611217565b611039565b5b610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe906128f7565b60405180910390fd5b610911838361121f565b505050565b60095481565b61092d610927611217565b826112d8565b61096c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096390612989565b60405180910390fd5b61097783838361136d565b505050565b610984611666565b600061098e610c34565b73ffffffffffffffffffffffffffffffffffffffff16476040516109b1906129da565b60006040518083038185875af1925050503d80600081146109ee576040519150601f19603f3d011682016040523d82523d6000602084013e6109f3565b606091505b5050905080610a0157600080fd5b50565b610a1f83838360405180602001604052806000815250610f27565b505050565b600b8054610a31906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5d906127c2565b8015610aaa5780601f10610a7f57610100808354040283529160200191610aaa565b820191906000526020600020905b815481529060010190602001808311610a8d57829003601f168201915b505050505081565b600080610abe836116e4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690612a3b565b60405180910390fd5b80915050919050565b60075481565b610b46611666565b611388811115610b5e57611388600881905550610b66565b806008819055505b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090612acd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c28611666565b610c326000611721565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c6d906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c99906127c2565b8015610ce65780601f10610cbb57610100808354040283529160200191610ce6565b820191906000526020600020905b815481529060010190602001808311610cc957829003601f168201915b5050505050905090565b600a8054610cfd906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d29906127c2565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b505050505081565b600060095490506008548282610d949190612b1c565b1115610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612bc2565b60405180910390fd5b6032821115610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090612c54565b60405180910390fd5b610e21610c34565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea4573460075483610e629190612c74565b1115610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90612d02565b60405180910390fd5b5b6000600190505b828111610ed857610ec7338284610ec29190612b1c565b6117e7565b80610ed190612d22565b9050610eab565b508160096000828254610eeb9190612b1c565b925050819055505050565b610efe611666565b80600a9081610f0d9190612f16565b5050565b610f23610f1c611217565b8383611805565b5050565b610f38610f32611217565b836112d8565b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90612989565b60405180910390fd5b610f8384848484611971565b50505050565b6060610f94826119cd565b610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca9061305a565b60405180910390fd5b6000610fdd611a0e565b90506000815111610ffd576040518060200160405280600081525061102b565b8061100784611aa0565b600b60405160200161101b93929190613139565b6040516020818303038152906040525b915050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110d5611666565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906131dc565b60405180910390fd5b61114d81611721565b50565b611158611666565b8060078190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111d5816119cd565b611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90612a3b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661129283610ab2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112e483610ab2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061132657506113258185611039565b5b8061136457508373ffffffffffffffffffffffffffffffffffffffff1661134c846107b9565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661138d82610ab2565b73ffffffffffffffffffffffffffffffffffffffff16146113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da9061326e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613300565b60405180910390fd5b61145f8383836001611b6e565b8273ffffffffffffffffffffffffffffffffffffffff1661147f82610ab2565b73ffffffffffffffffffffffffffffffffffffffff16146114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc9061326e565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116618383836001611b74565b505050565b61166e611217565b73ffffffffffffffffffffffffffffffffffffffff1661168c610c34565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d99061336c565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611801828260405180602001604052806000815250611b7a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906133d8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161196491906121d7565b60405180910390a3505050565b61197c84848461136d565b61198884848484611bd5565b6119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be9061346a565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166119ef836116e4565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a8054611a1d906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a49906127c2565b8015611a965780601f10611a6b57610100808354040283529160200191611a96565b820191906000526020600020905b815481529060010190602001808311611a7957829003601f168201915b5050505050905090565b606060006001611aaf84611d5c565b01905060008167ffffffffffffffff811115611ace57611acd61244f565b5b6040519080825280601f01601f191660200182016040528015611b005781602001600182028036833780820191505090505b509050600082602001820190505b600115611b63578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b5757611b5661348a565b5b04945060008503611b0e575b819350505050919050565b50505050565b50505050565b611b848383611eaf565b611b916000848484611bd5565b611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc79061346a565b60405180910390fd5b505050565b6000611bf68473ffffffffffffffffffffffffffffffffffffffff166120cc565b15611d4f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c1f611217565b8786866040518563ffffffff1660e01b8152600401611c41949392919061350e565b6020604051808303816000875af1925050508015611c7d57506040513d601f19601f82011682018060405250810190611c7a919061356f565b60015b611cff573d8060008114611cad576040519150601f19603f3d011682016040523d82523d6000602084013e611cb2565b606091505b506000815103611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9061346a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d54565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611dba577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611db057611daf61348a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611df7576d04ee2d6d415b85acef81000000008381611ded57611dec61348a565b5b0492506020810190505b662386f26fc100008310611e2657662386f26fc100008381611e1c57611e1b61348a565b5b0492506010810190505b6305f5e1008310611e4f576305f5e1008381611e4557611e4461348a565b5b0492506008810190505b6127108310611e74576127108381611e6a57611e6961348a565b5b0492506004810190505b60648310611e975760648381611e8d57611e8c61348a565b5b0492506002810190505b600a8310611ea6576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f15906135e8565b60405180910390fd5b611f27816119cd565b15611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613654565b60405180910390fd5b611f75600083836001611b6e565b611f7e816119cd565b15611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590613654565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120c8600083836001611b74565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000819050919050565b612102816120ef565b82525050565b600060208201905061211d60008301846120f9565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61216c81612137565b811461217757600080fd5b50565b60008135905061218981612163565b92915050565b6000602082840312156121a5576121a461212d565b5b60006121b38482850161217a565b91505092915050565b60008115159050919050565b6121d1816121bc565b82525050565b60006020820190506121ec60008301846121c8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561222c578082015181840152602081019050612211565b60008484015250505050565b6000601f19601f8301169050919050565b6000612254826121f2565b61225e81856121fd565b935061226e81856020860161220e565b61227781612238565b840191505092915050565b6000602082019050818103600083015261229c8184612249565b905092915050565b6122ad816120ef565b81146122b857600080fd5b50565b6000813590506122ca816122a4565b92915050565b6000602082840312156122e6576122e561212d565b5b60006122f4848285016122bb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612328826122fd565b9050919050565b6123388161231d565b82525050565b6000602082019050612353600083018461232f565b92915050565b6123628161231d565b811461236d57600080fd5b50565b60008135905061237f81612359565b92915050565b6000806040838503121561239c5761239b61212d565b5b60006123aa85828601612370565b92505060206123bb858286016122bb565b9150509250929050565b6000806000606084860312156123de576123dd61212d565b5b60006123ec86828701612370565b93505060206123fd86828701612370565b925050604061240e868287016122bb565b9150509250925092565b60006020828403121561242e5761242d61212d565b5b600061243c84828501612370565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61248782612238565b810181811067ffffffffffffffff821117156124a6576124a561244f565b5b80604052505050565b60006124b9612123565b90506124c5828261247e565b919050565b600067ffffffffffffffff8211156124e5576124e461244f565b5b6124ee82612238565b9050602081019050919050565b82818337600083830152505050565b600061251d612518846124ca565b6124af565b9050828152602081018484840111156125395761253861244a565b5b6125448482856124fb565b509392505050565b600082601f83011261256157612560612445565b5b813561257184826020860161250a565b91505092915050565b6000602082840312156125905761258f61212d565b5b600082013567ffffffffffffffff8111156125ae576125ad612132565b5b6125ba8482850161254c565b91505092915050565b6125cc816121bc565b81146125d757600080fd5b50565b6000813590506125e9816125c3565b92915050565b600080604083850312156126065761260561212d565b5b600061261485828601612370565b9250506020612625858286016125da565b9150509250929050565b600067ffffffffffffffff82111561264a5761264961244f565b5b61265382612238565b9050602081019050919050565b600061267361266e8461262f565b6124af565b90508281526020810184848401111561268f5761268e61244a565b5b61269a8482856124fb565b509392505050565b600082601f8301126126b7576126b6612445565b5b81356126c7848260208601612660565b91505092915050565b600080600080608085870312156126ea576126e961212d565b5b60006126f887828801612370565b945050602061270987828801612370565b935050604061271a878288016122bb565b925050606085013567ffffffffffffffff81111561273b5761273a612132565b5b612747878288016126a2565b91505092959194509250565b6000806040838503121561276a5761276961212d565b5b600061277885828601612370565b925050602061278985828601612370565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061284f6021836121fd565b915061285a826127f3565b604082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006128e1603d836121fd565b91506128ec82612885565b604082019050919050565b60006020820190508181036000830152612910816128d4565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612973602d836121fd565b915061297e82612917565b604082019050919050565b600060208201905081810360008301526129a281612966565b9050919050565b600081905092915050565b50565b60006129c46000836129a9565b91506129cf826129b4565b600082019050919050565b60006129e5826129b7565b9150819050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612a256018836121fd565b9150612a30826129ef565b602082019050919050565b60006020820190508181036000830152612a5481612a18565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612ab76029836121fd565b9150612ac282612a5b565b604082019050919050565b60006020820190508181036000830152612ae681612aaa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b27826120ef565b9150612b32836120ef565b9250828201905080821115612b4a57612b49612aed565b5b92915050565b7f53616c65206973206e6f7420616374697665206f72206d617820737570706c7960008201527f2065786365656465642100000000000000000000000000000000000000000000602082015250565b6000612bac602a836121fd565b9150612bb782612b50565b604082019050919050565b60006020820190508181036000830152612bdb81612b9f565b9050919050565b7f4d6178696d756d206d696e7420706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c3e6022836121fd565b9150612c4982612be2565b604082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b6000612c7f826120ef565b9150612c8a836120ef565b9250828202612c98816120ef565b91508282048414831517612caf57612cae612aed565b5b5092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b6000612cec6010836121fd565b9150612cf782612cb6565b602082019050919050565b60006020820190508181036000830152612d1b81612cdf565b9050919050565b6000612d2d826120ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612d5f57612d5e612aed565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612dcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d8f565b612dd68683612d8f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612e13612e0e612e09846120ef565b612dee565b6120ef565b9050919050565b6000819050919050565b612e2d83612df8565b612e41612e3982612e1a565b848454612d9c565b825550505050565b600090565b612e56612e49565b612e61818484612e24565b505050565b5b81811015612e8557612e7a600082612e4e565b600181019050612e67565b5050565b601f821115612eca57612e9b81612d6a565b612ea484612d7f565b81016020851015612eb3578190505b612ec7612ebf85612d7f565b830182612e66565b50505b505050565b600082821c905092915050565b6000612eed60001984600802612ecf565b1980831691505092915050565b6000612f068383612edc565b9150826002028217905092915050565b612f1f826121f2565b67ffffffffffffffff811115612f3857612f3761244f565b5b612f4282546127c2565b612f4d828285612e89565b600060209050601f831160018114612f805760008415612f6e578287015190505b612f788582612efa565b865550612fe0565b601f198416612f8e86612d6a565b60005b82811015612fb657848901518255600182019150602085019450602081019050612f91565b86831015612fd35784890151612fcf601f891682612edc565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613044602f836121fd565b915061304f82612fe8565b604082019050919050565b6000602082019050818103600083015261307381613037565b9050919050565b600081905092915050565b6000613090826121f2565b61309a818561307a565b93506130aa81856020860161220e565b80840191505092915050565b600081546130c3816127c2565b6130cd818661307a565b945060018216600081146130e857600181146130fd57613130565b60ff1983168652811515820286019350613130565b61310685612d6a565b60005b8381101561312857815481890152600182019150602081019050613109565b838801955050505b50505092915050565b60006131458286613085565b91506131518285613085565b915061315d82846130b6565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131c66026836121fd565b91506131d18261316a565b604082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006132586025836121fd565b9150613263826131fc565b604082019050919050565b600060208201905081810360008301526132878161324b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132ea6024836121fd565b91506132f58261328e565b604082019050919050565b60006020820190508181036000830152613319816132dd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133566020836121fd565b915061336182613320565b602082019050919050565b6000602082019050818103600083015261338581613349565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006133c26019836121fd565b91506133cd8261338c565b602082019050919050565b600060208201905081810360008301526133f1816133b5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006134546032836121fd565b915061345f826133f8565b604082019050919050565b6000602082019050818103600083015261348381613447565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006134e0826134b9565b6134ea81856134c4565b93506134fa81856020860161220e565b61350381612238565b840191505092915050565b6000608082019050613523600083018761232f565b613530602083018661232f565b61353d60408301856120f9565b818103606083015261354f81846134d5565b905095945050505050565b60008151905061356981612163565b92915050565b6000602082840312156135855761358461212d565b5b60006135938482850161355a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135d26020836121fd565b91506135dd8261359c565b602082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061363e601c836121fd565b915061364982613608565b602082019050919050565b6000602082019050818103600083015261366d81613631565b905091905056fea26469706673582212206ff3035b48fc0ff59ceeb4aab87ea69f24f07d9f2675fb23bec786481e00282064736f6c63430008120033

Deployed Bytecode Sourcemap

54717:2368:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55052:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35748:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36676:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38188:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37706:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55019:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38888:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56404:157;;;:::i;:::-;;39294:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55137:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36386:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54801:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56152:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36117:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53826:103;;;;;;;;;;;;;:::i;:::-;;53178:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36845:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55109:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55320:614;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55942:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38431:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39550:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56569:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54890:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38657:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54084:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56050:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55052:50;55100:2;55052:50;:::o;35748:305::-;35850:4;35902:25;35887:40;;;:11;:40;;;;:105;;;;35959:33;35944:48;;;:11;:48;;;;35887:105;:158;;;;36009:36;36033:11;36009:23;:36::i;:::-;35887:158;35867:178;;35748:305;;;:::o;36676:100::-;36730:13;36763:5;36756:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36676:100;:::o;38188:171::-;38264:7;38284:23;38299:7;38284:14;:23::i;:::-;38327:15;:24;38343:7;38327:24;;;;;;;;;;;;;;;;;;;;;38320:31;;38188:171;;;:::o;37706:416::-;37787:13;37803:23;37818:7;37803:14;:23::i;:::-;37787:39;;37851:5;37845:11;;:2;:11;;;37837:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37945:5;37929:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37954:37;37971:5;37978:12;:10;:12::i;:::-;37954:16;:37::i;:::-;37929:62;37907:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38093:21;38102:2;38106:7;38093:8;:21::i;:::-;37776:346;37706:416;;:::o;55019:26::-;;;;:::o;38888:335::-;39083:41;39102:12;:10;:12::i;:::-;39116:7;39083:18;:41::i;:::-;39075:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39187:28;39197:4;39203:2;39207:7;39187:9;:28::i;:::-;38888:335;;;:::o;56404:157::-;53064:13;:11;:13::i;:::-;56463:7:::1;56484;:5;:7::i;:::-;56476:21;;56505;56476:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56462:69;;;56550:2;56542:11;;;::::0;::::1;;56451:110;56404:157::o:0;39294:185::-;39432:39;39449:4;39455:2;39459:7;39432:39;;;;;;;;;;;;:16;:39::i;:::-;39294:185;;;:::o;55137:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36386:223::-;36458:7;36478:13;36494:17;36503:7;36494:8;:17::i;:::-;36478:33;;36547:1;36530:19;;:5;:19;;;36522:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36596:5;36589:12;;;36386:223;;;:::o;54801:41::-;;;;:::o;56152:244::-;53064:13;:11;:13::i;:::-;56241:4:::1;56228:10;:17;56224:165;;;56274:4;56262:9;:16;;;;56224:165;;;56367:10;56355:9;:22;;;;56224:165;56152:244:::0;:::o;36117:207::-;36189:7;36234:1;36217:19;;:5;:19;;;36209:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36300:9;:16;36310:5;36300:16;;;;;;;;;;;;;;;;36293:23;;36117:207;;;:::o;53826:103::-;53064:13;:11;:13::i;:::-;53891:30:::1;53918:1;53891:18;:30::i;:::-;53826:103::o:0;53178:87::-;53224:7;53251:6;;;;;;;;;;;53244:13;;53178:87;:::o;36845:104::-;36901:13;36934:7;36927:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36845:104;:::o;55109:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55320:614::-;55384:22;55409:11;;55384:36;;55470:9;;55456:10;55439:14;:27;;;;:::i;:::-;:40;;55431:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;55100:2;55547:10;:35;;55539:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;55660:7;:5;:7::i;:::-;55646:21;;:10;:21;;;55642:118;;55718:9;55705;;55692:10;:22;;;;:::i;:::-;:35;;55684:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55642:118;55776:9;55788:1;55776:13;;55772:109;55796:10;55791:1;:15;55772:109;;55828:41;55838:10;55867:1;55850:14;:18;;;;:::i;:::-;55828:9;:41::i;:::-;55808:3;;;;:::i;:::-;;;55772:109;;;;55906:10;55891:11;;:25;;;;;;;:::i;:::-;;;;;;;;55371:563;55320:614;:::o;55942:100::-;53064:13;:11;:13::i;:::-;56026:8:::1;56016:7;:18;;;;;;:::i;:::-;;55942:100:::0;:::o;38431:155::-;38526:52;38545:12;:10;:12::i;:::-;38559:8;38569;38526:18;:52::i;:::-;38431:155;;:::o;39550:322::-;39724:41;39743:12;:10;:12::i;:::-;39757:7;39724:18;:41::i;:::-;39716:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39826:38;39840:4;39846:2;39850:7;39859:4;39826:13;:38::i;:::-;39550:322;;;;:::o;56569:396::-;56642:13;56676:16;56684:7;56676;:16::i;:::-;56668:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56758:28;56789:10;:8;:10::i;:::-;56758:41;;56848:1;56823:14;56817:28;:32;:140;;;;;;;;;;;;;;;;;56889:14;56905:18;:7;:16;:18::i;:::-;56925:12;56872:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56817:140;56810:147;;;56569:396;;;:::o;54890:21::-;;;;:::o;38657:164::-;38754:4;38778:18;:25;38797:5;38778:25;;;;;;;;;;;;;;;:35;38804:8;38778:35;;;;;;;;;;;;;;;;;;;;;;;;;38771:42;;38657:164;;;;:::o;54084:201::-;53064:13;:11;:13::i;:::-;54193:1:::1;54173:22;;:8;:22;;::::0;54165:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54249:28;54268:8;54249:18;:28::i;:::-;54084:201:::0;:::o;56050:94::-;53064:13;:11;:13::i;:::-;56130:6:::1;56118:9;:18;;;;56050:94:::0;:::o;27367:157::-;27452:4;27491:25;27476:40;;;:11;:40;;;;27469:47;;27367:157;;;:::o;48007:135::-;48089:16;48097:7;48089;:16::i;:::-;48081:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48007:135;:::o;34127:98::-;34180:7;34207:10;34200:17;;34127:98;:::o;47286:174::-;47388:2;47361:15;:24;47377:7;47361:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47444:7;47440:2;47406:46;;47415:23;47430:7;47415:14;:23::i;:::-;47406:46;;;;;;;;;;;;47286:174;;:::o;41905:264::-;41998:4;42015:13;42031:23;42046:7;42031:14;:23::i;:::-;42015:39;;42084:5;42073:16;;:7;:16;;;:52;;;;42093:32;42110:5;42117:7;42093:16;:32::i;:::-;42073:52;:87;;;;42153:7;42129:31;;:20;42141:7;42129:11;:20::i;:::-;:31;;;42073:87;42065:96;;;41905:264;;;;:::o;45904:1263::-;46063:4;46036:31;;:23;46051:7;46036:14;:23::i;:::-;:31;;;46028:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46142:1;46128:16;;:2;:16;;;46120:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46198:42;46219:4;46225:2;46229:7;46238:1;46198:20;:42::i;:::-;46370:4;46343:31;;:23;46358:7;46343:14;:23::i;:::-;:31;;;46335:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46488:15;:24;46504:7;46488:24;;;;;;;;;;;;46481:31;;;;;;;;;;;46983:1;46964:9;:15;46974:4;46964:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47016:1;46999:9;:13;47009:2;46999:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47058:2;47039:7;:16;47047:7;47039:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47097:7;47093:2;47078:27;;47087:4;47078:27;;;;;;;;;;;;47118:41;47138:4;47144:2;47148:7;47157:1;47118:19;:41::i;:::-;45904:1263;;;:::o;53343:132::-;53418:12;:10;:12::i;:::-;53407:23;;:7;:5;:7::i;:::-;:23;;;53399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53343:132::o;41180:117::-;41246:7;41273;:16;41281:7;41273:16;;;;;;;;;;;;;;;;;;;;;41266:23;;41180:117;;;:::o;54445:191::-;54519:16;54538:6;;;;;;;;;;;54519:25;;54564:8;54555:6;;:17;;;;;;;;;;;;;;;;;;54619:8;54588:40;;54609:8;54588:40;;;;;;;;;;;;54508:128;54445:191;:::o;42511:110::-;42587:26;42597:2;42601:7;42587:26;;;;;;;;;;;;:9;:26::i;:::-;42511:110;;:::o;47603:315::-;47758:8;47749:17;;:5;:17;;;47741:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47845:8;47807:18;:25;47826:5;47807:25;;;;;;;;;;;;;;;:35;47833:8;47807:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;47891:8;47869:41;;47884:5;47869:41;;;47901:8;47869:41;;;;;;:::i;:::-;;;;;;;;47603:315;;;:::o;40753:313::-;40909:28;40919:4;40925:2;40929:7;40909:9;:28::i;:::-;40956:47;40979:4;40985:2;40989:7;40998:4;40956:22;:47::i;:::-;40948:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40753:313;;;;:::o;41610:128::-;41675:4;41728:1;41699:31;;:17;41708:7;41699:8;:17::i;:::-;:31;;;;41692:38;;41610:128;;;:::o;56974:108::-;57034:13;57067:7;57060:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56974:108;:::o;13209:716::-;13265:13;13316:14;13353:1;13333:17;13344:5;13333:10;:17::i;:::-;:21;13316:38;;13369:20;13403:6;13392:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13369:41;;13425:11;13554:6;13550:2;13546:15;13538:6;13534:28;13527:35;;13591:288;13598:4;13591:288;;;13623:5;;;;;;;;13765:8;13760:2;13753:5;13749:14;13744:30;13739:3;13731:44;13821:2;13812:11;;;;;;:::i;:::-;;;;;13855:1;13846:5;:10;13591:288;13842:21;13591:288;13900:6;13893:13;;;;;13209:716;;;:::o;50291:159::-;;;;;:::o;51172:158::-;;;;;:::o;42848:319::-;42977:18;42983:2;42987:7;42977:5;:18::i;:::-;43028:53;43059:1;43063:2;43067:7;43076:4;43028:22;:53::i;:::-;43006:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42848:319;;;:::o;48706:853::-;48860:4;48881:15;:2;:13;;;:15::i;:::-;48877:675;;;48933:2;48917:36;;;48954:12;:10;:12::i;:::-;48968:4;48974:7;48983:4;48917:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48913:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49175:1;49158:6;:13;:18;49154:328;;49201:60;;;;;;;;;;:::i;:::-;;;;;;;;49154:328;49432:6;49426:13;49417:6;49413:2;49409:15;49402:38;48913:584;49049:41;;;49039:51;;;:6;:51;;;;49032:58;;;;;48877:675;49536:4;49529:11;;48706:853;;;;;;;:::o;10075:922::-;10128:7;10148:14;10165:1;10148:18;;10215:6;10206:5;:15;10202:102;;10251:6;10242:15;;;;;;:::i;:::-;;;;;10286:2;10276:12;;;;10202:102;10331:6;10322:5;:15;10318:102;;10367:6;10358:15;;;;;;:::i;:::-;;;;;10402:2;10392:12;;;;10318:102;10447:6;10438:5;:15;10434:102;;10483:6;10474:15;;;;;;:::i;:::-;;;;;10518:2;10508:12;;;;10434:102;10563:5;10554;:14;10550:99;;10598:5;10589:14;;;;;;:::i;:::-;;;;;10632:1;10622:11;;;;10550:99;10676:5;10667;:14;10663:99;;10711:5;10702:14;;;;;;:::i;:::-;;;;;10745:1;10735:11;;;;10663:99;10789:5;10780;:14;10776:99;;10824:5;10815:14;;;;;;:::i;:::-;;;;;10858:1;10848:11;;;;10776:99;10902:5;10893;:14;10889:66;;10938:1;10928:11;;;;10889:66;10983:6;10976:13;;;10075:922;;;:::o;43503:942::-;43597:1;43583:16;;:2;:16;;;43575:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43656:16;43664:7;43656;:16::i;:::-;43655:17;43647:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43718:48;43747:1;43751:2;43755:7;43764:1;43718:20;:48::i;:::-;43865:16;43873:7;43865;:16::i;:::-;43864:17;43856:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44280:1;44263:9;:13;44273:2;44263:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44324:2;44305:7;:16;44313:7;44305:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44369:7;44365:2;44344:33;;44361:1;44344:33;;;;;;;;;;;;44390:47;44418:1;44422:2;44426:7;44435:1;44390:19;:47::i;:::-;43503:942;;:::o;16336:326::-;16396:4;16653:1;16631:7;:19;;;:23;16624:30;;16336:326;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:220::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:3;12807:2;12799:6;12795:15;12788:28;12603:220;:::o;12829:366::-;12971:3;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12829:366;;;:::o;13201:419::-;13367:4;13405:2;13394:9;13390:18;13382:26;;13454:9;13448:4;13444:20;13440:1;13429:9;13425:17;13418:47;13482:131;13608:4;13482:131;:::i;:::-;13474:139;;13201:419;;;:::o;13626:248::-;13766:34;13762:1;13754:6;13750:14;13743:58;13835:31;13830:2;13822:6;13818:15;13811:56;13626:248;:::o;13880:366::-;14022:3;14043:67;14107:2;14102:3;14043:67;:::i;:::-;14036:74;;14119:93;14208:3;14119:93;:::i;:::-;14237:2;14232:3;14228:12;14221:19;;13880:366;;;:::o;14252:419::-;14418:4;14456:2;14445:9;14441:18;14433:26;;14505:9;14499:4;14495:20;14491:1;14480:9;14476:17;14469:47;14533:131;14659:4;14533:131;:::i;:::-;14525:139;;14252:419;;;:::o;14677:232::-;14817:34;14813:1;14805:6;14801:14;14794:58;14886:15;14881:2;14873:6;14869:15;14862:40;14677:232;:::o;14915:366::-;15057:3;15078:67;15142:2;15137:3;15078:67;:::i;:::-;15071:74;;15154:93;15243:3;15154:93;:::i;:::-;15272:2;15267:3;15263:12;15256:19;;14915:366;;;:::o;15287:419::-;15453:4;15491:2;15480:9;15476:18;15468:26;;15540:9;15534:4;15530:20;15526:1;15515:9;15511:17;15504:47;15568:131;15694:4;15568:131;:::i;:::-;15560:139;;15287:419;;;:::o;15712:147::-;15813:11;15850:3;15835:18;;15712:147;;;;:::o;15865:114::-;;:::o;15985:398::-;16144:3;16165:83;16246:1;16241:3;16165:83;:::i;:::-;16158:90;;16257:93;16346:3;16257:93;:::i;:::-;16375:1;16370:3;16366:11;16359:18;;15985:398;;;:::o;16389:379::-;16573:3;16595:147;16738:3;16595:147;:::i;:::-;16588:154;;16759:3;16752:10;;16389:379;;;:::o;16774:174::-;16914:26;16910:1;16902:6;16898:14;16891:50;16774:174;:::o;16954:366::-;17096:3;17117:67;17181:2;17176:3;17117:67;:::i;:::-;17110:74;;17193:93;17282:3;17193:93;:::i;:::-;17311:2;17306:3;17302:12;17295:19;;16954:366;;;:::o;17326:419::-;17492:4;17530:2;17519:9;17515:18;17507:26;;17579:9;17573:4;17569:20;17565:1;17554:9;17550:17;17543:47;17607:131;17733:4;17607:131;:::i;:::-;17599:139;;17326:419;;;:::o;17751:228::-;17891:34;17887:1;17879:6;17875:14;17868:58;17960:11;17955:2;17947:6;17943:15;17936:36;17751:228;:::o;17985:366::-;18127:3;18148:67;18212:2;18207:3;18148:67;:::i;:::-;18141:74;;18224:93;18313:3;18224:93;:::i;:::-;18342:2;18337:3;18333:12;18326:19;;17985:366;;;:::o;18357:419::-;18523:4;18561:2;18550:9;18546:18;18538:26;;18610:9;18604:4;18600:20;18596:1;18585:9;18581:17;18574:47;18638:131;18764:4;18638:131;:::i;:::-;18630:139;;18357:419;;;:::o;18782:180::-;18830:77;18827:1;18820:88;18927:4;18924:1;18917:15;18951:4;18948:1;18941:15;18968:191;19008:3;19027:20;19045:1;19027:20;:::i;:::-;19022:25;;19061:20;19079:1;19061:20;:::i;:::-;19056:25;;19104:1;19101;19097:9;19090:16;;19125:3;19122:1;19119:10;19116:36;;;19132:18;;:::i;:::-;19116:36;18968:191;;;;:::o;19165:229::-;19305:34;19301:1;19293:6;19289:14;19282:58;19374:12;19369:2;19361:6;19357:15;19350:37;19165:229;:::o;19400:366::-;19542:3;19563:67;19627:2;19622:3;19563:67;:::i;:::-;19556:74;;19639:93;19728:3;19639:93;:::i;:::-;19757:2;19752:3;19748:12;19741:19;;19400:366;;;:::o;19772:419::-;19938:4;19976:2;19965:9;19961:18;19953:26;;20025:9;20019:4;20015:20;20011:1;20000:9;19996:17;19989:47;20053:131;20179:4;20053:131;:::i;:::-;20045:139;;19772:419;;;:::o;20197:221::-;20337:34;20333:1;20325:6;20321:14;20314:58;20406:4;20401:2;20393:6;20389:15;20382:29;20197:221;:::o;20424:366::-;20566:3;20587:67;20651:2;20646:3;20587:67;:::i;:::-;20580:74;;20663:93;20752:3;20663:93;:::i;:::-;20781:2;20776:3;20772:12;20765:19;;20424:366;;;:::o;20796:419::-;20962:4;21000:2;20989:9;20985:18;20977:26;;21049:9;21043:4;21039:20;21035:1;21024:9;21020:17;21013:47;21077:131;21203:4;21077:131;:::i;:::-;21069:139;;20796:419;;;:::o;21221:410::-;21261:7;21284:20;21302:1;21284:20;:::i;:::-;21279:25;;21318:20;21336:1;21318:20;:::i;:::-;21313:25;;21373:1;21370;21366:9;21395:30;21413:11;21395:30;:::i;:::-;21384:41;;21574:1;21565:7;21561:15;21558:1;21555:22;21535:1;21528:9;21508:83;21485:139;;21604:18;;:::i;:::-;21485:139;21269:362;21221:410;;;;:::o;21637:166::-;21777:18;21773:1;21765:6;21761:14;21754:42;21637:166;:::o;21809:366::-;21951:3;21972:67;22036:2;22031:3;21972:67;:::i;:::-;21965:74;;22048:93;22137:3;22048:93;:::i;:::-;22166:2;22161:3;22157:12;22150:19;;21809:366;;;:::o;22181:419::-;22347:4;22385:2;22374:9;22370:18;22362:26;;22434:9;22428:4;22424:20;22420:1;22409:9;22405:17;22398:47;22462:131;22588:4;22462:131;:::i;:::-;22454:139;;22181:419;;;:::o;22606:233::-;22645:3;22668:24;22686:5;22668:24;:::i;:::-;22659:33;;22714:66;22707:5;22704:77;22701:103;;22784:18;;:::i;:::-;22701:103;22831:1;22824:5;22820:13;22813:20;;22606:233;;;:::o;22845:141::-;22894:4;22917:3;22909:11;;22940:3;22937:1;22930:14;22974:4;22971:1;22961:18;22953:26;;22845:141;;;:::o;22992:93::-;23029:6;23076:2;23071;23064:5;23060:14;23056:23;23046:33;;22992:93;;;:::o;23091:107::-;23135:8;23185:5;23179:4;23175:16;23154:37;;23091:107;;;;:::o;23204:393::-;23273:6;23323:1;23311:10;23307:18;23346:97;23376:66;23365:9;23346:97;:::i;:::-;23464:39;23494:8;23483:9;23464:39;:::i;:::-;23452:51;;23536:4;23532:9;23525:5;23521:21;23512:30;;23585:4;23575:8;23571:19;23564:5;23561:30;23551:40;;23280:317;;23204:393;;;;;:::o;23603:60::-;23631:3;23652:5;23645:12;;23603:60;;;:::o;23669:142::-;23719:9;23752:53;23770:34;23779:24;23797:5;23779:24;:::i;:::-;23770:34;:::i;:::-;23752:53;:::i;:::-;23739:66;;23669:142;;;:::o;23817:75::-;23860:3;23881:5;23874:12;;23817:75;;;:::o;23898:269::-;24008:39;24039:7;24008:39;:::i;:::-;24069:91;24118:41;24142:16;24118:41;:::i;:::-;24110:6;24103:4;24097:11;24069:91;:::i;:::-;24063:4;24056:105;23974:193;23898:269;;;:::o;24173:73::-;24218:3;24173:73;:::o;24252:189::-;24329:32;;:::i;:::-;24370:65;24428:6;24420;24414:4;24370:65;:::i;:::-;24305:136;24252:189;;:::o;24447:186::-;24507:120;24524:3;24517:5;24514:14;24507:120;;;24578:39;24615:1;24608:5;24578:39;:::i;:::-;24551:1;24544:5;24540:13;24531:22;;24507:120;;;24447:186;;:::o;24639:543::-;24740:2;24735:3;24732:11;24729:446;;;24774:38;24806:5;24774:38;:::i;:::-;24858:29;24876:10;24858:29;:::i;:::-;24848:8;24844:44;25041:2;25029:10;25026:18;25023:49;;;25062:8;25047:23;;25023:49;25085:80;25141:22;25159:3;25141:22;:::i;:::-;25131:8;25127:37;25114:11;25085:80;:::i;:::-;24744:431;;24729:446;24639:543;;;:::o;25188:117::-;25242:8;25292:5;25286:4;25282:16;25261:37;;25188:117;;;;:::o;25311:169::-;25355:6;25388:51;25436:1;25432:6;25424:5;25421:1;25417:13;25388:51;:::i;:::-;25384:56;25469:4;25463;25459:15;25449:25;;25362:118;25311:169;;;;:::o;25485:295::-;25561:4;25707:29;25732:3;25726:4;25707:29;:::i;:::-;25699:37;;25769:3;25766:1;25762:11;25756:4;25753:21;25745:29;;25485:295;;;;:::o;25785:1395::-;25902:37;25935:3;25902:37;:::i;:::-;26004:18;25996:6;25993:30;25990:56;;;26026:18;;:::i;:::-;25990:56;26070:38;26102:4;26096:11;26070:38;:::i;:::-;26155:67;26215:6;26207;26201:4;26155:67;:::i;:::-;26249:1;26273:4;26260:17;;26305:2;26297:6;26294:14;26322:1;26317:618;;;;26979:1;26996:6;26993:77;;;27045:9;27040:3;27036:19;27030:26;27021:35;;26993:77;27096:67;27156:6;27149:5;27096:67;:::i;:::-;27090:4;27083:81;26952:222;26287:887;;26317:618;26369:4;26365:9;26357:6;26353:22;26403:37;26435:4;26403:37;:::i;:::-;26462:1;26476:208;26490:7;26487:1;26484:14;26476:208;;;26569:9;26564:3;26560:19;26554:26;26546:6;26539:42;26620:1;26612:6;26608:14;26598:24;;26667:2;26656:9;26652:18;26639:31;;26513:4;26510:1;26506:12;26501:17;;26476:208;;;26712:6;26703:7;26700:19;26697:179;;;26770:9;26765:3;26761:19;26755:26;26813:48;26855:4;26847:6;26843:17;26832:9;26813:48;:::i;:::-;26805:6;26798:64;26720:156;26697:179;26922:1;26918;26910:6;26906:14;26902:22;26896:4;26889:36;26324:611;;;26287:887;;25877:1303;;;25785:1395;;:::o;27186:234::-;27326:34;27322:1;27314:6;27310:14;27303:58;27395:17;27390:2;27382:6;27378:15;27371:42;27186:234;:::o;27426:366::-;27568:3;27589:67;27653:2;27648:3;27589:67;:::i;:::-;27582:74;;27665:93;27754:3;27665:93;:::i;:::-;27783:2;27778:3;27774:12;27767:19;;27426:366;;;:::o;27798:419::-;27964:4;28002:2;27991:9;27987:18;27979:26;;28051:9;28045:4;28041:20;28037:1;28026:9;28022:17;28015:47;28079:131;28205:4;28079:131;:::i;:::-;28071:139;;27798:419;;;:::o;28223:148::-;28325:11;28362:3;28347:18;;28223:148;;;;:::o;28377:390::-;28483:3;28511:39;28544:5;28511:39;:::i;:::-;28566:89;28648:6;28643:3;28566:89;:::i;:::-;28559:96;;28664:65;28722:6;28717:3;28710:4;28703:5;28699:16;28664:65;:::i;:::-;28754:6;28749:3;28745:16;28738:23;;28487:280;28377:390;;;;:::o;28797:874::-;28900:3;28937:5;28931:12;28966:36;28992:9;28966:36;:::i;:::-;29018:89;29100:6;29095:3;29018:89;:::i;:::-;29011:96;;29138:1;29127:9;29123:17;29154:1;29149:166;;;;29329:1;29324:341;;;;29116:549;;29149:166;29233:4;29229:9;29218;29214:25;29209:3;29202:38;29295:6;29288:14;29281:22;29273:6;29269:35;29264:3;29260:45;29253:52;;29149:166;;29324:341;29391:38;29423:5;29391:38;:::i;:::-;29451:1;29465:154;29479:6;29476:1;29473:13;29465:154;;;29553:7;29547:14;29543:1;29538:3;29534:11;29527:35;29603:1;29594:7;29590:15;29579:26;;29501:4;29498:1;29494:12;29489:17;;29465:154;;;29648:6;29643:3;29639:16;29632:23;;29331:334;;29116:549;;28904:767;;28797:874;;;;:::o;29677:589::-;29902:3;29924:95;30015:3;30006:6;29924:95;:::i;:::-;29917:102;;30036:95;30127:3;30118:6;30036:95;:::i;:::-;30029:102;;30148:92;30236:3;30227:6;30148:92;:::i;:::-;30141:99;;30257:3;30250:10;;29677:589;;;;;;:::o;30272:225::-;30412:34;30408:1;30400:6;30396:14;30389:58;30481:8;30476:2;30468:6;30464:15;30457:33;30272:225;:::o;30503:366::-;30645:3;30666:67;30730:2;30725:3;30666:67;:::i;:::-;30659:74;;30742:93;30831:3;30742:93;:::i;:::-;30860:2;30855:3;30851:12;30844:19;;30503:366;;;:::o;30875:419::-;31041:4;31079:2;31068:9;31064:18;31056:26;;31128:9;31122:4;31118:20;31114:1;31103:9;31099:17;31092:47;31156:131;31282:4;31156:131;:::i;:::-;31148:139;;30875:419;;;:::o;31300:224::-;31440:34;31436:1;31428:6;31424:14;31417:58;31509:7;31504:2;31496:6;31492:15;31485:32;31300:224;:::o;31530:366::-;31672:3;31693:67;31757:2;31752:3;31693:67;:::i;:::-;31686:74;;31769:93;31858:3;31769:93;:::i;:::-;31887:2;31882:3;31878:12;31871:19;;31530:366;;;:::o;31902:419::-;32068:4;32106:2;32095:9;32091:18;32083:26;;32155:9;32149:4;32145:20;32141:1;32130:9;32126:17;32119:47;32183:131;32309:4;32183:131;:::i;:::-;32175:139;;31902:419;;;:::o;32327:223::-;32467:34;32463:1;32455:6;32451:14;32444:58;32536:6;32531:2;32523:6;32519:15;32512:31;32327:223;:::o;32556:366::-;32698:3;32719:67;32783:2;32778:3;32719:67;:::i;:::-;32712:74;;32795:93;32884:3;32795:93;:::i;:::-;32913:2;32908:3;32904:12;32897:19;;32556:366;;;:::o;32928:419::-;33094:4;33132:2;33121:9;33117:18;33109:26;;33181:9;33175:4;33171:20;33167:1;33156:9;33152:17;33145:47;33209:131;33335:4;33209:131;:::i;:::-;33201:139;;32928:419;;;:::o;33353:182::-;33493:34;33489:1;33481:6;33477:14;33470:58;33353:182;:::o;33541:366::-;33683:3;33704:67;33768:2;33763:3;33704:67;:::i;:::-;33697:74;;33780:93;33869:3;33780:93;:::i;:::-;33898:2;33893:3;33889:12;33882:19;;33541:366;;;:::o;33913:419::-;34079:4;34117:2;34106:9;34102:18;34094:26;;34166:9;34160:4;34156:20;34152:1;34141:9;34137:17;34130:47;34194:131;34320:4;34194:131;:::i;:::-;34186:139;;33913:419;;;:::o;34338:175::-;34478:27;34474:1;34466:6;34462:14;34455:51;34338:175;:::o;34519:366::-;34661:3;34682:67;34746:2;34741:3;34682:67;:::i;:::-;34675:74;;34758:93;34847:3;34758:93;:::i;:::-;34876:2;34871:3;34867:12;34860:19;;34519:366;;;:::o;34891:419::-;35057:4;35095:2;35084:9;35080:18;35072:26;;35144:9;35138:4;35134:20;35130:1;35119:9;35115:17;35108:47;35172:131;35298:4;35172:131;:::i;:::-;35164:139;;34891:419;;;:::o;35316:237::-;35456:34;35452:1;35444:6;35440:14;35433:58;35525:20;35520:2;35512:6;35508:15;35501:45;35316:237;:::o;35559:366::-;35701:3;35722:67;35786:2;35781:3;35722:67;:::i;:::-;35715:74;;35798:93;35887:3;35798:93;:::i;:::-;35916:2;35911:3;35907:12;35900:19;;35559:366;;;:::o;35931:419::-;36097:4;36135:2;36124:9;36120:18;36112:26;;36184:9;36178:4;36174:20;36170:1;36159:9;36155:17;36148:47;36212:131;36338:4;36212:131;:::i;:::-;36204:139;;35931:419;;;:::o;36356:180::-;36404:77;36401:1;36394:88;36501:4;36498:1;36491:15;36525:4;36522:1;36515:15;36542:98;36593:6;36627:5;36621:12;36611:22;;36542:98;;;:::o;36646:168::-;36729:11;36763:6;36758:3;36751:19;36803:4;36798:3;36794:14;36779:29;;36646:168;;;;:::o;36820:373::-;36906:3;36934:38;36966:5;36934:38;:::i;:::-;36988:70;37051:6;37046:3;36988:70;:::i;:::-;36981:77;;37067:65;37125:6;37120:3;37113:4;37106:5;37102:16;37067:65;:::i;:::-;37157:29;37179:6;37157:29;:::i;:::-;37152:3;37148:39;37141:46;;36910:283;36820:373;;;;:::o;37199:640::-;37394:4;37432:3;37421:9;37417:19;37409:27;;37446:71;37514:1;37503:9;37499:17;37490:6;37446:71;:::i;:::-;37527:72;37595:2;37584:9;37580:18;37571:6;37527:72;:::i;:::-;37609;37677:2;37666:9;37662:18;37653:6;37609:72;:::i;:::-;37728:9;37722:4;37718:20;37713:2;37702:9;37698:18;37691:48;37756:76;37827:4;37818:6;37756:76;:::i;:::-;37748:84;;37199:640;;;;;;;:::o;37845:141::-;37901:5;37932:6;37926:13;37917:22;;37948:32;37974:5;37948:32;:::i;:::-;37845:141;;;;:::o;37992:349::-;38061:6;38110:2;38098:9;38089:7;38085:23;38081:32;38078:119;;;38116:79;;:::i;:::-;38078:119;38236:1;38261:63;38316:7;38307:6;38296:9;38292:22;38261:63;:::i;:::-;38251:73;;38207:127;37992:349;;;;:::o;38347:182::-;38487:34;38483:1;38475:6;38471:14;38464:58;38347:182;:::o;38535:366::-;38677:3;38698:67;38762:2;38757:3;38698:67;:::i;:::-;38691:74;;38774:93;38863:3;38774:93;:::i;:::-;38892:2;38887:3;38883:12;38876:19;;38535:366;;;:::o;38907:419::-;39073:4;39111:2;39100:9;39096:18;39088:26;;39160:9;39154:4;39150:20;39146:1;39135:9;39131:17;39124:47;39188:131;39314:4;39188:131;:::i;:::-;39180:139;;38907:419;;;:::o;39332:178::-;39472:30;39468:1;39460:6;39456:14;39449:54;39332:178;:::o;39516:366::-;39658:3;39679:67;39743:2;39738:3;39679:67;:::i;:::-;39672:74;;39755:93;39844:3;39755:93;:::i;:::-;39873:2;39868:3;39864:12;39857:19;;39516:366;;;:::o;39888:419::-;40054:4;40092:2;40081:9;40077:18;40069:26;;40141:9;40135:4;40131:20;40127:1;40116:9;40112:17;40105:47;40169:131;40295:4;40169:131;:::i;:::-;40161:139;;39888:419;;;:::o

Swarm Source

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