ETH Price: $2,850.70 (+2.54%)

Token

Kakamigos (KAKA)
 

Overview

Max Total Supply

163 KAKA

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KAKA
0x190266abd25006382cb33b9ba46e71ffa0e0ce2f
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:
Kakamigos

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/Kakamigos.sol



pragma solidity ^0.8.19;



contract Kakamigos is ERC721, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_TOKENS = 5000;
    uint256 public constant TOTAL_FREE = 100;
    uint256 private constant TOKENS_RESERVED = 5;
    uint256 public price = 0.003 ether;
    uint256 public constant MAX_MINT_PER_TX = 10;
    uint256 public constant MAX_MINT_PER_WALLET = 20;
    uint256 public maxFree = 2;

    bool public isSaleActive;
    uint256 public totalSupply;

    mapping(address => uint256) private mintedPerWallet;

    string public baseUri;
    string public baseExtension = ".json";

    constructor() ERC721("Kakamigos", "KAKA") {
        baseUri = "ipfs://bafybeickrfhqnqkakuzoj2mradlvgqho6iq6bhxl7e4feikdfqqgmzzkka/";
        for (uint256 i = 1; i <= TOKENS_RESERVED; ++i) {
            _safeMint(msg.sender, i);
        }
        totalSupply = TOKENS_RESERVED;
    }

    function mint(uint256 _numTokens) external payable {
        uint256 minted = mintedPerWallet[msg.sender];
        require(_numTokens > 0, "Must use at least mint one");
        uint256 payForCount = _numTokens;
        uint256 curTotalSupply = totalSupply;
        if(totalSupply <= TOTAL_FREE){
            payForCount = 0;
        } else if (minted < maxFree) {
            if (maxFree - minted > _numTokens) {
                payForCount = 0;
            } else {
                payForCount = _numTokens - (maxFree - minted);
            }
        }
        require(isSaleActive, "The sale is paused.");
        require(_numTokens <= MAX_MINT_PER_TX, "You cannot mint that many in one transaction.");
        require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds total supply.");
        require(payForCount * price <= msg.value, "Insufficient funds.");

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

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        (bool transferOne, ) = payable(0x39A3bCEd8b1B78851fE4C7352e69ea407c33c809).call{value: balance}("");
        require(transferOne, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052660aa87bee53800060075560026008556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200005a919062000a06565b503480156200006857600080fd5b506040518060400160405280600981526020017f4b616b616d69676f7300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b414b41000000000000000000000000000000000000000000000000000000008152508160009081620000e6919062000a06565b508060019081620000f8919062000a06565b5050506200011b6200010f6200018b60201b60201c565b6200019360201b60201c565b6040518060800160405280604381526020016200439a60439139600c908162000145919062000a06565b506000600190505b600581116200017c576200016833826200025960201b60201c565b80620001749062000b1c565b90506200014d565b506005600a8190555062000ece565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200027b8282604051806020016040528060008152506200027f60201b60201c565b5050565b620002918383620002ed60201b60201c565b620002a660008484846200053360201b60201c565b620002e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002df9062000bf0565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200035f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003569062000c62565b60405180910390fd5b6200037081620006d760201b60201c565b15620003b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003aa9062000cd4565b60405180910390fd5b620003c96000838360016200072060201b60201c565b620003da81620006d760201b60201c565b156200041d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004149062000cd4565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200052f6000838360016200072660201b60201c565b5050565b60006200055c8473ffffffffffffffffffffffffffffffffffffffff166200072c60201b60201c565b15620006ca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200058e6200018b60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005b2949392919062000de6565b6020604051808303816000875af1925050508015620005f157506040513d601f19601f82011682018060405250810190620005ee919062000e9c565b60015b62000679573d806000811462000624576040519150601f19603f3d011682016040523d82523d6000602084013e62000629565b606091505b50600081510362000671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006689062000bf0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006cf565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff1662000701836200074f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080e57607f821691505b602082108103620008245762000823620007c6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200088e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200084f565b6200089a86836200084f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008e7620008e1620008db84620008b2565b620008bc565b620008b2565b9050919050565b6000819050919050565b6200090383620008c6565b6200091b6200091282620008ee565b8484546200085c565b825550505050565b600090565b6200093262000923565b6200093f818484620008f8565b505050565b5b8181101562000967576200095b60008262000928565b60018101905062000945565b5050565b601f821115620009b65762000980816200082a565b6200098b846200083f565b810160208510156200099b578190505b620009b3620009aa856200083f565b83018262000944565b50505b505050565b600082821c905092915050565b6000620009db60001984600802620009bb565b1980831691505092915050565b6000620009f68383620009c8565b9150826002028217905092915050565b62000a11826200078c565b67ffffffffffffffff81111562000a2d5762000a2c62000797565b5b62000a398254620007f5565b62000a468282856200096b565b600060209050601f83116001811462000a7e576000841562000a69578287015190505b62000a758582620009e8565b86555062000ae5565b601f19841662000a8e866200082a565b60005b8281101562000ab85784890151825560018201915060208501945060208101905062000a91565b8683101562000ad8578489015162000ad4601f891682620009c8565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b2982620008b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000b5e5762000b5d62000aed565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000bd860328362000b69565b915062000be58262000b7a565b604082019050919050565b6000602082019050818103600083015262000c0b8162000bc9565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000c4a60208362000b69565b915062000c578262000c12565b602082019050919050565b6000602082019050818103600083015262000c7d8162000c3b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000cbc601c8362000b69565b915062000cc98262000c84565b602082019050919050565b6000602082019050818103600083015262000cef8162000cad565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d238262000cf6565b9050919050565b62000d358162000d16565b82525050565b62000d4681620008b2565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000d8857808201518184015260208101905062000d6b565b60008484015250505050565b6000601f19601f8301169050919050565b600062000db28262000d4c565b62000dbe818562000d57565b935062000dd081856020860162000d68565b62000ddb8162000d94565b840191505092915050565b600060808201905062000dfd600083018762000d2a565b62000e0c602083018662000d2a565b62000e1b604083018562000d3b565b818103606083015262000e2f818462000da5565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000e768162000e3f565b811462000e8257600080fd5b50565b60008151905062000e968162000e6b565b92915050565b60006020828403121562000eb55762000eb462000e3a565b5b600062000ec58482850162000e85565b91505092915050565b6134bc8062000ede6000396000f3fe6080604052600436106101c25760003560e01c8063853828b6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146105e0578063e985e9c51461061d578063f2fde38b1461065a578063f47c84c514610683576101c2565b8063a22cb46514610538578063b19960e614610561578063b88d4fde1461058c578063c6682862146105b5576101c2565b806395d89b41116100d157806395d89b411461049b5780639abc8320146104c6578063a035b1fe146104f1578063a0712d681461051c576101c2565b8063853828b61461043b5780638da5cb5b146104455780638ecad72114610470576101c2565b806342842e0e1161016457806358d949921161013e57806358d949921461037f5780636352211e146103aa57806370a08231146103e7578063715018a614610424576101c2565b806342842e0e14610300578063485a68a314610329578063564566a814610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c057806334918dfd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906122a5565b6106ae565b6040516101fb91906122ed565b60405180910390f35b34801561021057600080fd5b50610219610790565b6040516102269190612398565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906123f0565b610822565b604051610263919061245e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906124a5565b610868565b005b3480156102a157600080fd5b506102aa61097f565b6040516102b791906124f4565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e2919061250f565b610985565b005b3480156102f557600080fd5b506102fe6109e5565b005b34801561030c57600080fd5b506103276004803603810190610322919061250f565b610a19565b005b34801561033557600080fd5b5061033e610a39565b60405161034b91906124f4565b60405180910390f35b34801561036057600080fd5b50610369610a3f565b60405161037691906122ed565b60405180910390f35b34801561038b57600080fd5b50610394610a52565b6040516103a191906124f4565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc91906123f0565b610a57565b6040516103de919061245e565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190612562565b610add565b60405161041b91906124f4565b60405180910390f35b34801561043057600080fd5b50610439610b94565b005b610443610ba8565b005b34801561045157600080fd5b5061045a610c79565b604051610467919061245e565b60405180910390f35b34801561047c57600080fd5b50610485610ca3565b60405161049291906124f4565b60405180910390f35b3480156104a757600080fd5b506104b0610ca8565b6040516104bd9190612398565b60405180910390f35b3480156104d257600080fd5b506104db610d3a565b6040516104e89190612398565b60405180910390f35b3480156104fd57600080fd5b50610506610dc8565b60405161051391906124f4565b60405180910390f35b610536600480360381019061053191906123f0565b610dce565b005b34801561054457600080fd5b5061055f600480360381019061055a91906125bb565b611097565b005b34801561056d57600080fd5b506105766110ad565b60405161058391906124f4565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190612730565b6110b2565b005b3480156105c157600080fd5b506105ca611114565b6040516105d79190612398565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906123f0565b6111a2565b6040516106149190612398565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f91906127b3565b61120a565b60405161065191906122ed565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612562565b61129e565b005b34801561068f57600080fd5b50610698611321565b6040516106a591906124f4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610789575061078882611327565b5b9050919050565b60606000805461079f90612822565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb90612822565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b5050505050905090565b600061082d82611391565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087382610a57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da906128c5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109026113dc565b73ffffffffffffffffffffffffffffffffffffffff16148061093157506109308161092b6113dc565b61120a565b5b610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790612957565b60405180910390fd5b61097a83836113e4565b505050565b600a5481565b6109966109906113dc565b8261149d565b6109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906129e9565b60405180910390fd5b6109e0838383611532565b505050565b6109ed61182b565b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b610a34838383604051806020016040528060008152506110b2565b505050565b60085481565b600960009054906101000a900460ff1681565b606481565b600080610a63836118a9565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90612a55565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490612ae7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b9c61182b565b610ba660006118e6565b565b610bb061182b565b600047905060007339a3bced8b1b78851fe4c7352e69ea407c33c80973ffffffffffffffffffffffffffffffffffffffff1682604051610bef90612b38565b60006040518083038185875af1925050503d8060008114610c2c576040519150601f19603f3d011682016040523d82523d6000602084013e610c31565b606091505b5050905080610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90612b99565b60405180910390fd5b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b606060018054610cb790612822565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce390612822565b8015610d305780601f10610d0557610100808354040283529160200191610d30565b820191906000526020600020905b815481529060010190602001808311610d1357829003601f168201915b5050505050905090565b600c8054610d4790612822565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7390612822565b8015610dc05780601f10610d9557610100808354040283529160200191610dc0565b820191906000526020600020905b815481529060010190602001808311610da357829003601f168201915b505050505081565b60075481565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008211610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612c05565b60405180910390fd5b60008290506000600a5490506064600a5411610e745760009150610eba565b600854831015610eb9578383600854610e8d9190612c54565b1115610e9c5760009150610eb8565b82600854610eaa9190612c54565b84610eb59190612c54565b91505b5b5b600960009054906101000a900460ff16610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612cd4565b60405180910390fd5b600a841115610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490612d66565b60405180910390fd5b6113888482610f5c9190612d86565b1115610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490612e06565b60405180910390fd5b3460075483610fac9190612e26565b1115610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490612eb4565b60405180910390fd5b6000600190505b8481116110215761101033828461100b9190612d86565b6119ac565b8061101a90612ed4565b9050610ff4565b5083600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110719190612d86565b9250508190555083600a600082825461108a9190612d86565b9250508190555050505050565b6110a96110a26113dc565b83836119ca565b5050565b601481565b6110c36110bd6113dc565b8361149d565b611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906129e9565b60405180910390fd5b61110e84848484611b36565b50505050565b600d805461112190612822565b80601f016020809104026020016040519081016040528092919081815260200182805461114d90612822565b801561119a5780601f1061116f5761010080835404028352916020019161119a565b820191906000526020600020905b81548152906001019060200180831161117d57829003601f168201915b505050505081565b60606111ad82611391565b60006111b7611b92565b905060008151116111d75760405180602001604052806000815250611202565b806111e184611ba9565b6040516020016111f2929190612f58565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112a661182b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90612fee565b60405180910390fd5b61131e816118e6565b50565b61138881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61139a81611c77565b6113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090612a55565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661145783610a57565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806114a983610a57565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114eb57506114ea818561120a565b5b8061152957508373ffffffffffffffffffffffffffffffffffffffff1661151184610822565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661155282610a57565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613080565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613112565b60405180910390fd5b6116248383836001611cb8565b8273ffffffffffffffffffffffffffffffffffffffff1661164482610a57565b73ffffffffffffffffffffffffffffffffffffffff161461169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190613080565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118268383836001611cbe565b505050565b6118336113dc565b73ffffffffffffffffffffffffffffffffffffffff16611851610c79565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e9061317e565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119c6828260405180602001604052806000815250611cc4565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906131ea565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b2991906122ed565b60405180910390a3505050565b611b41848484611532565b611b4d84848484611d1f565b611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b839061327c565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606060006001611bb884611ea6565b01905060008167ffffffffffffffff811115611bd757611bd6612605565b5b6040519080825280601f01601f191660200182016040528015611c095781602001600182028036833780820191505090505b509050600082602001820190505b600115611c6c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c6057611c5f61329c565b5b04945060008503611c17575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c99836118a9565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b611cce8383611ff9565b611cdb6000848484611d1f565b611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119061327c565b60405180910390fd5b505050565b6000611d408473ffffffffffffffffffffffffffffffffffffffff16612216565b15611e99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d696113dc565b8786866040518563ffffffff1660e01b8152600401611d8b9493929190613320565b6020604051808303816000875af1925050508015611dc757506040513d601f19601f82011682018060405250810190611dc49190613381565b60015b611e49573d8060008114611df7576040519150601f19603f3d011682016040523d82523d6000602084013e611dfc565b606091505b506000815103611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e389061327c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e9e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f04577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611efa57611ef961329c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f41576d04ee2d6d415b85acef81000000008381611f3757611f3661329c565b5b0492506020810190505b662386f26fc100008310611f7057662386f26fc100008381611f6657611f6561329c565b5b0492506010810190505b6305f5e1008310611f99576305f5e1008381611f8f57611f8e61329c565b5b0492506008810190505b6127108310611fbe576127108381611fb457611fb361329c565b5b0492506004810190505b60648310611fe15760648381611fd757611fd661329c565b5b0492506002810190505b600a8310611ff0576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f906133fa565b60405180910390fd5b61207181611c77565b156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613466565b60405180910390fd5b6120bf600083836001611cb8565b6120c881611c77565b15612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90613466565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612212600083836001611cbe565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122828161224d565b811461228d57600080fd5b50565b60008135905061229f81612279565b92915050565b6000602082840312156122bb576122ba612243565b5b60006122c984828501612290565b91505092915050565b60008115159050919050565b6122e7816122d2565b82525050565b600060208201905061230260008301846122de565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612342578082015181840152602081019050612327565b60008484015250505050565b6000601f19601f8301169050919050565b600061236a82612308565b6123748185612313565b9350612384818560208601612324565b61238d8161234e565b840191505092915050565b600060208201905081810360008301526123b2818461235f565b905092915050565b6000819050919050565b6123cd816123ba565b81146123d857600080fd5b50565b6000813590506123ea816123c4565b92915050565b60006020828403121561240657612405612243565b5b6000612414848285016123db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124488261241d565b9050919050565b6124588161243d565b82525050565b6000602082019050612473600083018461244f565b92915050565b6124828161243d565b811461248d57600080fd5b50565b60008135905061249f81612479565b92915050565b600080604083850312156124bc576124bb612243565b5b60006124ca85828601612490565b92505060206124db858286016123db565b9150509250929050565b6124ee816123ba565b82525050565b600060208201905061250960008301846124e5565b92915050565b60008060006060848603121561252857612527612243565b5b600061253686828701612490565b935050602061254786828701612490565b9250506040612558868287016123db565b9150509250925092565b60006020828403121561257857612577612243565b5b600061258684828501612490565b91505092915050565b612598816122d2565b81146125a357600080fd5b50565b6000813590506125b58161258f565b92915050565b600080604083850312156125d2576125d1612243565b5b60006125e085828601612490565b92505060206125f1858286016125a6565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61263d8261234e565b810181811067ffffffffffffffff8211171561265c5761265b612605565b5b80604052505050565b600061266f612239565b905061267b8282612634565b919050565b600067ffffffffffffffff82111561269b5761269a612605565b5b6126a48261234e565b9050602081019050919050565b82818337600083830152505050565b60006126d36126ce84612680565b612665565b9050828152602081018484840111156126ef576126ee612600565b5b6126fa8482856126b1565b509392505050565b600082601f830112612717576127166125fb565b5b81356127278482602086016126c0565b91505092915050565b6000806000806080858703121561274a57612749612243565b5b600061275887828801612490565b945050602061276987828801612490565b935050604061277a878288016123db565b925050606085013567ffffffffffffffff81111561279b5761279a612248565b5b6127a787828801612702565b91505092959194509250565b600080604083850312156127ca576127c9612243565b5b60006127d885828601612490565b92505060206127e985828601612490565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061283a57607f821691505b60208210810361284d5761284c6127f3565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006128af602183612313565b91506128ba82612853565b604082019050919050565b600060208201905081810360008301526128de816128a2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612941603d83612313565b915061294c826128e5565b604082019050919050565b6000602082019050818103600083015261297081612934565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006129d3602d83612313565b91506129de82612977565b604082019050919050565b60006020820190508181036000830152612a02816129c6565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612a3f601883612313565b9150612a4a82612a09565b602082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612ad1602983612313565b9150612adc82612a75565b604082019050919050565b60006020820190508181036000830152612b0081612ac4565b9050919050565b600081905092915050565b50565b6000612b22600083612b07565b9150612b2d82612b12565b600082019050919050565b6000612b4382612b15565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612b83601083612313565b9150612b8e82612b4d565b602082019050919050565b60006020820190508181036000830152612bb281612b76565b9050919050565b7f4d75737420757365206174206c65617374206d696e74206f6e65000000000000600082015250565b6000612bef601a83612313565b9150612bfa82612bb9565b602082019050919050565b60006020820190508181036000830152612c1e81612be2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c5f826123ba565b9150612c6a836123ba565b9250828203905081811115612c8257612c81612c25565b5b92915050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b6000612cbe601383612313565b9150612cc982612c88565b602082019050919050565b60006020820190508181036000830152612ced81612cb1565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000612d50602d83612313565b9150612d5b82612cf4565b604082019050919050565b60006020820190508181036000830152612d7f81612d43565b9050919050565b6000612d91826123ba565b9150612d9c836123ba565b9250828201905080821115612db457612db3612c25565b5b92915050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000612df0601583612313565b9150612dfb82612dba565b602082019050919050565b60006020820190508181036000830152612e1f81612de3565b9050919050565b6000612e31826123ba565b9150612e3c836123ba565b9250828202612e4a816123ba565b91508282048414831517612e6157612e60612c25565b5b5092915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000612e9e601383612313565b9150612ea982612e68565b602082019050919050565b60006020820190508181036000830152612ecd81612e91565b9050919050565b6000612edf826123ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f1157612f10612c25565b5b600182019050919050565b600081905092915050565b6000612f3282612308565b612f3c8185612f1c565b9350612f4c818560208601612324565b80840191505092915050565b6000612f648285612f27565b9150612f708284612f27565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fd8602683612313565b9150612fe382612f7c565b604082019050919050565b6000602082019050818103600083015261300781612fcb565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061306a602583612313565b91506130758261300e565b604082019050919050565b600060208201905081810360008301526130998161305d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130fc602483612313565b9150613107826130a0565b604082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613168602083612313565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006131d4601983612313565b91506131df8261319e565b602082019050919050565b60006020820190508181036000830152613203816131c7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613266603283612313565b91506132718261320a565b604082019050919050565b6000602082019050818103600083015261329581613259565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006132f2826132cb565b6132fc81856132d6565b935061330c818560208601612324565b6133158161234e565b840191505092915050565b6000608082019050613335600083018761244f565b613342602083018661244f565b61334f60408301856124e5565b818103606083015261336181846132e7565b905095945050505050565b60008151905061337b81612279565b92915050565b60006020828403121561339757613396612243565b5b60006133a58482850161336c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006133e4602083612313565b91506133ef826133ae565b602082019050919050565b60006020820190508181036000830152613413816133d7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613450601c83612313565b915061345b8261341a565b602082019050919050565b6000602082019050818103600083015261347f81613443565b905091905056fea26469706673582212207cfcd4d1f7d8bdd763bf529c367e83b32e783a26e503b50636d6aea161d58bca64736f6c63430008130033697066733a2f2f62616679626569636b726668716e716b616b757a6f6a326d7261646c766771686f366971366268786c3765346665696b64667171676d7a7a6b6b612f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063853828b6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146105e0578063e985e9c51461061d578063f2fde38b1461065a578063f47c84c514610683576101c2565b8063a22cb46514610538578063b19960e614610561578063b88d4fde1461058c578063c6682862146105b5576101c2565b806395d89b41116100d157806395d89b411461049b5780639abc8320146104c6578063a035b1fe146104f1578063a0712d681461051c576101c2565b8063853828b61461043b5780638da5cb5b146104455780638ecad72114610470576101c2565b806342842e0e1161016457806358d949921161013e57806358d949921461037f5780636352211e146103aa57806370a08231146103e7578063715018a614610424576101c2565b806342842e0e14610300578063485a68a314610329578063564566a814610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c057806334918dfd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906122a5565b6106ae565b6040516101fb91906122ed565b60405180910390f35b34801561021057600080fd5b50610219610790565b6040516102269190612398565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906123f0565b610822565b604051610263919061245e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906124a5565b610868565b005b3480156102a157600080fd5b506102aa61097f565b6040516102b791906124f4565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e2919061250f565b610985565b005b3480156102f557600080fd5b506102fe6109e5565b005b34801561030c57600080fd5b506103276004803603810190610322919061250f565b610a19565b005b34801561033557600080fd5b5061033e610a39565b60405161034b91906124f4565b60405180910390f35b34801561036057600080fd5b50610369610a3f565b60405161037691906122ed565b60405180910390f35b34801561038b57600080fd5b50610394610a52565b6040516103a191906124f4565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc91906123f0565b610a57565b6040516103de919061245e565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190612562565b610add565b60405161041b91906124f4565b60405180910390f35b34801561043057600080fd5b50610439610b94565b005b610443610ba8565b005b34801561045157600080fd5b5061045a610c79565b604051610467919061245e565b60405180910390f35b34801561047c57600080fd5b50610485610ca3565b60405161049291906124f4565b60405180910390f35b3480156104a757600080fd5b506104b0610ca8565b6040516104bd9190612398565b60405180910390f35b3480156104d257600080fd5b506104db610d3a565b6040516104e89190612398565b60405180910390f35b3480156104fd57600080fd5b50610506610dc8565b60405161051391906124f4565b60405180910390f35b610536600480360381019061053191906123f0565b610dce565b005b34801561054457600080fd5b5061055f600480360381019061055a91906125bb565b611097565b005b34801561056d57600080fd5b506105766110ad565b60405161058391906124f4565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190612730565b6110b2565b005b3480156105c157600080fd5b506105ca611114565b6040516105d79190612398565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906123f0565b6111a2565b6040516106149190612398565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f91906127b3565b61120a565b60405161065191906122ed565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612562565b61129e565b005b34801561068f57600080fd5b50610698611321565b6040516106a591906124f4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610789575061078882611327565b5b9050919050565b60606000805461079f90612822565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb90612822565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b5050505050905090565b600061082d82611391565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087382610a57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da906128c5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109026113dc565b73ffffffffffffffffffffffffffffffffffffffff16148061093157506109308161092b6113dc565b61120a565b5b610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790612957565b60405180910390fd5b61097a83836113e4565b505050565b600a5481565b6109966109906113dc565b8261149d565b6109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906129e9565b60405180910390fd5b6109e0838383611532565b505050565b6109ed61182b565b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b610a34838383604051806020016040528060008152506110b2565b505050565b60085481565b600960009054906101000a900460ff1681565b606481565b600080610a63836118a9565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90612a55565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490612ae7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b9c61182b565b610ba660006118e6565b565b610bb061182b565b600047905060007339a3bced8b1b78851fe4c7352e69ea407c33c80973ffffffffffffffffffffffffffffffffffffffff1682604051610bef90612b38565b60006040518083038185875af1925050503d8060008114610c2c576040519150601f19603f3d011682016040523d82523d6000602084013e610c31565b606091505b5050905080610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90612b99565b60405180910390fd5b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b606060018054610cb790612822565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce390612822565b8015610d305780601f10610d0557610100808354040283529160200191610d30565b820191906000526020600020905b815481529060010190602001808311610d1357829003601f168201915b5050505050905090565b600c8054610d4790612822565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7390612822565b8015610dc05780601f10610d9557610100808354040283529160200191610dc0565b820191906000526020600020905b815481529060010190602001808311610da357829003601f168201915b505050505081565b60075481565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008211610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612c05565b60405180910390fd5b60008290506000600a5490506064600a5411610e745760009150610eba565b600854831015610eb9578383600854610e8d9190612c54565b1115610e9c5760009150610eb8565b82600854610eaa9190612c54565b84610eb59190612c54565b91505b5b5b600960009054906101000a900460ff16610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612cd4565b60405180910390fd5b600a841115610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490612d66565b60405180910390fd5b6113888482610f5c9190612d86565b1115610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490612e06565b60405180910390fd5b3460075483610fac9190612e26565b1115610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490612eb4565b60405180910390fd5b6000600190505b8481116110215761101033828461100b9190612d86565b6119ac565b8061101a90612ed4565b9050610ff4565b5083600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110719190612d86565b9250508190555083600a600082825461108a9190612d86565b9250508190555050505050565b6110a96110a26113dc565b83836119ca565b5050565b601481565b6110c36110bd6113dc565b8361149d565b611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906129e9565b60405180910390fd5b61110e84848484611b36565b50505050565b600d805461112190612822565b80601f016020809104026020016040519081016040528092919081815260200182805461114d90612822565b801561119a5780601f1061116f5761010080835404028352916020019161119a565b820191906000526020600020905b81548152906001019060200180831161117d57829003601f168201915b505050505081565b60606111ad82611391565b60006111b7611b92565b905060008151116111d75760405180602001604052806000815250611202565b806111e184611ba9565b6040516020016111f2929190612f58565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112a661182b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90612fee565b60405180910390fd5b61131e816118e6565b50565b61138881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61139a81611c77565b6113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090612a55565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661145783610a57565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806114a983610a57565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114eb57506114ea818561120a565b5b8061152957508373ffffffffffffffffffffffffffffffffffffffff1661151184610822565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661155282610a57565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613080565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613112565b60405180910390fd5b6116248383836001611cb8565b8273ffffffffffffffffffffffffffffffffffffffff1661164482610a57565b73ffffffffffffffffffffffffffffffffffffffff161461169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190613080565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118268383836001611cbe565b505050565b6118336113dc565b73ffffffffffffffffffffffffffffffffffffffff16611851610c79565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e9061317e565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119c6828260405180602001604052806000815250611cc4565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906131ea565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b2991906122ed565b60405180910390a3505050565b611b41848484611532565b611b4d84848484611d1f565b611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b839061327c565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606060006001611bb884611ea6565b01905060008167ffffffffffffffff811115611bd757611bd6612605565b5b6040519080825280601f01601f191660200182016040528015611c095781602001600182028036833780820191505090505b509050600082602001820190505b600115611c6c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c6057611c5f61329c565b5b04945060008503611c17575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c99836118a9565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b611cce8383611ff9565b611cdb6000848484611d1f565b611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119061327c565b60405180910390fd5b505050565b6000611d408473ffffffffffffffffffffffffffffffffffffffff16612216565b15611e99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d696113dc565b8786866040518563ffffffff1660e01b8152600401611d8b9493929190613320565b6020604051808303816000875af1925050508015611dc757506040513d601f19601f82011682018060405250810190611dc49190613381565b60015b611e49573d8060008114611df7576040519150601f19603f3d011682016040523d82523d6000602084013e611dfc565b606091505b506000815103611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e389061327c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e9e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f04577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611efa57611ef961329c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f41576d04ee2d6d415b85acef81000000008381611f3757611f3661329c565b5b0492506020810190505b662386f26fc100008310611f7057662386f26fc100008381611f6657611f6561329c565b5b0492506010810190505b6305f5e1008310611f99576305f5e1008381611f8f57611f8e61329c565b5b0492506008810190505b6127108310611fbe576127108381611fb457611fb361329c565b5b0492506004810190505b60648310611fe15760648381611fd757611fd661329c565b5b0492506002810190505b600a8310611ff0576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f906133fa565b60405180910390fd5b61207181611c77565b156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613466565b60405180910390fd5b6120bf600083836001611cb8565b6120c881611c77565b15612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90613466565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612212600083836001611cbe565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122828161224d565b811461228d57600080fd5b50565b60008135905061229f81612279565b92915050565b6000602082840312156122bb576122ba612243565b5b60006122c984828501612290565b91505092915050565b60008115159050919050565b6122e7816122d2565b82525050565b600060208201905061230260008301846122de565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612342578082015181840152602081019050612327565b60008484015250505050565b6000601f19601f8301169050919050565b600061236a82612308565b6123748185612313565b9350612384818560208601612324565b61238d8161234e565b840191505092915050565b600060208201905081810360008301526123b2818461235f565b905092915050565b6000819050919050565b6123cd816123ba565b81146123d857600080fd5b50565b6000813590506123ea816123c4565b92915050565b60006020828403121561240657612405612243565b5b6000612414848285016123db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124488261241d565b9050919050565b6124588161243d565b82525050565b6000602082019050612473600083018461244f565b92915050565b6124828161243d565b811461248d57600080fd5b50565b60008135905061249f81612479565b92915050565b600080604083850312156124bc576124bb612243565b5b60006124ca85828601612490565b92505060206124db858286016123db565b9150509250929050565b6124ee816123ba565b82525050565b600060208201905061250960008301846124e5565b92915050565b60008060006060848603121561252857612527612243565b5b600061253686828701612490565b935050602061254786828701612490565b9250506040612558868287016123db565b9150509250925092565b60006020828403121561257857612577612243565b5b600061258684828501612490565b91505092915050565b612598816122d2565b81146125a357600080fd5b50565b6000813590506125b58161258f565b92915050565b600080604083850312156125d2576125d1612243565b5b60006125e085828601612490565b92505060206125f1858286016125a6565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61263d8261234e565b810181811067ffffffffffffffff8211171561265c5761265b612605565b5b80604052505050565b600061266f612239565b905061267b8282612634565b919050565b600067ffffffffffffffff82111561269b5761269a612605565b5b6126a48261234e565b9050602081019050919050565b82818337600083830152505050565b60006126d36126ce84612680565b612665565b9050828152602081018484840111156126ef576126ee612600565b5b6126fa8482856126b1565b509392505050565b600082601f830112612717576127166125fb565b5b81356127278482602086016126c0565b91505092915050565b6000806000806080858703121561274a57612749612243565b5b600061275887828801612490565b945050602061276987828801612490565b935050604061277a878288016123db565b925050606085013567ffffffffffffffff81111561279b5761279a612248565b5b6127a787828801612702565b91505092959194509250565b600080604083850312156127ca576127c9612243565b5b60006127d885828601612490565b92505060206127e985828601612490565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061283a57607f821691505b60208210810361284d5761284c6127f3565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006128af602183612313565b91506128ba82612853565b604082019050919050565b600060208201905081810360008301526128de816128a2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612941603d83612313565b915061294c826128e5565b604082019050919050565b6000602082019050818103600083015261297081612934565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006129d3602d83612313565b91506129de82612977565b604082019050919050565b60006020820190508181036000830152612a02816129c6565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612a3f601883612313565b9150612a4a82612a09565b602082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612ad1602983612313565b9150612adc82612a75565b604082019050919050565b60006020820190508181036000830152612b0081612ac4565b9050919050565b600081905092915050565b50565b6000612b22600083612b07565b9150612b2d82612b12565b600082019050919050565b6000612b4382612b15565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612b83601083612313565b9150612b8e82612b4d565b602082019050919050565b60006020820190508181036000830152612bb281612b76565b9050919050565b7f4d75737420757365206174206c65617374206d696e74206f6e65000000000000600082015250565b6000612bef601a83612313565b9150612bfa82612bb9565b602082019050919050565b60006020820190508181036000830152612c1e81612be2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c5f826123ba565b9150612c6a836123ba565b9250828203905081811115612c8257612c81612c25565b5b92915050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b6000612cbe601383612313565b9150612cc982612c88565b602082019050919050565b60006020820190508181036000830152612ced81612cb1565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000612d50602d83612313565b9150612d5b82612cf4565b604082019050919050565b60006020820190508181036000830152612d7f81612d43565b9050919050565b6000612d91826123ba565b9150612d9c836123ba565b9250828201905080821115612db457612db3612c25565b5b92915050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000612df0601583612313565b9150612dfb82612dba565b602082019050919050565b60006020820190508181036000830152612e1f81612de3565b9050919050565b6000612e31826123ba565b9150612e3c836123ba565b9250828202612e4a816123ba565b91508282048414831517612e6157612e60612c25565b5b5092915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000612e9e601383612313565b9150612ea982612e68565b602082019050919050565b60006020820190508181036000830152612ecd81612e91565b9050919050565b6000612edf826123ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f1157612f10612c25565b5b600182019050919050565b600081905092915050565b6000612f3282612308565b612f3c8185612f1c565b9350612f4c818560208601612324565b80840191505092915050565b6000612f648285612f27565b9150612f708284612f27565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fd8602683612313565b9150612fe382612f7c565b604082019050919050565b6000602082019050818103600083015261300781612fcb565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061306a602583612313565b91506130758261300e565b604082019050919050565b600060208201905081810360008301526130998161305d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130fc602483612313565b9150613107826130a0565b604082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613168602083612313565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006131d4601983612313565b91506131df8261319e565b602082019050919050565b60006020820190508181036000830152613203816131c7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613266603283612313565b91506132718261320a565b604082019050919050565b6000602082019050818103600083015261329581613259565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006132f2826132cb565b6132fc81856132d6565b935061330c818560208601612324565b6133158161234e565b840191505092915050565b6000608082019050613335600083018761244f565b613342602083018661244f565b61334f60408301856124e5565b818103606083015261336181846132e7565b905095945050505050565b60008151905061337b81612279565b92915050565b60006020828403121561339757613396612243565b5b60006133a58482850161336c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006133e4602083612313565b91506133ef826133ae565b602082019050919050565b60006020820190508181036000830152613413816133d7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613450601c83612313565b915061345b8261341a565b602082019050919050565b6000602082019050818103600083015261347f81613443565b905091905056fea26469706673582212207cfcd4d1f7d8bdd763bf529c367e83b32e783a26e503b50636d6aea161d58bca64736f6c63430008130033

Deployed Bytecode Sourcemap

54811:2380:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35844:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36772:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38284:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37802:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55249:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38984:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56820:91;;;;;;;;;;;;;:::i;:::-;;39390:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55183:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55218:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54938:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36482:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36213:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53922:103;;;;;;;;;;;;;:::i;:::-;;56919:269;;;:::i;:::-;;53274:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55077:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55344:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55036:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55714:1098;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38527:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55128:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39646:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55372:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37116:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54180:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54890:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35844:305;35946:4;35998:25;35983:40;;;:11;:40;;;;:105;;;;36055:33;36040:48;;;:11;:48;;;;35983:105;:158;;;;36105:36;36129:11;36105:23;:36::i;:::-;35983:158;35963:178;;35844:305;;;:::o;36772:100::-;36826:13;36859:5;36852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772:100;:::o;38284:171::-;38360:7;38380:23;38395:7;38380:14;:23::i;:::-;38423:15;:24;38439:7;38423:24;;;;;;;;;;;;;;;;;;;;;38416:31;;38284:171;;;:::o;37802:416::-;37883:13;37899:23;37914:7;37899:14;:23::i;:::-;37883:39;;37947:5;37941:11;;:2;:11;;;37933:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38041:5;38025:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38050:37;38067:5;38074:12;:10;:12::i;:::-;38050:16;:37::i;:::-;38025:62;38003:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38189:21;38198:2;38202:7;38189:8;:21::i;:::-;37872:346;37802:416;;:::o;55249:26::-;;;;:::o;38984:335::-;39179:41;39198:12;:10;:12::i;:::-;39212:7;39179:18;:41::i;:::-;39171:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39283:28;39293:4;39299:2;39303:7;39283:9;:28::i;:::-;38984:335;;;:::o;56820:91::-;53160:13;:11;:13::i;:::-;56891:12:::1;;;;;;;;;;;56890:13;56875:12;;:28;;;;;;;;;;;;;;;;;;56820:91::o:0;39390:185::-;39528:39;39545:4;39551:2;39555:7;39528:39;;;;;;;;;;;;:16;:39::i;:::-;39390:185;;;:::o;55183:26::-;;;;:::o;55218:24::-;;;;;;;;;;;;;:::o;54938:40::-;54975:3;54938:40;:::o;36482:223::-;36554:7;36574:13;36590:17;36599:7;36590:8;:17::i;:::-;36574:33;;36643:1;36626:19;;:5;:19;;;36618:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36692:5;36685:12;;;36482:223;;;:::o;36213:207::-;36285:7;36330:1;36313:19;;:5;:19;;;36305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36396:9;:16;36406:5;36396:16;;;;;;;;;;;;;;;;36389:23;;36213:207;;;:::o;53922:103::-;53160:13;:11;:13::i;:::-;53987:30:::1;54014:1;53987:18;:30::i;:::-;53922:103::o:0;56919:269::-;53160:13;:11;:13::i;:::-;56980:15:::1;56998:21;56980:39;;57031:16;57061:42;57053:56;;57117:7;57053:76;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57030:99;;;57148:11;57140:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;56969:219;;56919:269::o:0;53274:87::-;53320:7;53347:6;;;;;;;;;;;53340:13;;53274:87;:::o;55077:44::-;55119:2;55077:44;:::o;36941:104::-;36997:13;37030:7;37023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36941:104;:::o;55344:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55036:34::-;;;;:::o;55714:1098::-;55776:14;55793:15;:27;55809:10;55793:27;;;;;;;;;;;;;;;;55776:44;;55852:1;55839:10;:14;55831:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;55895:19;55917:10;55895:32;;55938:22;55963:11;;55938:36;;54975:3;55988:11;;:25;55985:296;;56043:1;56029:15;;55985:296;;;56075:7;;56066:6;:16;56062:219;;;56122:10;56113:6;56103:7;;:16;;;;:::i;:::-;:29;56099:171;;;56167:1;56153:15;;56099:171;;;56247:6;56237:7;;:16;;;;:::i;:::-;56223:10;:31;;;;:::i;:::-;56209:45;;56099:171;56062:219;55985:296;56299:12;;;;;;;;;;;56291:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;55119:2;56354:10;:29;;56346:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;54927:4;56469:10;56452:14;:27;;;;:::i;:::-;:41;;56444:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;56561:9;56552:5;;56538:11;:19;;;;:::i;:::-;:32;;56530:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;56612:9;56624:1;56612:13;;56607:110;56632:10;56627:1;:15;56607:110;;56664:41;56674:10;56703:1;56686:14;:18;;;;:::i;:::-;56664:9;:41::i;:::-;56644:3;;;;:::i;:::-;;;56607:110;;;;56758:10;56727:15;:27;56743:10;56727:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;56794:10;56779:11;;:25;;;;;;;:::i;:::-;;;;;;;;55765:1047;;;55714:1098;:::o;38527:155::-;38622:52;38641:12;:10;:12::i;:::-;38655:8;38665;38622:18;:52::i;:::-;38527:155;;:::o;55128:48::-;55174:2;55128:48;:::o;39646:322::-;39820:41;39839:12;:10;:12::i;:::-;39853:7;39820:18;:41::i;:::-;39812:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:38;39936:4;39942:2;39946:7;39955:4;39922:13;:38::i;:::-;39646:322;;;;:::o;55372:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37116:281::-;37189:13;37215:23;37230:7;37215:14;:23::i;:::-;37251:21;37275:10;:8;:10::i;:::-;37251:34;;37327:1;37309:7;37303:21;:25;:86;;;;;;;;;;;;;;;;;37355:7;37364:18;:7;:16;:18::i;:::-;37338:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37303:86;37296:93;;;37116:281;;;:::o;38753:164::-;38850:4;38874:18;:25;38893:5;38874:25;;;;;;;;;;;;;;;:35;38900:8;38874:35;;;;;;;;;;;;;;;;;;;;;;;;;38867:42;;38753:164;;;;:::o;54180:201::-;53160:13;:11;:13::i;:::-;54289:1:::1;54269:22;;:8;:22;;::::0;54261:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54345:28;54364:8;54345:18;:28::i;:::-;54180:201:::0;:::o;54890:41::-;54927:4;54890:41;:::o;27463:157::-;27548:4;27587:25;27572:40;;;:11;:40;;;;27565:47;;27463:157;;;:::o;48103:135::-;48185:16;48193:7;48185;:16::i;:::-;48177:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48103:135;:::o;34223:98::-;34276:7;34303:10;34296:17;;34223:98;:::o;47382:174::-;47484:2;47457:15;:24;47473:7;47457:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47540:7;47536:2;47502:46;;47511:23;47526:7;47511:14;:23::i;:::-;47502:46;;;;;;;;;;;;47382:174;;:::o;42001:264::-;42094:4;42111:13;42127:23;42142:7;42127:14;:23::i;:::-;42111:39;;42180:5;42169:16;;:7;:16;;;:52;;;;42189:32;42206:5;42213:7;42189:16;:32::i;:::-;42169:52;:87;;;;42249:7;42225:31;;:20;42237:7;42225:11;:20::i;:::-;:31;;;42169:87;42161:96;;;42001:264;;;;:::o;46000:1263::-;46159:4;46132:31;;:23;46147:7;46132:14;:23::i;:::-;:31;;;46124:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46238:1;46224:16;;:2;:16;;;46216:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46294:42;46315:4;46321:2;46325:7;46334:1;46294:20;:42::i;:::-;46466:4;46439:31;;:23;46454:7;46439:14;:23::i;:::-;:31;;;46431:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46584:15;:24;46600:7;46584:24;;;;;;;;;;;;46577:31;;;;;;;;;;;47079:1;47060:9;:15;47070:4;47060:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47112:1;47095:9;:13;47105:2;47095:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47154:2;47135:7;:16;47143:7;47135:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47193:7;47189:2;47174:27;;47183:4;47174:27;;;;;;;;;;;;47214:41;47234:4;47240:2;47244:7;47253:1;47214:19;:41::i;:::-;46000:1263;;;:::o;53439:132::-;53514:12;:10;:12::i;:::-;53503:23;;:7;:5;:7::i;:::-;:23;;;53495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53439:132::o;41276:117::-;41342:7;41369;:16;41377:7;41369:16;;;;;;;;;;;;;;;;;;;;;41362:23;;41276:117;;;:::o;54541:191::-;54615:16;54634:6;;;;;;;;;;;54615:25;;54660:8;54651:6;;:17;;;;;;;;;;;;;;;;;;54715:8;54684:40;;54705:8;54684:40;;;;;;;;;;;;54604:128;54541:191;:::o;42607:110::-;42683:26;42693:2;42697:7;42683:26;;;;;;;;;;;;:9;:26::i;:::-;42607:110;;:::o;47699:315::-;47854:8;47845:17;;:5;:17;;;47837:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47941:8;47903:18;:25;47922:5;47903:25;;;;;;;;;;;;;;;:35;47929:8;47903:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;47987:8;47965:41;;47980:5;47965:41;;;47997:8;47965:41;;;;;;:::i;:::-;;;;;;;;47699:315;;;:::o;40849:313::-;41005:28;41015:4;41021:2;41025:7;41005:9;:28::i;:::-;41052:47;41075:4;41081:2;41085:7;41094:4;41052:22;:47::i;:::-;41044:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40849:313;;;;:::o;37646:94::-;37697:13;37723:9;;;;;;;;;;;;;;37646:94;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;41706:128::-;41771:4;41824:1;41795:31;;:17;41804:7;41795:8;:17::i;:::-;:31;;;;41788:38;;41706:128;;;:::o;50387:159::-;;;;;:::o;51268:158::-;;;;;:::o;42944:319::-;43073:18;43079:2;43083:7;43073:5;:18::i;:::-;43124:53;43155:1;43159:2;43163:7;43172:4;43124:22;:53::i;:::-;43102:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42944:319;;;:::o;48802:853::-;48956:4;48977:15;:2;:13;;;:15::i;:::-;48973:675;;;49029:2;49013:36;;;49050:12;:10;:12::i;:::-;49064:4;49070:7;49079:4;49013:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49009:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49271:1;49254:6;:13;:18;49250:328;;49297:60;;;;;;;;;;:::i;:::-;;;;;;;;49250:328;49528:6;49522:13;49513:6;49509:2;49505:15;49498:38;49009:584;49145:41;;;49135:51;;;:6;:51;;;;49128:58;;;;;48973:675;49632:4;49625:11;;48802:853;;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;43599:942::-;43693:1;43679:16;;:2;:16;;;43671:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43752:16;43760:7;43752;:16::i;:::-;43751:17;43743:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43814:48;43843:1;43847:2;43851:7;43860:1;43814:20;:48::i;:::-;43961:16;43969:7;43961;:16::i;:::-;43960:17;43952:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44376:1;44359:9;:13;44369:2;44359:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44420:2;44401:7;:16;44409:7;44401:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44465:7;44461:2;44440:33;;44457:1;44440:33;;;;;;;;;;;;44486:47;44514:1;44518:2;44522:7;44531:1;44486:19;:47::i;:::-;43599:942;;:::o;16432:326::-;16492:4;16749:1;16727:7;:19;;;:23;16720:30;;16432: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:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:180;7231:77;7228:1;7221:88;7328:4;7325:1;7318:15;7352:4;7349:1;7342:15;7369:281;7452:27;7474:4;7452:27;:::i;:::-;7444:6;7440:40;7582:6;7570:10;7567:22;7546:18;7534:10;7531:34;7528:62;7525:88;;;7593:18;;:::i;:::-;7525:88;7633:10;7629:2;7622:22;7412:238;7369:281;;:::o;7656:129::-;7690:6;7717:20;;:::i;:::-;7707:30;;7746:33;7774:4;7766:6;7746:33;:::i;:::-;7656:129;;;:::o;7791:307::-;7852:4;7942:18;7934:6;7931:30;7928:56;;;7964:18;;:::i;:::-;7928:56;8002:29;8024:6;8002:29;:::i;:::-;7994:37;;8086:4;8080;8076:15;8068:23;;7791:307;;;:::o;8104:146::-;8201:6;8196:3;8191;8178:30;8242:1;8233:6;8228:3;8224:16;8217:27;8104:146;;;:::o;8256:423::-;8333:5;8358:65;8374:48;8415:6;8374:48;:::i;:::-;8358:65;:::i;:::-;8349:74;;8446:6;8439:5;8432:21;8484:4;8477:5;8473:16;8522:3;8513:6;8508:3;8504:16;8501:25;8498:112;;;8529:79;;:::i;:::-;8498:112;8619:54;8666:6;8661:3;8656;8619:54;:::i;:::-;8339:340;8256:423;;;;;:::o;8698:338::-;8753:5;8802:3;8795:4;8787:6;8783:17;8779:27;8769:122;;8810:79;;:::i;:::-;8769:122;8927:6;8914:20;8952:78;9026:3;9018:6;9011:4;9003:6;8999:17;8952:78;:::i;:::-;8943:87;;8759:277;8698:338;;;;:::o;9042:943::-;9137:6;9145;9153;9161;9210:3;9198:9;9189:7;9185:23;9181:33;9178:120;;;9217:79;;:::i;:::-;9178:120;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:53;9535:7;9526:6;9515:9;9511:22;9490:53;:::i;:::-;9480:63;;9435:118;9592:2;9618:53;9663:7;9654:6;9643:9;9639:22;9618:53;:::i;:::-;9608:63;;9563:118;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9906:62;9960:7;9951:6;9940:9;9936:22;9906:62;:::i;:::-;9896:72;;9691:287;9042:943;;;;;;;:::o;9991:474::-;10059:6;10067;10116:2;10104:9;10095:7;10091:23;10087:32;10084:119;;;10122:79;;:::i;:::-;10084:119;10242:1;10267:53;10312:7;10303:6;10292:9;10288:22;10267:53;:::i;:::-;10257:63;;10213:117;10369:2;10395:53;10440:7;10431:6;10420:9;10416:22;10395:53;:::i;:::-;10385:63;;10340:118;9991:474;;;;;:::o;10471:180::-;10519:77;10516:1;10509:88;10616:4;10613:1;10606:15;10640:4;10637:1;10630:15;10657:320;10701:6;10738:1;10732:4;10728:12;10718:22;;10785:1;10779:4;10775:12;10806:18;10796:81;;10862:4;10854:6;10850:17;10840:27;;10796:81;10924:2;10916:6;10913:14;10893:18;10890:38;10887:84;;10943:18;;:::i;:::-;10887:84;10708:269;10657:320;;;:::o;10983:220::-;11123:34;11119:1;11111:6;11107:14;11100:58;11192:3;11187:2;11179:6;11175:15;11168:28;10983:220;:::o;11209:366::-;11351:3;11372:67;11436:2;11431:3;11372:67;:::i;:::-;11365:74;;11448:93;11537:3;11448:93;:::i;:::-;11566:2;11561:3;11557:12;11550:19;;11209:366;;;:::o;11581:419::-;11747:4;11785:2;11774:9;11770:18;11762:26;;11834:9;11828:4;11824:20;11820:1;11809:9;11805:17;11798:47;11862:131;11988:4;11862:131;:::i;:::-;11854:139;;11581:419;;;:::o;12006:248::-;12146:34;12142:1;12134:6;12130:14;12123:58;12215:31;12210:2;12202:6;12198:15;12191:56;12006:248;:::o;12260:366::-;12402:3;12423:67;12487:2;12482:3;12423:67;:::i;:::-;12416:74;;12499:93;12588:3;12499:93;:::i;:::-;12617:2;12612:3;12608:12;12601:19;;12260:366;;;:::o;12632:419::-;12798:4;12836:2;12825:9;12821:18;12813:26;;12885:9;12879:4;12875:20;12871:1;12860:9;12856:17;12849:47;12913:131;13039:4;12913:131;:::i;:::-;12905:139;;12632:419;;;:::o;13057:232::-;13197:34;13193:1;13185:6;13181:14;13174:58;13266:15;13261:2;13253:6;13249:15;13242:40;13057:232;:::o;13295:366::-;13437:3;13458:67;13522:2;13517:3;13458:67;:::i;:::-;13451:74;;13534:93;13623:3;13534:93;:::i;:::-;13652:2;13647:3;13643:12;13636:19;;13295:366;;;:::o;13667:419::-;13833:4;13871:2;13860:9;13856:18;13848:26;;13920:9;13914:4;13910:20;13906:1;13895:9;13891:17;13884:47;13948:131;14074:4;13948:131;:::i;:::-;13940:139;;13667:419;;;:::o;14092:174::-;14232:26;14228:1;14220:6;14216:14;14209:50;14092:174;:::o;14272:366::-;14414:3;14435:67;14499:2;14494:3;14435:67;:::i;:::-;14428:74;;14511:93;14600:3;14511:93;:::i;:::-;14629:2;14624:3;14620:12;14613:19;;14272:366;;;:::o;14644:419::-;14810:4;14848:2;14837:9;14833:18;14825:26;;14897:9;14891:4;14887:20;14883:1;14872:9;14868:17;14861:47;14925:131;15051:4;14925:131;:::i;:::-;14917:139;;14644:419;;;:::o;15069:228::-;15209:34;15205:1;15197:6;15193:14;15186:58;15278:11;15273:2;15265:6;15261:15;15254:36;15069:228;:::o;15303:366::-;15445:3;15466:67;15530:2;15525:3;15466:67;:::i;:::-;15459:74;;15542:93;15631:3;15542:93;:::i;:::-;15660:2;15655:3;15651:12;15644:19;;15303:366;;;:::o;15675:419::-;15841:4;15879:2;15868:9;15864:18;15856:26;;15928:9;15922:4;15918:20;15914:1;15903:9;15899:17;15892:47;15956:131;16082:4;15956:131;:::i;:::-;15948:139;;15675:419;;;:::o;16100:147::-;16201:11;16238:3;16223:18;;16100:147;;;;:::o;16253:114::-;;:::o;16373:398::-;16532:3;16553:83;16634:1;16629:3;16553:83;:::i;:::-;16546:90;;16645:93;16734:3;16645:93;:::i;:::-;16763:1;16758:3;16754:11;16747:18;;16373:398;;;:::o;16777:379::-;16961:3;16983:147;17126:3;16983:147;:::i;:::-;16976:154;;17147:3;17140:10;;16777:379;;;:::o;17162:166::-;17302:18;17298:1;17290:6;17286:14;17279:42;17162:166;:::o;17334:366::-;17476:3;17497:67;17561:2;17556:3;17497:67;:::i;:::-;17490:74;;17573:93;17662:3;17573:93;:::i;:::-;17691:2;17686:3;17682:12;17675:19;;17334:366;;;:::o;17706:419::-;17872:4;17910:2;17899:9;17895:18;17887:26;;17959:9;17953:4;17949:20;17945:1;17934:9;17930:17;17923:47;17987:131;18113:4;17987:131;:::i;:::-;17979:139;;17706:419;;;:::o;18131:176::-;18271:28;18267:1;18259:6;18255:14;18248:52;18131:176;:::o;18313:366::-;18455:3;18476:67;18540:2;18535:3;18476:67;:::i;:::-;18469:74;;18552:93;18641:3;18552:93;:::i;:::-;18670:2;18665:3;18661:12;18654:19;;18313:366;;;:::o;18685:419::-;18851:4;18889:2;18878:9;18874:18;18866:26;;18938:9;18932:4;18928:20;18924:1;18913:9;18909:17;18902:47;18966:131;19092:4;18966:131;:::i;:::-;18958:139;;18685:419;;;:::o;19110:180::-;19158:77;19155:1;19148:88;19255:4;19252:1;19245:15;19279:4;19276:1;19269:15;19296:194;19336:4;19356:20;19374:1;19356:20;:::i;:::-;19351:25;;19390:20;19408:1;19390:20;:::i;:::-;19385:25;;19434:1;19431;19427:9;19419:17;;19458:1;19452:4;19449:11;19446:37;;;19463:18;;:::i;:::-;19446:37;19296:194;;;;:::o;19496:169::-;19636:21;19632:1;19624:6;19620:14;19613:45;19496:169;:::o;19671:366::-;19813:3;19834:67;19898:2;19893:3;19834:67;:::i;:::-;19827:74;;19910:93;19999:3;19910:93;:::i;:::-;20028:2;20023:3;20019:12;20012:19;;19671:366;;;:::o;20043:419::-;20209:4;20247:2;20236:9;20232:18;20224:26;;20296:9;20290:4;20286:20;20282:1;20271:9;20267:17;20260:47;20324:131;20450:4;20324:131;:::i;:::-;20316:139;;20043:419;;;:::o;20468:232::-;20608:34;20604:1;20596:6;20592:14;20585:58;20677:15;20672:2;20664:6;20660:15;20653:40;20468:232;:::o;20706:366::-;20848:3;20869:67;20933:2;20928:3;20869:67;:::i;:::-;20862:74;;20945:93;21034:3;20945:93;:::i;:::-;21063:2;21058:3;21054:12;21047:19;;20706:366;;;:::o;21078:419::-;21244:4;21282:2;21271:9;21267:18;21259:26;;21331:9;21325:4;21321:20;21317:1;21306:9;21302:17;21295:47;21359:131;21485:4;21359:131;:::i;:::-;21351:139;;21078:419;;;:::o;21503:191::-;21543:3;21562:20;21580:1;21562:20;:::i;:::-;21557:25;;21596:20;21614:1;21596:20;:::i;:::-;21591:25;;21639:1;21636;21632:9;21625:16;;21660:3;21657:1;21654:10;21651:36;;;21667:18;;:::i;:::-;21651:36;21503:191;;;;:::o;21700:171::-;21840:23;21836:1;21828:6;21824:14;21817:47;21700:171;:::o;21877:366::-;22019:3;22040:67;22104:2;22099:3;22040:67;:::i;:::-;22033:74;;22116:93;22205:3;22116:93;:::i;:::-;22234:2;22229:3;22225:12;22218:19;;21877:366;;;:::o;22249:419::-;22415:4;22453:2;22442:9;22438:18;22430:26;;22502:9;22496:4;22492:20;22488:1;22477:9;22473:17;22466:47;22530:131;22656:4;22530:131;:::i;:::-;22522:139;;22249:419;;;:::o;22674:410::-;22714:7;22737:20;22755:1;22737:20;:::i;:::-;22732:25;;22771:20;22789:1;22771:20;:::i;:::-;22766:25;;22826:1;22823;22819:9;22848:30;22866:11;22848:30;:::i;:::-;22837:41;;23027:1;23018:7;23014:15;23011:1;23008:22;22988:1;22981:9;22961:83;22938:139;;23057:18;;:::i;:::-;22938:139;22722:362;22674:410;;;;:::o;23090:169::-;23230:21;23226:1;23218:6;23214:14;23207:45;23090:169;:::o;23265:366::-;23407:3;23428:67;23492:2;23487:3;23428:67;:::i;:::-;23421:74;;23504:93;23593:3;23504:93;:::i;:::-;23622:2;23617:3;23613:12;23606:19;;23265:366;;;:::o;23637:419::-;23803:4;23841:2;23830:9;23826:18;23818:26;;23890:9;23884:4;23880:20;23876:1;23865:9;23861:17;23854:47;23918:131;24044:4;23918:131;:::i;:::-;23910:139;;23637:419;;;:::o;24062:233::-;24101:3;24124:24;24142:5;24124:24;:::i;:::-;24115:33;;24170:66;24163:5;24160:77;24157:103;;24240:18;;:::i;:::-;24157:103;24287:1;24280:5;24276:13;24269:20;;24062:233;;;:::o;24301:148::-;24403:11;24440:3;24425:18;;24301:148;;;;:::o;24455:390::-;24561:3;24589:39;24622:5;24589:39;:::i;:::-;24644:89;24726:6;24721:3;24644:89;:::i;:::-;24637:96;;24742:65;24800:6;24795:3;24788:4;24781:5;24777:16;24742:65;:::i;:::-;24832:6;24827:3;24823:16;24816:23;;24565:280;24455:390;;;;:::o;24851:435::-;25031:3;25053:95;25144:3;25135:6;25053:95;:::i;:::-;25046:102;;25165:95;25256:3;25247:6;25165:95;:::i;:::-;25158:102;;25277:3;25270:10;;24851:435;;;;;:::o;25292:225::-;25432:34;25428:1;25420:6;25416:14;25409:58;25501:8;25496:2;25488:6;25484:15;25477:33;25292:225;:::o;25523:366::-;25665:3;25686:67;25750:2;25745:3;25686:67;:::i;:::-;25679:74;;25762:93;25851:3;25762:93;:::i;:::-;25880:2;25875:3;25871:12;25864:19;;25523:366;;;:::o;25895:419::-;26061:4;26099:2;26088:9;26084:18;26076:26;;26148:9;26142:4;26138:20;26134:1;26123:9;26119:17;26112:47;26176:131;26302:4;26176:131;:::i;:::-;26168:139;;25895:419;;;:::o;26320:224::-;26460:34;26456:1;26448:6;26444:14;26437:58;26529:7;26524:2;26516:6;26512:15;26505:32;26320:224;:::o;26550:366::-;26692:3;26713:67;26777:2;26772:3;26713:67;:::i;:::-;26706:74;;26789:93;26878:3;26789:93;:::i;:::-;26907:2;26902:3;26898:12;26891:19;;26550:366;;;:::o;26922:419::-;27088:4;27126:2;27115:9;27111:18;27103:26;;27175:9;27169:4;27165:20;27161:1;27150:9;27146:17;27139:47;27203:131;27329:4;27203:131;:::i;:::-;27195:139;;26922:419;;;:::o;27347:223::-;27487:34;27483:1;27475:6;27471:14;27464:58;27556:6;27551:2;27543:6;27539:15;27532:31;27347:223;:::o;27576:366::-;27718:3;27739:67;27803:2;27798:3;27739:67;:::i;:::-;27732:74;;27815:93;27904:3;27815:93;:::i;:::-;27933:2;27928:3;27924:12;27917:19;;27576:366;;;:::o;27948:419::-;28114:4;28152:2;28141:9;28137:18;28129:26;;28201:9;28195:4;28191:20;28187:1;28176:9;28172:17;28165:47;28229:131;28355:4;28229:131;:::i;:::-;28221:139;;27948:419;;;:::o;28373:182::-;28513:34;28509:1;28501:6;28497:14;28490:58;28373:182;:::o;28561:366::-;28703:3;28724:67;28788:2;28783:3;28724:67;:::i;:::-;28717:74;;28800:93;28889:3;28800:93;:::i;:::-;28918:2;28913:3;28909:12;28902:19;;28561:366;;;:::o;28933:419::-;29099:4;29137:2;29126:9;29122:18;29114:26;;29186:9;29180:4;29176:20;29172:1;29161:9;29157:17;29150:47;29214:131;29340:4;29214:131;:::i;:::-;29206:139;;28933:419;;;:::o;29358:175::-;29498:27;29494:1;29486:6;29482:14;29475:51;29358:175;:::o;29539:366::-;29681:3;29702:67;29766:2;29761:3;29702:67;:::i;:::-;29695:74;;29778:93;29867:3;29778:93;:::i;:::-;29896:2;29891:3;29887:12;29880:19;;29539:366;;;:::o;29911:419::-;30077:4;30115:2;30104:9;30100:18;30092:26;;30164:9;30158:4;30154:20;30150:1;30139:9;30135:17;30128:47;30192:131;30318:4;30192:131;:::i;:::-;30184:139;;29911:419;;;:::o;30336:237::-;30476:34;30472:1;30464:6;30460:14;30453:58;30545:20;30540:2;30532:6;30528:15;30521:45;30336:237;:::o;30579:366::-;30721:3;30742:67;30806:2;30801:3;30742:67;:::i;:::-;30735:74;;30818:93;30907:3;30818:93;:::i;:::-;30936:2;30931:3;30927:12;30920:19;;30579:366;;;:::o;30951:419::-;31117:4;31155:2;31144:9;31140:18;31132:26;;31204:9;31198:4;31194:20;31190:1;31179:9;31175:17;31168:47;31232:131;31358:4;31232:131;:::i;:::-;31224:139;;30951:419;;;:::o;31376:180::-;31424:77;31421:1;31414:88;31521:4;31518:1;31511:15;31545:4;31542:1;31535:15;31562:98;31613:6;31647:5;31641:12;31631:22;;31562:98;;;:::o;31666:168::-;31749:11;31783:6;31778:3;31771:19;31823:4;31818:3;31814:14;31799:29;;31666:168;;;;:::o;31840:373::-;31926:3;31954:38;31986:5;31954:38;:::i;:::-;32008:70;32071:6;32066:3;32008:70;:::i;:::-;32001:77;;32087:65;32145:6;32140:3;32133:4;32126:5;32122:16;32087:65;:::i;:::-;32177:29;32199:6;32177:29;:::i;:::-;32172:3;32168:39;32161:46;;31930:283;31840:373;;;;:::o;32219:640::-;32414:4;32452:3;32441:9;32437:19;32429:27;;32466:71;32534:1;32523:9;32519:17;32510:6;32466:71;:::i;:::-;32547:72;32615:2;32604:9;32600:18;32591:6;32547:72;:::i;:::-;32629;32697:2;32686:9;32682:18;32673:6;32629:72;:::i;:::-;32748:9;32742:4;32738:20;32733:2;32722:9;32718:18;32711:48;32776:76;32847:4;32838:6;32776:76;:::i;:::-;32768:84;;32219:640;;;;;;;:::o;32865:141::-;32921:5;32952:6;32946:13;32937:22;;32968:32;32994:5;32968:32;:::i;:::-;32865:141;;;;:::o;33012:349::-;33081:6;33130:2;33118:9;33109:7;33105:23;33101:32;33098:119;;;33136:79;;:::i;:::-;33098:119;33256:1;33281:63;33336:7;33327:6;33316:9;33312:22;33281:63;:::i;:::-;33271:73;;33227:127;33012:349;;;;:::o;33367:182::-;33507:34;33503:1;33495:6;33491:14;33484:58;33367:182;:::o;33555:366::-;33697:3;33718:67;33782:2;33777:3;33718:67;:::i;:::-;33711:74;;33794:93;33883:3;33794:93;:::i;:::-;33912:2;33907:3;33903:12;33896:19;;33555:366;;;:::o;33927:419::-;34093:4;34131:2;34120:9;34116:18;34108:26;;34180:9;34174:4;34170:20;34166:1;34155:9;34151:17;34144:47;34208:131;34334:4;34208:131;:::i;:::-;34200:139;;33927:419;;;:::o;34352:178::-;34492:30;34488:1;34480:6;34476:14;34469:54;34352:178;:::o;34536:366::-;34678:3;34699:67;34763:2;34758:3;34699:67;:::i;:::-;34692:74;;34775:93;34864:3;34775:93;:::i;:::-;34893:2;34888:3;34884:12;34877:19;;34536:366;;;:::o;34908:419::-;35074:4;35112:2;35101:9;35097:18;35089:26;;35161:9;35155:4;35151:20;35147:1;35136:9;35132:17;35125:47;35189:131;35315:4;35189:131;:::i;:::-;35181:139;;34908:419;;;:::o

Swarm Source

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