APE Price: $1.17 (+0.99%)

Token

Ape Navigators (ANG)

Overview

Max Total Supply

21,379 ANG

Holders

276

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
1 ANG
0x918612436b0ec0107889fa4b85bd440a7930589b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
N2MERC721A

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-25
*/

/** ---------------------------------------------------------------------------- //
 *                                                                               //
 *                Smart contract generated by https://nfts2me.com                //
 *                                                                               //
 *                                      .::.                                     //
 *                                    ......                                     //
 *                                ....        ::.                                //
 *                             .:..           :: ...                             //
 *                         ..:.               ::     ...                         //
 *                       ::.      ..:--       ::.       ...                      //
 *                      .:    ..:::::-==:     :::::..     :                      //
 *                      .:    :::::::-====:   ::::::::    :                      //
 *                      .:    :::::::-======. ::::::::    :                      //
 *                      .:    :::::::-=======-::::::::    :                      //
 *                      .:    :::::::-========-:::::::    :                      //
 *                      .:    ::::::::========-:::::::    :                      //
 *                      .:    :::::::. .======-:::::::    :                      //
 *                      .:    :::::::.   :====-:::::::    :                      //
 *                      .:     .:::::.     -==-:::::.     :                      //
 *                       .:.       .:.      .--:..      ...                      //
 *                          .:.     :.               ...                         //
 *                             .... :.           ....                            //
 *                                 .:.        .:.                                //
 *                                      .::::.                                   //
 *                                      :--.                                     //
 *                                                                               //
 *                                                                               //
 *   NFTs2Me. Make an NFT Collection.                                            //
 *   With ZERO Coding Skills.                                                    //
 *                                                                               //
 *   NFTs2Me is not associated or affiliated with this project.                  //
 *   NFTs2Me is not liable for any bugs or issues associated with this contract. //
 *   NFTs2Me Terms of Service: https://nfts2me.com/terms-of-service/             //
 *   More info at: https://docs.nfts2me.com/                                     //
 * ----------------------------------------------------------------------------- */

/// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;


/**
 * @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 address zero.
     *
     * 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/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @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/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @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 (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

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

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && 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
     * towards zero.
     *
     * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * 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 256, 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @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), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @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) {
        uint256 localValue = value;
        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] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        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);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;


/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;








/**
 * @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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(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 {
        _approve(to, tokenId, _msgSender());
    }

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

        return _getApproved(tokenId);
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is 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`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @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 {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;




/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability
 * of all the token ids in the contract as well as all token ids owned by each account.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

        if (previousOwner == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _removeTokenFromOwnerEnumeration(previousOwner, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }

        return previousOwner;
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = balanceOf(to) - 1;
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = balanceOf(from);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) 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 FailedInnerCall();
        }
    }
}

// File: whitelisted72§.sol



pragma solidity ^0.8.20;






contract N2MERC721A is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint256;

    string public baseTokenURI = "ipfs://bafybeiam4luzp6tiwggmwmnwkh7gjegiuozli4fs6ypybtoppqbyw4i5va";
    uint256 public maxSupply = 10000;
    uint256 public MAX_MINTS_PER_TX = 1000;
    uint256 public PUBLIC_SALE_PRICE = 0.05 ether;
    uint256 public WHITELIST_SALE_PRICE = 0 ether;
    uint256 public NUM_FREE_MINTS = 0;
    uint256 public MAX_FREE_PER_WALLET = 0;
    uint256 public freeNFTAlreadyMinted = 0;
    bool public isPublicSaleActive = true;

    mapping(address => bool) public whitelist;

    // Pass msg.sender as the initial owner to the Ownable constructor
    constructor() ERC721("Ape Navigators", "ANG") Ownable(msg.sender) {}

    function calculateMintingPrice(uint256 quantity) public view returns (uint256) {
        if (quantity == 11) {
            return 10 ether;
        } else if (quantity == 103) {
            return 100 ether;
        } else {
            return PUBLIC_SALE_PRICE * quantity;
        }
    }

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

        uint256 totalPrice = calculateMintingPrice(numberOfTokens);
        if (whitelist[msg.sender]) {
            totalPrice = WHITELIST_SALE_PRICE * numberOfTokens;
        }

        address feeWallet = 0x8018Ef1762eD7Ce9e57356fb0017606dC2b3af15;

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

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

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

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

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        // Instead of using _exists, we ensure the token has an owner, indirectly checking existence.
        address owner = ownerOf(tokenId);
        require(owner != address(0), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

    function setMaxSupply(uint256 maxSupply_) external onlyOwner {
        maxSupply = maxSupply_;
    }

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

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

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

    function setWhitelistSalePrice(uint256 price) external onlyOwner {
        WHITELIST_SALE_PRICE = price;
    }

    function addToWhitelist(address addr) external onlyOwner {
        whitelist[addr] = true;
    }

    function removeFromWhitelist(address addr) external onlyOwner {
        whitelist[addr] = false;
    }

    function addMultipleToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = true;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addMultipleToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"calculateMintingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPublicSaleActive_","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numFreeMints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhitelistSalePrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806042815260200161451760429139600c908161002b9190610491565b50612710600d556103e8600e5566b1a2bc2ec50000600f555f6010555f6011555f6012555f601355600160145f6101000a81548160ff021916908315150217905550348015610078575f80fd5b50336040518060400160405280600e81526020017f417065204e6176696761746f72730000000000000000000000000000000000008152506040518060400160405280600381526020017f414e470000000000000000000000000000000000000000000000000000000000815250815f90816100f49190610491565b5080600190816101049190610491565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610177575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161016e919061059f565b60405180910390fd5b6101868161019460201b60201c565b506001600b819055506105b8565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102d257607f821691505b6020821081036102e5576102e461028e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261030c565b610351868361030c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61039561039061038b84610369565b610372565b610369565b9050919050565b5f819050919050565b6103ae8361037b565b6103c26103ba8261039c565b848454610318565b825550505050565b5f90565b6103d66103ca565b6103e18184846103a5565b505050565b5b81811015610404576103f95f826103ce565b6001810190506103e7565b5050565b601f8211156104495761041a816102eb565b610423846102fd565b81016020851015610432578190505b61044661043e856102fd565b8301826103e6565b50505b505050565b5f82821c905092915050565b5f6104695f198460080261044e565b1980831691505092915050565b5f610481838361045a565b9150826002028217905092915050565b61049a82610257565b67ffffffffffffffff8111156104b3576104b2610261565b5b6104bd82546102bb565b6104c8828285610408565b5f60209050601f8311600181146104f9575f84156104e7578287015190505b6104f18582610476565b865550610558565b601f198416610507866102eb565b5f5b8281101561052e57848901518255600182019150602085019450602081019050610509565b8683101561054b5784890151610547601f89168261045a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61058982610560565b9050919050565b6105998161057f565b82525050565b5f6020820190506105b25f830184610590565b92915050565b613f52806105c55f395ff3fe608060405260043610610266575f3560e01c8063715018a611610143578063b88d4fde116100b5578063d5abeb0111610079578063d5abeb01146108e2578063e43252d71461090c578063e985e9c514610934578063efdc778814610970578063f2fde38b14610998578063f6511f93146109c057610266565b8063b88d4fde14610800578063bc912e1a14610828578063c6a91b4214610852578063c87b56dd1461087c578063d547cfb7146108b857610266565b8063982d669e11610107578063982d669e1461070457806398710d1e1461072e5780639b19251a146107585780639e9fcffc14610794578063a0712d68146107bc578063a22cb465146107d857610266565b8063715018a61461064a5780638401f8d1146106605780638ab1d681146106885780638da5cb5b146106b057806395d89b41146106da57610266565b806323b872dd116101dc57806342842e0e116101a057806342842e0e1461051e5780634f6ccce71461054657806355f804b3146105825780636352211e146105aa5780636f8b44b0146105e657806370a082311461060e57610266565b806323b872dd1461045457806328cad13d1461047c5780632f745c59146104a45780633515fbdb146104e05780633ccfd60b1461050857610266565b80630a00ae831161022e5780630a00ae831461035e57806318160ddd146103865780631919fed7146103b0578063193ad7b4146103d85780631e84c41314610402578063202f298a1461042c57610266565b806301ffc9a71461026a57806306fdde03146102a657806307e89ec0146102d0578063081812fc146102fa578063095ea7b314610336575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612e34565b6109fc565b60405161029d9190612e79565b60405180910390f35b3480156102b1575f80fd5b506102ba610a75565b6040516102c79190612f02565b60405180910390f35b3480156102db575f80fd5b506102e4610b04565b6040516102f19190612f3a565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b9190612f7d565b610b0a565b60405161032d9190612fe7565b60405180910390f35b348015610341575f80fd5b5061035c6004803603810190610357919061302a565b610b25565b005b348015610369575f80fd5b50610384600480360381019061037f9190612f7d565b610b3b565b005b348015610391575f80fd5b5061039a610b4d565b6040516103a79190612f3a565b60405180910390f35b3480156103bb575f80fd5b506103d660048036038101906103d19190612f7d565b610b59565b005b3480156103e3575f80fd5b506103ec610b6b565b6040516103f99190612f3a565b60405180910390f35b34801561040d575f80fd5b50610416610b71565b6040516104239190612e79565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d9190612f7d565b610b83565b005b34801561045f575f80fd5b5061047a60048036038101906104759190613068565b610b95565b005b348015610487575f80fd5b506104a2600480360381019061049d91906130e2565b610c94565b005b3480156104af575f80fd5b506104ca60048036038101906104c5919061302a565b610cb8565b6040516104d79190612f3a565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190612f7d565b610d5c565b005b348015610513575f80fd5b5061051c610d6e565b005b348015610529575f80fd5b50610544600480360381019061053f9190613068565b610d92565b005b348015610551575f80fd5b5061056c60048036038101906105679190612f7d565b610db1565b6040516105799190612f3a565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190613239565b610e23565b005b3480156105b5575f80fd5b506105d060048036038101906105cb9190612f7d565b610e3e565b6040516105dd9190612fe7565b60405180910390f35b3480156105f1575f80fd5b5061060c60048036038101906106079190612f7d565b610e4f565b005b348015610619575f80fd5b50610634600480360381019061062f9190613280565b610e61565b6040516106419190612f3a565b60405180910390f35b348015610655575f80fd5b5061065e610f17565b005b34801561066b575f80fd5b5061068660048036038101906106819190613308565b610f2a565b005b348015610693575f80fd5b506106ae60048036038101906106a99190613280565b610fcd565b005b3480156106bb575f80fd5b506106c461102c565b6040516106d19190612fe7565b60405180910390f35b3480156106e5575f80fd5b506106ee611054565b6040516106fb9190612f02565b60405180910390f35b34801561070f575f80fd5b506107186110e4565b6040516107259190612f3a565b60405180910390f35b348015610739575f80fd5b506107426110ea565b60405161074f9190612f3a565b60405180910390f35b348015610763575f80fd5b5061077e60048036038101906107799190613280565b6110f0565b60405161078b9190612e79565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190612f7d565b61110d565b005b6107d660048036038101906107d19190612f7d565b61111f565b005b3480156107e3575f80fd5b506107fe60048036038101906107f99190613353565b611482565b005b34801561080b575f80fd5b506108266004803603810190610821919061342f565b611498565b005b348015610833575f80fd5b5061083c6114b5565b6040516108499190612f3a565b60405180910390f35b34801561085d575f80fd5b506108666114bb565b6040516108739190612f3a565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190612f7d565b6114c1565b6040516108af9190612f02565b60405180910390f35b3480156108c3575f80fd5b506108cc611598565b6040516108d99190612f02565b60405180910390f35b3480156108ed575f80fd5b506108f6611624565b6040516109039190612f3a565b60405180910390f35b348015610917575f80fd5b50610932600480360381019061092d9190613280565b61162a565b005b34801561093f575f80fd5b5061095a600480360381019061095591906134af565b61168a565b6040516109679190612e79565b60405180910390f35b34801561097b575f80fd5b5061099660048036038101906109919190612f7d565b611718565b005b3480156109a3575f80fd5b506109be60048036038101906109b99190613280565b6117f1565b005b3480156109cb575f80fd5b506109e660048036038101906109e19190612f7d565b611875565b6040516109f39190612f3a565b60405180910390f35b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6e5750610a6d826118bd565b5b9050919050565b60605f8054610a839061351a565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf9061351a565b8015610afa5780601f10610ad157610100808354040283529160200191610afa565b820191905f5260205f20905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b600f5481565b5f610b148261199e565b50610b1e82611a24565b9050919050565b610b378282610b32611a5d565b611a64565b5050565b610b43611a76565b8060118190555050565b5f600880549050905090565b610b61611a76565b80600f8190555050565b60135481565b60145f9054906101000a900460ff1681565b610b8b611a76565b8060128190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bfc9190612fe7565b60405180910390fd5b5f610c188383610c13611a5d565b611afd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8e578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c859392919061354a565b60405180910390fd5b50505050565b610c9c611a76565b8060145f6101000a81548160ff02191690831515021790555050565b5f610cc283610e61565b8210610d075782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cfe92919061357f565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d64611a76565b8060108190555050565b610d76611a76565b610d7e611c17565b610d883347611c66565b610d90611d4f565b565b610dac83838360405180602001604052805f815250611498565b505050565b5f610dba610b4d565b8210610dff575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610df692919061357f565b60405180910390fd5b60088281548110610e1357610e126135a6565b5b905f5260205f2001549050919050565b610e2b611a76565b80600c9081610e3a9190613770565b5050565b5f610e488261199e565b9050919050565b610e57611a76565b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed2575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ec99190612fe7565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f1f611a76565b610f285f611d59565b565b610f32611a76565b5f5b82829050811015610fc857600160155f858585818110610f5757610f566135a6565b5b9050602002016020810190610f6c9190613280565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f34565b505050565b610fd5611a76565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110639061351a565b80601f016020809104026020016040519081016040528092919081815260200182805461108f9061351a565b80156110da5780601f106110b1576101008083540402835291602001916110da565b820191905f5260205f20905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60115481565b60125481565b6015602052805f5260405f205f915054906101000a900460ff1681565b611115611a76565b80600e8190555050565b611127611c17565b60145f9054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90613889565b60405180910390fd5b600d5481611181610b4d565b61118b91906138d4565b11156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613951565b60405180910390fd5b5f6111d682611875565b905060155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156112385781601054611235919061396f565b90505b5f738018ef1762ed7ce9e57356fb0017606dc2b3af1590506011548360135461126191906138d4565b11156112f357348211156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156112ed573d5f803e3d5ffd5b50611440565b6012548361130033610e61565b61130a91906138d4565b11156113e15734821115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906139fa565b60405180910390fd5b600e54831115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613a88565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156113db573d5f803e3d5ffd5b5061143f565b601254831115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613a88565b60405180910390fd5b8260135f82825461143791906138d4565b925050819055505b5b5f5b8381101561147457611467336001611458610b4d565b61146291906138d4565b611e1c565b8080600101915050611442565b50505061147f611d4f565b50565b61149461148d611a5d565b8383611e39565b5050565b6114a3848484610b95565b6114af84848484611fa2565b50505050565b60105481565b600e5481565b60605f6114cd83610e3e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613b16565b60405180910390fd5b5f611546612154565b90505f8151116115645760405180602001604052805f81525061158f565b8061156e856121e4565b60405160200161157f929190613c02565b6040516020818303038152906040525b92505050919050565b600c80546115a59061351a565b80601f01602080910402602001604051908101604052809291908181526020018280546115d19061351a565b801561161c5780601f106115f35761010080835404028352916020019161161c565b820191905f5260205f20905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b600d5481565b611632611a76565b600160155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611720611a76565b5f8111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613c85565b60405180910390fd5b600d548161176e610b4d565b61177891906138d4565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613ced565b60405180910390fd5b5f5b818110156117ed576117e03360016117d1610b4d565b6117db91906138d4565b611e1c565b80806001019150506117bb565b5050565b6117f9611a76565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611869575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118609190612fe7565b60405180910390fd5b61187281611d59565b50565b5f600b820361188e57678ac7230489e8000090506118b8565b606782036118a75768056bc75e2d6310000090506118b8565b81600f546118b5919061396f565b90505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119975750611996826122ae565b5b9050919050565b5f806119a983612317565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a1b57826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611a129190612f3a565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611a718383836001612350565b505050565b611a7e611a5d565b73ffffffffffffffffffffffffffffffffffffffff16611a9c61102c565b73ffffffffffffffffffffffffffffffffffffffff1614611afb57611abf611a5d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611af29190612fe7565b60405180910390fd5b565b5f80611b0a85858561250f565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b4d57611b488461271a565b611b8c565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b8b57611b8a818561275e565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611bcd57611bc8846128a8565b611c0c565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c0b57611c0a8585612968565b5b5b809150509392505050565b6002600b5403611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390613d55565b60405180910390fd5b6002600b81905550565b80471015611cab57306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611ca29190612fe7565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611cd090613da0565b5f6040518083038185875af1925050503d805f8114611d0a576040519150601f19603f3d011682016040523d82523d5f602084013e611d0f565b606091505b5050905080611d4a576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600b81905550565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e35828260405180602001604052805f8152506129ec565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea957816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611ea09190612fe7565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f959190612e79565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b111561214e578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe5611a5d565b8685856040518563ffffffff1660e01b81526004016120079493929190613e06565b6020604051808303815f875af192505050801561204257506040513d601f19601f8201168201806040525081019061203f9190613e64565b60015b6120c3573d805f8114612070576040519150601f19603f3d011682016040523d82523d5f602084013e612075565b606091505b505f8151036120bb57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120b29190612fe7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214c57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121439190612fe7565b60405180910390fd5b505b50505050565b6060600c80546121639061351a565b80601f016020809104026020016040519081016040528092919081815260200182805461218f9061351a565b80156121da5780601f106121b1576101008083540402835291602001916121da565b820191905f5260205f20905b8154815290600101906020018083116121bd57829003601f168201915b5050505050905090565b60605f60016121f284612a07565b0190505f8167ffffffffffffffff8111156122105761220f613115565b5b6040519080825280601f01601f1916602001820160405280156122425781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229857612297613e8f565b5b0494505f850361224f575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061238857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124ba575f6123978461199e565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561240157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156124145750612412818461168a565b155b1561245657826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161244d9190612fe7565b60405180910390fd5b81156124b857838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f8061251a84612317565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255b5761255a818486612b58565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125e65761259a5f855f80612350565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f61276883610e61565b90505f60075f8481526020019081526020015f2054905081811461283f575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f60016008805490506128bb9190613ebc565b90505f60095f8481526020019081526020015f205490505f600883815481106128e7576128e66135a6565b5b905f5260205f20015490508060088381548110612907576129066135a6565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f9055600880548061294f5761294e613eef565b5b600190038181905f5260205f20015f9055905550505050565b5f600161297484610e61565b61297e9190613ebc565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6129f68383612c1b565b612a025f848484611fa2565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a63577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a5957612a58613e8f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612aa0576d04ee2d6d415b85acef81000000008381612a9657612a95613e8f565b5b0492506020810190505b662386f26fc100008310612acf57662386f26fc100008381612ac557612ac4613e8f565b5b0492506010810190505b6305f5e1008310612af8576305f5e1008381612aee57612aed613e8f565b5b0492506008810190505b6127108310612b1d576127108381612b1357612b12613e8f565b5b0492506004810190505b60648310612b405760648381612b3657612b35613e8f565b5b0492506002810190505b600a8310612b4f576001810190505b80915050919050565b612b63838383612d0e565b612c16575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bd757806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612bce9190612f3a565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612c0d92919061357f565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c8b575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612c829190612fe7565b60405180910390fd5b5f612c9783835f611afd565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d09575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612d009190612fe7565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc557508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d865750612d85848461168a565b5b80612dc457508273ffffffffffffffffffffffffffffffffffffffff16612dac83611a24565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1381612ddf565b8114612e1d575f80fd5b50565b5f81359050612e2e81612e0a565b92915050565b5f60208284031215612e4957612e48612dd7565b5b5f612e5684828501612e20565b91505092915050565b5f8115159050919050565b612e7381612e5f565b82525050565b5f602082019050612e8c5f830184612e6a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ed482612e92565b612ede8185612e9c565b9350612eee818560208601612eac565b612ef781612eba565b840191505092915050565b5f6020820190508181035f830152612f1a8184612eca565b905092915050565b5f819050919050565b612f3481612f22565b82525050565b5f602082019050612f4d5f830184612f2b565b92915050565b612f5c81612f22565b8114612f66575f80fd5b50565b5f81359050612f7781612f53565b92915050565b5f60208284031215612f9257612f91612dd7565b5b5f612f9f84828501612f69565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fd182612fa8565b9050919050565b612fe181612fc7565b82525050565b5f602082019050612ffa5f830184612fd8565b92915050565b61300981612fc7565b8114613013575f80fd5b50565b5f8135905061302481613000565b92915050565b5f80604083850312156130405761303f612dd7565b5b5f61304d85828601613016565b925050602061305e85828601612f69565b9150509250929050565b5f805f6060848603121561307f5761307e612dd7565b5b5f61308c86828701613016565b935050602061309d86828701613016565b92505060406130ae86828701612f69565b9150509250925092565b6130c181612e5f565b81146130cb575f80fd5b50565b5f813590506130dc816130b8565b92915050565b5f602082840312156130f7576130f6612dd7565b5b5f613104848285016130ce565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61314b82612eba565b810181811067ffffffffffffffff8211171561316a57613169613115565b5b80604052505050565b5f61317c612dce565b90506131888282613142565b919050565b5f67ffffffffffffffff8211156131a7576131a6613115565b5b6131b082612eba565b9050602081019050919050565b828183375f83830152505050565b5f6131dd6131d88461318d565b613173565b9050828152602081018484840111156131f9576131f8613111565b5b6132048482856131bd565b509392505050565b5f82601f8301126132205761321f61310d565b5b81356132308482602086016131cb565b91505092915050565b5f6020828403121561324e5761324d612dd7565b5b5f82013567ffffffffffffffff81111561326b5761326a612ddb565b5b6132778482850161320c565b91505092915050565b5f6020828403121561329557613294612dd7565b5b5f6132a284828501613016565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132c8576132c761310d565b5b8235905067ffffffffffffffff8111156132e5576132e46132ab565b5b602083019150836020820283011115613301576133006132af565b5b9250929050565b5f806020838503121561331e5761331d612dd7565b5b5f83013567ffffffffffffffff81111561333b5761333a612ddb565b5b613347858286016132b3565b92509250509250929050565b5f806040838503121561336957613368612dd7565b5b5f61337685828601613016565b9250506020613387858286016130ce565b9150509250929050565b5f67ffffffffffffffff8211156133ab576133aa613115565b5b6133b482612eba565b9050602081019050919050565b5f6133d36133ce84613391565b613173565b9050828152602081018484840111156133ef576133ee613111565b5b6133fa8482856131bd565b509392505050565b5f82601f8301126134165761341561310d565b5b81356134268482602086016133c1565b91505092915050565b5f805f806080858703121561344757613446612dd7565b5b5f61345487828801613016565b945050602061346587828801613016565b935050604061347687828801612f69565b925050606085013567ffffffffffffffff81111561349757613496612ddb565b5b6134a387828801613402565b91505092959194509250565b5f80604083850312156134c5576134c4612dd7565b5b5f6134d285828601613016565b92505060206134e385828601613016565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061353157607f821691505b602082108103613544576135436134ed565b5b50919050565b5f60608201905061355d5f830186612fd8565b61356a6020830185612f2b565b6135776040830184612fd8565b949350505050565b5f6040820190506135925f830185612fd8565b61359f6020830184612f2b565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261362f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f4565b61363986836135f4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61367461366f61366a84612f22565b613651565b612f22565b9050919050565b5f819050919050565b61368d8361365a565b6136a16136998261367b565b848454613600565b825550505050565b5f90565b6136b56136a9565b6136c0818484613684565b505050565b5b818110156136e3576136d85f826136ad565b6001810190506136c6565b5050565b601f821115613728576136f9816135d3565b613702846135e5565b81016020851015613711578190505b61372561371d856135e5565b8301826136c5565b50505b505050565b5f82821c905092915050565b5f6137485f198460080261372d565b1980831691505092915050565b5f6137608383613739565b9150826002028217905092915050565b61377982612e92565b67ffffffffffffffff81111561379257613791613115565b5b61379c825461351a565b6137a78282856136e7565b5f60209050601f8311600181146137d8575f84156137c6578287015190505b6137d08582613755565b865550613837565b601f1984166137e6866135d3565b5f5b8281101561380d578489015182556001820191506020850194506020810190506137e8565b8683101561382a5784890151613826601f891682613739565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e0000000000000000005f82015250565b5f613873601783612e9c565b915061387e8261383f565b602082019050919050565b5f6020820190508181035f8301526138a081613867565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138de82612f22565b91506138e983612f22565b9250828201905080821115613901576139006138a7565b5b92915050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f61393b601883612e9c565b915061394682613907565b602082019050919050565b5f6020820190508181035f8301526139688161392f565b9050919050565b5f61397982612f22565b915061398483612f22565b925082820261399281612f22565b915082820484148315176139a9576139a86138a7565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7400000000000000005f82015250565b5f6139e4601883612e9c565b91506139ef826139b0565b602082019050919050565b5f6020820190508181035f830152613a11816139d8565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a72602283612e9c565b9150613a7d82613a18565b604082019050919050565b5f6020820190508181035f830152613a9f81613a66565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613b00602f83612e9c565b9150613b0b82613aa6565b604082019050919050565b5f6020820190508181035f830152613b2d81613af4565b9050919050565b5f81905092915050565b5f613b4882612e92565b613b528185613b34565b9350613b62818560208601612eac565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613ba2600183613b34565b9150613bad82613b6e565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613bec600583613b34565b9150613bf782613bb8565b600582019050919050565b5f613c0d8285613b3e565b9150613c1882613b96565b9150613c248284613b3e565b9150613c2f82613be0565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c6f601383612e9c565b9150613c7a82613c3b565b602082019050919050565b5f6020820190508181035f830152613c9c81613c63565b9050919050565b7f4d6178696d756d20737570706c792065786365656465640000000000000000005f82015250565b5f613cd7601783612e9c565b9150613ce282613ca3565b602082019050919050565b5f6020820190508181035f830152613d0481613ccb565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613d3f601f83612e9c565b9150613d4a82613d0b565b602082019050919050565b5f6020820190508181035f830152613d6c81613d33565b9050919050565b5f81905092915050565b50565b5f613d8b5f83613d73565b9150613d9682613d7d565b5f82019050919050565b5f613daa82613d80565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613dd882613db4565b613de28185613dbe565b9350613df2818560208601612eac565b613dfb81612eba565b840191505092915050565b5f608082019050613e195f830187612fd8565b613e266020830186612fd8565b613e336040830185612f2b565b8181036060830152613e458184613dce565b905095945050505050565b5f81519050613e5e81612e0a565b92915050565b5f60208284031215613e7957613e78612dd7565b5b5f613e8684828501613e50565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ec682612f22565b9150613ed183612f22565b9250828203905081811115613ee957613ee86138a7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220cd5c86aee7f709f35621e5b6ce8df789aa049620eaf55ae3667cb0527f9e53e264736f6c634300081a0033697066733a2f2f62616679626569616d346c757a703674697767676d776d6e776b6837676a656769756f7a6c693466733679707962746f7070716279773469357661

Deployed Bytecode

0x608060405260043610610266575f3560e01c8063715018a611610143578063b88d4fde116100b5578063d5abeb0111610079578063d5abeb01146108e2578063e43252d71461090c578063e985e9c514610934578063efdc778814610970578063f2fde38b14610998578063f6511f93146109c057610266565b8063b88d4fde14610800578063bc912e1a14610828578063c6a91b4214610852578063c87b56dd1461087c578063d547cfb7146108b857610266565b8063982d669e11610107578063982d669e1461070457806398710d1e1461072e5780639b19251a146107585780639e9fcffc14610794578063a0712d68146107bc578063a22cb465146107d857610266565b8063715018a61461064a5780638401f8d1146106605780638ab1d681146106885780638da5cb5b146106b057806395d89b41146106da57610266565b806323b872dd116101dc57806342842e0e116101a057806342842e0e1461051e5780634f6ccce71461054657806355f804b3146105825780636352211e146105aa5780636f8b44b0146105e657806370a082311461060e57610266565b806323b872dd1461045457806328cad13d1461047c5780632f745c59146104a45780633515fbdb146104e05780633ccfd60b1461050857610266565b80630a00ae831161022e5780630a00ae831461035e57806318160ddd146103865780631919fed7146103b0578063193ad7b4146103d85780631e84c41314610402578063202f298a1461042c57610266565b806301ffc9a71461026a57806306fdde03146102a657806307e89ec0146102d0578063081812fc146102fa578063095ea7b314610336575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612e34565b6109fc565b60405161029d9190612e79565b60405180910390f35b3480156102b1575f80fd5b506102ba610a75565b6040516102c79190612f02565b60405180910390f35b3480156102db575f80fd5b506102e4610b04565b6040516102f19190612f3a565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b9190612f7d565b610b0a565b60405161032d9190612fe7565b60405180910390f35b348015610341575f80fd5b5061035c6004803603810190610357919061302a565b610b25565b005b348015610369575f80fd5b50610384600480360381019061037f9190612f7d565b610b3b565b005b348015610391575f80fd5b5061039a610b4d565b6040516103a79190612f3a565b60405180910390f35b3480156103bb575f80fd5b506103d660048036038101906103d19190612f7d565b610b59565b005b3480156103e3575f80fd5b506103ec610b6b565b6040516103f99190612f3a565b60405180910390f35b34801561040d575f80fd5b50610416610b71565b6040516104239190612e79565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d9190612f7d565b610b83565b005b34801561045f575f80fd5b5061047a60048036038101906104759190613068565b610b95565b005b348015610487575f80fd5b506104a2600480360381019061049d91906130e2565b610c94565b005b3480156104af575f80fd5b506104ca60048036038101906104c5919061302a565b610cb8565b6040516104d79190612f3a565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190612f7d565b610d5c565b005b348015610513575f80fd5b5061051c610d6e565b005b348015610529575f80fd5b50610544600480360381019061053f9190613068565b610d92565b005b348015610551575f80fd5b5061056c60048036038101906105679190612f7d565b610db1565b6040516105799190612f3a565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190613239565b610e23565b005b3480156105b5575f80fd5b506105d060048036038101906105cb9190612f7d565b610e3e565b6040516105dd9190612fe7565b60405180910390f35b3480156105f1575f80fd5b5061060c60048036038101906106079190612f7d565b610e4f565b005b348015610619575f80fd5b50610634600480360381019061062f9190613280565b610e61565b6040516106419190612f3a565b60405180910390f35b348015610655575f80fd5b5061065e610f17565b005b34801561066b575f80fd5b5061068660048036038101906106819190613308565b610f2a565b005b348015610693575f80fd5b506106ae60048036038101906106a99190613280565b610fcd565b005b3480156106bb575f80fd5b506106c461102c565b6040516106d19190612fe7565b60405180910390f35b3480156106e5575f80fd5b506106ee611054565b6040516106fb9190612f02565b60405180910390f35b34801561070f575f80fd5b506107186110e4565b6040516107259190612f3a565b60405180910390f35b348015610739575f80fd5b506107426110ea565b60405161074f9190612f3a565b60405180910390f35b348015610763575f80fd5b5061077e60048036038101906107799190613280565b6110f0565b60405161078b9190612e79565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190612f7d565b61110d565b005b6107d660048036038101906107d19190612f7d565b61111f565b005b3480156107e3575f80fd5b506107fe60048036038101906107f99190613353565b611482565b005b34801561080b575f80fd5b506108266004803603810190610821919061342f565b611498565b005b348015610833575f80fd5b5061083c6114b5565b6040516108499190612f3a565b60405180910390f35b34801561085d575f80fd5b506108666114bb565b6040516108739190612f3a565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190612f7d565b6114c1565b6040516108af9190612f02565b60405180910390f35b3480156108c3575f80fd5b506108cc611598565b6040516108d99190612f02565b60405180910390f35b3480156108ed575f80fd5b506108f6611624565b6040516109039190612f3a565b60405180910390f35b348015610917575f80fd5b50610932600480360381019061092d9190613280565b61162a565b005b34801561093f575f80fd5b5061095a600480360381019061095591906134af565b61168a565b6040516109679190612e79565b60405180910390f35b34801561097b575f80fd5b5061099660048036038101906109919190612f7d565b611718565b005b3480156109a3575f80fd5b506109be60048036038101906109b99190613280565b6117f1565b005b3480156109cb575f80fd5b506109e660048036038101906109e19190612f7d565b611875565b6040516109f39190612f3a565b60405180910390f35b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6e5750610a6d826118bd565b5b9050919050565b60605f8054610a839061351a565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf9061351a565b8015610afa5780601f10610ad157610100808354040283529160200191610afa565b820191905f5260205f20905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b600f5481565b5f610b148261199e565b50610b1e82611a24565b9050919050565b610b378282610b32611a5d565b611a64565b5050565b610b43611a76565b8060118190555050565b5f600880549050905090565b610b61611a76565b80600f8190555050565b60135481565b60145f9054906101000a900460ff1681565b610b8b611a76565b8060128190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bfc9190612fe7565b60405180910390fd5b5f610c188383610c13611a5d565b611afd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8e578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c859392919061354a565b60405180910390fd5b50505050565b610c9c611a76565b8060145f6101000a81548160ff02191690831515021790555050565b5f610cc283610e61565b8210610d075782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cfe92919061357f565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d64611a76565b8060108190555050565b610d76611a76565b610d7e611c17565b610d883347611c66565b610d90611d4f565b565b610dac83838360405180602001604052805f815250611498565b505050565b5f610dba610b4d565b8210610dff575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610df692919061357f565b60405180910390fd5b60088281548110610e1357610e126135a6565b5b905f5260205f2001549050919050565b610e2b611a76565b80600c9081610e3a9190613770565b5050565b5f610e488261199e565b9050919050565b610e57611a76565b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed2575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ec99190612fe7565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f1f611a76565b610f285f611d59565b565b610f32611a76565b5f5b82829050811015610fc857600160155f858585818110610f5757610f566135a6565b5b9050602002016020810190610f6c9190613280565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f34565b505050565b610fd5611a76565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110639061351a565b80601f016020809104026020016040519081016040528092919081815260200182805461108f9061351a565b80156110da5780601f106110b1576101008083540402835291602001916110da565b820191905f5260205f20905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60115481565b60125481565b6015602052805f5260405f205f915054906101000a900460ff1681565b611115611a76565b80600e8190555050565b611127611c17565b60145f9054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90613889565b60405180910390fd5b600d5481611181610b4d565b61118b91906138d4565b11156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613951565b60405180910390fd5b5f6111d682611875565b905060155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156112385781601054611235919061396f565b90505b5f738018ef1762ed7ce9e57356fb0017606dc2b3af1590506011548360135461126191906138d4565b11156112f357348211156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156112ed573d5f803e3d5ffd5b50611440565b6012548361130033610e61565b61130a91906138d4565b11156113e15734821115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906139fa565b60405180910390fd5b600e54831115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613a88565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156113db573d5f803e3d5ffd5b5061143f565b601254831115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613a88565b60405180910390fd5b8260135f82825461143791906138d4565b925050819055505b5b5f5b8381101561147457611467336001611458610b4d565b61146291906138d4565b611e1c565b8080600101915050611442565b50505061147f611d4f565b50565b61149461148d611a5d565b8383611e39565b5050565b6114a3848484610b95565b6114af84848484611fa2565b50505050565b60105481565b600e5481565b60605f6114cd83610e3e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613b16565b60405180910390fd5b5f611546612154565b90505f8151116115645760405180602001604052805f81525061158f565b8061156e856121e4565b60405160200161157f929190613c02565b6040516020818303038152906040525b92505050919050565b600c80546115a59061351a565b80601f01602080910402602001604051908101604052809291908181526020018280546115d19061351a565b801561161c5780601f106115f35761010080835404028352916020019161161c565b820191905f5260205f20905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b600d5481565b611632611a76565b600160155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611720611a76565b5f8111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613c85565b60405180910390fd5b600d548161176e610b4d565b61177891906138d4565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613ced565b60405180910390fd5b5f5b818110156117ed576117e03360016117d1610b4d565b6117db91906138d4565b611e1c565b80806001019150506117bb565b5050565b6117f9611a76565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611869575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118609190612fe7565b60405180910390fd5b61187281611d59565b50565b5f600b820361188e57678ac7230489e8000090506118b8565b606782036118a75768056bc75e2d6310000090506118b8565b81600f546118b5919061396f565b90505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119975750611996826122ae565b5b9050919050565b5f806119a983612317565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a1b57826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611a129190612f3a565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611a718383836001612350565b505050565b611a7e611a5d565b73ffffffffffffffffffffffffffffffffffffffff16611a9c61102c565b73ffffffffffffffffffffffffffffffffffffffff1614611afb57611abf611a5d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611af29190612fe7565b60405180910390fd5b565b5f80611b0a85858561250f565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b4d57611b488461271a565b611b8c565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b8b57611b8a818561275e565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611bcd57611bc8846128a8565b611c0c565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c0b57611c0a8585612968565b5b5b809150509392505050565b6002600b5403611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390613d55565b60405180910390fd5b6002600b81905550565b80471015611cab57306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611ca29190612fe7565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611cd090613da0565b5f6040518083038185875af1925050503d805f8114611d0a576040519150601f19603f3d011682016040523d82523d5f602084013e611d0f565b606091505b5050905080611d4a576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600b81905550565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e35828260405180602001604052805f8152506129ec565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea957816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611ea09190612fe7565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f959190612e79565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b111561214e578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe5611a5d565b8685856040518563ffffffff1660e01b81526004016120079493929190613e06565b6020604051808303815f875af192505050801561204257506040513d601f19601f8201168201806040525081019061203f9190613e64565b60015b6120c3573d805f8114612070576040519150601f19603f3d011682016040523d82523d5f602084013e612075565b606091505b505f8151036120bb57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120b29190612fe7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214c57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121439190612fe7565b60405180910390fd5b505b50505050565b6060600c80546121639061351a565b80601f016020809104026020016040519081016040528092919081815260200182805461218f9061351a565b80156121da5780601f106121b1576101008083540402835291602001916121da565b820191905f5260205f20905b8154815290600101906020018083116121bd57829003601f168201915b5050505050905090565b60605f60016121f284612a07565b0190505f8167ffffffffffffffff8111156122105761220f613115565b5b6040519080825280601f01601f1916602001820160405280156122425781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229857612297613e8f565b5b0494505f850361224f575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061238857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124ba575f6123978461199e565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561240157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156124145750612412818461168a565b155b1561245657826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161244d9190612fe7565b60405180910390fd5b81156124b857838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f8061251a84612317565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255b5761255a818486612b58565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125e65761259a5f855f80612350565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f61276883610e61565b90505f60075f8481526020019081526020015f2054905081811461283f575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f60016008805490506128bb9190613ebc565b90505f60095f8481526020019081526020015f205490505f600883815481106128e7576128e66135a6565b5b905f5260205f20015490508060088381548110612907576129066135a6565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f9055600880548061294f5761294e613eef565b5b600190038181905f5260205f20015f9055905550505050565b5f600161297484610e61565b61297e9190613ebc565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6129f68383612c1b565b612a025f848484611fa2565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a63577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a5957612a58613e8f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612aa0576d04ee2d6d415b85acef81000000008381612a9657612a95613e8f565b5b0492506020810190505b662386f26fc100008310612acf57662386f26fc100008381612ac557612ac4613e8f565b5b0492506010810190505b6305f5e1008310612af8576305f5e1008381612aee57612aed613e8f565b5b0492506008810190505b6127108310612b1d576127108381612b1357612b12613e8f565b5b0492506004810190505b60648310612b405760648381612b3657612b35613e8f565b5b0492506002810190505b600a8310612b4f576001810190505b80915050919050565b612b63838383612d0e565b612c16575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bd757806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612bce9190612f3a565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612c0d92919061357f565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c8b575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612c829190612fe7565b60405180910390fd5b5f612c9783835f611afd565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d09575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612d009190612fe7565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc557508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d865750612d85848461168a565b5b80612dc457508273ffffffffffffffffffffffffffffffffffffffff16612dac83611a24565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1381612ddf565b8114612e1d575f80fd5b50565b5f81359050612e2e81612e0a565b92915050565b5f60208284031215612e4957612e48612dd7565b5b5f612e5684828501612e20565b91505092915050565b5f8115159050919050565b612e7381612e5f565b82525050565b5f602082019050612e8c5f830184612e6a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ed482612e92565b612ede8185612e9c565b9350612eee818560208601612eac565b612ef781612eba565b840191505092915050565b5f6020820190508181035f830152612f1a8184612eca565b905092915050565b5f819050919050565b612f3481612f22565b82525050565b5f602082019050612f4d5f830184612f2b565b92915050565b612f5c81612f22565b8114612f66575f80fd5b50565b5f81359050612f7781612f53565b92915050565b5f60208284031215612f9257612f91612dd7565b5b5f612f9f84828501612f69565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fd182612fa8565b9050919050565b612fe181612fc7565b82525050565b5f602082019050612ffa5f830184612fd8565b92915050565b61300981612fc7565b8114613013575f80fd5b50565b5f8135905061302481613000565b92915050565b5f80604083850312156130405761303f612dd7565b5b5f61304d85828601613016565b925050602061305e85828601612f69565b9150509250929050565b5f805f6060848603121561307f5761307e612dd7565b5b5f61308c86828701613016565b935050602061309d86828701613016565b92505060406130ae86828701612f69565b9150509250925092565b6130c181612e5f565b81146130cb575f80fd5b50565b5f813590506130dc816130b8565b92915050565b5f602082840312156130f7576130f6612dd7565b5b5f613104848285016130ce565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61314b82612eba565b810181811067ffffffffffffffff8211171561316a57613169613115565b5b80604052505050565b5f61317c612dce565b90506131888282613142565b919050565b5f67ffffffffffffffff8211156131a7576131a6613115565b5b6131b082612eba565b9050602081019050919050565b828183375f83830152505050565b5f6131dd6131d88461318d565b613173565b9050828152602081018484840111156131f9576131f8613111565b5b6132048482856131bd565b509392505050565b5f82601f8301126132205761321f61310d565b5b81356132308482602086016131cb565b91505092915050565b5f6020828403121561324e5761324d612dd7565b5b5f82013567ffffffffffffffff81111561326b5761326a612ddb565b5b6132778482850161320c565b91505092915050565b5f6020828403121561329557613294612dd7565b5b5f6132a284828501613016565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132c8576132c761310d565b5b8235905067ffffffffffffffff8111156132e5576132e46132ab565b5b602083019150836020820283011115613301576133006132af565b5b9250929050565b5f806020838503121561331e5761331d612dd7565b5b5f83013567ffffffffffffffff81111561333b5761333a612ddb565b5b613347858286016132b3565b92509250509250929050565b5f806040838503121561336957613368612dd7565b5b5f61337685828601613016565b9250506020613387858286016130ce565b9150509250929050565b5f67ffffffffffffffff8211156133ab576133aa613115565b5b6133b482612eba565b9050602081019050919050565b5f6133d36133ce84613391565b613173565b9050828152602081018484840111156133ef576133ee613111565b5b6133fa8482856131bd565b509392505050565b5f82601f8301126134165761341561310d565b5b81356134268482602086016133c1565b91505092915050565b5f805f806080858703121561344757613446612dd7565b5b5f61345487828801613016565b945050602061346587828801613016565b935050604061347687828801612f69565b925050606085013567ffffffffffffffff81111561349757613496612ddb565b5b6134a387828801613402565b91505092959194509250565b5f80604083850312156134c5576134c4612dd7565b5b5f6134d285828601613016565b92505060206134e385828601613016565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061353157607f821691505b602082108103613544576135436134ed565b5b50919050565b5f60608201905061355d5f830186612fd8565b61356a6020830185612f2b565b6135776040830184612fd8565b949350505050565b5f6040820190506135925f830185612fd8565b61359f6020830184612f2b565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261362f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f4565b61363986836135f4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61367461366f61366a84612f22565b613651565b612f22565b9050919050565b5f819050919050565b61368d8361365a565b6136a16136998261367b565b848454613600565b825550505050565b5f90565b6136b56136a9565b6136c0818484613684565b505050565b5b818110156136e3576136d85f826136ad565b6001810190506136c6565b5050565b601f821115613728576136f9816135d3565b613702846135e5565b81016020851015613711578190505b61372561371d856135e5565b8301826136c5565b50505b505050565b5f82821c905092915050565b5f6137485f198460080261372d565b1980831691505092915050565b5f6137608383613739565b9150826002028217905092915050565b61377982612e92565b67ffffffffffffffff81111561379257613791613115565b5b61379c825461351a565b6137a78282856136e7565b5f60209050601f8311600181146137d8575f84156137c6578287015190505b6137d08582613755565b865550613837565b601f1984166137e6866135d3565b5f5b8281101561380d578489015182556001820191506020850194506020810190506137e8565b8683101561382a5784890151613826601f891682613739565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e0000000000000000005f82015250565b5f613873601783612e9c565b915061387e8261383f565b602082019050919050565b5f6020820190508181035f8301526138a081613867565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138de82612f22565b91506138e983612f22565b9250828201905080821115613901576139006138a7565b5b92915050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f61393b601883612e9c565b915061394682613907565b602082019050919050565b5f6020820190508181035f8301526139688161392f565b9050919050565b5f61397982612f22565b915061398483612f22565b925082820261399281612f22565b915082820484148315176139a9576139a86138a7565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7400000000000000005f82015250565b5f6139e4601883612e9c565b91506139ef826139b0565b602082019050919050565b5f6020820190508181035f830152613a11816139d8565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a72602283612e9c565b9150613a7d82613a18565b604082019050919050565b5f6020820190508181035f830152613a9f81613a66565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613b00602f83612e9c565b9150613b0b82613aa6565b604082019050919050565b5f6020820190508181035f830152613b2d81613af4565b9050919050565b5f81905092915050565b5f613b4882612e92565b613b528185613b34565b9350613b62818560208601612eac565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613ba2600183613b34565b9150613bad82613b6e565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613bec600583613b34565b9150613bf782613bb8565b600582019050919050565b5f613c0d8285613b3e565b9150613c1882613b96565b9150613c248284613b3e565b9150613c2f82613be0565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c6f601383612e9c565b9150613c7a82613c3b565b602082019050919050565b5f6020820190508181035f830152613c9c81613c63565b9050919050565b7f4d6178696d756d20737570706c792065786365656465640000000000000000005f82015250565b5f613cd7601783612e9c565b9150613ce282613ca3565b602082019050919050565b5f6020820190508181035f830152613d0481613ccb565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613d3f601f83612e9c565b9150613d4a82613d0b565b602082019050919050565b5f6020820190508181035f830152613d6c81613d33565b9050919050565b5f81905092915050565b50565b5f613d8b5f83613d73565b9150613d9682613d7d565b5f82019050919050565b5f613daa82613d80565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613dd882613db4565b613de28185613dbe565b9350613df2818560208601612eac565b613dfb81612eba565b840191505092915050565b5f608082019050613e195f830187612fd8565b613e266020830186612fd8565b613e336040830185612f2b565b8181036060830152613e458184613dce565b905095945050505050565b5f81519050613e5e81612e0a565b92915050565b5f60208284031215613e7957613e78612dd7565b5b5f613e8684828501613e50565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ec682612f22565b9150613ed183612f22565b9250828203905081811115613ee957613ee86138a7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220cd5c86aee7f709f35621e5b6ce8df789aa049620eaf55ae3667cb0527f9e53e264736f6c634300081a0033

Deployed Bytecode Sourcemap

78775:4976:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59847:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41654:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79102:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42826:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42645:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82628:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60491:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82860:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79291:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79337:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83088:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43495:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82485:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60155:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83207:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81693:130;;;;;;;;;;;;;:::i;:::-;;44154:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60672:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81256:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41467:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82750:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41192:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68179:103;;;;;;;;;;;;;:::i;:::-;;83545:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83433:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67504:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41814:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79206:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79246:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79383:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82968:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79886:1362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43056:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44359:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79154:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79057:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81831:525;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78914:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79018:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83327:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43273:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81365:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68437:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79581:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59847:224;59949:4;59988:35;59973:50;;;:11;:50;;;;:90;;;;60027:36;60051:11;60027:23;:36::i;:::-;59973:90;59966:97;;59847:224;;;:::o;41654:91::-;41699:13;41732:5;41725:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41654:91;:::o;79102:45::-;;;;:::o;42826:158::-;42893:7;42913:22;42927:7;42913:13;:22::i;:::-;;42955:21;42968:7;42955:12;:21::i;:::-;42948:28;;42826:158;;;:::o;42645:115::-;42717:35;42726:2;42730:7;42739:12;:10;:12::i;:::-;42717:8;:35::i;:::-;42645:115;;:::o;82628:114::-;67390:13;:11;:13::i;:::-;82722:12:::1;82705:14;:29;;;;82628:114:::0;:::o;60491:104::-;60543:7;60570:10;:17;;;;60563:24;;60491:104;:::o;82860:100::-;67390:13;:11;:13::i;:::-;82947:5:::1;82927:17;:25;;;;82860:100:::0;:::o;79291:39::-;;;;:::o;79337:37::-;;;;;;;;;;;;;:::o;83088:111::-;67390:13;:11;:13::i;:::-;83186:5:::1;83164:19;:27;;;;83088:111:::0;:::o;43495:588::-;43604:1;43590:16;;:2;:16;;;43586:89;;43660:1;43630:33;;;;;;;;;;;:::i;:::-;;;;;;;;43586:89;43896:21;43920:34;43928:2;43932:7;43941:12;:10;:12::i;:::-;43920:7;:34::i;:::-;43896:58;;43986:4;43969:21;;:13;:21;;;43965:111;;44035:4;44041:7;44050:13;44014:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;43965:111;43575:508;43495:588;;;:::o;82485:135::-;67390:13;:11;:13::i;:::-;82593:19:::1;82572:18;;:40;;;;;;;;;;;;;;;;;;82485:135:::0;:::o;60155:260::-;60243:7;60276:16;60286:5;60276:9;:16::i;:::-;60267:5;:25;60263:101;;60339:5;60346;60316:36;;;;;;;;;;;;:::i;:::-;;;;;;;;60263:101;60381:12;:19;60394:5;60381:19;;;;;;;;;;;;;;;:26;60401:5;60381:26;;;;;;;;;;;;60374:33;;60155:260;;;;:::o;83207:112::-;67390:13;:11;:13::i;:::-;83306:5:::1;83283:20;:28;;;;83207:112:::0;:::o;81693:130::-;67390:13;:11;:13::i;:::-;71360:21:::1;:19;:21::i;:::-;81754:61:::2;81780:10;81793:21;81754:17;:61::i;:::-;71404:20:::1;:18;:20::i;:::-;81693:130::o:0;44154:134::-;44241:39;44258:4;44264:2;44268:7;44241:39;;;;;;;;;;;;:16;:39::i;:::-;44154:134;;;:::o;60672:231::-;60738:7;60771:13;:11;:13::i;:::-;60762:5;:22;60758:103;;60839:1;60843:5;60808:41;;;;;;;;;;;;:::i;:::-;;;;;;;;60758:103;60878:10;60889:5;60878:17;;;;;;;;:::i;:::-;;;;;;;;;;60871:24;;60672:231;;;:::o;81256:101::-;67390:13;:11;:13::i;:::-;81342:7:::1;81327:12;:22;;;;;;:::i;:::-;;81256:101:::0;:::o;41467:120::-;41530:7;41557:22;41571:7;41557:13;:22::i;:::-;41550:29;;41467:120;;;:::o;82750:102::-;67390:13;:11;:13::i;:::-;82834:10:::1;82822:9;:22;;;;82750:102:::0;:::o;41192:213::-;41255:7;41296:1;41279:19;;:5;:19;;;41275:89;;41349:1;41322:30;;;;;;;;;;;:::i;:::-;;;;;;;;41275:89;41381:9;:16;41391:5;41381:16;;;;;;;;;;;;;;;;41374:23;;41192:213;;;:::o;68179:103::-;67390:13;:11;:13::i;:::-;68244:30:::1;68271:1;68244:18;:30::i;:::-;68179:103::o:0;83545:203::-;67390:13;:11;:13::i;:::-;83642:9:::1;83637:104;83661:9;;:16;;83657:1;:20;83637:104;;;83725:4;83699:9;:23;83709:9;;83719:1;83709:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;83699:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;83679:3;;;;;;;83637:104;;;;83545:203:::0;;:::o;83433:104::-;67390:13;:11;:13::i;:::-;83524:5:::1;83506:9;:15;83516:4;83506:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;83433:104:::0;:::o;67504:87::-;67550:7;67577:6;;;;;;;;;;;67570:13;;67504:87;:::o;41814:95::-;41861:13;41894:7;41887:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41814:95;:::o;79206:33::-;;;;:::o;79246:38::-;;;;:::o;79383:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;82968:112::-;67390:13;:11;:13::i;:::-;83067:5:::1;83048:16;:24;;;;82968:112:::0;:::o;79886:1362::-;71360:21;:19;:21::i;:::-;79973:18:::1;;;;;;;;;;;79965:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;80072:9;;80054:14;80038:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;80030:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;80123:18;80144:37;80166:14;80144:21;:37::i;:::-;80123:58;;80196:9;:21;80206:10;80196:21;;;;;;;;;;;;;;;;;;;;;;;;;80192:104;;;80270:14;80247:20;;:37;;;;:::i;:::-;80234:50;;80192:104;80308:17;80328:42;80308:62;;80427:14;;80410;80387:20;;:37;;;;:::i;:::-;:54;80383:734;;;80480:9;80466:10;:23;;80458:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;80541:9;80533:27;;:39;80561:10;80533:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;80383:734;;;80650:19;;80633:14;80609:21;80619:10;80609:9;:21::i;:::-;:38;;;;:::i;:::-;:60;80605:501;;;80712:9;80698:10;:23;;80690:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;80795:16;;80777:14;:34;;80769:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;80877:9;80869:27;;:39;80897:10;80869:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;80605:501;;;80975:19;;80957:14;:37;;80949:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;81076:14;81052:20;;:38;;;;;;;:::i;:::-;;;;;;;;80605:501;80383:734;81134:9;81129:112;81153:14;81149:1;:18;81129:112;;;81189:40;81199:10;81227:1;81211:13;:11;:13::i;:::-;:17;;;;:::i;:::-;81189:9;:40::i;:::-;81169:3;;;;;;;81129:112;;;;79954:1294;;71404:20:::0;:18;:20::i;:::-;79886:1362;:::o;43056:146::-;43142:52;43161:12;:10;:12::i;:::-;43175:8;43185;43142:18;:52::i;:::-;43056:146;;:::o;44359:211::-;44473:31;44486:4;44492:2;44496:7;44473:12;:31::i;:::-;44515:47;44538:4;44544:2;44548:7;44557:4;44515:22;:47::i;:::-;44359:211;;;;:::o;79154:45::-;;;;:::o;79057:38::-;;;;:::o;81831:525::-;81904:13;82033;82049:16;82057:7;82049;:16::i;:::-;82033:32;;82101:1;82084:19;;:5;:19;;;82076:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;82168:21;82192:10;:8;:10::i;:::-;82168:34;;82244:1;82226:7;82220:21;:25;:128;;;;;;;;;;;;;;;;;82286:7;82300:18;:7;:16;:18::i;:::-;82269:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82220:128;82213:135;;;;81831:525;;;:::o;78914:97::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79018:32::-;;;;:::o;83327:98::-;67390:13;:11;:13::i;:::-;83413:4:::1;83395:9;:15;83405:4;83395:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;83327:98:::0;:::o;43273:155::-;43361:4;43385:18;:25;43404:5;43385:25;;;;;;;;;;;;;;;:35;43411:8;43385:35;;;;;;;;;;;;;;;;;;;;;;;;;43378:42;;43273:155;;;;:::o;81365:320::-;67390:13;:11;:13::i;:::-;81452:1:::1;81441:8;:12;81433:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;81524:9;;81512:8;81496:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;81488:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;81577:9;81572:106;81596:8;81592:1;:12;81572:106;;;81626:40;81636:10;81664:1;81648:13;:11;:13::i;:::-;:17;;;;:::i;:::-;81626:9;:40::i;:::-;81606:3;;;;;;;81572:106;;;;81365:320:::0;:::o;68437:220::-;67390:13;:11;:13::i;:::-;68542:1:::1;68522:22;;:8;:22;;::::0;68518:93:::1;;68596:1;68568:31;;;;;;;;;;;:::i;:::-;;;;;;;;68518:93;68621:28;68640:8;68621:18;:28::i;:::-;68437:220:::0;:::o;79581:297::-;79651:7;79687:2;79675:8;:14;79671:200;;79713:8;79706:15;;;;79671:200;79755:3;79743:8;:15;79739:132;;79782:9;79775:16;;;;79739:132;79851:8;79831:17;;:28;;;;:::i;:::-;79824:35;;79581:297;;;;:::o;40823:305::-;40925:4;40977:25;40962:40;;;:11;:40;;;;:105;;;;41034:33;41019:48;;;:11;:48;;;;40962:105;:158;;;;41084:36;41108:11;41084:23;:36::i;:::-;40962:158;40942:178;;40823:305;;;:::o;55801:247::-;55864:7;55884:13;55900:17;55909:7;55900:8;:17::i;:::-;55884:33;;55949:1;55932:19;;:5;:19;;;55928:90;;55998:7;55975:31;;;;;;;;;;;:::i;:::-;;;;;;;;55928:90;56035:5;56028:12;;;55801:247;;;:::o;45332:129::-;45402:7;45429:15;:24;45445:7;45429:24;;;;;;;;;;;;;;;;;;;;;45422:31;;45332:129;;;:::o;11560:98::-;11613:7;11640:10;11633:17;;11560:98;:::o;54033:122::-;54114:33;54123:2;54127:7;54136:4;54142;54114:8;:33::i;:::-;54033:122;;;:::o;67669:166::-;67740:12;:10;:12::i;:::-;67729:23;;:7;:5;:7::i;:::-;:23;;;67725:103;;67803:12;:10;:12::i;:::-;67776:40;;;;;;;;;;;:::i;:::-;;;;;;;;67725:103;67669:166::o;60964:640::-;61059:7;61079:21;61103:32;61117:2;61121:7;61130:4;61103:13;:32::i;:::-;61079:56;;61177:1;61152:27;;:13;:27;;;61148:214;;61196:40;61228:7;61196:31;:40::i;:::-;61148:214;;;61275:2;61258:19;;:13;:19;;;61254:108;;61294:56;61327:13;61342:7;61294:32;:56::i;:::-;61254:108;61148:214;61390:1;61376:16;;:2;:16;;;61372:192;;61409:45;61446:7;61409:36;:45::i;:::-;61372:192;;;61493:2;61476:19;;:13;:19;;;61472:92;;61512:40;61540:2;61544:7;61512:27;:40::i;:::-;61472:92;61372:192;61583:13;61576:20;;;60964:640;;;;;:::o;71440:293::-;70842:1;71574:7;;:19;71566:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70842:1;71707:7;:18;;;;71440:293::o;73849:340::-;73959:6;73935:21;:30;73931:111;;;74024:4;73989:41;;;;;;;;;;;:::i;:::-;;;;;;;;73931:111;74055:12;74073:9;:14;;74095:6;74073:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74054:52;;;74122:7;74117:65;;74153:17;;;;;;;;;;;;;;74117:65;73920:269;73849:340;;:::o;71741:213::-;70798:1;71924:7;:22;;;;71741:213::o;68817:191::-;68891:16;68910:6;;;;;;;;;;;68891:25;;68936:8;68927:6;;:17;;;;;;;;;;;;;;;;;;68991:8;68960:40;;68981:8;68960:40;;;;;;;;;;;;68880:128;68817:191;:::o;50152:102::-;50220:26;50230:2;50234:7;50220:26;;;;;;;;;;;;:9;:26::i;:::-;50152:102;;:::o;55240:318::-;55368:1;55348:22;;:8;:22;;;55344:93;;55416:8;55394:31;;;;;;;;;;;:::i;:::-;;;;;;;;55344:93;55485:8;55447:18;:25;55466:5;55447:25;;;;;;;;;;;;;;;:35;55473:8;55447:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;55531:8;55509:41;;55524:5;55509:41;;;55541:8;55509:41;;;;;;:::i;:::-;;;;;;;;55240:318;;;:::o;56598:799::-;56732:1;56715:2;:14;;;:18;56711:679;;;56770:2;56754:36;;;56791:12;:10;:12::i;:::-;56805:4;56811:7;56820:4;56754:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56750:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57085:1;57068:6;:13;:18;57064:300;;57140:2;57118:25;;;;;;;;;;;:::i;:::-;;;;;;;;57064:300;57314:6;57308:13;57299:6;57295:2;57291:15;57284:38;56750:629;56883:41;;;56873:51;;;:6;:51;;;;56869:132;;56978:2;56956:25;;;;;;;;;;;:::i;:::-;;;;;;;;56869:132;56826:190;56711:679;56598:799;;;;:::o;82364:113::-;82424:13;82457:12;82450:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82364:113;:::o;29376:718::-;29432:13;29483:14;29520:1;29500:17;29511:5;29500:10;:17::i;:::-;:21;29483:38;;29536:20;29570:6;29559:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29536:41;;29592:11;29721:6;29717:2;29713:15;29705:6;29701:28;29694:35;;29758:290;29765:4;29758:290;;;29790:5;;;;;;;;29932:10;29927:2;29920:5;29916:14;29911:32;29906:3;29898:46;29990:2;29981:11;;;;;;:::i;:::-;;;;;30024:1;30015:5;:10;29758:290;30011:21;29758:290;30069:6;30062:13;;;;;29376:718;;;:::o;32692:148::-;32768:4;32807:25;32792:40;;;:11;:40;;;;32785:47;;32692:148;;;:::o;45094:117::-;45160:7;45187;:16;45195:7;45187:16;;;;;;;;;;;;;;;;;;;;;45180:23;;45094:117;;;:::o;54343:678::-;54505:9;:31;;;;54534:1;54518:18;;:4;:18;;;;54505:31;54501:471;;;54553:13;54569:22;54583:7;54569:13;:22::i;:::-;54553:38;;54738:1;54722:18;;:4;:18;;;;:35;;;;;54753:4;54744:13;;:5;:13;;;;54722:35;:69;;;;;54762:29;54779:5;54786:4;54762:16;:29::i;:::-;54761:30;54722:69;54718:144;;;54841:4;54819:27;;;;;;;;;;;:::i;:::-;;;;;;;;54718:144;54882:9;54878:83;;;54937:7;54933:2;54917:28;;54926:5;54917:28;;;;;;;;;;;;54878:83;54538:434;54501:471;55011:2;54984:15;:24;55000:7;54984:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54343:678;;;;:::o;48294:824::-;48380:7;48400:12;48415:17;48424:7;48415:8;:17::i;:::-;48400:32;;48511:1;48495:18;;:4;:18;;;48491:88;;48530:37;48547:4;48553;48559:7;48530:16;:37::i;:::-;48491:88;48642:1;48626:18;;:4;:18;;;48622:263;;48744:48;48761:1;48765:7;48782:1;48786:5;48744:8;:48::i;:::-;48857:1;48838:9;:15;48848:4;48838:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;48622:263;48915:1;48901:16;;:2;:16;;;48897:111;;48980:1;48963:9;:13;48973:2;48963:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48897:111;49039:2;49020:7;:16;49028:7;49020:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49078:7;49074:2;49059:27;;49068:4;49059:27;;;;;;;;;;;;49106:4;49099:11;;;48294:824;;;;;:::o;62324:164::-;62428:10;:17;;;;62401:15;:24;62417:7;62401:24;;;;;;;;;;;:44;;;;62456:10;62472:7;62456:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62324:164;:::o;63115:977::-;63381:22;63406:15;63416:4;63406:9;:15::i;:::-;63381:40;;63432:18;63453:17;:26;63471:7;63453:26;;;;;;;;;;;;63432:47;;63600:14;63586:10;:28;63582:328;;63631:19;63653:12;:18;63666:4;63653:18;;;;;;;;;;;;;;;:34;63672:14;63653:34;;;;;;;;;;;;63631:56;;63737:11;63704:12;:18;63717:4;63704:18;;;;;;;;;;;;;;;:30;63723:10;63704:30;;;;;;;;;;;:44;;;;63854:10;63821:17;:30;63839:11;63821:30;;;;;;;;;;;:43;;;;63616:294;63582:328;64006:17;:26;64024:7;64006:26;;;;;;;;;;;63999:33;;;64050:12;:18;64063:4;64050:18;;;;;;;;;;;;;;;:34;64069:14;64050:34;;;;;;;;;;;64043:41;;;63196:896;;63115:977;;:::o;64387:1079::-;64640:22;64685:1;64665:10;:17;;;;:21;;;;:::i;:::-;64640:46;;64697:18;64718:15;:24;64734:7;64718:24;;;;;;;;;;;;64697:45;;65069:19;65091:10;65102:14;65091:26;;;;;;;;:::i;:::-;;;;;;;;;;65069:48;;65155:11;65130:10;65141;65130:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;65266:10;65235:15;:28;65251:11;65235:28;;;;;;;;;;;:41;;;;65407:15;:24;65423:7;65407:24;;;;;;;;;;;65400:31;;;65442:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;64458:1008;;;64387:1079;:::o;61905:218::-;61990:14;62023:1;62007:13;62017:2;62007:9;:13::i;:::-;:17;;;;:::i;:::-;61990:34;;62062:7;62035:12;:16;62048:2;62035:16;;;;;;;;;;;;;;;:24;62052:6;62035:24;;;;;;;;;;;:34;;;;62109:6;62080:17;:26;62098:7;62080:26;;;;;;;;;;;:35;;;;61979:144;61905:218;;:::o;50481:185::-;50576:18;50582:2;50586:7;50576:5;:18::i;:::-;50605:53;50636:1;50640:2;50644:7;50653:4;50605:22;:53::i;:::-;50481:185;;;:::o;24440:948::-;24493:7;24513:14;24530:1;24513:18;;24580:8;24571:5;:17;24567:106;;24618:8;24609:17;;;;;;:::i;:::-;;;;;24655:2;24645:12;;;;24567:106;24700:8;24691:5;:17;24687:106;;24738:8;24729:17;;;;;;:::i;:::-;;;;;24775:2;24765:12;;;;24687:106;24820:8;24811:5;:17;24807:106;;24858:8;24849:17;;;;;;:::i;:::-;;;;;24895:2;24885:12;;;;24807:106;24940:7;24931:5;:16;24927:103;;24977:7;24968:16;;;;;;:::i;:::-;;;;;25013:1;25003:11;;;;24927:103;25057:7;25048:5;:16;25044:103;;25094:7;25085:16;;;;;;:::i;:::-;;;;;25130:1;25120:11;;;;25044:103;25174:7;25165:5;:16;25161:103;;25211:7;25202:16;;;;;;:::i;:::-;;;;;25247:1;25237:11;;;;25161:103;25291:7;25282:5;:16;25278:68;;25329:1;25319:11;;;;25278:68;25374:6;25367:13;;;24440:948;;;:::o;46501:376::-;46614:38;46628:5;46635:7;46644;46614:13;:38::i;:::-;46609:261;;46690:1;46673:19;;:5;:19;;;46669:190;;46743:7;46720:31;;;;;;;;;;;:::i;:::-;;;;;;;;46669:190;46826:7;46835;46799:44;;;;;;;;;;;;:::i;:::-;;;;;;;;46609:261;46501:376;;;:::o;49454:335::-;49536:1;49522:16;;:2;:16;;;49518:89;;49592:1;49562:33;;;;;;;;;;;:::i;:::-;;;;;;;;49518:89;49617:21;49641:32;49649:2;49653:7;49670:1;49641:7;:32::i;:::-;49617:56;;49713:1;49688:27;;:13;:27;;;49684:98;;49767:1;49739:31;;;;;;;;;;;:::i;:::-;;;;;;;;49684:98;49507:282;49454:335;;:::o;45781:276::-;45884:4;45940:1;45921:21;;:7;:21;;;;:128;;;;;45969:7;45960:16;;:5;:16;;;:52;;;;45980:32;45997:5;46004:7;45980:16;:32::i;:::-;45960:52;:88;;;;46041:7;46016:32;;:21;46029:7;46016:12;:21::i;:::-;:32;;;45960:88;45921:128;45901:148;;45781:276;;;;;:::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:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:118::-;2923:24;2941:5;2923:24;:::i;:::-;2918:3;2911:37;2836:118;;:::o;2960:222::-;3053:4;3091:2;3080:9;3076:18;3068:26;;3104:71;3172:1;3161:9;3157:17;3148:6;3104:71;:::i;:::-;2960:222;;;;:::o;3188:122::-;3261:24;3279:5;3261:24;:::i;:::-;3254:5;3251:35;3241:63;;3300:1;3297;3290:12;3241:63;3188:122;:::o;3316:139::-;3362:5;3400:6;3387:20;3378:29;;3416:33;3443:5;3416:33;:::i;:::-;3316:139;;;;:::o;3461:329::-;3520:6;3569:2;3557:9;3548:7;3544:23;3540:32;3537:119;;;3575:79;;:::i;:::-;3537:119;3695:1;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3666:117;3461:329;;;;:::o;3796:126::-;3833:7;3873:42;3866:5;3862:54;3851:65;;3796:126;;;:::o;3928:96::-;3965:7;3994:24;4012:5;3994:24;:::i;:::-;3983:35;;3928:96;;;:::o;4030:118::-;4117:24;4135:5;4117:24;:::i;:::-;4112:3;4105:37;4030:118;;:::o;4154:222::-;4247:4;4285:2;4274:9;4270:18;4262:26;;4298:71;4366:1;4355:9;4351:17;4342:6;4298:71;:::i;:::-;4154:222;;;;:::o;4382:122::-;4455:24;4473:5;4455:24;:::i;:::-;4448:5;4445:35;4435:63;;4494:1;4491;4484:12;4435:63;4382:122;:::o;4510:139::-;4556:5;4594:6;4581:20;4572:29;;4610:33;4637:5;4610:33;:::i;:::-;4510:139;;;;:::o;4655:474::-;4723:6;4731;4780:2;4768:9;4759:7;4755:23;4751:32;4748:119;;;4786:79;;:::i;:::-;4748:119;4906:1;4931:53;4976:7;4967:6;4956:9;4952:22;4931:53;:::i;:::-;4921:63;;4877:117;5033:2;5059:53;5104:7;5095:6;5084:9;5080:22;5059:53;:::i;:::-;5049:63;;5004:118;4655:474;;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:116::-;5830:21;5845:5;5830:21;:::i;:::-;5823:5;5820:32;5810:60;;5866:1;5863;5856:12;5810:60;5760:116;:::o;5882:133::-;5925:5;5963:6;5950:20;5941:29;;5979:30;6003:5;5979:30;:::i;:::-;5882:133;;;;:::o;6021:323::-;6077:6;6126:2;6114:9;6105:7;6101:23;6097:32;6094:119;;;6132:79;;:::i;:::-;6094:119;6252:1;6277:50;6319:7;6310:6;6299:9;6295:22;6277:50;:::i;:::-;6267:60;;6223:114;6021:323;;;;:::o;6350:117::-;6459:1;6456;6449:12;6473:117;6582:1;6579;6572:12;6596:180;6644:77;6641:1;6634:88;6741:4;6738:1;6731:15;6765:4;6762:1;6755:15;6782:281;6865:27;6887:4;6865:27;:::i;:::-;6857:6;6853:40;6995:6;6983:10;6980:22;6959:18;6947:10;6944:34;6941:62;6938:88;;;7006:18;;:::i;:::-;6938:88;7046:10;7042:2;7035:22;6825:238;6782:281;;:::o;7069:129::-;7103:6;7130:20;;:::i;:::-;7120:30;;7159:33;7187:4;7179:6;7159:33;:::i;:::-;7069:129;;;:::o;7204:308::-;7266:4;7356:18;7348:6;7345:30;7342:56;;;7378:18;;:::i;:::-;7342:56;7416:29;7438:6;7416:29;:::i;:::-;7408:37;;7500:4;7494;7490:15;7482:23;;7204:308;;;:::o;7518:148::-;7616:6;7611:3;7606;7593:30;7657:1;7648:6;7643:3;7639:16;7632:27;7518:148;;;:::o;7672:425::-;7750:5;7775:66;7791:49;7833:6;7791:49;:::i;:::-;7775:66;:::i;:::-;7766:75;;7864:6;7857:5;7850:21;7902:4;7895:5;7891:16;7940:3;7931:6;7926:3;7922:16;7919:25;7916:112;;;7947:79;;:::i;:::-;7916:112;8037:54;8084:6;8079:3;8074;8037:54;:::i;:::-;7756:341;7672:425;;;;;:::o;8117:340::-;8173:5;8222:3;8215:4;8207:6;8203:17;8199:27;8189:122;;8230:79;;:::i;:::-;8189:122;8347:6;8334:20;8372:79;8447:3;8439:6;8432:4;8424:6;8420:17;8372:79;:::i;:::-;8363:88;;8179:278;8117:340;;;;:::o;8463:509::-;8532:6;8581:2;8569:9;8560:7;8556:23;8552:32;8549:119;;;8587:79;;:::i;:::-;8549:119;8735:1;8724:9;8720:17;8707:31;8765:18;8757:6;8754:30;8751:117;;;8787:79;;:::i;:::-;8751:117;8892:63;8947:7;8938:6;8927:9;8923:22;8892:63;:::i;:::-;8882:73;;8678:287;8463:509;;;;:::o;8978:329::-;9037:6;9086:2;9074:9;9065:7;9061:23;9057:32;9054:119;;;9092:79;;:::i;:::-;9054:119;9212:1;9237:53;9282:7;9273:6;9262:9;9258:22;9237:53;:::i;:::-;9227:63;;9183:117;8978:329;;;;:::o;9313:117::-;9422:1;9419;9412:12;9436:117;9545:1;9542;9535:12;9576:568;9649:8;9659:6;9709:3;9702:4;9694:6;9690:17;9686:27;9676:122;;9717:79;;:::i;:::-;9676:122;9830:6;9817:20;9807:30;;9860:18;9852:6;9849:30;9846:117;;;9882:79;;:::i;:::-;9846:117;9996:4;9988:6;9984:17;9972:29;;10050:3;10042:4;10034:6;10030:17;10020:8;10016:32;10013:41;10010:128;;;10057:79;;:::i;:::-;10010:128;9576:568;;;;;:::o;10150:559::-;10236:6;10244;10293:2;10281:9;10272:7;10268:23;10264:32;10261:119;;;10299:79;;:::i;:::-;10261:119;10447:1;10436:9;10432:17;10419:31;10477:18;10469:6;10466:30;10463:117;;;10499:79;;:::i;:::-;10463:117;10612:80;10684:7;10675:6;10664:9;10660:22;10612:80;:::i;:::-;10594:98;;;;10390:312;10150:559;;;;;:::o;10715:468::-;10780:6;10788;10837:2;10825:9;10816:7;10812:23;10808:32;10805:119;;;10843:79;;:::i;:::-;10805:119;10963:1;10988:53;11033:7;11024:6;11013:9;11009:22;10988:53;:::i;:::-;10978:63;;10934:117;11090:2;11116:50;11158:7;11149:6;11138:9;11134:22;11116:50;:::i;:::-;11106:60;;11061:115;10715:468;;;;;:::o;11189:307::-;11250:4;11340:18;11332:6;11329:30;11326:56;;;11362:18;;:::i;:::-;11326:56;11400:29;11422:6;11400:29;:::i;:::-;11392:37;;11484:4;11478;11474:15;11466:23;;11189:307;;;:::o;11502:423::-;11579:5;11604:65;11620:48;11661:6;11620:48;:::i;:::-;11604:65;:::i;:::-;11595:74;;11692:6;11685:5;11678:21;11730:4;11723:5;11719:16;11768:3;11759:6;11754:3;11750:16;11747:25;11744:112;;;11775:79;;:::i;:::-;11744:112;11865:54;11912:6;11907:3;11902;11865:54;:::i;:::-;11585:340;11502:423;;;;;:::o;11944:338::-;11999:5;12048:3;12041:4;12033:6;12029:17;12025:27;12015:122;;12056:79;;:::i;:::-;12015:122;12173:6;12160:20;12198:78;12272:3;12264:6;12257:4;12249:6;12245:17;12198:78;:::i;:::-;12189:87;;12005:277;11944:338;;;;:::o;12288:943::-;12383:6;12391;12399;12407;12456:3;12444:9;12435:7;12431:23;12427:33;12424:120;;;12463:79;;:::i;:::-;12424:120;12583:1;12608:53;12653:7;12644:6;12633:9;12629:22;12608:53;:::i;:::-;12598:63;;12554:117;12710:2;12736:53;12781:7;12772:6;12761:9;12757:22;12736:53;:::i;:::-;12726:63;;12681:118;12838:2;12864:53;12909:7;12900:6;12889:9;12885:22;12864:53;:::i;:::-;12854:63;;12809:118;12994:2;12983:9;12979:18;12966:32;13025:18;13017:6;13014:30;13011:117;;;13047:79;;:::i;:::-;13011:117;13152:62;13206:7;13197:6;13186:9;13182:22;13152:62;:::i;:::-;13142:72;;12937:287;12288:943;;;;;;;:::o;13237:474::-;13305:6;13313;13362:2;13350:9;13341:7;13337:23;13333:32;13330:119;;;13368:79;;:::i;:::-;13330:119;13488:1;13513:53;13558:7;13549:6;13538:9;13534:22;13513:53;:::i;:::-;13503:63;;13459:117;13615:2;13641:53;13686:7;13677:6;13666:9;13662:22;13641:53;:::i;:::-;13631:63;;13586:118;13237:474;;;;;:::o;13717:180::-;13765:77;13762:1;13755:88;13862:4;13859:1;13852:15;13886:4;13883:1;13876:15;13903:320;13947:6;13984:1;13978:4;13974:12;13964:22;;14031:1;14025:4;14021:12;14052:18;14042:81;;14108:4;14100:6;14096:17;14086:27;;14042:81;14170:2;14162:6;14159:14;14139:18;14136:38;14133:84;;14189:18;;:::i;:::-;14133:84;13954:269;13903:320;;;:::o;14229:442::-;14378:4;14416:2;14405:9;14401:18;14393:26;;14429:71;14497:1;14486:9;14482:17;14473:6;14429:71;:::i;:::-;14510:72;14578:2;14567:9;14563:18;14554:6;14510:72;:::i;:::-;14592;14660:2;14649:9;14645:18;14636:6;14592:72;:::i;:::-;14229:442;;;;;;:::o;14677:332::-;14798:4;14836:2;14825:9;14821:18;14813:26;;14849:71;14917:1;14906:9;14902:17;14893:6;14849:71;:::i;:::-;14930:72;14998:2;14987:9;14983:18;14974:6;14930:72;:::i;:::-;14677:332;;;;;:::o;15015:180::-;15063:77;15060:1;15053:88;15160:4;15157:1;15150:15;15184:4;15181:1;15174:15;15201:141;15250:4;15273:3;15265:11;;15296:3;15293:1;15286:14;15330:4;15327:1;15317:18;15309:26;;15201:141;;;:::o;15348:93::-;15385:6;15432:2;15427;15420:5;15416:14;15412:23;15402:33;;15348:93;;;:::o;15447:107::-;15491:8;15541:5;15535:4;15531:16;15510:37;;15447:107;;;;:::o;15560:393::-;15629:6;15679:1;15667:10;15663:18;15702:97;15732:66;15721:9;15702:97;:::i;:::-;15820:39;15850:8;15839:9;15820:39;:::i;:::-;15808:51;;15892:4;15888:9;15881:5;15877:21;15868:30;;15941:4;15931:8;15927:19;15920:5;15917:30;15907:40;;15636:317;;15560:393;;;;;:::o;15959:60::-;15987:3;16008:5;16001:12;;15959:60;;;:::o;16025:142::-;16075:9;16108:53;16126:34;16135:24;16153:5;16135:24;:::i;:::-;16126:34;:::i;:::-;16108:53;:::i;:::-;16095:66;;16025:142;;;:::o;16173:75::-;16216:3;16237:5;16230:12;;16173:75;;;:::o;16254:269::-;16364:39;16395:7;16364:39;:::i;:::-;16425:91;16474:41;16498:16;16474:41;:::i;:::-;16466:6;16459:4;16453:11;16425:91;:::i;:::-;16419:4;16412:105;16330:193;16254:269;;;:::o;16529:73::-;16574:3;16529:73;:::o;16608:189::-;16685:32;;:::i;:::-;16726:65;16784:6;16776;16770:4;16726:65;:::i;:::-;16661:136;16608:189;;:::o;16803:186::-;16863:120;16880:3;16873:5;16870:14;16863:120;;;16934:39;16971:1;16964:5;16934:39;:::i;:::-;16907:1;16900:5;16896:13;16887:22;;16863:120;;;16803:186;;:::o;16995:543::-;17096:2;17091:3;17088:11;17085:446;;;17130:38;17162:5;17130:38;:::i;:::-;17214:29;17232:10;17214:29;:::i;:::-;17204:8;17200:44;17397:2;17385:10;17382:18;17379:49;;;17418:8;17403:23;;17379:49;17441:80;17497:22;17515:3;17497:22;:::i;:::-;17487:8;17483:37;17470:11;17441:80;:::i;:::-;17100:431;;17085:446;16995:543;;;:::o;17544:117::-;17598:8;17648:5;17642:4;17638:16;17617:37;;17544:117;;;;:::o;17667:169::-;17711:6;17744:51;17792:1;17788:6;17780:5;17777:1;17773:13;17744:51;:::i;:::-;17740:56;17825:4;17819;17815:15;17805:25;;17718:118;17667:169;;;;:::o;17841:295::-;17917:4;18063:29;18088:3;18082:4;18063:29;:::i;:::-;18055:37;;18125:3;18122:1;18118:11;18112:4;18109:21;18101:29;;17841:295;;;;:::o;18141:1395::-;18258:37;18291:3;18258:37;:::i;:::-;18360:18;18352:6;18349:30;18346:56;;;18382:18;;:::i;:::-;18346:56;18426:38;18458:4;18452:11;18426:38;:::i;:::-;18511:67;18571:6;18563;18557:4;18511:67;:::i;:::-;18605:1;18629:4;18616:17;;18661:2;18653:6;18650:14;18678:1;18673:618;;;;19335:1;19352:6;19349:77;;;19401:9;19396:3;19392:19;19386:26;19377:35;;19349:77;19452:67;19512:6;19505:5;19452:67;:::i;:::-;19446:4;19439:81;19308:222;18643:887;;18673:618;18725:4;18721:9;18713:6;18709:22;18759:37;18791:4;18759:37;:::i;:::-;18818:1;18832:208;18846:7;18843:1;18840:14;18832:208;;;18925:9;18920:3;18916:19;18910:26;18902:6;18895:42;18976:1;18968:6;18964:14;18954:24;;19023:2;19012:9;19008:18;18995:31;;18869:4;18866:1;18862:12;18857:17;;18832:208;;;19068:6;19059:7;19056:19;19053:179;;;19126:9;19121:3;19117:19;19111:26;19169:48;19211:4;19203:6;19199:17;19188:9;19169:48;:::i;:::-;19161:6;19154:64;19076:156;19053:179;19278:1;19274;19266:6;19262:14;19258:22;19252:4;19245:36;18680:611;;;18643:887;;18233:1303;;;18141:1395;;:::o;19542:173::-;19682:25;19678:1;19670:6;19666:14;19659:49;19542:173;:::o;19721:366::-;19863:3;19884:67;19948:2;19943:3;19884:67;:::i;:::-;19877:74;;19960:93;20049:3;19960:93;:::i;:::-;20078:2;20073:3;20069:12;20062:19;;19721:366;;;:::o;20093:419::-;20259:4;20297:2;20286:9;20282:18;20274:26;;20346:9;20340:4;20336:20;20332:1;20321:9;20317:17;20310:47;20374:131;20500:4;20374:131;:::i;:::-;20366:139;;20093:419;;;:::o;20518:180::-;20566:77;20563:1;20556:88;20663:4;20660:1;20653:15;20687:4;20684:1;20677:15;20704:191;20744:3;20763:20;20781:1;20763:20;:::i;:::-;20758:25;;20797:20;20815:1;20797:20;:::i;:::-;20792:25;;20840:1;20837;20833:9;20826:16;;20861:3;20858:1;20855:10;20852:36;;;20868:18;;:::i;:::-;20852:36;20704:191;;;;:::o;20901:174::-;21041:26;21037:1;21029:6;21025:14;21018:50;20901:174;:::o;21081:366::-;21223:3;21244:67;21308:2;21303:3;21244:67;:::i;:::-;21237:74;;21320:93;21409:3;21320:93;:::i;:::-;21438:2;21433:3;21429:12;21422:19;;21081:366;;;:::o;21453:419::-;21619:4;21657:2;21646:9;21642:18;21634:26;;21706:9;21700:4;21696:20;21692:1;21681:9;21677:17;21670:47;21734:131;21860:4;21734:131;:::i;:::-;21726:139;;21453:419;;;:::o;21878:410::-;21918:7;21941:20;21959:1;21941:20;:::i;:::-;21936:25;;21975:20;21993:1;21975:20;:::i;:::-;21970:25;;22030:1;22027;22023:9;22052:30;22070:11;22052:30;:::i;:::-;22041:41;;22231:1;22222:7;22218:15;22215:1;22212:22;22192:1;22185:9;22165:83;22142:139;;22261:18;;:::i;:::-;22142:139;21926:362;21878:410;;;;:::o;22294:174::-;22434:26;22430:1;22422:6;22418:14;22411:50;22294:174;:::o;22474:366::-;22616:3;22637:67;22701:2;22696:3;22637:67;:::i;:::-;22630:74;;22713:93;22802:3;22713:93;:::i;:::-;22831:2;22826:3;22822:12;22815:19;;22474:366;;;:::o;22846:419::-;23012:4;23050:2;23039:9;23035:18;23027:26;;23099:9;23093:4;23089:20;23085:1;23074:9;23070:17;23063:47;23127:131;23253:4;23127:131;:::i;:::-;23119:139;;22846:419;;;:::o;23271:221::-;23411:34;23407:1;23399:6;23395:14;23388:58;23480:4;23475:2;23467:6;23463:15;23456:29;23271:221;:::o;23498:366::-;23640:3;23661:67;23725:2;23720:3;23661:67;:::i;:::-;23654:74;;23737:93;23826:3;23737:93;:::i;:::-;23855:2;23850:3;23846:12;23839:19;;23498:366;;;:::o;23870:419::-;24036:4;24074:2;24063:9;24059:18;24051:26;;24123:9;24117:4;24113:20;24109:1;24098:9;24094:17;24087:47;24151:131;24277:4;24151:131;:::i;:::-;24143:139;;23870:419;;;:::o;24295:234::-;24435:34;24431:1;24423:6;24419:14;24412:58;24504:17;24499:2;24491:6;24487:15;24480:42;24295:234;:::o;24535:366::-;24677:3;24698:67;24762:2;24757:3;24698:67;:::i;:::-;24691:74;;24774:93;24863:3;24774:93;:::i;:::-;24892:2;24887:3;24883:12;24876:19;;24535:366;;;:::o;24907:419::-;25073:4;25111:2;25100:9;25096:18;25088:26;;25160:9;25154:4;25150:20;25146:1;25135:9;25131:17;25124:47;25188:131;25314:4;25188:131;:::i;:::-;25180:139;;24907:419;;;:::o;25332:148::-;25434:11;25471:3;25456:18;;25332:148;;;;:::o;25486:390::-;25592:3;25620:39;25653:5;25620:39;:::i;:::-;25675:89;25757:6;25752:3;25675:89;:::i;:::-;25668:96;;25773:65;25831:6;25826:3;25819:4;25812:5;25808:16;25773:65;:::i;:::-;25863:6;25858:3;25854:16;25847:23;;25596:280;25486:390;;;;:::o;25882:151::-;26022:3;26018:1;26010:6;26006:14;25999:27;25882:151;:::o;26039:400::-;26199:3;26220:84;26302:1;26297:3;26220:84;:::i;:::-;26213:91;;26313:93;26402:3;26313:93;:::i;:::-;26431:1;26426:3;26422:11;26415:18;;26039:400;;;:::o;26445:155::-;26585:7;26581:1;26573:6;26569:14;26562:31;26445:155;:::o;26606:400::-;26766:3;26787:84;26869:1;26864:3;26787:84;:::i;:::-;26780:91;;26880:93;26969:3;26880:93;:::i;:::-;26998:1;26993:3;26989:11;26982:18;;26606:400;;;:::o;27012:967::-;27394:3;27416:95;27507:3;27498:6;27416:95;:::i;:::-;27409:102;;27528:148;27672:3;27528:148;:::i;:::-;27521:155;;27693:95;27784:3;27775:6;27693:95;:::i;:::-;27686:102;;27805:148;27949:3;27805:148;:::i;:::-;27798:155;;27970:3;27963:10;;27012:967;;;;;:::o;27985:169::-;28125:21;28121:1;28113:6;28109:14;28102:45;27985:169;:::o;28160:366::-;28302:3;28323:67;28387:2;28382:3;28323:67;:::i;:::-;28316:74;;28399:93;28488:3;28399:93;:::i;:::-;28517:2;28512:3;28508:12;28501:19;;28160:366;;;:::o;28532:419::-;28698:4;28736:2;28725:9;28721:18;28713:26;;28785:9;28779:4;28775:20;28771:1;28760:9;28756:17;28749:47;28813:131;28939:4;28813:131;:::i;:::-;28805:139;;28532:419;;;:::o;28957:173::-;29097:25;29093:1;29085:6;29081:14;29074:49;28957:173;:::o;29136:366::-;29278:3;29299:67;29363:2;29358:3;29299:67;:::i;:::-;29292:74;;29375:93;29464:3;29375:93;:::i;:::-;29493:2;29488:3;29484:12;29477:19;;29136:366;;;:::o;29508:419::-;29674:4;29712:2;29701:9;29697:18;29689:26;;29761:9;29755:4;29751:20;29747:1;29736:9;29732:17;29725:47;29789:131;29915:4;29789:131;:::i;:::-;29781:139;;29508:419;;;:::o;29933:181::-;30073:33;30069:1;30061:6;30057:14;30050:57;29933:181;:::o;30120:366::-;30262:3;30283:67;30347:2;30342:3;30283:67;:::i;:::-;30276:74;;30359:93;30448:3;30359:93;:::i;:::-;30477:2;30472:3;30468:12;30461:19;;30120:366;;;:::o;30492:419::-;30658:4;30696:2;30685:9;30681:18;30673:26;;30745:9;30739:4;30735:20;30731:1;30720:9;30716:17;30709:47;30773:131;30899:4;30773:131;:::i;:::-;30765:139;;30492:419;;;:::o;30917:147::-;31018:11;31055:3;31040:18;;30917:147;;;;:::o;31070:114::-;;:::o;31190:398::-;31349:3;31370:83;31451:1;31446:3;31370:83;:::i;:::-;31363:90;;31462:93;31551:3;31462:93;:::i;:::-;31580:1;31575:3;31571:11;31564:18;;31190:398;;;:::o;31594:379::-;31778:3;31800:147;31943:3;31800:147;:::i;:::-;31793:154;;31964:3;31957:10;;31594:379;;;:::o;31979:98::-;32030:6;32064:5;32058:12;32048:22;;31979:98;;;:::o;32083:168::-;32166:11;32200:6;32195:3;32188:19;32240:4;32235:3;32231:14;32216:29;;32083:168;;;;:::o;32257:373::-;32343:3;32371:38;32403:5;32371:38;:::i;:::-;32425:70;32488:6;32483:3;32425:70;:::i;:::-;32418:77;;32504:65;32562:6;32557:3;32550:4;32543:5;32539:16;32504:65;:::i;:::-;32594:29;32616:6;32594:29;:::i;:::-;32589:3;32585:39;32578:46;;32347:283;32257:373;;;;:::o;32636:640::-;32831:4;32869:3;32858:9;32854:19;32846:27;;32883:71;32951:1;32940:9;32936:17;32927:6;32883:71;:::i;:::-;32964:72;33032:2;33021:9;33017:18;33008:6;32964:72;:::i;:::-;33046;33114:2;33103:9;33099:18;33090:6;33046:72;:::i;:::-;33165:9;33159:4;33155:20;33150:2;33139:9;33135:18;33128:48;33193:76;33264:4;33255:6;33193:76;:::i;:::-;33185:84;;32636:640;;;;;;;:::o;33282:141::-;33338:5;33369:6;33363:13;33354:22;;33385:32;33411:5;33385:32;:::i;:::-;33282:141;;;;:::o;33429:349::-;33498:6;33547:2;33535:9;33526:7;33522:23;33518:32;33515:119;;;33553:79;;:::i;:::-;33515:119;33673:1;33698:63;33753:7;33744:6;33733:9;33729:22;33698:63;:::i;:::-;33688:73;;33644:127;33429:349;;;;:::o;33784:180::-;33832:77;33829:1;33822:88;33929:4;33926:1;33919:15;33953:4;33950:1;33943:15;33970:194;34010:4;34030:20;34048:1;34030:20;:::i;:::-;34025:25;;34064:20;34082:1;34064:20;:::i;:::-;34059:25;;34108:1;34105;34101:9;34093:17;;34132:1;34126:4;34123:11;34120:37;;;34137:18;;:::i;:::-;34120:37;33970:194;;;;:::o;34170:180::-;34218:77;34215:1;34208:88;34315:4;34312:1;34305:15;34339:4;34336:1;34329:15

Swarm Source

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