ETH Price: $2,220.42 (+1.98%)

Token

Kamp Kilmer 15 Minutes Air Drop (KKFMAD)
 

Overview

Max Total Supply

85 KKFMAD

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yperspace.eth
Balance
8 KKFMAD
0xd0bf855de1bbc5c4eb340581ff36c2cb06d212c8
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:
KampKilmer15MinDrop

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/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.0) (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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

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

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



pragma solidity ^0.8.11;









  contract KampKilmer15MinDrop is Ownable, ERC721 {
    
        
    
    uint public maxSupply = 300;
    
    string internal baseTokenURI = "https://kamploveheals.mypinata.cloud/ipfs/QmUNsxQdEozEnqZUogc9j1VeaqEyFoantTkZbxkm7YdpiT/";
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;
 
  
   constructor(
   
  ) ERC721("Kamp Kilmer 15 Minutes Air Drop", "KKFMAD") {
   
  }

  
  function fmDrop(address _to, uint _amount) external onlyOwner {
         require(_tokenId.current() + _amount <= maxSupply, "Max public supply exceeded");
           for (uint i = 0; i < _amount; i++) {
        _tokenId.increment();
          _safeMint(_to, _tokenId.current());
           }
    }
   
    //Supply
     function totalSupply() public view returns(uint) {
     return _tokenId.current();
   }

    //TOKEN LOCATION
   

   function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
   

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

    



  
  }

Contract Security Audit

Contract ABI

API
[{"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"fmDrop","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","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":"_uri","type":"string"}],"name":"setBaseTokenURI","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"}]

608060405261012c600755604051806080016040528060598152602001620034ef605991396008908162000034919062000441565b503480156200004257600080fd5b506040518060400160405280601f81526020017f4b616d70204b696c6d6572203135204d696e75746573204169722044726f70008152506040518060400160405280600681526020017f4b4b464d41440000000000000000000000000000000000000000000000000000815250620000cf620000c3620000fb60201b60201c565b6200010360201b60201c565b8160019081620000e0919062000441565b508060029081620000f2919062000441565b50505062000528565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024957607f821691505b6020821081036200025f576200025e62000201565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200028a565b620002d586836200028a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003226200031c6200031684620002ed565b620002f7565b620002ed565b9050919050565b6000819050919050565b6200033e8362000301565b620003566200034d8262000329565b84845462000297565b825550505050565b600090565b6200036d6200035e565b6200037a81848462000333565b505050565b5b81811015620003a2576200039660008262000363565b60018101905062000380565b5050565b601f821115620003f157620003bb8162000265565b620003c6846200027a565b81016020851015620003d6578190505b620003ee620003e5856200027a565b8301826200037f565b50505b505050565b600082821c905092915050565b60006200041660001984600802620003f6565b1980831691505092915050565b600062000431838362000403565b9150826002028217905092915050565b6200044c82620001c7565b67ffffffffffffffff811115620004685762000467620001d2565b5b62000474825462000230565b62000481828285620003a6565b600060209050601f831160018114620004b95760008415620004a4578287015190505b620004b0858262000423565b86555062000520565b601f198416620004c98662000265565b60005b82811015620004f357848901518255600182019150602085019450602081019050620004cc565b868310156200051357848901516200050f601f89168262000403565b8355505b6001600288020188555050505b505050505050565b612fb780620005386000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde1461031b578063c87b56dd14610337578063d5abeb0114610367578063e985e9c514610385578063f2fde38b146103b55761012c565b806370a0823114610289578063715018a6146102b95780638da5cb5b146102c357806395d89b41146102e1578063a22cb465146102ff5761012c565b806323b872dd116100f457806323b872dd146101e957806330176e131461020557806342842e0e146102215780636352211e1461023d57806369a85e181461026d5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190611d36565b6103d1565b6040516101589190611d7e565b60405180910390f35b6101696104b3565b6040516101769190611e29565b60405180910390f35b61019960048036038101906101949190611e81565b610545565b6040516101a69190611eef565b60405180910390f35b6101c960048036038101906101c49190611f36565b61058b565b005b6101d36106a2565b6040516101e09190611f85565b60405180910390f35b61020360048036038101906101fe9190611fa0565b6106b3565b005b61021f600480360381019061021a9190612058565b610713565b005b61023b60048036038101906102369190611fa0565b610731565b005b61025760048036038101906102529190611e81565b610751565b6040516102649190611eef565b60405180910390f35b61028760048036038101906102829190611f36565b6107d7565b005b6102a3600480360381019061029e91906120a5565b610878565b6040516102b09190611f85565b60405180910390f35b6102c161092f565b005b6102cb610943565b6040516102d89190611eef565b60405180910390f35b6102e961096c565b6040516102f69190611e29565b60405180910390f35b610319600480360381019061031491906120fe565b6109fe565b005b6103356004803603810190610330919061226e565b610a14565b005b610351600480360381019061034c9190611e81565b610a76565b60405161035e9190611e29565b60405180910390f35b61036f610ade565b60405161037c9190611f85565b60405180910390f35b61039f600480360381019061039a91906122f1565b610ae4565b6040516103ac9190611d7e565b60405180910390f35b6103cf60048036038101906103ca91906120a5565b610b78565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ac57506104ab82610bfb565b5b9050919050565b6060600180546104c290612360565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90612360565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b600061055082610c65565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061059682610751565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fd90612403565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610625610cb0565b73ffffffffffffffffffffffffffffffffffffffff16148061065457506106538161064e610cb0565b610ae4565b5b610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90612495565b60405180910390fd5b61069d8383610cb8565b505050565b60006106ae6009610d71565b905090565b6106c46106be610cb0565b82610d7f565b610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90612527565b60405180910390fd5b61070e838383610e14565b505050565b61071b61110d565b81816008918261072c9291906126fe565b505050565b61074c83838360405180602001604052806000815250610a14565b505050565b60008061075d8361118b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c59061281a565b60405180910390fd5b80915050919050565b6107df61110d565b600754816107ed6009610d71565b6107f79190612869565b1115610838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f906128e9565b60405180910390fd5b60005b818110156108735761084d60096111c8565b6108608361085b6009610d71565b6111de565b808061086b90612909565b91505061083b565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906129c3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093761110d565b61094160006111fc565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461097b90612360565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790612360565b80156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b610a10610a09610cb0565b83836112c0565b5050565b610a25610a1f610cb0565b83610d7f565b610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90612527565b60405180910390fd5b610a708484848461142c565b50505050565b6060610a8182610c65565b6000610a8b611488565b90506000815111610aab5760405180602001604052806000815250610ad6565b80610ab58461151a565b604051602001610ac6929190612a1f565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b8061110d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612ab5565b60405180910390fd5b610bf8816111fc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c6e816115e8565b610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca49061281a565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610d2b83610751565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080610d8b83610751565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dcd5750610dcc8185610ae4565b5b80610e0b57508373ffffffffffffffffffffffffffffffffffffffff16610df384610545565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e3482610751565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190612b47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090612bd9565b60405180910390fd5b610f068383836001611629565b8273ffffffffffffffffffffffffffffffffffffffff16610f2682610751565b73ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390612b47565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611108838383600161174f565b505050565b611115610cb0565b73ffffffffffffffffffffffffffffffffffffffff16611133610943565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612c45565b60405180910390fd5b565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6001816000016000828254019250508190555050565b6111f8828260405180602001604052806000815250611755565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590612cb1565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141f9190611d7e565b60405180910390a3505050565b611437848484610e14565b611443848484846117b0565b611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990612d43565b60405180910390fd5b50505050565b60606008805461149790612360565b80601f01602080910402602001604051908101604052809291908181526020018280546114c390612360565b80156115105780601f106114e557610100808354040283529160200191611510565b820191906000526020600020905b8154815290600101906020018083116114f357829003601f168201915b5050505050905090565b60606000600161152984611937565b01905060008167ffffffffffffffff81111561154857611547612143565b5b6040519080825280601f01601f19166020018201604052801561157a5781602001600182028036833780820191505090505b509050600082602001820190505b6001156115dd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816115d1576115d0612d63565b5b04945060008503611588575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661160a8361118b565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600181111561174957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116bd5780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b59190612d92565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146117485780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117409190612869565b925050819055505b5b50505050565b50505050565b61175f8383611a8a565b61176c60008484846117b0565b6117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290612d43565b60405180910390fd5b505050565b60006117d18473ffffffffffffffffffffffffffffffffffffffff16611ca7565b1561192a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117fa610cb0565b8786866040518563ffffffff1660e01b815260040161181c9493929190612e1b565b6020604051808303816000875af192505050801561185857506040513d601f19601f820116820180604052508101906118559190612e7c565b60015b6118da573d8060008114611888576040519150601f19603f3d011682016040523d82523d6000602084013e61188d565b606091505b5060008151036118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990612d43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061192f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611995577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161198b5761198a612d63565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106119d2576d04ee2d6d415b85acef810000000083816119c8576119c7612d63565b5b0492506020810190505b662386f26fc100008310611a0157662386f26fc1000083816119f7576119f6612d63565b5b0492506010810190505b6305f5e1008310611a2a576305f5e1008381611a2057611a1f612d63565b5b0492506008810190505b6127108310611a4f576127108381611a4557611a44612d63565b5b0492506004810190505b60648310611a725760648381611a6857611a67612d63565b5b0492506002810190505b600a8310611a81576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090612ef5565b60405180910390fd5b611b02816115e8565b15611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990612f61565b60405180910390fd5b611b50600083836001611629565b611b59816115e8565b15611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090612f61565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ca360008383600161174f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d1381611cde565b8114611d1e57600080fd5b50565b600081359050611d3081611d0a565b92915050565b600060208284031215611d4c57611d4b611cd4565b5b6000611d5a84828501611d21565b91505092915050565b60008115159050919050565b611d7881611d63565b82525050565b6000602082019050611d936000830184611d6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611dd3578082015181840152602081019050611db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dfb82611d99565b611e058185611da4565b9350611e15818560208601611db5565b611e1e81611ddf565b840191505092915050565b60006020820190508181036000830152611e438184611df0565b905092915050565b6000819050919050565b611e5e81611e4b565b8114611e6957600080fd5b50565b600081359050611e7b81611e55565b92915050565b600060208284031215611e9757611e96611cd4565b5b6000611ea584828501611e6c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ed982611eae565b9050919050565b611ee981611ece565b82525050565b6000602082019050611f046000830184611ee0565b92915050565b611f1381611ece565b8114611f1e57600080fd5b50565b600081359050611f3081611f0a565b92915050565b60008060408385031215611f4d57611f4c611cd4565b5b6000611f5b85828601611f21565b9250506020611f6c85828601611e6c565b9150509250929050565b611f7f81611e4b565b82525050565b6000602082019050611f9a6000830184611f76565b92915050565b600080600060608486031215611fb957611fb8611cd4565b5b6000611fc786828701611f21565b9350506020611fd886828701611f21565b9250506040611fe986828701611e6c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261201857612017611ff3565b5b8235905067ffffffffffffffff81111561203557612034611ff8565b5b60208301915083600182028301111561205157612050611ffd565b5b9250929050565b6000806020838503121561206f5761206e611cd4565b5b600083013567ffffffffffffffff81111561208d5761208c611cd9565b5b61209985828601612002565b92509250509250929050565b6000602082840312156120bb576120ba611cd4565b5b60006120c984828501611f21565b91505092915050565b6120db81611d63565b81146120e657600080fd5b50565b6000813590506120f8816120d2565b92915050565b6000806040838503121561211557612114611cd4565b5b600061212385828601611f21565b9250506020612134858286016120e9565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61217b82611ddf565b810181811067ffffffffffffffff8211171561219a57612199612143565b5b80604052505050565b60006121ad611cca565b90506121b98282612172565b919050565b600067ffffffffffffffff8211156121d9576121d8612143565b5b6121e282611ddf565b9050602081019050919050565b82818337600083830152505050565b600061221161220c846121be565b6121a3565b90508281526020810184848401111561222d5761222c61213e565b5b6122388482856121ef565b509392505050565b600082601f83011261225557612254611ff3565b5b81356122658482602086016121fe565b91505092915050565b6000806000806080858703121561228857612287611cd4565b5b600061229687828801611f21565b94505060206122a787828801611f21565b93505060406122b887828801611e6c565b925050606085013567ffffffffffffffff8111156122d9576122d8611cd9565b5b6122e587828801612240565b91505092959194509250565b6000806040838503121561230857612307611cd4565b5b600061231685828601611f21565b925050602061232785828601611f21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061237857607f821691505b60208210810361238b5761238a612331565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006123ed602183611da4565b91506123f882612391565b604082019050919050565b6000602082019050818103600083015261241c816123e0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061247f603d83611da4565b915061248a82612423565b604082019050919050565b600060208201905081810360008301526124ae81612472565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612511602d83611da4565b915061251c826124b5565b604082019050919050565b6000602082019050818103600083015261254081612504565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612577565b6125be8683612577565b95508019841693508086168417925050509392505050565b6000819050919050565b60006125fb6125f66125f184611e4b565b6125d6565b611e4b565b9050919050565b6000819050919050565b612615836125e0565b61262961262182612602565b848454612584565b825550505050565b600090565b61263e612631565b61264981848461260c565b505050565b5b8181101561266d57612662600082612636565b60018101905061264f565b5050565b601f8211156126b25761268381612552565b61268c84612567565b8101602085101561269b578190505b6126af6126a785612567565b83018261264e565b50505b505050565b600082821c905092915050565b60006126d5600019846008026126b7565b1980831691505092915050565b60006126ee83836126c4565b9150826002028217905092915050565b6127088383612547565b67ffffffffffffffff81111561272157612720612143565b5b61272b8254612360565b612736828285612671565b6000601f8311600181146127655760008415612753578287013590505b61275d85826126e2565b8655506127c5565b601f19841661277386612552565b60005b8281101561279b57848901358255600182019150602085019450602081019050612776565b868310156127b857848901356127b4601f8916826126c4565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612804601883611da4565b915061280f826127ce565b602082019050919050565b60006020820190508181036000830152612833816127f7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061287482611e4b565b915061287f83611e4b565b92508282019050808211156128975761289661283a565b5b92915050565b7f4d6178207075626c696320737570706c79206578636565646564000000000000600082015250565b60006128d3601a83611da4565b91506128de8261289d565b602082019050919050565b60006020820190508181036000830152612902816128c6565b9050919050565b600061291482611e4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129465761294561283a565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006129ad602983611da4565b91506129b882612951565b604082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b600081905092915050565b60006129f982611d99565b612a0381856129e3565b9350612a13818560208601611db5565b80840191505092915050565b6000612a2b82856129ee565b9150612a3782846129ee565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a9f602683611da4565b9150612aaa82612a43565b604082019050919050565b60006020820190508181036000830152612ace81612a92565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612b31602583611da4565b9150612b3c82612ad5565b604082019050919050565b60006020820190508181036000830152612b6081612b24565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612bc3602483611da4565b9150612bce82612b67565b604082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2f602083611da4565b9150612c3a82612bf9565b602082019050919050565b60006020820190508181036000830152612c5e81612c22565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612c9b601983611da4565b9150612ca682612c65565b602082019050919050565b60006020820190508181036000830152612cca81612c8e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612d2d603283611da4565b9150612d3882612cd1565b604082019050919050565b60006020820190508181036000830152612d5c81612d20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d9d82611e4b565b9150612da883611e4b565b9250828203905081811115612dc057612dbf61283a565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612ded82612dc6565b612df78185612dd1565b9350612e07818560208601611db5565b612e1081611ddf565b840191505092915050565b6000608082019050612e306000830187611ee0565b612e3d6020830186611ee0565b612e4a6040830185611f76565b8181036060830152612e5c8184612de2565b905095945050505050565b600081519050612e7681611d0a565b92915050565b600060208284031215612e9257612e91611cd4565b5b6000612ea084828501612e67565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612edf602083611da4565b9150612eea82612ea9565b602082019050919050565b60006020820190508181036000830152612f0e81612ed2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612f4b601c83611da4565b9150612f5682612f15565b602082019050919050565b60006020820190508181036000830152612f7a81612f3e565b905091905056fea26469706673582212209b11cb189931ef631f2f0ef3cc669c405d0fe231dbb2437b2f560b7dafc9213a64736f6c6343000811003368747470733a2f2f6b616d706c6f76656865616c732e6d7970696e6174612e636c6f75642f697066732f516d554e73785164456f7a456e715a556f6763396a31566561714579466f616e74546b5a62786b6d3759647069542f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde1461031b578063c87b56dd14610337578063d5abeb0114610367578063e985e9c514610385578063f2fde38b146103b55761012c565b806370a0823114610289578063715018a6146102b95780638da5cb5b146102c357806395d89b41146102e1578063a22cb465146102ff5761012c565b806323b872dd116100f457806323b872dd146101e957806330176e131461020557806342842e0e146102215780636352211e1461023d57806369a85e181461026d5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190611d36565b6103d1565b6040516101589190611d7e565b60405180910390f35b6101696104b3565b6040516101769190611e29565b60405180910390f35b61019960048036038101906101949190611e81565b610545565b6040516101a69190611eef565b60405180910390f35b6101c960048036038101906101c49190611f36565b61058b565b005b6101d36106a2565b6040516101e09190611f85565b60405180910390f35b61020360048036038101906101fe9190611fa0565b6106b3565b005b61021f600480360381019061021a9190612058565b610713565b005b61023b60048036038101906102369190611fa0565b610731565b005b61025760048036038101906102529190611e81565b610751565b6040516102649190611eef565b60405180910390f35b61028760048036038101906102829190611f36565b6107d7565b005b6102a3600480360381019061029e91906120a5565b610878565b6040516102b09190611f85565b60405180910390f35b6102c161092f565b005b6102cb610943565b6040516102d89190611eef565b60405180910390f35b6102e961096c565b6040516102f69190611e29565b60405180910390f35b610319600480360381019061031491906120fe565b6109fe565b005b6103356004803603810190610330919061226e565b610a14565b005b610351600480360381019061034c9190611e81565b610a76565b60405161035e9190611e29565b60405180910390f35b61036f610ade565b60405161037c9190611f85565b60405180910390f35b61039f600480360381019061039a91906122f1565b610ae4565b6040516103ac9190611d7e565b60405180910390f35b6103cf60048036038101906103ca91906120a5565b610b78565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ac57506104ab82610bfb565b5b9050919050565b6060600180546104c290612360565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90612360565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b600061055082610c65565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061059682610751565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fd90612403565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610625610cb0565b73ffffffffffffffffffffffffffffffffffffffff16148061065457506106538161064e610cb0565b610ae4565b5b610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90612495565b60405180910390fd5b61069d8383610cb8565b505050565b60006106ae6009610d71565b905090565b6106c46106be610cb0565b82610d7f565b610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90612527565b60405180910390fd5b61070e838383610e14565b505050565b61071b61110d565b81816008918261072c9291906126fe565b505050565b61074c83838360405180602001604052806000815250610a14565b505050565b60008061075d8361118b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c59061281a565b60405180910390fd5b80915050919050565b6107df61110d565b600754816107ed6009610d71565b6107f79190612869565b1115610838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f906128e9565b60405180910390fd5b60005b818110156108735761084d60096111c8565b6108608361085b6009610d71565b6111de565b808061086b90612909565b91505061083b565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906129c3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093761110d565b61094160006111fc565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461097b90612360565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790612360565b80156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b610a10610a09610cb0565b83836112c0565b5050565b610a25610a1f610cb0565b83610d7f565b610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90612527565b60405180910390fd5b610a708484848461142c565b50505050565b6060610a8182610c65565b6000610a8b611488565b90506000815111610aab5760405180602001604052806000815250610ad6565b80610ab58461151a565b604051602001610ac6929190612a1f565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b8061110d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612ab5565b60405180910390fd5b610bf8816111fc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c6e816115e8565b610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca49061281a565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610d2b83610751565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080610d8b83610751565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dcd5750610dcc8185610ae4565b5b80610e0b57508373ffffffffffffffffffffffffffffffffffffffff16610df384610545565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e3482610751565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190612b47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090612bd9565b60405180910390fd5b610f068383836001611629565b8273ffffffffffffffffffffffffffffffffffffffff16610f2682610751565b73ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390612b47565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611108838383600161174f565b505050565b611115610cb0565b73ffffffffffffffffffffffffffffffffffffffff16611133610943565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612c45565b60405180910390fd5b565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6001816000016000828254019250508190555050565b6111f8828260405180602001604052806000815250611755565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590612cb1565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141f9190611d7e565b60405180910390a3505050565b611437848484610e14565b611443848484846117b0565b611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990612d43565b60405180910390fd5b50505050565b60606008805461149790612360565b80601f01602080910402602001604051908101604052809291908181526020018280546114c390612360565b80156115105780601f106114e557610100808354040283529160200191611510565b820191906000526020600020905b8154815290600101906020018083116114f357829003601f168201915b5050505050905090565b60606000600161152984611937565b01905060008167ffffffffffffffff81111561154857611547612143565b5b6040519080825280601f01601f19166020018201604052801561157a5781602001600182028036833780820191505090505b509050600082602001820190505b6001156115dd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816115d1576115d0612d63565b5b04945060008503611588575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661160a8361118b565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600181111561174957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116bd5780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b59190612d92565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146117485780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117409190612869565b925050819055505b5b50505050565b50505050565b61175f8383611a8a565b61176c60008484846117b0565b6117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290612d43565b60405180910390fd5b505050565b60006117d18473ffffffffffffffffffffffffffffffffffffffff16611ca7565b1561192a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117fa610cb0565b8786866040518563ffffffff1660e01b815260040161181c9493929190612e1b565b6020604051808303816000875af192505050801561185857506040513d601f19601f820116820180604052508101906118559190612e7c565b60015b6118da573d8060008114611888576040519150601f19603f3d011682016040523d82523d6000602084013e61188d565b606091505b5060008151036118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990612d43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061192f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611995577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161198b5761198a612d63565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106119d2576d04ee2d6d415b85acef810000000083816119c8576119c7612d63565b5b0492506020810190505b662386f26fc100008310611a0157662386f26fc1000083816119f7576119f6612d63565b5b0492506010810190505b6305f5e1008310611a2a576305f5e1008381611a2057611a1f612d63565b5b0492506008810190505b6127108310611a4f576127108381611a4557611a44612d63565b5b0492506004810190505b60648310611a725760648381611a6857611a67612d63565b5b0492506002810190505b600a8310611a81576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090612ef5565b60405180910390fd5b611b02816115e8565b15611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990612f61565b60405180910390fd5b611b50600083836001611629565b611b59816115e8565b15611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090612f61565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ca360008383600161174f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d1381611cde565b8114611d1e57600080fd5b50565b600081359050611d3081611d0a565b92915050565b600060208284031215611d4c57611d4b611cd4565b5b6000611d5a84828501611d21565b91505092915050565b60008115159050919050565b611d7881611d63565b82525050565b6000602082019050611d936000830184611d6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611dd3578082015181840152602081019050611db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dfb82611d99565b611e058185611da4565b9350611e15818560208601611db5565b611e1e81611ddf565b840191505092915050565b60006020820190508181036000830152611e438184611df0565b905092915050565b6000819050919050565b611e5e81611e4b565b8114611e6957600080fd5b50565b600081359050611e7b81611e55565b92915050565b600060208284031215611e9757611e96611cd4565b5b6000611ea584828501611e6c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ed982611eae565b9050919050565b611ee981611ece565b82525050565b6000602082019050611f046000830184611ee0565b92915050565b611f1381611ece565b8114611f1e57600080fd5b50565b600081359050611f3081611f0a565b92915050565b60008060408385031215611f4d57611f4c611cd4565b5b6000611f5b85828601611f21565b9250506020611f6c85828601611e6c565b9150509250929050565b611f7f81611e4b565b82525050565b6000602082019050611f9a6000830184611f76565b92915050565b600080600060608486031215611fb957611fb8611cd4565b5b6000611fc786828701611f21565b9350506020611fd886828701611f21565b9250506040611fe986828701611e6c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261201857612017611ff3565b5b8235905067ffffffffffffffff81111561203557612034611ff8565b5b60208301915083600182028301111561205157612050611ffd565b5b9250929050565b6000806020838503121561206f5761206e611cd4565b5b600083013567ffffffffffffffff81111561208d5761208c611cd9565b5b61209985828601612002565b92509250509250929050565b6000602082840312156120bb576120ba611cd4565b5b60006120c984828501611f21565b91505092915050565b6120db81611d63565b81146120e657600080fd5b50565b6000813590506120f8816120d2565b92915050565b6000806040838503121561211557612114611cd4565b5b600061212385828601611f21565b9250506020612134858286016120e9565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61217b82611ddf565b810181811067ffffffffffffffff8211171561219a57612199612143565b5b80604052505050565b60006121ad611cca565b90506121b98282612172565b919050565b600067ffffffffffffffff8211156121d9576121d8612143565b5b6121e282611ddf565b9050602081019050919050565b82818337600083830152505050565b600061221161220c846121be565b6121a3565b90508281526020810184848401111561222d5761222c61213e565b5b6122388482856121ef565b509392505050565b600082601f83011261225557612254611ff3565b5b81356122658482602086016121fe565b91505092915050565b6000806000806080858703121561228857612287611cd4565b5b600061229687828801611f21565b94505060206122a787828801611f21565b93505060406122b887828801611e6c565b925050606085013567ffffffffffffffff8111156122d9576122d8611cd9565b5b6122e587828801612240565b91505092959194509250565b6000806040838503121561230857612307611cd4565b5b600061231685828601611f21565b925050602061232785828601611f21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061237857607f821691505b60208210810361238b5761238a612331565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006123ed602183611da4565b91506123f882612391565b604082019050919050565b6000602082019050818103600083015261241c816123e0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061247f603d83611da4565b915061248a82612423565b604082019050919050565b600060208201905081810360008301526124ae81612472565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612511602d83611da4565b915061251c826124b5565b604082019050919050565b6000602082019050818103600083015261254081612504565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612577565b6125be8683612577565b95508019841693508086168417925050509392505050565b6000819050919050565b60006125fb6125f66125f184611e4b565b6125d6565b611e4b565b9050919050565b6000819050919050565b612615836125e0565b61262961262182612602565b848454612584565b825550505050565b600090565b61263e612631565b61264981848461260c565b505050565b5b8181101561266d57612662600082612636565b60018101905061264f565b5050565b601f8211156126b25761268381612552565b61268c84612567565b8101602085101561269b578190505b6126af6126a785612567565b83018261264e565b50505b505050565b600082821c905092915050565b60006126d5600019846008026126b7565b1980831691505092915050565b60006126ee83836126c4565b9150826002028217905092915050565b6127088383612547565b67ffffffffffffffff81111561272157612720612143565b5b61272b8254612360565b612736828285612671565b6000601f8311600181146127655760008415612753578287013590505b61275d85826126e2565b8655506127c5565b601f19841661277386612552565b60005b8281101561279b57848901358255600182019150602085019450602081019050612776565b868310156127b857848901356127b4601f8916826126c4565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612804601883611da4565b915061280f826127ce565b602082019050919050565b60006020820190508181036000830152612833816127f7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061287482611e4b565b915061287f83611e4b565b92508282019050808211156128975761289661283a565b5b92915050565b7f4d6178207075626c696320737570706c79206578636565646564000000000000600082015250565b60006128d3601a83611da4565b91506128de8261289d565b602082019050919050565b60006020820190508181036000830152612902816128c6565b9050919050565b600061291482611e4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129465761294561283a565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006129ad602983611da4565b91506129b882612951565b604082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b600081905092915050565b60006129f982611d99565b612a0381856129e3565b9350612a13818560208601611db5565b80840191505092915050565b6000612a2b82856129ee565b9150612a3782846129ee565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a9f602683611da4565b9150612aaa82612a43565b604082019050919050565b60006020820190508181036000830152612ace81612a92565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612b31602583611da4565b9150612b3c82612ad5565b604082019050919050565b60006020820190508181036000830152612b6081612b24565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612bc3602483611da4565b9150612bce82612b67565b604082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2f602083611da4565b9150612c3a82612bf9565b602082019050919050565b60006020820190508181036000830152612c5e81612c22565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612c9b601983611da4565b9150612ca682612c65565b602082019050919050565b60006020820190508181036000830152612cca81612c8e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612d2d603283611da4565b9150612d3882612cd1565b604082019050919050565b60006020820190508181036000830152612d5c81612d20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d9d82611e4b565b9150612da883611e4b565b9250828203905081811115612dc057612dbf61283a565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612ded82612dc6565b612df78185612dd1565b9350612e07818560208601611db5565b612e1081611ddf565b840191505092915050565b6000608082019050612e306000830187611ee0565b612e3d6020830186611ee0565b612e4a6040830185611f76565b8181036060830152612e5c8184612de2565b905095945050505050565b600081519050612e7681611d0a565b92915050565b600060208284031215612e9257612e91611cd4565b5b6000612ea084828501612e67565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612edf602083611da4565b9150612eea82612ea9565b602082019050919050565b60006020820190508181036000830152612f0e81612ed2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612f4b601c83611da4565b9150612f5682612f15565b602082019050919050565b60006020820190508181036000830152612f7a81612f3e565b905091905056fea26469706673582212209b11cb189931ef631f2f0ef3cc669c405d0fe231dbb2437b2f560b7dafc9213a64736f6c63430008110033

Deployed Bytecode Sourcemap

55945:1128:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37309:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38237:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39749:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39267:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56704:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40449:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56829:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40855:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37947:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56375:303;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37678:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55032:103;;;:::i;:::-;;54384:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38406:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39992:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41111:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38581:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56022:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40218:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55290:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37309:305;37411:4;37463:25;37448:40;;;:11;:40;;;;:105;;;;37520:33;37505:48;;;:11;:48;;;;37448:105;:158;;;;37570:36;37594:11;37570:23;:36::i;:::-;37448:158;37428:178;;37309:305;;;:::o;38237:100::-;38291:13;38324:5;38317:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38237:100;:::o;39749:171::-;39825:7;39845:23;39860:7;39845:14;:23::i;:::-;39888:15;:24;39904:7;39888:24;;;;;;;;;;;;;;;;;;;;;39881:31;;39749:171;;;:::o;39267:416::-;39348:13;39364:23;39379:7;39364:14;:23::i;:::-;39348:39;;39412:5;39406:11;;:2;:11;;;39398:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39506:5;39490:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;39515:37;39532:5;39539:12;:10;:12::i;:::-;39515:16;:37::i;:::-;39490:62;39468:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;39654:21;39663:2;39667:7;39654:8;:21::i;:::-;39337:346;39267:416;;:::o;56704:89::-;56747:4;56768:18;:8;:16;:18::i;:::-;56761:25;;56704:89;:::o;40449:335::-;40644:41;40663:12;:10;:12::i;:::-;40677:7;40644:18;:41::i;:::-;40636:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;40748:28;40758:4;40764:2;40768:7;40748:9;:28::i;:::-;40449:335;;;:::o;56829:104::-;54270:13;:11;:13::i;:::-;56921:4:::1;;56906:12;:19;;;;;;;:::i;:::-;;56829:104:::0;;:::o;40855:185::-;40993:39;41010:4;41016:2;41020:7;40993:39;;;;;;;;;;;;:16;:39::i;:::-;40855:185;;;:::o;37947:223::-;38019:7;38039:13;38055:17;38064:7;38055:8;:17::i;:::-;38039:33;;38108:1;38091:19;;:5;:19;;;38083:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;38157:5;38150:12;;;37947:223;;;:::o;56375:303::-;54270:13;:11;:13::i;:::-;56489:9:::1;;56478:7;56457:18;:8;:16;:18::i;:::-;:28;;;;:::i;:::-;:41;;56449:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;56548:6;56543:128;56564:7;56560:1;:11;56543:128;;;56589:20;:8;:18;:20::i;:::-;56622:34;56632:3;56637:18;:8;:16;:18::i;:::-;56622:9;:34::i;:::-;56573:3;;;;;:::i;:::-;;;;56543:128;;;;56375:303:::0;;:::o;37678:207::-;37750:7;37795:1;37778:19;;:5;:19;;;37770:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37861:9;:16;37871:5;37861:16;;;;;;;;;;;;;;;;37854:23;;37678:207;;;:::o;55032:103::-;54270:13;:11;:13::i;:::-;55097:30:::1;55124:1;55097:18;:30::i;:::-;55032:103::o:0;54384:87::-;54430:7;54457:6;;;;;;;;;;;54450:13;;54384:87;:::o;38406:104::-;38462:13;38495:7;38488:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38406:104;:::o;39992:155::-;40087:52;40106:12;:10;:12::i;:::-;40120:8;40130;40087:18;:52::i;:::-;39992:155;;:::o;41111:322::-;41285:41;41304:12;:10;:12::i;:::-;41318:7;41285:18;:41::i;:::-;41277:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;41387:38;41401:4;41407:2;41411:7;41420:4;41387:13;:38::i;:::-;41111:322;;;;:::o;38581:281::-;38654:13;38680:23;38695:7;38680:14;:23::i;:::-;38716:21;38740:10;:8;:10::i;:::-;38716:34;;38792:1;38774:7;38768:21;:25;:86;;;;;;;;;;;;;;;;;38820:7;38829:18;:7;:16;:18::i;:::-;38803:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38768:86;38761:93;;;38581:281;;;:::o;56022:27::-;;;;:::o;40218:164::-;40315:4;40339:18;:25;40358:5;40339:25;;;;;;;;;;;;;;;:35;40365:8;40339:35;;;;;;;;;;;;;;;;;;;;;;;;;40332:42;;40218:164;;;;:::o;55290:201::-;54270:13;:11;:13::i;:::-;55399:1:::1;55379:22;;:8;:22;;::::0;55371:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;55455:28;55474:8;55455:18;:28::i;:::-;55290:201:::0;:::o;28928:157::-;29013:4;29052:25;29037:40;;;:11;:40;;;;29030:47;;28928:157;;;:::o;49568:135::-;49650:16;49658:7;49650;:16::i;:::-;49642:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;49568:135;:::o;35688:98::-;35741:7;35768:10;35761:17;;35688:98;:::o;48847:174::-;48949:2;48922:15;:24;48938:7;48922:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49005:7;49001:2;48967:46;;48976:23;48991:7;48976:14;:23::i;:::-;48967:46;;;;;;;;;;;;48847:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;43466:264::-;43559:4;43576:13;43592:23;43607:7;43592:14;:23::i;:::-;43576:39;;43645:5;43634:16;;:7;:16;;;:52;;;;43654:32;43671:5;43678:7;43654:16;:32::i;:::-;43634:52;:87;;;;43714:7;43690:31;;:20;43702:7;43690:11;:20::i;:::-;:31;;;43634:87;43626:96;;;43466:264;;;;:::o;47465:1263::-;47624:4;47597:31;;:23;47612:7;47597:14;:23::i;:::-;:31;;;47589:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;47703:1;47689:16;;:2;:16;;;47681:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47759:42;47780:4;47786:2;47790:7;47799:1;47759:20;:42::i;:::-;47931:4;47904:31;;:23;47919:7;47904:14;:23::i;:::-;:31;;;47896:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48049:15;:24;48065:7;48049:24;;;;;;;;;;;;48042:31;;;;;;;;;;;48544:1;48525:9;:15;48535:4;48525:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;48577:1;48560:9;:13;48570:2;48560:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48619:2;48600:7;:16;48608:7;48600:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48658:7;48654:2;48639:27;;48648:4;48639:27;;;;;;;;;;;;48679:41;48699:4;48705:2;48709:7;48718:1;48679:19;:41::i;:::-;47465:1263;;;:::o;54549:132::-;54624:12;:10;:12::i;:::-;54613:23;;:7;:5;:7::i;:::-;:23;;;54605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54549:132::o;42741:117::-;42807:7;42834;:16;42842:7;42834:16;;;;;;;;;;;;;;;;;;;;;42827:23;;42741:117;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;44072:110::-;44148:26;44158:2;44162:7;44148:26;;;;;;;;;;;;:9;:26::i;:::-;44072:110;;:::o;55651:191::-;55725:16;55744:6;;;;;;;;;;;55725:25;;55770:8;55761:6;;:17;;;;;;;;;;;;;;;;;;55825:8;55794:40;;55815:8;55794:40;;;;;;;;;;;;55714:128;55651:191;:::o;49164:315::-;49319:8;49310:17;;:5;:17;;;49302:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49406:8;49368:18;:25;49387:5;49368:25;;;;;;;;;;;;;;;:35;49394:8;49368:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49452:8;49430:41;;49445:5;49430:41;;;49462:8;49430:41;;;;;;:::i;:::-;;;;;;;;49164:315;;;:::o;42314:313::-;42470:28;42480:4;42486:2;42490:7;42470:9;:28::i;:::-;42517:47;42540:4;42546:2;42550:7;42559:4;42517:22;:47::i;:::-;42509:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42314:313;;;;:::o;56945:105::-;56997:13;57030:12;57023:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56945:105;:::o;14770:716::-;14826:13;14877:14;14914:1;14894:17;14905:5;14894:10;:17::i;:::-;:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14930:41;;14986:11;15115:6;15111:2;15107:15;15099:6;15095:28;15088:35;;15152:288;15159:4;15152:288;;;15184:5;;;;;;;;15326:8;15321:2;15314:5;15310:14;15305:30;15300:3;15292:44;15382:2;15373:11;;;;;;:::i;:::-;;;;;15416:1;15407:5;:10;15152:288;15403:21;15152:288;15461:6;15454:13;;;;;14770:716;;;:::o;43171:128::-;43236:4;43289:1;43260:31;;:17;43269:7;43260:8;:17::i;:::-;:31;;;;43253:38;;43171:128;;;:::o;51852:410::-;52042:1;52030:9;:13;52026:229;;;52080:1;52064:18;;:4;:18;;;52060:87;;52122:9;52103;:15;52113:4;52103:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;52060:87;52179:1;52165:16;;:2;:16;;;52161:83;;52219:9;52202;:13;52212:2;52202:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;52161:83;52026:229;51852:410;;;;:::o;52984:158::-;;;;;:::o;44409:319::-;44538:18;44544:2;44548:7;44538:5;:18::i;:::-;44589:53;44620:1;44624:2;44628:7;44637:4;44589:22;:53::i;:::-;44567:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;44409:319;;;:::o;50267:853::-;50421:4;50442:15;:2;:13;;;:15::i;:::-;50438:675;;;50494:2;50478:36;;;50515:12;:10;:12::i;:::-;50529:4;50535:7;50544:4;50478:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50474:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50736:1;50719:6;:13;:18;50715:328;;50762:60;;;;;;;;;;:::i;:::-;;;;;;;;50715:328;50993:6;50987:13;50978:6;50974:2;50970:15;50963:38;50474:584;50610:41;;;50600:51;;;:6;:51;;;;50593:58;;;;;50438:675;51097:4;51090:11;;50267:853;;;;;;;:::o;11636:922::-;11689:7;11709:14;11726:1;11709:18;;11776:6;11767:5;:15;11763:102;;11812:6;11803:15;;;;;;:::i;:::-;;;;;11847:2;11837:12;;;;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;;;;:::i;:::-;;;;;11963:2;11953:12;;;;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;;;;:::i;:::-;;;;;12079:2;12069:12;;;;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;;;;:::i;:::-;;;;;12193:1;12183:11;;;;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;;;;:::i;:::-;;;;;12306:1;12296:11;;;;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;;;;:::i;:::-;;;;;12419:1;12409:11;;;;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;;;;12450:66;12544:6;12537:13;;;11636:922;;;:::o;45064:942::-;45158:1;45144:16;;:2;:16;;;45136:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45217:16;45225:7;45217;:16::i;:::-;45216:17;45208:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45279:48;45308:1;45312:2;45316:7;45325:1;45279:20;:48::i;:::-;45426:16;45434:7;45426;:16::i;:::-;45425:17;45417:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45841:1;45824:9;:13;45834:2;45824:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;45885:2;45866:7;:16;45874:7;45866:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;45930:7;45926:2;45905:33;;45922:1;45905:33;;;;;;;;;;;;45951:47;45979:1;45983:2;45987:7;45996:1;45951:19;:47::i;:::-;45064:942;;:::o;17897:326::-;17957:4;18214:1;18192:7;:19;;;:23;18185:30;;17897:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:220::-;12477:34;12473:1;12465:6;12461:14;12454:58;12546:3;12541:2;12533:6;12529:15;12522:28;12337:220;:::o;12563:366::-;12705:3;12726:67;12790:2;12785:3;12726:67;:::i;:::-;12719:74;;12802:93;12891:3;12802:93;:::i;:::-;12920:2;12915:3;12911:12;12904:19;;12563:366;;;:::o;12935:419::-;13101:4;13139:2;13128:9;13124:18;13116:26;;13188:9;13182:4;13178:20;13174:1;13163:9;13159:17;13152:47;13216:131;13342:4;13216:131;:::i;:::-;13208:139;;12935:419;;;:::o;13360:248::-;13500:34;13496:1;13488:6;13484:14;13477:58;13569:31;13564:2;13556:6;13552:15;13545:56;13360:248;:::o;13614:366::-;13756:3;13777:67;13841:2;13836:3;13777:67;:::i;:::-;13770:74;;13853:93;13942:3;13853:93;:::i;:::-;13971:2;13966:3;13962:12;13955:19;;13614:366;;;:::o;13986:419::-;14152:4;14190:2;14179:9;14175:18;14167:26;;14239:9;14233:4;14229:20;14225:1;14214:9;14210:17;14203:47;14267:131;14393:4;14267:131;:::i;:::-;14259:139;;13986:419;;;:::o;14411:232::-;14551:34;14547:1;14539:6;14535:14;14528:58;14620:15;14615:2;14607:6;14603:15;14596:40;14411:232;:::o;14649:366::-;14791:3;14812:67;14876:2;14871:3;14812:67;:::i;:::-;14805:74;;14888:93;14977:3;14888:93;:::i;:::-;15006:2;15001:3;14997:12;14990:19;;14649:366;;;:::o;15021:419::-;15187:4;15225:2;15214:9;15210:18;15202:26;;15274:9;15268:4;15264:20;15260:1;15249:9;15245:17;15238:47;15302:131;15428:4;15302:131;:::i;:::-;15294:139;;15021:419;;;:::o;15446:97::-;15505:6;15533:3;15523:13;;15446:97;;;;:::o;15549:141::-;15598:4;15621:3;15613:11;;15644:3;15641:1;15634:14;15678:4;15675:1;15665:18;15657:26;;15549:141;;;:::o;15696:93::-;15733:6;15780:2;15775;15768:5;15764:14;15760:23;15750:33;;15696:93;;;:::o;15795:107::-;15839:8;15889:5;15883:4;15879:16;15858:37;;15795:107;;;;:::o;15908:393::-;15977:6;16027:1;16015:10;16011:18;16050:97;16080:66;16069:9;16050:97;:::i;:::-;16168:39;16198:8;16187:9;16168:39;:::i;:::-;16156:51;;16240:4;16236:9;16229:5;16225:21;16216:30;;16289:4;16279:8;16275:19;16268:5;16265:30;16255:40;;15984:317;;15908:393;;;;;:::o;16307:60::-;16335:3;16356:5;16349:12;;16307:60;;;:::o;16373:142::-;16423:9;16456:53;16474:34;16483:24;16501:5;16483:24;:::i;:::-;16474:34;:::i;:::-;16456:53;:::i;:::-;16443:66;;16373:142;;;:::o;16521:75::-;16564:3;16585:5;16578:12;;16521:75;;;:::o;16602:269::-;16712:39;16743:7;16712:39;:::i;:::-;16773:91;16822:41;16846:16;16822:41;:::i;:::-;16814:6;16807:4;16801:11;16773:91;:::i;:::-;16767:4;16760:105;16678:193;16602:269;;;:::o;16877:73::-;16922:3;16877:73;:::o;16956:189::-;17033:32;;:::i;:::-;17074:65;17132:6;17124;17118:4;17074:65;:::i;:::-;17009:136;16956:189;;:::o;17151:186::-;17211:120;17228:3;17221:5;17218:14;17211:120;;;17282:39;17319:1;17312:5;17282:39;:::i;:::-;17255:1;17248:5;17244:13;17235:22;;17211:120;;;17151:186;;:::o;17343:543::-;17444:2;17439:3;17436:11;17433:446;;;17478:38;17510:5;17478:38;:::i;:::-;17562:29;17580:10;17562:29;:::i;:::-;17552:8;17548:44;17745:2;17733:10;17730:18;17727:49;;;17766:8;17751:23;;17727:49;17789:80;17845:22;17863:3;17845:22;:::i;:::-;17835:8;17831:37;17818:11;17789:80;:::i;:::-;17448:431;;17433:446;17343:543;;;:::o;17892:117::-;17946:8;17996:5;17990:4;17986:16;17965:37;;17892:117;;;;:::o;18015:169::-;18059:6;18092:51;18140:1;18136:6;18128:5;18125:1;18121:13;18092:51;:::i;:::-;18088:56;18173:4;18167;18163:15;18153:25;;18066:118;18015:169;;;;:::o;18189:295::-;18265:4;18411:29;18436:3;18430:4;18411:29;:::i;:::-;18403:37;;18473:3;18470:1;18466:11;18460:4;18457:21;18449:29;;18189:295;;;;:::o;18489:1403::-;18613:44;18653:3;18648;18613:44;:::i;:::-;18722:18;18714:6;18711:30;18708:56;;;18744:18;;:::i;:::-;18708:56;18788:38;18820:4;18814:11;18788:38;:::i;:::-;18873:67;18933:6;18925;18919:4;18873:67;:::i;:::-;18967:1;18996:2;18988:6;18985:14;19013:1;19008:632;;;;19684:1;19701:6;19698:84;;;19757:9;19752:3;19748:19;19735:33;19726:42;;19698:84;19808:67;19868:6;19861:5;19808:67;:::i;:::-;19802:4;19795:81;19657:229;18978:908;;19008:632;19060:4;19056:9;19048:6;19044:22;19094:37;19126:4;19094:37;:::i;:::-;19153:1;19167:215;19181:7;19178:1;19175:14;19167:215;;;19267:9;19262:3;19258:19;19245:33;19237:6;19230:49;19318:1;19310:6;19306:14;19296:24;;19365:2;19354:9;19350:18;19337:31;;19204:4;19201:1;19197:12;19192:17;;19167:215;;;19410:6;19401:7;19398:19;19395:186;;;19475:9;19470:3;19466:19;19453:33;19518:48;19560:4;19552:6;19548:17;19537:9;19518:48;:::i;:::-;19510:6;19503:64;19418:163;19395:186;19627:1;19623;19615:6;19611:14;19607:22;19601:4;19594:36;19015:625;;;18978:908;;18588:1304;;;18489:1403;;;:::o;19898:174::-;20038:26;20034:1;20026:6;20022:14;20015:50;19898:174;:::o;20078:366::-;20220:3;20241:67;20305:2;20300:3;20241:67;:::i;:::-;20234:74;;20317:93;20406:3;20317:93;:::i;:::-;20435:2;20430:3;20426:12;20419:19;;20078:366;;;:::o;20450:419::-;20616:4;20654:2;20643:9;20639:18;20631:26;;20703:9;20697:4;20693:20;20689:1;20678:9;20674:17;20667:47;20731:131;20857:4;20731:131;:::i;:::-;20723:139;;20450:419;;;:::o;20875:180::-;20923:77;20920:1;20913:88;21020:4;21017:1;21010:15;21044:4;21041:1;21034:15;21061:191;21101:3;21120:20;21138:1;21120:20;:::i;:::-;21115:25;;21154:20;21172:1;21154:20;:::i;:::-;21149:25;;21197:1;21194;21190:9;21183:16;;21218:3;21215:1;21212:10;21209:36;;;21225:18;;:::i;:::-;21209:36;21061:191;;;;:::o;21258:176::-;21398:28;21394:1;21386:6;21382:14;21375:52;21258:176;:::o;21440:366::-;21582:3;21603:67;21667:2;21662:3;21603:67;:::i;:::-;21596:74;;21679:93;21768:3;21679:93;:::i;:::-;21797:2;21792:3;21788:12;21781:19;;21440:366;;;:::o;21812:419::-;21978:4;22016:2;22005:9;22001:18;21993:26;;22065:9;22059:4;22055:20;22051:1;22040:9;22036:17;22029:47;22093:131;22219:4;22093:131;:::i;:::-;22085:139;;21812:419;;;:::o;22237:233::-;22276:3;22299:24;22317:5;22299:24;:::i;:::-;22290:33;;22345:66;22338:5;22335:77;22332:103;;22415:18;;:::i;:::-;22332:103;22462:1;22455:5;22451:13;22444:20;;22237:233;;;:::o;22476:228::-;22616:34;22612:1;22604:6;22600:14;22593:58;22685:11;22680:2;22672:6;22668:15;22661:36;22476:228;:::o;22710:366::-;22852:3;22873:67;22937:2;22932:3;22873:67;:::i;:::-;22866:74;;22949:93;23038:3;22949:93;:::i;:::-;23067:2;23062:3;23058:12;23051:19;;22710:366;;;:::o;23082:419::-;23248:4;23286:2;23275:9;23271:18;23263:26;;23335:9;23329:4;23325:20;23321:1;23310:9;23306:17;23299:47;23363:131;23489:4;23363:131;:::i;:::-;23355:139;;23082:419;;;:::o;23507:148::-;23609:11;23646:3;23631:18;;23507:148;;;;:::o;23661:390::-;23767:3;23795:39;23828:5;23795:39;:::i;:::-;23850:89;23932:6;23927:3;23850:89;:::i;:::-;23843:96;;23948:65;24006:6;24001:3;23994:4;23987:5;23983:16;23948:65;:::i;:::-;24038:6;24033:3;24029:16;24022:23;;23771:280;23661:390;;;;:::o;24057:435::-;24237:3;24259:95;24350:3;24341:6;24259:95;:::i;:::-;24252:102;;24371:95;24462:3;24453:6;24371:95;:::i;:::-;24364:102;;24483:3;24476:10;;24057:435;;;;;:::o;24498:225::-;24638:34;24634:1;24626:6;24622:14;24615:58;24707:8;24702:2;24694:6;24690:15;24683:33;24498:225;:::o;24729:366::-;24871:3;24892:67;24956:2;24951:3;24892:67;:::i;:::-;24885:74;;24968:93;25057:3;24968:93;:::i;:::-;25086:2;25081:3;25077:12;25070:19;;24729:366;;;:::o;25101:419::-;25267:4;25305:2;25294:9;25290:18;25282:26;;25354:9;25348:4;25344:20;25340:1;25329:9;25325:17;25318:47;25382:131;25508:4;25382:131;:::i;:::-;25374:139;;25101:419;;;:::o;25526:224::-;25666:34;25662:1;25654:6;25650:14;25643:58;25735:7;25730:2;25722:6;25718:15;25711:32;25526:224;:::o;25756:366::-;25898:3;25919:67;25983:2;25978:3;25919:67;:::i;:::-;25912:74;;25995:93;26084:3;25995:93;:::i;:::-;26113:2;26108:3;26104:12;26097:19;;25756:366;;;:::o;26128:419::-;26294:4;26332:2;26321:9;26317:18;26309:26;;26381:9;26375:4;26371:20;26367:1;26356:9;26352:17;26345:47;26409:131;26535:4;26409:131;:::i;:::-;26401:139;;26128:419;;;:::o;26553:223::-;26693:34;26689:1;26681:6;26677:14;26670:58;26762:6;26757:2;26749:6;26745:15;26738:31;26553:223;:::o;26782:366::-;26924:3;26945:67;27009:2;27004:3;26945:67;:::i;:::-;26938:74;;27021:93;27110:3;27021:93;:::i;:::-;27139:2;27134:3;27130:12;27123:19;;26782:366;;;:::o;27154:419::-;27320:4;27358:2;27347:9;27343:18;27335:26;;27407:9;27401:4;27397:20;27393:1;27382:9;27378:17;27371:47;27435:131;27561:4;27435:131;:::i;:::-;27427:139;;27154:419;;;:::o;27579:182::-;27719:34;27715:1;27707:6;27703:14;27696:58;27579:182;:::o;27767:366::-;27909:3;27930:67;27994:2;27989:3;27930:67;:::i;:::-;27923:74;;28006:93;28095:3;28006:93;:::i;:::-;28124:2;28119:3;28115:12;28108:19;;27767:366;;;:::o;28139:419::-;28305:4;28343:2;28332:9;28328:18;28320:26;;28392:9;28386:4;28382:20;28378:1;28367:9;28363:17;28356:47;28420:131;28546:4;28420:131;:::i;:::-;28412:139;;28139:419;;;:::o;28564:175::-;28704:27;28700:1;28692:6;28688:14;28681:51;28564:175;:::o;28745:366::-;28887:3;28908:67;28972:2;28967:3;28908:67;:::i;:::-;28901:74;;28984:93;29073:3;28984:93;:::i;:::-;29102:2;29097:3;29093:12;29086:19;;28745:366;;;:::o;29117:419::-;29283:4;29321:2;29310:9;29306:18;29298:26;;29370:9;29364:4;29360:20;29356:1;29345:9;29341:17;29334:47;29398:131;29524:4;29398:131;:::i;:::-;29390:139;;29117:419;;;:::o;29542:237::-;29682:34;29678:1;29670:6;29666:14;29659:58;29751:20;29746:2;29738:6;29734:15;29727:45;29542:237;:::o;29785:366::-;29927:3;29948:67;30012:2;30007:3;29948:67;:::i;:::-;29941:74;;30024:93;30113:3;30024:93;:::i;:::-;30142:2;30137:3;30133:12;30126:19;;29785:366;;;:::o;30157:419::-;30323:4;30361:2;30350:9;30346:18;30338:26;;30410:9;30404:4;30400:20;30396:1;30385:9;30381:17;30374:47;30438:131;30564:4;30438:131;:::i;:::-;30430:139;;30157:419;;;:::o;30582:180::-;30630:77;30627:1;30620:88;30727:4;30724:1;30717:15;30751:4;30748:1;30741:15;30768:194;30808:4;30828:20;30846:1;30828:20;:::i;:::-;30823:25;;30862:20;30880:1;30862:20;:::i;:::-;30857:25;;30906:1;30903;30899:9;30891:17;;30930:1;30924:4;30921:11;30918:37;;;30935:18;;:::i;:::-;30918:37;30768:194;;;;:::o;30968:98::-;31019:6;31053:5;31047:12;31037:22;;30968:98;;;:::o;31072:168::-;31155:11;31189:6;31184:3;31177:19;31229:4;31224:3;31220:14;31205:29;;31072:168;;;;:::o;31246:373::-;31332:3;31360:38;31392:5;31360:38;:::i;:::-;31414:70;31477:6;31472:3;31414:70;:::i;:::-;31407:77;;31493:65;31551:6;31546:3;31539:4;31532:5;31528:16;31493:65;:::i;:::-;31583:29;31605:6;31583:29;:::i;:::-;31578:3;31574:39;31567:46;;31336:283;31246:373;;;;:::o;31625:640::-;31820:4;31858:3;31847:9;31843:19;31835:27;;31872:71;31940:1;31929:9;31925:17;31916:6;31872:71;:::i;:::-;31953:72;32021:2;32010:9;32006:18;31997:6;31953:72;:::i;:::-;32035;32103:2;32092:9;32088:18;32079:6;32035:72;:::i;:::-;32154:9;32148:4;32144:20;32139:2;32128:9;32124:18;32117:48;32182:76;32253:4;32244:6;32182:76;:::i;:::-;32174:84;;31625:640;;;;;;;:::o;32271:141::-;32327:5;32358:6;32352:13;32343:22;;32374:32;32400:5;32374:32;:::i;:::-;32271:141;;;;:::o;32418:349::-;32487:6;32536:2;32524:9;32515:7;32511:23;32507:32;32504:119;;;32542:79;;:::i;:::-;32504:119;32662:1;32687:63;32742:7;32733:6;32722:9;32718:22;32687:63;:::i;:::-;32677:73;;32633:127;32418:349;;;;:::o;32773:182::-;32913:34;32909:1;32901:6;32897:14;32890:58;32773:182;:::o;32961:366::-;33103:3;33124:67;33188:2;33183:3;33124:67;:::i;:::-;33117:74;;33200:93;33289:3;33200:93;:::i;:::-;33318:2;33313:3;33309:12;33302:19;;32961:366;;;:::o;33333:419::-;33499:4;33537:2;33526:9;33522:18;33514:26;;33586:9;33580:4;33576:20;33572:1;33561:9;33557:17;33550:47;33614:131;33740:4;33614:131;:::i;:::-;33606:139;;33333:419;;;:::o;33758:178::-;33898:30;33894:1;33886:6;33882:14;33875:54;33758:178;:::o;33942:366::-;34084:3;34105:67;34169:2;34164:3;34105:67;:::i;:::-;34098:74;;34181:93;34270:3;34181:93;:::i;:::-;34299:2;34294:3;34290:12;34283:19;;33942:366;;;:::o;34314:419::-;34480:4;34518:2;34507:9;34503:18;34495:26;;34567:9;34561:4;34557:20;34553:1;34542:9;34538:17;34531:47;34595:131;34721:4;34595:131;:::i;:::-;34587:139;;34314:419;;;:::o

Swarm Source

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