ETH Price: $2,612.76 (+0.83%)

Token

NFT ERC721 (NET)
 

Overview

Max Total Supply

50 NET

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NET
0x02deaa71b83640c48b2966fe7ef318caab4cfa2c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MyNFTERC721

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @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.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @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 override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

    /**
     * @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 = ERC721.balanceOf(to);
        _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 = ERC721.balanceOf(from) - 1;
        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();
    }
}

// File: MyNFTERC721.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;



contract MyNFTERC721 is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.0080 ether;
    uint256 public presaleCost = 0.0080 ether;
    uint256 public maxSupply = 50;
    uint256 public maxMintAmount = 50;
    bool public paused = false;
    mapping(address => bool) public whitelisted;
    mapping(address => bool) public presaleWallets;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        mint(msg.sender, 50);
    }

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

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            if (whitelisted[msg.sender] != true) {
                if (presaleWallets[msg.sender] != true) {
                    //general public
                    require(msg.value >= cost * _mintAmount);
                } else {
                    //presale
                    require(msg.value >= presaleCost * _mintAmount);
                }
            }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        presaleCost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function whitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = true;
    }

    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = false;
    }

    function addPresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = true;
    }

    function add100PresaleUsers(address[100] memory _users) public onlyOwner {
        for (uint256 i = 0; i < 2; i++) {
            presaleWallets[_users[i]] = true;
        }
    }

    function removePresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = false;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[100]","name":"_users","type":"address[100]"}],"name":"add100PresaleUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addPresaleUser","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removePresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620010e1565b50661c6bf526340000600d55661c6bf526340000600e556032600f5560326010556000601160006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040516200614a3803806200614a8339818101604052810190620000c0919062001258565b82828160009080519060200190620000da929190620010e1565b508060019080519060200190620000f3929190620010e1565b505050620001166200010a6200014360201b60201c565b6200014b60201b60201c565b62000127816200021160201b60201c565b6200013a3360326200023d60201b60201c565b50505062001aef565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002216200042960201b60201c565b80600b908051906020019062000239929190620010e1565b5050565b60006200024f620004ba60201b60201c565b9050601160009054906101000a900460ff16156200026c57600080fd5b600082116200027a57600080fd5b6010548211156200028a57600080fd5b600f5482826200029b91906200160a565b1115620002a757600080fd5b620002b7620004c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620003df5760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003de5760011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003bf5781600d54620003ac919062001667565b341015620003b957600080fd5b620003dd565b81600e54620003cf919062001667565b341015620003dc57600080fd5b5b5b5b6000600190505b82811162000423576200040d8482846200040191906200160a565b620004f160201b60201c565b80806200041a906200180f565b915050620003e6565b50505050565b620004396200014360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200045f620004c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004af906200153a565b60405180910390fd5b565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005138282604051806020016040528060008152506200051760201b60201c565b5050565b6200052983836200058560201b60201c565b6200053e6000848484620007cc60201b60201c565b62000580576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200057790620014b2565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ef9062001518565b60405180910390fd5b62000609816200098660201b60201c565b156200064c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064390620014d4565b60405180910390fd5b62000662600083836001620009cf60201b60201c565b62000673816200098660201b60201c565b15620006b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ad90620014d4565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620007c860008383600162000b6560201b60201c565b5050565b6000620007fa8473ffffffffffffffffffffffffffffffffffffffff1662000b6b60201b620019531760201c565b1562000979578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200082c6200014360201b60201c565b8786866040518563ffffffff1660e01b81526004016200085094939291906200145e565b602060405180830381600087803b1580156200086b57600080fd5b505af19250505080156200089f57506040513d601f19601f820116820180604052508101906200089c919062001226565b60015b62000928573d8060008114620008d2576040519150601f19603f3d011682016040523d82523d6000602084013e620008d7565b606091505b5060008151141562000920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091790620014b2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200097e565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff16620009b08362000b8e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009e88484848462000bcb60201b620019761760201c565b600181111562000a2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a26906200155c565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000a815762000a7b8162000cf860201b60201c565b62000ac9565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161462000ac85762000ac7858262000d4160201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000b165762000b108162000ebe60201b60201c565b62000b5e565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462000b5d5762000b5c848262000f9a60201b60201c565b5b5b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600181111562000cf257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462000c635780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c5b9190620016c8565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000cf15780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ce991906200160a565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000d5b846200102660201b620013d11760201c565b62000d679190620016c8565b905060006007600084815260200190815260200160002054905081811462000e4d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000ed49190620016c8565b905060006009600084815260200190815260200160002054905060006008838154811062000f075762000f06620018ea565b5b90600052602060002001549050806008838154811062000f2c5762000f2b620018ea565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000f7e5762000f7d620018bb565b5b6001900381819060005260206000200160009055905550505050565b600062000fb2836200102660201b620013d11760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200109a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200109190620014f6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620010ef90620017a3565b90600052602060002090601f0160209004810192826200111357600085556200115f565b82601f106200112e57805160ff19168380011785556200115f565b828001600101855582156200115f579182015b828111156200115e57825182559160200191906001019062001141565b5b5090506200116e919062001172565b5090565b5b808211156200118d57600081600090555060010162001173565b5090565b6000620011a8620011a284620015a7565b6200157e565b905082815260208101848484011115620011c757620011c66200194d565b5b620011d48482856200176d565b509392505050565b600081519050620011ed8162001ad5565b92915050565b600082601f8301126200120b576200120a62001948565b5b81516200121d84826020860162001191565b91505092915050565b6000602082840312156200123f576200123e62001957565b5b60006200124f84828501620011dc565b91505092915050565b60008060006060848603121562001274576200127362001957565b5b600084015167ffffffffffffffff81111562001295576200129462001952565b5b620012a386828701620011f3565b935050602084015167ffffffffffffffff811115620012c757620012c662001952565b5b620012d586828701620011f3565b925050604084015167ffffffffffffffff811115620012f957620012f862001952565b5b6200130786828701620011f3565b9150509250925092565b6200131c8162001703565b82525050565b60006200132f82620015dd565b6200133b8185620015e8565b93506200134d8185602086016200176d565b62001358816200195c565b840191505092915050565b600062001372603283620015f9565b91506200137f826200196d565b604082019050919050565b600062001399601c83620015f9565b9150620013a682620019bc565b602082019050919050565b6000620013c0602983620015f9565b9150620013cd82620019e5565b604082019050919050565b6000620013e7602083620015f9565b9150620013f48262001a34565b602082019050919050565b60006200140e602083620015f9565b91506200141b8262001a5d565b602082019050919050565b600062001435603583620015f9565b9150620014428262001a86565b604082019050919050565b620014588162001763565b82525050565b600060808201905062001475600083018762001311565b62001484602083018662001311565b6200149360408301856200144d565b8181036060830152620014a7818462001322565b905095945050505050565b60006020820190508181036000830152620014cd8162001363565b9050919050565b60006020820190508181036000830152620014ef816200138a565b9050919050565b600060208201905081810360008301526200151181620013b1565b9050919050565b600060208201905081810360008301526200153381620013d8565b9050919050565b600060208201905081810360008301526200155581620013ff565b9050919050565b60006020820190508181036000830152620015778162001426565b9050919050565b60006200158a6200159d565b9050620015988282620017d9565b919050565b6000604051905090565b600067ffffffffffffffff821115620015c557620015c462001919565b5b620015d0826200195c565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620016178262001763565b9150620016248362001763565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200165c576200165b6200185d565b5b828201905092915050565b6000620016748262001763565b9150620016818362001763565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620016bd57620016bc6200185d565b5b828202905092915050565b6000620016d58262001763565b9150620016e28362001763565b925082821015620016f857620016f76200185d565b5b828203905092915050565b6000620017108262001743565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200178d57808201518184015260208101905062001770565b838111156200179d576000848401525b50505050565b60006002820490506001821680620017bc57607f821691505b60208210811415620017d357620017d26200188c565b5b50919050565b620017e4826200195c565b810181811067ffffffffffffffff8211171562001806576200180562001919565b5b80604052505050565b60006200181c8262001763565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200185257620018516200185d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b62001ae08162001717565b811462001aec57600080fd5b50565b61464b8062001aff6000396000f3fe6080604052600436106102515760003560e01c806355f804b311610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146108a4578063d936547e146108cf578063da3ef23f1461090c578063e985e9c514610935578063ed931e1714610972578063f2fde38b1461099b57610251565b8063a22cb465146107c1578063b2f3e85e146107ea578063b88d4fde14610813578063c66828621461083c578063c87b56dd1461086757610251565b8063715018a6116100fd578063715018a6146107025780637f00c7a6146107195780638da5cb5b146107425780638fdcf9421461076d57806395d89b411461079657610251565b806355f804b3146106095780635c975abb146106325780636352211e1461065d5780636c0360eb1461069a57806370a08231146106c557610251565b80632f745c59116101d257806342842e0e1161019657806342842e0e146104eb578063438b63001461051457806344a0d68a146105515780634a4c560d1461057a5780634f6ccce7146105a3578063546857c7146105e057610251565b80632f745c591461042257806330b2264e1461045f57806330cc7ae01461049c5780633ccfd60b146104c557806340c10f19146104cf57610251565b806313faede61161021957806313faede61461034d57806318160ddd14610378578063239c70ae146103a357806323b872dd146103ce5780632a23d07d146103f757610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613401565b6109c4565b60405161028a91906139ea565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906133d4565b610a3e565b005b3480156102c857600080fd5b506102d1610a63565b6040516102de9190613a05565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906134a4565b610af5565b60405161031b9190613961565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613366565b610b3b565b005b34801561035957600080fd5b50610362610c53565b60405161036f9190613c47565b60405180910390f35b34801561038457600080fd5b5061038d610c59565b60405161039a9190613c47565b60405180910390f35b3480156103af57600080fd5b506103b8610c66565b6040516103c59190613c47565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613250565b610c6c565b005b34801561040357600080fd5b5061040c610ccc565b6040516104199190613c47565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613366565b610cd2565b6040516104569190613c47565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906131e3565b610d77565b60405161049391906139ea565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be91906131e3565b610d97565b005b6104cd610dfa565b005b6104e960048036038101906104e49190613366565b610e7b565b005b3480156104f757600080fd5b50610512600480360381019061050d9190613250565b611039565b005b34801561052057600080fd5b5061053b600480360381019061053691906131e3565b611059565b60405161054891906139c8565b60405180910390f35b34801561055d57600080fd5b50610578600480360381019061057391906134a4565b611107565b005b34801561058657600080fd5b506105a1600480360381019061059c91906131e3565b611119565b005b3480156105af57600080fd5b506105ca60048036038101906105c591906134a4565b61117c565b6040516105d79190613c47565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906133a6565b6111ed565b005b34801561061557600080fd5b50610630600480360381019061062b919061345b565b611287565b005b34801561063e57600080fd5b506106476112a9565b60405161065491906139ea565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906134a4565b6112bc565b6040516106919190613961565b60405180910390f35b3480156106a657600080fd5b506106af611343565b6040516106bc9190613a05565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e791906131e3565b6113d1565b6040516106f99190613c47565b60405180910390f35b34801561070e57600080fd5b50610717611489565b005b34801561072557600080fd5b50610740600480360381019061073b91906134a4565b61149d565b005b34801561074e57600080fd5b506107576114af565b6040516107649190613961565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906134a4565b6114d9565b005b3480156107a257600080fd5b506107ab6114eb565b6040516107b89190613a05565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613326565b61157d565b005b3480156107f657600080fd5b50610811600480360381019061080c91906131e3565b611593565b005b34801561081f57600080fd5b5061083a600480360381019061083591906132a3565b6115f6565b005b34801561084857600080fd5b50610851611658565b60405161085e9190613a05565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906134a4565b6116e6565b60405161089b9190613a05565b60405180910390f35b3480156108b057600080fd5b506108b9611790565b6040516108c69190613c47565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906131e3565b611796565b60405161090391906139ea565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e919061345b565b6117b6565b005b34801561094157600080fd5b5061095c60048036038101906109579190613210565b6117d8565b60405161096991906139ea565b60405180910390f35b34801561097e57600080fd5b50610999600480360381019061099491906131e3565b61186c565b005b3480156109a757600080fd5b506109c260048036038101906109bd91906131e3565b6118cf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a375750610a3682611a9c565b5b9050919050565b610a46611b7e565b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a7290613f45565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e90613f45565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b6000610b0082611bfc565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b46826112bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90613bc7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd6611c47565b73ffffffffffffffffffffffffffffffffffffffff161480610c055750610c0481610bff611c47565b6117d8565b5b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613be7565b60405180910390fd5b610c4e8383611c4f565b505050565b600d5481565b6000600880549050905090565b60105481565b610c7d610c77611c47565b82611d08565b610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613a27565b60405180910390fd5b610cc7838383611d9d565b505050565b600e5481565b6000610cdd836113d1565b8210610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590613a47565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610d9f611b7e565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e02611b7e565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e289061394c565b60006040518083038185875af1925050503d8060008114610e65576040519150601f19603f3d011682016040523d82523d6000602084013e610e6a565b606091505b5050905080610e7857600080fd5b50565b6000610e85610c59565b9050601160009054906101000a900460ff1615610ea157600080fd5b60008211610eae57600080fd5b601054821115610ebd57600080fd5b600f548282610ecc9190613dab565b1115610ed757600080fd5b610edf6114af565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ffd5760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ffc5760011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fe05781600d54610fcf9190613e01565b341015610fdb57600080fd5b610ffb565b81600e54610fee9190613e01565b341015610ffa57600080fd5b5b5b5b6000600190505b8281116110335761102084828461101b9190613dab565b612097565b808061102b90613fa8565b915050611004565b50505050565b611054838383604051806020016040528060008152506115f6565b505050565b60606000611066836113d1565b905060008167ffffffffffffffff811115611084576110836140dc565b5b6040519080825280602002602001820160405280156110b25781602001602082028036833780820191505090505b50905060005b828110156110fc576110ca8582610cd2565b8282815181106110dd576110dc6140ad565b5b60200260200101818152505080806110f490613fa8565b9150506110b8565b508092505050919050565b61110f611b7e565b80600d8190555050565b611121611b7e565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611186610c59565b82106111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90613c07565b60405180910390fd5b600882815481106111db576111da6140ad565b5b90600052602060002001549050919050565b6111f5611b7e565b60005b60028110156112835760016013600084846064811061121a576112196140ad565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061127b90613fa8565b9150506111f8565b5050565b61128f611b7e565b80600b90805190602001906112a5929190612f65565b5050565b601160009054906101000a900460ff1681565b6000806112c8836120b5565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613ba7565b60405180910390fd5b80915050919050565b600b805461135090613f45565b80601f016020809104026020016040519081016040528092919081815260200182805461137c90613f45565b80156113c95780601f1061139e576101008083540402835291602001916113c9565b820191906000526020600020905b8154815290600101906020018083116113ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990613b27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611491611b7e565b61149b60006120f2565b565b6114a5611b7e565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e1611b7e565b80600e8190555050565b6060600180546114fa90613f45565b80601f016020809104026020016040519081016040528092919081815260200182805461152690613f45565b80156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b5050505050905090565b61158f611588611c47565b83836121b8565b5050565b61159b611b7e565b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611607611601611c47565b83611d08565b611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613a27565b60405180910390fd5b61165284848484612325565b50505050565b600c805461166590613f45565b80601f016020809104026020016040519081016040528092919081815260200182805461169190613f45565b80156116de5780601f106116b3576101008083540402835291602001916116de565b820191906000526020600020905b8154815290600101906020018083116116c157829003601f168201915b505050505081565b60606116f182612381565b611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613b87565b60405180910390fd5b600061173a6123c2565b9050600081511161175a5760405180602001604052806000815250611788565b8061176484612454565b600c6040516020016117789392919061391b565b6040516020818303038152906040525b915050919050565b600f5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6117be611b7e565b80600c90805190602001906117d4929190612f65565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611874611b7e565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6118d7611b7e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90613a87565b60405180910390fd5b611950816120f2565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6001811115611a9657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611a0a5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a029190613e5b565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a955780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a8d9190613dab565b925050819055505b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b775750611b768261252c565b5b9050919050565b611b86611c47565b73ffffffffffffffffffffffffffffffffffffffff16611ba46114af565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190613b67565b60405180910390fd5b565b611c0581612381565b611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613ba7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cc2836112bc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611d14836112bc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d565750611d5581856117d8565b5b80611d9457508373ffffffffffffffffffffffffffffffffffffffff16611d7c84610af5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dbd826112bc565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90613aa7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90613ae7565b60405180910390fd5b611e908383836001612596565b8273ffffffffffffffffffffffffffffffffffffffff16611eb0826112bc565b73ffffffffffffffffffffffffffffffffffffffff1614611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613aa7565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461209283838360016126f6565b505050565b6120b18282604051806020016040528060008152506126fc565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e90613b07565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161231891906139ea565b60405180910390a3505050565b612330848484611d9d565b61233c84848484612757565b61237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290613a67565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166123a3836120b5565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546123d190613f45565b80601f01602080910402602001604051908101604052809291908181526020018280546123fd90613f45565b801561244a5780601f1061241f5761010080835404028352916020019161244a565b820191906000526020600020905b81548152906001019060200180831161242d57829003601f168201915b5050505050905090565b606060006001612463846128ee565b01905060008167ffffffffffffffff811115612482576124816140dc565b5b6040519080825280601f01601f1916602001820160405280156124b45781602001600182028036833780820191505090505b509050600082602001820190505b600115612521578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161250b5761250a614020565b5b049450600085141561251c57612521565b6124c2565b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125a284848484611976565b60018111156125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd90613c27565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561262e5761262981612a41565b61266d565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266c5761266b8582612a8a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126b0576126ab81612bf7565b6126ef565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146126ee576126ed8482612cc8565b5b5b5050505050565b50505050565b6127068383612d47565b6127136000848484612757565b612752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274990613a67565b60405180910390fd5b505050565b60006127788473ffffffffffffffffffffffffffffffffffffffff16611953565b156128e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a1611c47565b8786866040518563ffffffff1660e01b81526004016127c3949392919061397c565b602060405180830381600087803b1580156127dd57600080fd5b505af192505050801561280e57506040513d601f19601f8201168201806040525081019061280b919061342e565b60015b612891573d806000811461283e576040519150601f19603f3d011682016040523d82523d6000602084013e612843565b606091505b50600081511415612889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288090613a67565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128e6565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061294c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161294257612941614020565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612989576d04ee2d6d415b85acef8100000000838161297f5761297e614020565b5b0492506020810190505b662386f26fc1000083106129b857662386f26fc1000083816129ae576129ad614020565b5b0492506010810190505b6305f5e10083106129e1576305f5e10083816129d7576129d6614020565b5b0492506008810190505b6127108310612a065761271083816129fc576129fb614020565b5b0492506004810190505b60648310612a295760648381612a1f57612a1e614020565b5b0492506002810190505b600a8310612a38576001810190505b80915050919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a97846113d1565b612aa19190613e5b565b9050600060076000848152602001908152602001600020549050818114612b86576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c0b9190613e5b565b9050600060096000848152602001908152602001600020549050600060088381548110612c3b57612c3a6140ad565b5b906000526020600020015490508060088381548110612c5d57612c5c6140ad565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cac57612cab61407e565b5b6001900381819060005260206000200160009055905550505050565b6000612cd3836113d1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dae90613b47565b60405180910390fd5b612dc081612381565b15612e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df790613ac7565b60405180910390fd5b612e0e600083836001612596565b612e1781612381565b15612e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4e90613ac7565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f616000838360016126f6565b5050565b828054612f7190613f45565b90600052602060002090601f016020900481019282612f935760008555612fda565b82601f10612fac57805160ff1916838001178555612fda565b82800160010185558215612fda579182015b82811115612fd9578251825591602001919060010190612fbe565b5b509050612fe79190612feb565b5090565b5b80821115613004576000816000905550600101612fec565b5090565b600061301b61301684613c87565b613c62565b9050808285602086028201111561303557613034614110565b5b60005b85811015613065578161304b88826130f3565b845260208401935060208301925050600181019050613038565b5050509392505050565b600061308261307d84613cad565b613c62565b90508281526020810184848401111561309e5761309d614115565b5b6130a9848285613f03565b509392505050565b60006130c46130bf84613cde565b613c62565b9050828152602081018484840111156130e0576130df614115565b5b6130eb848285613f03565b509392505050565b600081359050613102816145b9565b92915050565b600082601f83011261311d5761311c61410b565b5b606461312a848285613008565b91505092915050565b600081359050613142816145d0565b92915050565b600081359050613157816145e7565b92915050565b60008151905061316c816145e7565b92915050565b600082601f8301126131875761318661410b565b5b813561319784826020860161306f565b91505092915050565b600082601f8301126131b5576131b461410b565b5b81356131c58482602086016130b1565b91505092915050565b6000813590506131dd816145fe565b92915050565b6000602082840312156131f9576131f861411f565b5b6000613207848285016130f3565b91505092915050565b600080604083850312156132275761322661411f565b5b6000613235858286016130f3565b9250506020613246858286016130f3565b9150509250929050565b6000806000606084860312156132695761326861411f565b5b6000613277868287016130f3565b9350506020613288868287016130f3565b9250506040613299868287016131ce565b9150509250925092565b600080600080608085870312156132bd576132bc61411f565b5b60006132cb878288016130f3565b94505060206132dc878288016130f3565b93505060406132ed878288016131ce565b925050606085013567ffffffffffffffff81111561330e5761330d61411a565b5b61331a87828801613172565b91505092959194509250565b6000806040838503121561333d5761333c61411f565b5b600061334b858286016130f3565b925050602061335c85828601613133565b9150509250929050565b6000806040838503121561337d5761337c61411f565b5b600061338b858286016130f3565b925050602061339c858286016131ce565b9150509250929050565b6000610c8082840312156133bd576133bc61411f565b5b60006133cb84828501613108565b91505092915050565b6000602082840312156133ea576133e961411f565b5b60006133f884828501613133565b91505092915050565b6000602082840312156134175761341661411f565b5b600061342584828501613148565b91505092915050565b6000602082840312156134445761344361411f565b5b60006134528482850161315d565b91505092915050565b6000602082840312156134715761347061411f565b5b600082013567ffffffffffffffff81111561348f5761348e61411a565b5b61349b848285016131a0565b91505092915050565b6000602082840312156134ba576134b961411f565b5b60006134c8848285016131ce565b91505092915050565b60006134dd83836138fd565b60208301905092915050565b6134f281613e8f565b82525050565b600061350382613d34565b61350d8185613d62565b935061351883613d0f565b8060005b8381101561354957815161353088826134d1565b975061353b83613d55565b92505060018101905061351c565b5085935050505092915050565b61355f81613ea1565b82525050565b600061357082613d3f565b61357a8185613d73565b935061358a818560208601613f12565b61359381614124565b840191505092915050565b60006135a982613d4a565b6135b38185613d8f565b93506135c3818560208601613f12565b6135cc81614124565b840191505092915050565b60006135e282613d4a565b6135ec8185613da0565b93506135fc818560208601613f12565b80840191505092915050565b6000815461361581613f45565b61361f8186613da0565b9450600182166000811461363a576001811461364b5761367e565b60ff1983168652818601935061367e565b61365485613d1f565b60005b8381101561367657815481890152600182019150602081019050613657565b838801955050505b50505092915050565b6000613694602d83613d8f565b915061369f82614135565b604082019050919050565b60006136b7602b83613d8f565b91506136c282614184565b604082019050919050565b60006136da603283613d8f565b91506136e5826141d3565b604082019050919050565b60006136fd602683613d8f565b915061370882614222565b604082019050919050565b6000613720602583613d8f565b915061372b82614271565b604082019050919050565b6000613743601c83613d8f565b915061374e826142c0565b602082019050919050565b6000613766602483613d8f565b9150613771826142e9565b604082019050919050565b6000613789601983613d8f565b915061379482614338565b602082019050919050565b60006137ac602983613d8f565b91506137b782614361565b604082019050919050565b60006137cf602083613d8f565b91506137da826143b0565b602082019050919050565b60006137f2602083613d8f565b91506137fd826143d9565b602082019050919050565b6000613815602f83613d8f565b915061382082614402565b604082019050919050565b6000613838601883613d8f565b915061384382614451565b602082019050919050565b600061385b602183613d8f565b91506138668261447a565b604082019050919050565b600061387e600083613d84565b9150613889826144c9565b600082019050919050565b60006138a1603d83613d8f565b91506138ac826144cc565b604082019050919050565b60006138c4602c83613d8f565b91506138cf8261451b565b604082019050919050565b60006138e7603583613d8f565b91506138f28261456a565b604082019050919050565b61390681613ef9565b82525050565b61391581613ef9565b82525050565b600061392782866135d7565b915061393382856135d7565b915061393f8284613608565b9150819050949350505050565b600061395782613871565b9150819050919050565b600060208201905061397660008301846134e9565b92915050565b600060808201905061399160008301876134e9565b61399e60208301866134e9565b6139ab604083018561390c565b81810360608301526139bd8184613565565b905095945050505050565b600060208201905081810360008301526139e281846134f8565b905092915050565b60006020820190506139ff6000830184613556565b92915050565b60006020820190508181036000830152613a1f818461359e565b905092915050565b60006020820190508181036000830152613a4081613687565b9050919050565b60006020820190508181036000830152613a60816136aa565b9050919050565b60006020820190508181036000830152613a80816136cd565b9050919050565b60006020820190508181036000830152613aa0816136f0565b9050919050565b60006020820190508181036000830152613ac081613713565b9050919050565b60006020820190508181036000830152613ae081613736565b9050919050565b60006020820190508181036000830152613b0081613759565b9050919050565b60006020820190508181036000830152613b208161377c565b9050919050565b60006020820190508181036000830152613b408161379f565b9050919050565b60006020820190508181036000830152613b60816137c2565b9050919050565b60006020820190508181036000830152613b80816137e5565b9050919050565b60006020820190508181036000830152613ba081613808565b9050919050565b60006020820190508181036000830152613bc08161382b565b9050919050565b60006020820190508181036000830152613be08161384e565b9050919050565b60006020820190508181036000830152613c0081613894565b9050919050565b60006020820190508181036000830152613c20816138b7565b9050919050565b60006020820190508181036000830152613c40816138da565b9050919050565b6000602082019050613c5c600083018461390c565b92915050565b6000613c6c613c7d565b9050613c788282613f77565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca257613ca16140dc565b5b602082029050919050565b600067ffffffffffffffff821115613cc857613cc76140dc565b5b613cd182614124565b9050602081019050919050565b600067ffffffffffffffff821115613cf957613cf86140dc565b5b613d0282614124565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613db682613ef9565b9150613dc183613ef9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613df657613df5613ff1565b5b828201905092915050565b6000613e0c82613ef9565b9150613e1783613ef9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5057613e4f613ff1565b5b828202905092915050565b6000613e6682613ef9565b9150613e7183613ef9565b925082821015613e8457613e83613ff1565b5b828203905092915050565b6000613e9a82613ed9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f30578082015181840152602081019050613f15565b83811115613f3f576000848401525b50505050565b60006002820490506001821680613f5d57607f821691505b60208210811415613f7157613f7061404f565b5b50919050565b613f8082614124565b810181811067ffffffffffffffff82111715613f9f57613f9e6140dc565b5b80604052505050565b6000613fb382613ef9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fe657613fe5613ff1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6145c281613e8f565b81146145cd57600080fd5b50565b6145d981613ea1565b81146145e457600080fd5b50565b6145f081613ead565b81146145fb57600080fd5b50565b61460781613ef9565b811461461257600080fd5b5056fea26469706673582212201727d729735d1f786f0008d8feede2d52d3069fd73440d8a5d5507bee421043b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4e4654204552433732310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e455400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a64684b47764b5978474d53546b555a7473797a6f417570505935336d344679725175655477674c313552342f00000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806355f804b311610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146108a4578063d936547e146108cf578063da3ef23f1461090c578063e985e9c514610935578063ed931e1714610972578063f2fde38b1461099b57610251565b8063a22cb465146107c1578063b2f3e85e146107ea578063b88d4fde14610813578063c66828621461083c578063c87b56dd1461086757610251565b8063715018a6116100fd578063715018a6146107025780637f00c7a6146107195780638da5cb5b146107425780638fdcf9421461076d57806395d89b411461079657610251565b806355f804b3146106095780635c975abb146106325780636352211e1461065d5780636c0360eb1461069a57806370a08231146106c557610251565b80632f745c59116101d257806342842e0e1161019657806342842e0e146104eb578063438b63001461051457806344a0d68a146105515780634a4c560d1461057a5780634f6ccce7146105a3578063546857c7146105e057610251565b80632f745c591461042257806330b2264e1461045f57806330cc7ae01461049c5780633ccfd60b146104c557806340c10f19146104cf57610251565b806313faede61161021957806313faede61461034d57806318160ddd14610378578063239c70ae146103a357806323b872dd146103ce5780632a23d07d146103f757610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613401565b6109c4565b60405161028a91906139ea565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906133d4565b610a3e565b005b3480156102c857600080fd5b506102d1610a63565b6040516102de9190613a05565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906134a4565b610af5565b60405161031b9190613961565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613366565b610b3b565b005b34801561035957600080fd5b50610362610c53565b60405161036f9190613c47565b60405180910390f35b34801561038457600080fd5b5061038d610c59565b60405161039a9190613c47565b60405180910390f35b3480156103af57600080fd5b506103b8610c66565b6040516103c59190613c47565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613250565b610c6c565b005b34801561040357600080fd5b5061040c610ccc565b6040516104199190613c47565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613366565b610cd2565b6040516104569190613c47565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906131e3565b610d77565b60405161049391906139ea565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be91906131e3565b610d97565b005b6104cd610dfa565b005b6104e960048036038101906104e49190613366565b610e7b565b005b3480156104f757600080fd5b50610512600480360381019061050d9190613250565b611039565b005b34801561052057600080fd5b5061053b600480360381019061053691906131e3565b611059565b60405161054891906139c8565b60405180910390f35b34801561055d57600080fd5b50610578600480360381019061057391906134a4565b611107565b005b34801561058657600080fd5b506105a1600480360381019061059c91906131e3565b611119565b005b3480156105af57600080fd5b506105ca60048036038101906105c591906134a4565b61117c565b6040516105d79190613c47565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906133a6565b6111ed565b005b34801561061557600080fd5b50610630600480360381019061062b919061345b565b611287565b005b34801561063e57600080fd5b506106476112a9565b60405161065491906139ea565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906134a4565b6112bc565b6040516106919190613961565b60405180910390f35b3480156106a657600080fd5b506106af611343565b6040516106bc9190613a05565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e791906131e3565b6113d1565b6040516106f99190613c47565b60405180910390f35b34801561070e57600080fd5b50610717611489565b005b34801561072557600080fd5b50610740600480360381019061073b91906134a4565b61149d565b005b34801561074e57600080fd5b506107576114af565b6040516107649190613961565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906134a4565b6114d9565b005b3480156107a257600080fd5b506107ab6114eb565b6040516107b89190613a05565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613326565b61157d565b005b3480156107f657600080fd5b50610811600480360381019061080c91906131e3565b611593565b005b34801561081f57600080fd5b5061083a600480360381019061083591906132a3565b6115f6565b005b34801561084857600080fd5b50610851611658565b60405161085e9190613a05565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906134a4565b6116e6565b60405161089b9190613a05565b60405180910390f35b3480156108b057600080fd5b506108b9611790565b6040516108c69190613c47565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906131e3565b611796565b60405161090391906139ea565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e919061345b565b6117b6565b005b34801561094157600080fd5b5061095c60048036038101906109579190613210565b6117d8565b60405161096991906139ea565b60405180910390f35b34801561097e57600080fd5b50610999600480360381019061099491906131e3565b61186c565b005b3480156109a757600080fd5b506109c260048036038101906109bd91906131e3565b6118cf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a375750610a3682611a9c565b5b9050919050565b610a46611b7e565b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a7290613f45565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e90613f45565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b6000610b0082611bfc565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b46826112bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90613bc7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd6611c47565b73ffffffffffffffffffffffffffffffffffffffff161480610c055750610c0481610bff611c47565b6117d8565b5b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613be7565b60405180910390fd5b610c4e8383611c4f565b505050565b600d5481565b6000600880549050905090565b60105481565b610c7d610c77611c47565b82611d08565b610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613a27565b60405180910390fd5b610cc7838383611d9d565b505050565b600e5481565b6000610cdd836113d1565b8210610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590613a47565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610d9f611b7e565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e02611b7e565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e289061394c565b60006040518083038185875af1925050503d8060008114610e65576040519150601f19603f3d011682016040523d82523d6000602084013e610e6a565b606091505b5050905080610e7857600080fd5b50565b6000610e85610c59565b9050601160009054906101000a900460ff1615610ea157600080fd5b60008211610eae57600080fd5b601054821115610ebd57600080fd5b600f548282610ecc9190613dab565b1115610ed757600080fd5b610edf6114af565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ffd5760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ffc5760011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fe05781600d54610fcf9190613e01565b341015610fdb57600080fd5b610ffb565b81600e54610fee9190613e01565b341015610ffa57600080fd5b5b5b5b6000600190505b8281116110335761102084828461101b9190613dab565b612097565b808061102b90613fa8565b915050611004565b50505050565b611054838383604051806020016040528060008152506115f6565b505050565b60606000611066836113d1565b905060008167ffffffffffffffff811115611084576110836140dc565b5b6040519080825280602002602001820160405280156110b25781602001602082028036833780820191505090505b50905060005b828110156110fc576110ca8582610cd2565b8282815181106110dd576110dc6140ad565b5b60200260200101818152505080806110f490613fa8565b9150506110b8565b508092505050919050565b61110f611b7e565b80600d8190555050565b611121611b7e565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611186610c59565b82106111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90613c07565b60405180910390fd5b600882815481106111db576111da6140ad565b5b90600052602060002001549050919050565b6111f5611b7e565b60005b60028110156112835760016013600084846064811061121a576112196140ad565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061127b90613fa8565b9150506111f8565b5050565b61128f611b7e565b80600b90805190602001906112a5929190612f65565b5050565b601160009054906101000a900460ff1681565b6000806112c8836120b5565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613ba7565b60405180910390fd5b80915050919050565b600b805461135090613f45565b80601f016020809104026020016040519081016040528092919081815260200182805461137c90613f45565b80156113c95780601f1061139e576101008083540402835291602001916113c9565b820191906000526020600020905b8154815290600101906020018083116113ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990613b27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611491611b7e565b61149b60006120f2565b565b6114a5611b7e565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e1611b7e565b80600e8190555050565b6060600180546114fa90613f45565b80601f016020809104026020016040519081016040528092919081815260200182805461152690613f45565b80156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b5050505050905090565b61158f611588611c47565b83836121b8565b5050565b61159b611b7e565b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611607611601611c47565b83611d08565b611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613a27565b60405180910390fd5b61165284848484612325565b50505050565b600c805461166590613f45565b80601f016020809104026020016040519081016040528092919081815260200182805461169190613f45565b80156116de5780601f106116b3576101008083540402835291602001916116de565b820191906000526020600020905b8154815290600101906020018083116116c157829003601f168201915b505050505081565b60606116f182612381565b611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613b87565b60405180910390fd5b600061173a6123c2565b9050600081511161175a5760405180602001604052806000815250611788565b8061176484612454565b600c6040516020016117789392919061391b565b6040516020818303038152906040525b915050919050565b600f5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6117be611b7e565b80600c90805190602001906117d4929190612f65565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611874611b7e565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6118d7611b7e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90613a87565b60405180910390fd5b611950816120f2565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6001811115611a9657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611a0a5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a029190613e5b565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a955780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a8d9190613dab565b925050819055505b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b775750611b768261252c565b5b9050919050565b611b86611c47565b73ffffffffffffffffffffffffffffffffffffffff16611ba46114af565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190613b67565b60405180910390fd5b565b611c0581612381565b611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613ba7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cc2836112bc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611d14836112bc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d565750611d5581856117d8565b5b80611d9457508373ffffffffffffffffffffffffffffffffffffffff16611d7c84610af5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dbd826112bc565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90613aa7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90613ae7565b60405180910390fd5b611e908383836001612596565b8273ffffffffffffffffffffffffffffffffffffffff16611eb0826112bc565b73ffffffffffffffffffffffffffffffffffffffff1614611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613aa7565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461209283838360016126f6565b505050565b6120b18282604051806020016040528060008152506126fc565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e90613b07565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161231891906139ea565b60405180910390a3505050565b612330848484611d9d565b61233c84848484612757565b61237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290613a67565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166123a3836120b5565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546123d190613f45565b80601f01602080910402602001604051908101604052809291908181526020018280546123fd90613f45565b801561244a5780601f1061241f5761010080835404028352916020019161244a565b820191906000526020600020905b81548152906001019060200180831161242d57829003601f168201915b5050505050905090565b606060006001612463846128ee565b01905060008167ffffffffffffffff811115612482576124816140dc565b5b6040519080825280601f01601f1916602001820160405280156124b45781602001600182028036833780820191505090505b509050600082602001820190505b600115612521578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161250b5761250a614020565b5b049450600085141561251c57612521565b6124c2565b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125a284848484611976565b60018111156125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd90613c27565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561262e5761262981612a41565b61266d565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266c5761266b8582612a8a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126b0576126ab81612bf7565b6126ef565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146126ee576126ed8482612cc8565b5b5b5050505050565b50505050565b6127068383612d47565b6127136000848484612757565b612752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274990613a67565b60405180910390fd5b505050565b60006127788473ffffffffffffffffffffffffffffffffffffffff16611953565b156128e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a1611c47565b8786866040518563ffffffff1660e01b81526004016127c3949392919061397c565b602060405180830381600087803b1580156127dd57600080fd5b505af192505050801561280e57506040513d601f19601f8201168201806040525081019061280b919061342e565b60015b612891573d806000811461283e576040519150601f19603f3d011682016040523d82523d6000602084013e612843565b606091505b50600081511415612889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288090613a67565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128e6565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061294c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161294257612941614020565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612989576d04ee2d6d415b85acef8100000000838161297f5761297e614020565b5b0492506020810190505b662386f26fc1000083106129b857662386f26fc1000083816129ae576129ad614020565b5b0492506010810190505b6305f5e10083106129e1576305f5e10083816129d7576129d6614020565b5b0492506008810190505b6127108310612a065761271083816129fc576129fb614020565b5b0492506004810190505b60648310612a295760648381612a1f57612a1e614020565b5b0492506002810190505b600a8310612a38576001810190505b80915050919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a97846113d1565b612aa19190613e5b565b9050600060076000848152602001908152602001600020549050818114612b86576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c0b9190613e5b565b9050600060096000848152602001908152602001600020549050600060088381548110612c3b57612c3a6140ad565b5b906000526020600020015490508060088381548110612c5d57612c5c6140ad565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cac57612cab61407e565b5b6001900381819060005260206000200160009055905550505050565b6000612cd3836113d1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dae90613b47565b60405180910390fd5b612dc081612381565b15612e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df790613ac7565b60405180910390fd5b612e0e600083836001612596565b612e1781612381565b15612e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4e90613ac7565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f616000838360016126f6565b5050565b828054612f7190613f45565b90600052602060002090601f016020900481019282612f935760008555612fda565b82601f10612fac57805160ff1916838001178555612fda565b82800160010185558215612fda579182015b82811115612fd9578251825591602001919060010190612fbe565b5b509050612fe79190612feb565b5090565b5b80821115613004576000816000905550600101612fec565b5090565b600061301b61301684613c87565b613c62565b9050808285602086028201111561303557613034614110565b5b60005b85811015613065578161304b88826130f3565b845260208401935060208301925050600181019050613038565b5050509392505050565b600061308261307d84613cad565b613c62565b90508281526020810184848401111561309e5761309d614115565b5b6130a9848285613f03565b509392505050565b60006130c46130bf84613cde565b613c62565b9050828152602081018484840111156130e0576130df614115565b5b6130eb848285613f03565b509392505050565b600081359050613102816145b9565b92915050565b600082601f83011261311d5761311c61410b565b5b606461312a848285613008565b91505092915050565b600081359050613142816145d0565b92915050565b600081359050613157816145e7565b92915050565b60008151905061316c816145e7565b92915050565b600082601f8301126131875761318661410b565b5b813561319784826020860161306f565b91505092915050565b600082601f8301126131b5576131b461410b565b5b81356131c58482602086016130b1565b91505092915050565b6000813590506131dd816145fe565b92915050565b6000602082840312156131f9576131f861411f565b5b6000613207848285016130f3565b91505092915050565b600080604083850312156132275761322661411f565b5b6000613235858286016130f3565b9250506020613246858286016130f3565b9150509250929050565b6000806000606084860312156132695761326861411f565b5b6000613277868287016130f3565b9350506020613288868287016130f3565b9250506040613299868287016131ce565b9150509250925092565b600080600080608085870312156132bd576132bc61411f565b5b60006132cb878288016130f3565b94505060206132dc878288016130f3565b93505060406132ed878288016131ce565b925050606085013567ffffffffffffffff81111561330e5761330d61411a565b5b61331a87828801613172565b91505092959194509250565b6000806040838503121561333d5761333c61411f565b5b600061334b858286016130f3565b925050602061335c85828601613133565b9150509250929050565b6000806040838503121561337d5761337c61411f565b5b600061338b858286016130f3565b925050602061339c858286016131ce565b9150509250929050565b6000610c8082840312156133bd576133bc61411f565b5b60006133cb84828501613108565b91505092915050565b6000602082840312156133ea576133e961411f565b5b60006133f884828501613133565b91505092915050565b6000602082840312156134175761341661411f565b5b600061342584828501613148565b91505092915050565b6000602082840312156134445761344361411f565b5b60006134528482850161315d565b91505092915050565b6000602082840312156134715761347061411f565b5b600082013567ffffffffffffffff81111561348f5761348e61411a565b5b61349b848285016131a0565b91505092915050565b6000602082840312156134ba576134b961411f565b5b60006134c8848285016131ce565b91505092915050565b60006134dd83836138fd565b60208301905092915050565b6134f281613e8f565b82525050565b600061350382613d34565b61350d8185613d62565b935061351883613d0f565b8060005b8381101561354957815161353088826134d1565b975061353b83613d55565b92505060018101905061351c565b5085935050505092915050565b61355f81613ea1565b82525050565b600061357082613d3f565b61357a8185613d73565b935061358a818560208601613f12565b61359381614124565b840191505092915050565b60006135a982613d4a565b6135b38185613d8f565b93506135c3818560208601613f12565b6135cc81614124565b840191505092915050565b60006135e282613d4a565b6135ec8185613da0565b93506135fc818560208601613f12565b80840191505092915050565b6000815461361581613f45565b61361f8186613da0565b9450600182166000811461363a576001811461364b5761367e565b60ff1983168652818601935061367e565b61365485613d1f565b60005b8381101561367657815481890152600182019150602081019050613657565b838801955050505b50505092915050565b6000613694602d83613d8f565b915061369f82614135565b604082019050919050565b60006136b7602b83613d8f565b91506136c282614184565b604082019050919050565b60006136da603283613d8f565b91506136e5826141d3565b604082019050919050565b60006136fd602683613d8f565b915061370882614222565b604082019050919050565b6000613720602583613d8f565b915061372b82614271565b604082019050919050565b6000613743601c83613d8f565b915061374e826142c0565b602082019050919050565b6000613766602483613d8f565b9150613771826142e9565b604082019050919050565b6000613789601983613d8f565b915061379482614338565b602082019050919050565b60006137ac602983613d8f565b91506137b782614361565b604082019050919050565b60006137cf602083613d8f565b91506137da826143b0565b602082019050919050565b60006137f2602083613d8f565b91506137fd826143d9565b602082019050919050565b6000613815602f83613d8f565b915061382082614402565b604082019050919050565b6000613838601883613d8f565b915061384382614451565b602082019050919050565b600061385b602183613d8f565b91506138668261447a565b604082019050919050565b600061387e600083613d84565b9150613889826144c9565b600082019050919050565b60006138a1603d83613d8f565b91506138ac826144cc565b604082019050919050565b60006138c4602c83613d8f565b91506138cf8261451b565b604082019050919050565b60006138e7603583613d8f565b91506138f28261456a565b604082019050919050565b61390681613ef9565b82525050565b61391581613ef9565b82525050565b600061392782866135d7565b915061393382856135d7565b915061393f8284613608565b9150819050949350505050565b600061395782613871565b9150819050919050565b600060208201905061397660008301846134e9565b92915050565b600060808201905061399160008301876134e9565b61399e60208301866134e9565b6139ab604083018561390c565b81810360608301526139bd8184613565565b905095945050505050565b600060208201905081810360008301526139e281846134f8565b905092915050565b60006020820190506139ff6000830184613556565b92915050565b60006020820190508181036000830152613a1f818461359e565b905092915050565b60006020820190508181036000830152613a4081613687565b9050919050565b60006020820190508181036000830152613a60816136aa565b9050919050565b60006020820190508181036000830152613a80816136cd565b9050919050565b60006020820190508181036000830152613aa0816136f0565b9050919050565b60006020820190508181036000830152613ac081613713565b9050919050565b60006020820190508181036000830152613ae081613736565b9050919050565b60006020820190508181036000830152613b0081613759565b9050919050565b60006020820190508181036000830152613b208161377c565b9050919050565b60006020820190508181036000830152613b408161379f565b9050919050565b60006020820190508181036000830152613b60816137c2565b9050919050565b60006020820190508181036000830152613b80816137e5565b9050919050565b60006020820190508181036000830152613ba081613808565b9050919050565b60006020820190508181036000830152613bc08161382b565b9050919050565b60006020820190508181036000830152613be08161384e565b9050919050565b60006020820190508181036000830152613c0081613894565b9050919050565b60006020820190508181036000830152613c20816138b7565b9050919050565b60006020820190508181036000830152613c40816138da565b9050919050565b6000602082019050613c5c600083018461390c565b92915050565b6000613c6c613c7d565b9050613c788282613f77565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca257613ca16140dc565b5b602082029050919050565b600067ffffffffffffffff821115613cc857613cc76140dc565b5b613cd182614124565b9050602081019050919050565b600067ffffffffffffffff821115613cf957613cf86140dc565b5b613d0282614124565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613db682613ef9565b9150613dc183613ef9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613df657613df5613ff1565b5b828201905092915050565b6000613e0c82613ef9565b9150613e1783613ef9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5057613e4f613ff1565b5b828202905092915050565b6000613e6682613ef9565b9150613e7183613ef9565b925082821015613e8457613e83613ff1565b5b828203905092915050565b6000613e9a82613ed9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f30578082015181840152602081019050613f15565b83811115613f3f576000848401525b50505050565b60006002820490506001821680613f5d57607f821691505b60208210811415613f7157613f7061404f565b5b50919050565b613f8082614124565b810181811067ffffffffffffffff82111715613f9f57613f9e6140dc565b5b80604052505050565b6000613fb382613ef9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fe657613fe5613ff1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6145c281613e8f565b81146145cd57600080fd5b50565b6145d981613ea1565b81146145e457600080fd5b50565b6145f081613ead565b81146145fb57600080fd5b50565b61460781613ef9565b811461461257600080fd5b5056fea26469706673582212201727d729735d1f786f0008d8feede2d52d3069fd73440d8a5d5507bee421043b64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4e4654204552433732310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e455400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a64684b47764b5978474d53546b555a7473797a6f417570505935336d344679725175655477674c313552342f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NFT ERC721
Arg [1] : _symbol (string): NET
Arg [2] : _initBaseURI (string): ipfs://QmZdhKGvKYxGMSTkUZtsyzoAupPY53m4FyrQueTwgL15R4/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4e46542045524337323100000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4e45540000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5a64684b47764b5978474d53546b555a7473797a6f4175
Arg [9] : 70505935336d344679725175655477674c313552342f00000000000000000000


Deployed Bytecode Sourcemap

62518:4240:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56490:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65839:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40552:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42064:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41582:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62681:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57130:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62806:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42764:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62722:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56798:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62929:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66033:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66563:192;;;:::i;:::-;;63355:807;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43170:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64170:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65236:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65926:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57320:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66258:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65568:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62846:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40262:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62609:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39993:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17975:103;;;;;;;;;;;;;:::i;:::-;;65438:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17327:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65330:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40721:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42307:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66147:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43426:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62637:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64568:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62770:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62879:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65680:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42533:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66448:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18233:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56490:224;56592:4;56631:35;56616:50;;;:11;:50;;;;:90;;;;56670:36;56694:11;56670:23;:36::i;:::-;56616:90;56609:97;;56490:224;;;:::o;65839:79::-;17213:13;:11;:13::i;:::-;65904:6:::1;65895;;:15;;;;;;;;;;;;;;;;;;65839:79:::0;:::o;40552:100::-;40606:13;40639:5;40632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40552:100;:::o;42064:171::-;42140:7;42160:23;42175:7;42160:14;:23::i;:::-;42203:15;:24;42219:7;42203:24;;;;;;;;;;;;;;;;;;;;;42196:31;;42064:171;;;:::o;41582:416::-;41663:13;41679:23;41694:7;41679:14;:23::i;:::-;41663:39;;41727:5;41721:11;;:2;:11;;;;41713:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41821:5;41805:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41830:37;41847:5;41854:12;:10;:12::i;:::-;41830:16;:37::i;:::-;41805:62;41783:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;41969:21;41978:2;41982:7;41969:8;:21::i;:::-;41652:346;41582:416;;:::o;62681:34::-;;;;:::o;57130:113::-;57191:7;57218:10;:17;;;;57211:24;;57130:113;:::o;62806:33::-;;;;:::o;42764:335::-;42959:41;42978:12;:10;:12::i;:::-;42992:7;42959:18;:41::i;:::-;42951:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43063:28;43073:4;43079:2;43083:7;43063:9;:28::i;:::-;42764:335;;;:::o;62722:41::-;;;;:::o;56798:256::-;56895:7;56931:23;56948:5;56931:16;:23::i;:::-;56923:5;:31;56915:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;57020:12;:19;57033:5;57020:19;;;;;;;;;;;;;;;:26;57040:5;57020:26;;;;;;;;;;;;57013:33;;56798:256;;;;:::o;62929:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;66033:106::-;17213:13;:11;:13::i;:::-;66126:5:::1;66105:11;:18;66117:5;66105:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;66033:106:::0;:::o;66563:192::-;17213:13;:11;:13::i;:::-;66620:12:::1;66646:10;66638:24;;66684:21;66638:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66619:101;;;66739:7;66731:16;;;::::0;::::1;;66608:147;66563:192::o:0;63355:807::-;63429:14;63446:13;:11;:13::i;:::-;63429:30;;63479:6;;;;;;;;;;;63478:7;63470:16;;;;;;63519:1;63505:11;:15;63497:24;;;;;;63555:13;;63540:11;:28;;63532:37;;;;;;63612:9;;63597:11;63588:6;:20;;;;:::i;:::-;:33;;63580:42;;;;;;63653:7;:5;:7::i;:::-;63639:21;;:10;:21;;;63635:412;;63708:4;63681:31;;:11;:23;63693:10;63681:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;63677:359;;63767:4;63737:34;;:14;:26;63752:10;63737:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;63733:288;;63862:11;63855:4;;:18;;;;:::i;:::-;63842:9;:31;;63834:40;;;;;;63733:288;;;63989:11;63975;;:25;;;;:::i;:::-;63962:9;:38;;63954:47;;;;;;63733:288;63677:359;63635:412;64064:9;64076:1;64064:13;;64059:96;64084:11;64079:1;:16;64059:96;;64117:26;64127:3;64141:1;64132:6;:10;;;;:::i;:::-;64117:9;:26::i;:::-;64097:3;;;;;:::i;:::-;;;;64059:96;;;;63418:744;63355:807;;:::o;43170:185::-;43308:39;43325:4;43331:2;43335:7;43308:39;;;;;;;;;;;;:16;:39::i;:::-;43170:185;;;:::o;64170:390::-;64257:16;64291:23;64317:17;64327:6;64317:9;:17::i;:::-;64291:43;;64345:25;64387:15;64373:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64345:58;;64419:9;64414:113;64434:15;64430:1;:19;64414:113;;;64485:30;64505:6;64513:1;64485:19;:30::i;:::-;64471:8;64480:1;64471:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;64451:3;;;;;:::i;:::-;;;;64414:113;;;;64544:8;64537:15;;;;64170:390;;;:::o;65236:86::-;17213:13;:11;:13::i;:::-;65306:8:::1;65299:4;:15;;;;65236:86:::0;:::o;65926:99::-;17213:13;:11;:13::i;:::-;66013:4:::1;65992:11;:18;66004:5;65992:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;65926:99:::0;:::o;57320:233::-;57395:7;57431:30;:28;:30::i;:::-;57423:5;:38;57415:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57528:10;57539:5;57528:17;;;;;;;;:::i;:::-;;;;;;;;;;57521:24;;57320:233;;;:::o;66258:182::-;17213:13;:11;:13::i;:::-;66347:9:::1;66342:91;66366:1;66362;:5;66342:91;;;66417:4;66389:14;:25;66404:6;66411:1;66404:9;;;;;;;:::i;:::-;;;;;;66389:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;66369:3;;;;;:::i;:::-;;;;66342:91;;;;66258:182:::0;:::o;65568:104::-;17213:13;:11;:13::i;:::-;65653:11:::1;65643:7;:21;;;;;;;;;;;;:::i;:::-;;65568:104:::0;:::o;62846:26::-;;;;;;;;;;;;;:::o;40262:223::-;40334:7;40354:13;40370:17;40379:7;40370:8;:17::i;:::-;40354:33;;40423:1;40406:19;;:5;:19;;;;40398:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;40472:5;40465:12;;;40262:223;;;:::o;62609:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39993:207::-;40065:7;40110:1;40093:19;;:5;:19;;;;40085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40176:9;:16;40186:5;40176:16;;;;;;;;;;;;;;;;40169:23;;39993:207;;;:::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;65438:122::-;17213:13;:11;:13::i;:::-;65535:17:::1;65519:13;:33;;;;65438:122:::0;:::o;17327:87::-;17373:7;17400:6;;;;;;;;;;;17393:13;;17327:87;:::o;65330:100::-;17213:13;:11;:13::i;:::-;65414:8:::1;65400:11;:22;;;;65330:100:::0;:::o;40721:104::-;40777:13;40810:7;40803:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40721:104;:::o;42307:155::-;42402:52;42421:12;:10;:12::i;:::-;42435:8;42445;42402:18;:52::i;:::-;42307:155;;:::o;66147:103::-;17213:13;:11;:13::i;:::-;66238:4:::1;66214:14;:21;66229:5;66214:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;66147:103:::0;:::o;43426:322::-;43600:41;43619:12;:10;:12::i;:::-;43633:7;43600:18;:41::i;:::-;43592:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43702:38;43716:4;43722:2;43726:7;43735:4;43702:13;:38::i;:::-;43426:322;;;;:::o;62637:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64568:642::-;64686:13;64739:16;64747:7;64739;:16::i;:::-;64717:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;64843:28;64874:10;:8;:10::i;:::-;64843:41;;64946:1;64921:14;64915:28;:32;:287;;;;;;;;;;;;;;;;;65039:14;65080:18;:7;:16;:18::i;:::-;65125:13;64996:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64915:287;64895:307;;;64568:642;;;:::o;62770:29::-;;;;:::o;62879:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;65680:151::-;17213:13;:11;:13::i;:::-;65806:17:::1;65790:13;:33;;;;;;;;;;;;:::i;:::-;;65680:151:::0;:::o;42533:164::-;42630:4;42654:18;:25;42673:5;42654:25;;;;;;;;;;;;;;;:35;42680:8;42654:35;;;;;;;;;;;;;;;;;;;;;;;;;42647:42;;42533:164;;;;:::o;66448:107::-;17213:13;:11;:13::i;:::-;66542:5:::1;66518:14;:21;66533:5;66518:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;66448:107:::0;:::o;18233:201::-;17213:13;:11;:13::i;:::-;18342:1:::1;18322:22;;:8;:22;;;;18314:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;20025:326::-;20085:4;20342:1;20320:7;:19;;;:23;20313:30;;20025:326;;;:::o;54167:410::-;54357:1;54345:9;:13;54341:229;;;54395:1;54379:18;;:4;:18;;;54375:87;;54437:9;54418;:15;54428:4;54418:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;54375:87;54494:1;54480:16;;:2;:16;;;54476:83;;54534:9;54517;:13;54527:2;54517:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;54476:83;54341:229;54167:410;;;;:::o;39624:305::-;39726:4;39778:25;39763:40;;;:11;:40;;;;:105;;;;39835:33;39820:48;;;:11;:48;;;;39763:105;:158;;;;39885:36;39909:11;39885:23;:36::i;:::-;39763:158;39743:178;;39624:305;;;:::o;17492:132::-;17567:12;:10;:12::i;:::-;17556:23;;:7;:5;:7::i;:::-;:23;;;17548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17492:132::o;51883:135::-;51965:16;51973:7;51965;:16::i;:::-;51957:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;51883:135;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;51162:174::-;51264:2;51237:15;:24;51253:7;51237:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51320:7;51316:2;51282:46;;51291:23;51306:7;51291:14;:23::i;:::-;51282:46;;;;;;;;;;;;51162:174;;:::o;45781:264::-;45874:4;45891:13;45907:23;45922:7;45907:14;:23::i;:::-;45891:39;;45960:5;45949:16;;:7;:16;;;:52;;;;45969:32;45986:5;45993:7;45969:16;:32::i;:::-;45949:52;:87;;;;46029:7;46005:31;;:20;46017:7;46005:11;:20::i;:::-;:31;;;45949:87;45941:96;;;45781:264;;;;:::o;49780:1263::-;49939:4;49912:31;;:23;49927:7;49912:14;:23::i;:::-;:31;;;49904:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50018:1;50004:16;;:2;:16;;;;49996:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50074:42;50095:4;50101:2;50105:7;50114:1;50074:20;:42::i;:::-;50246:4;50219:31;;:23;50234:7;50219:14;:23::i;:::-;:31;;;50211:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50364:15;:24;50380:7;50364:24;;;;;;;;;;;;50357:31;;;;;;;;;;;50859:1;50840:9;:15;50850:4;50840:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;50892:1;50875:9;:13;50885:2;50875:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50934:2;50915:7;:16;50923:7;50915:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50973:7;50969:2;50954:27;;50963:4;50954:27;;;;;;;;;;;;50994:41;51014:4;51020:2;51024:7;51033:1;50994:19;:41::i;:::-;49780:1263;;;:::o;46387:110::-;46463:26;46473:2;46477:7;46463:26;;;;;;;;;;;;:9;:26::i;:::-;46387:110;;:::o;45056:117::-;45122:7;45149;:16;45157:7;45149:16;;;;;;;;;;;;;;;;;;;;;45142:23;;45056:117;;;:::o;18594:191::-;18668:16;18687:6;;;;;;;;;;;18668:25;;18713:8;18704:6;;:17;;;;;;;;;;;;;;;;;;18768:8;18737:40;;18758:8;18737:40;;;;;;;;;;;;18657:128;18594:191;:::o;51479:315::-;51634:8;51625:17;;:5;:17;;;;51617:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51721:8;51683:18;:25;51702:5;51683:25;;;;;;;;;;;;;;;:35;51709:8;51683:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;51767:8;51745:41;;51760:5;51745:41;;;51777:8;51745:41;;;;;;:::i;:::-;;;;;;;;51479:315;;;:::o;44629:313::-;44785:28;44795:4;44801:2;44805:7;44785:9;:28::i;:::-;44832:47;44855:4;44861:2;44865:7;44874:4;44832:22;:47::i;:::-;44824:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44629:313;;;;:::o;45486:128::-;45551:4;45604:1;45575:31;;:17;45584:7;45575:8;:17::i;:::-;:31;;;;45568:38;;45486:128;;;:::o;63224:108::-;63284:13;63317:7;63310:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63224:108;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;31056:157::-;31141:4;31180:25;31165:40;;;:11;:40;;;;31158:47;;31056:157;;;:::o;57627:915::-;57804:61;57831:4;57837:2;57841:12;57855:9;57804:26;:61::i;:::-;57894:1;57882:9;:13;57878:222;;;58025:63;;;;;;;;;;:::i;:::-;;;;;;;;57878:222;58112:15;58130:12;58112:30;;58175:1;58159:18;;:4;:18;;;58155:187;;;58194:40;58226:7;58194:31;:40::i;:::-;58155:187;;;58264:2;58256:10;;:4;:10;;;58252:90;;58283:47;58316:4;58322:7;58283:32;:47::i;:::-;58252:90;58155:187;58370:1;58356:16;;:2;:16;;;58352:183;;;58389:45;58426:7;58389:36;:45::i;:::-;58352:183;;;58462:4;58456:10;;:2;:10;;;58452:83;;58483:40;58511:2;58515:7;58483:27;:40::i;:::-;58452:83;58352:183;57793:749;57627:915;;;;:::o;55299:158::-;;;;;:::o;46724:319::-;46853:18;46859:2;46863:7;46853:5;:18::i;:::-;46904:53;46935:1;46939:2;46943:7;46952:4;46904:22;:53::i;:::-;46882:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;46724:319;;;:::o;52582:853::-;52736:4;52757:15;:2;:13;;;:15::i;:::-;52753:675;;;52809:2;52793:36;;;52830:12;:10;:12::i;:::-;52844:4;52850:7;52859:4;52793:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52789:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53051:1;53034:6;:13;:18;53030:328;;;53077:60;;;;;;;;;;:::i;:::-;;;;;;;;53030:328;53308:6;53302:13;53293:6;53289:2;53285:15;53278:38;52789:584;52925:41;;;52915:51;;;:6;:51;;;;52908:58;;;;;52753:675;53412:4;53405:11;;52582:853;;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;59265:164::-;59369:10;:17;;;;59342:15;:24;59358:7;59342:24;;;;;;;;;;;:44;;;;59397:10;59413:7;59397:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59265:164;:::o;60056:988::-;60322:22;60372:1;60347:22;60364:4;60347:16;:22::i;:::-;:26;;;;:::i;:::-;60322:51;;60384:18;60405:17;:26;60423:7;60405:26;;;;;;;;;;;;60384:47;;60552:14;60538:10;:28;60534:328;;60583:19;60605:12;:18;60618:4;60605:18;;;;;;;;;;;;;;;:34;60624:14;60605:34;;;;;;;;;;;;60583:56;;60689:11;60656:12;:18;60669:4;60656:18;;;;;;;;;;;;;;;:30;60675:10;60656:30;;;;;;;;;;;:44;;;;60806:10;60773:17;:30;60791:11;60773:30;;;;;;;;;;;:43;;;;60568:294;60534:328;60958:17;:26;60976:7;60958:26;;;;;;;;;;;60951:33;;;61002:12;:18;61015:4;61002:18;;;;;;;;;;;;;;;:34;61021:14;61002:34;;;;;;;;;;;60995:41;;;60137:907;;60056:988;;:::o;61339:1079::-;61592:22;61637:1;61617:10;:17;;;;:21;;;;:::i;:::-;61592:46;;61649:18;61670:15;:24;61686:7;61670:24;;;;;;;;;;;;61649:45;;62021:19;62043:10;62054:14;62043:26;;;;;;;;:::i;:::-;;;;;;;;;;62021:48;;62107:11;62082:10;62093;62082:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;62218:10;62187:15;:28;62203:11;62187:28;;;;;;;;;;;:41;;;;62359:15;:24;62375:7;62359:24;;;;;;;;;;;62352:31;;;62394:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61410:1008;;;61339:1079;:::o;58843:221::-;58928:14;58945:20;58962:2;58945:16;:20::i;:::-;58928:37;;59003:7;58976:12;:16;58989:2;58976:16;;;;;;;;;;;;;;;:24;58993:6;58976:24;;;;;;;;;;;:34;;;;59050:6;59021:17;:26;59039:7;59021:26;;;;;;;;;;;:35;;;;58917:147;58843:221;;:::o;47379:942::-;47473:1;47459:16;;:2;:16;;;;47451:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47532:16;47540:7;47532;:16::i;:::-;47531:17;47523:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47594:48;47623:1;47627:2;47631:7;47640:1;47594:20;:48::i;:::-;47741:16;47749:7;47741;:16::i;:::-;47740:17;47732:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48156:1;48139:9;:13;48149:2;48139:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48200:2;48181:7;:16;48189:7;48181:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48245:7;48241:2;48220:33;;48237:1;48220:33;;;;;;;;;;;;48266:47;48294:1;48298:2;48302:7;48311:1;48266:19;:47::i;:::-;47379:942;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;27:659:1:-;123:5;148:81;164:64;221:6;164:64;:::i;:::-;148:81;:::i;:::-;139:90;;249:5;275:6;325:3;317:4;309:6;305:17;300:3;296:27;293:36;290:143;;;344:79;;:::i;:::-;290:143;457:1;442:238;467:6;464:1;461:13;442:238;;;535:3;564:37;597:3;585:10;564:37;:::i;:::-;559:3;552:50;631:4;626:3;622:14;615:21;;665:4;660:3;656:14;649:21;;502:178;489:1;486;482:9;477:14;;442:238;;;446:14;129:557;;27:659;;;;;:::o;692:410::-;769:5;794:65;810:48;851:6;810:48;:::i;:::-;794:65;:::i;:::-;785:74;;882:6;875:5;868:21;920:4;913:5;909:16;958:3;949:6;944:3;940:16;937:25;934:112;;;965:79;;:::i;:::-;934:112;1055:41;1089:6;1084:3;1079;1055:41;:::i;:::-;775:327;692:410;;;;;:::o;1108:412::-;1186:5;1211:66;1227:49;1269:6;1227:49;:::i;:::-;1211:66;:::i;:::-;1202:75;;1300:6;1293:5;1286:21;1338:4;1331:5;1327:16;1376:3;1367:6;1362:3;1358:16;1355:25;1352:112;;;1383:79;;:::i;:::-;1352:112;1473:41;1507:6;1502:3;1497;1473:41;:::i;:::-;1192:328;1108:412;;;;;:::o;1526:139::-;1572:5;1610:6;1597:20;1588:29;;1626:33;1653:5;1626:33;:::i;:::-;1526:139;;;;:::o;1691:343::-;1762:5;1811:3;1804:4;1796:6;1792:17;1788:27;1778:122;;1819:79;;:::i;:::-;1778:122;1923:4;1945:83;2024:3;2016:6;2008;1945:83;:::i;:::-;1936:92;;1768:266;1691:343;;;;:::o;2040:133::-;2083:5;2121:6;2108:20;2099:29;;2137:30;2161:5;2137:30;:::i;:::-;2040:133;;;;:::o;2179:137::-;2224:5;2262:6;2249:20;2240:29;;2278:32;2304:5;2278:32;:::i;:::-;2179:137;;;;:::o;2322:141::-;2378:5;2409:6;2403:13;2394:22;;2425:32;2451:5;2425:32;:::i;:::-;2322:141;;;;:::o;2482:338::-;2537:5;2586:3;2579:4;2571:6;2567:17;2563:27;2553:122;;2594:79;;:::i;:::-;2553:122;2711:6;2698:20;2736:78;2810:3;2802:6;2795:4;2787:6;2783:17;2736:78;:::i;:::-;2727:87;;2543:277;2482:338;;;;:::o;2840:340::-;2896:5;2945:3;2938:4;2930:6;2926:17;2922:27;2912:122;;2953:79;;:::i;:::-;2912:122;3070:6;3057:20;3095:79;3170:3;3162:6;3155:4;3147:6;3143:17;3095:79;:::i;:::-;3086:88;;2902:278;2840:340;;;;:::o;3186:139::-;3232:5;3270:6;3257:20;3248:29;;3286:33;3313:5;3286:33;:::i;:::-;3186:139;;;;:::o;3331:329::-;3390:6;3439:2;3427:9;3418:7;3414:23;3410:32;3407:119;;;3445:79;;:::i;:::-;3407:119;3565:1;3590:53;3635:7;3626:6;3615:9;3611:22;3590:53;:::i;:::-;3580:63;;3536:117;3331:329;;;;:::o;3666:474::-;3734:6;3742;3791:2;3779:9;3770:7;3766:23;3762:32;3759:119;;;3797:79;;:::i;:::-;3759:119;3917:1;3942:53;3987:7;3978:6;3967:9;3963:22;3942:53;:::i;:::-;3932:63;;3888:117;4044:2;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4015:118;3666:474;;;;;:::o;4146:619::-;4223:6;4231;4239;4288:2;4276:9;4267:7;4263:23;4259:32;4256:119;;;4294:79;;:::i;:::-;4256:119;4414:1;4439:53;4484:7;4475:6;4464:9;4460:22;4439:53;:::i;:::-;4429:63;;4385:117;4541:2;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4512:118;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4146:619;;;;;:::o;4771:943::-;4866:6;4874;4882;4890;4939:3;4927:9;4918:7;4914:23;4910:33;4907:120;;;4946:79;;:::i;:::-;4907:120;5066:1;5091:53;5136:7;5127:6;5116:9;5112:22;5091:53;:::i;:::-;5081:63;;5037:117;5193:2;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5164:118;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5477:2;5466:9;5462:18;5449:32;5508:18;5500:6;5497:30;5494:117;;;5530:79;;:::i;:::-;5494:117;5635:62;5689:7;5680:6;5669:9;5665:22;5635:62;:::i;:::-;5625:72;;5420:287;4771:943;;;;;;;:::o;5720:468::-;5785:6;5793;5842:2;5830:9;5821:7;5817:23;5813:32;5810:119;;;5848:79;;:::i;:::-;5810:119;5968:1;5993:53;6038:7;6029:6;6018:9;6014:22;5993:53;:::i;:::-;5983:63;;5939:117;6095:2;6121:50;6163:7;6154:6;6143:9;6139:22;6121:50;:::i;:::-;6111:60;;6066:115;5720:468;;;;;:::o;6194:474::-;6262:6;6270;6319:2;6307:9;6298:7;6294:23;6290:32;6287:119;;;6325:79;;:::i;:::-;6287:119;6445:1;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6416:117;6572:2;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6543:118;6194:474;;;;;:::o;6674:381::-;6758:6;6807:4;6795:9;6786:7;6782:23;6778:34;6775:121;;;6815:79;;:::i;:::-;6775:121;6935:1;6960:78;7030:7;7021:6;7010:9;7006:22;6960:78;:::i;:::-;6950:88;;6906:142;6674:381;;;;:::o;7061:323::-;7117:6;7166:2;7154:9;7145:7;7141:23;7137:32;7134:119;;;7172:79;;:::i;:::-;7134:119;7292:1;7317:50;7359:7;7350:6;7339:9;7335:22;7317:50;:::i;:::-;7307:60;;7263:114;7061:323;;;;:::o;7390:327::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7623:1;7648:52;7692:7;7683:6;7672:9;7668:22;7648:52;:::i;:::-;7638:62;;7594:116;7390:327;;;;:::o;7723:349::-;7792:6;7841:2;7829:9;7820:7;7816:23;7812:32;7809:119;;;7847:79;;:::i;:::-;7809:119;7967:1;7992:63;8047:7;8038:6;8027:9;8023:22;7992:63;:::i;:::-;7982:73;;7938:127;7723:349;;;;:::o;8078:509::-;8147:6;8196:2;8184:9;8175:7;8171:23;8167:32;8164:119;;;8202:79;;:::i;:::-;8164:119;8350:1;8339:9;8335:17;8322:31;8380:18;8372:6;8369:30;8366:117;;;8402:79;;:::i;:::-;8366:117;8507:63;8562:7;8553:6;8542:9;8538:22;8507:63;:::i;:::-;8497:73;;8293:287;8078:509;;;;:::o;8593:329::-;8652:6;8701:2;8689:9;8680:7;8676:23;8672:32;8669:119;;;8707:79;;:::i;:::-;8669:119;8827:1;8852:53;8897:7;8888:6;8877:9;8873:22;8852:53;:::i;:::-;8842:63;;8798:117;8593:329;;;;:::o;8928:179::-;8997:10;9018:46;9060:3;9052:6;9018:46;:::i;:::-;9096:4;9091:3;9087:14;9073:28;;8928:179;;;;:::o;9113:118::-;9200:24;9218:5;9200:24;:::i;:::-;9195:3;9188:37;9113:118;;:::o;9267:732::-;9386:3;9415:54;9463:5;9415:54;:::i;:::-;9485:86;9564:6;9559:3;9485:86;:::i;:::-;9478:93;;9595:56;9645:5;9595:56;:::i;:::-;9674:7;9705:1;9690:284;9715:6;9712:1;9709:13;9690:284;;;9791:6;9785:13;9818:63;9877:3;9862:13;9818:63;:::i;:::-;9811:70;;9904:60;9957:6;9904:60;:::i;:::-;9894:70;;9750:224;9737:1;9734;9730:9;9725:14;;9690:284;;;9694:14;9990:3;9983:10;;9391:608;;;9267:732;;;;:::o;10005:109::-;10086:21;10101:5;10086:21;:::i;:::-;10081:3;10074:34;10005:109;;:::o;10120:360::-;10206:3;10234:38;10266:5;10234:38;:::i;:::-;10288:70;10351:6;10346:3;10288:70;:::i;:::-;10281:77;;10367:52;10412:6;10407:3;10400:4;10393:5;10389:16;10367:52;:::i;:::-;10444:29;10466:6;10444:29;:::i;:::-;10439:3;10435:39;10428:46;;10210:270;10120:360;;;;:::o;10486:364::-;10574:3;10602:39;10635:5;10602:39;:::i;:::-;10657:71;10721:6;10716:3;10657:71;:::i;:::-;10650:78;;10737:52;10782:6;10777:3;10770:4;10763:5;10759:16;10737:52;:::i;:::-;10814:29;10836:6;10814:29;:::i;:::-;10809:3;10805:39;10798:46;;10578:272;10486:364;;;;:::o;10856:377::-;10962:3;10990:39;11023:5;10990:39;:::i;:::-;11045:89;11127:6;11122:3;11045:89;:::i;:::-;11038:96;;11143:52;11188:6;11183:3;11176:4;11169:5;11165:16;11143:52;:::i;:::-;11220:6;11215:3;11211:16;11204:23;;10966:267;10856:377;;;;:::o;11263:845::-;11366:3;11403:5;11397:12;11432:36;11458:9;11432:36;:::i;:::-;11484:89;11566:6;11561:3;11484:89;:::i;:::-;11477:96;;11604:1;11593:9;11589:17;11620:1;11615:137;;;;11766:1;11761:341;;;;11582:520;;11615:137;11699:4;11695:9;11684;11680:25;11675:3;11668:38;11735:6;11730:3;11726:16;11719:23;;11615:137;;11761:341;11828:38;11860:5;11828:38;:::i;:::-;11888:1;11902:154;11916:6;11913:1;11910:13;11902:154;;;11990:7;11984:14;11980:1;11975:3;11971:11;11964:35;12040:1;12031:7;12027:15;12016:26;;11938:4;11935:1;11931:12;11926:17;;11902:154;;;12085:6;12080:3;12076:16;12069:23;;11768:334;;11582:520;;11370:738;;11263:845;;;;:::o;12114:366::-;12256:3;12277:67;12341:2;12336:3;12277:67;:::i;:::-;12270:74;;12353:93;12442:3;12353:93;:::i;:::-;12471:2;12466:3;12462:12;12455:19;;12114:366;;;:::o;12486:::-;12628:3;12649:67;12713:2;12708:3;12649:67;:::i;:::-;12642:74;;12725:93;12814:3;12725:93;:::i;:::-;12843:2;12838:3;12834:12;12827:19;;12486:366;;;:::o;12858:::-;13000:3;13021:67;13085:2;13080:3;13021:67;:::i;:::-;13014:74;;13097:93;13186:3;13097:93;:::i;:::-;13215:2;13210:3;13206:12;13199:19;;12858:366;;;:::o;13230:::-;13372:3;13393:67;13457:2;13452:3;13393:67;:::i;:::-;13386:74;;13469:93;13558:3;13469:93;:::i;:::-;13587:2;13582:3;13578:12;13571:19;;13230:366;;;:::o;13602:::-;13744:3;13765:67;13829:2;13824:3;13765:67;:::i;:::-;13758:74;;13841:93;13930:3;13841:93;:::i;:::-;13959:2;13954:3;13950:12;13943:19;;13602:366;;;:::o;13974:::-;14116:3;14137:67;14201:2;14196:3;14137:67;:::i;:::-;14130:74;;14213:93;14302:3;14213:93;:::i;:::-;14331:2;14326:3;14322:12;14315:19;;13974:366;;;:::o;14346:::-;14488:3;14509:67;14573:2;14568:3;14509:67;:::i;:::-;14502:74;;14585:93;14674:3;14585:93;:::i;:::-;14703:2;14698:3;14694:12;14687:19;;14346:366;;;:::o;14718:::-;14860:3;14881:67;14945:2;14940:3;14881:67;:::i;:::-;14874:74;;14957:93;15046:3;14957:93;:::i;:::-;15075:2;15070:3;15066:12;15059:19;;14718:366;;;:::o;15090:::-;15232:3;15253:67;15317:2;15312:3;15253:67;:::i;:::-;15246:74;;15329:93;15418:3;15329:93;:::i;:::-;15447:2;15442:3;15438:12;15431:19;;15090:366;;;:::o;15462:::-;15604:3;15625:67;15689:2;15684:3;15625:67;:::i;:::-;15618:74;;15701:93;15790:3;15701:93;:::i;:::-;15819:2;15814:3;15810:12;15803:19;;15462:366;;;:::o;15834:::-;15976:3;15997:67;16061:2;16056:3;15997:67;:::i;:::-;15990:74;;16073:93;16162:3;16073:93;:::i;:::-;16191:2;16186:3;16182:12;16175:19;;15834:366;;;:::o;16206:::-;16348:3;16369:67;16433:2;16428:3;16369:67;:::i;:::-;16362:74;;16445:93;16534:3;16445:93;:::i;:::-;16563:2;16558:3;16554:12;16547:19;;16206:366;;;:::o;16578:::-;16720:3;16741:67;16805:2;16800:3;16741:67;:::i;:::-;16734:74;;16817:93;16906:3;16817:93;:::i;:::-;16935:2;16930:3;16926:12;16919:19;;16578:366;;;:::o;16950:::-;17092:3;17113:67;17177:2;17172:3;17113:67;:::i;:::-;17106:74;;17189:93;17278:3;17189:93;:::i;:::-;17307:2;17302:3;17298:12;17291:19;;16950:366;;;:::o;17322:398::-;17481:3;17502:83;17583:1;17578:3;17502:83;:::i;:::-;17495:90;;17594:93;17683:3;17594:93;:::i;:::-;17712:1;17707:3;17703:11;17696:18;;17322:398;;;:::o;17726:366::-;17868:3;17889:67;17953:2;17948:3;17889:67;:::i;:::-;17882:74;;17965:93;18054:3;17965:93;:::i;:::-;18083:2;18078:3;18074:12;18067:19;;17726:366;;;:::o;18098:::-;18240:3;18261:67;18325:2;18320:3;18261:67;:::i;:::-;18254:74;;18337:93;18426:3;18337:93;:::i;:::-;18455:2;18450:3;18446:12;18439:19;;18098:366;;;:::o;18470:::-;18612:3;18633:67;18697:2;18692:3;18633:67;:::i;:::-;18626:74;;18709:93;18798:3;18709:93;:::i;:::-;18827:2;18822:3;18818:12;18811:19;;18470:366;;;:::o;18842:108::-;18919:24;18937:5;18919:24;:::i;:::-;18914:3;18907:37;18842:108;;:::o;18956:118::-;19043:24;19061:5;19043:24;:::i;:::-;19038:3;19031:37;18956:118;;:::o;19080:589::-;19305:3;19327:95;19418:3;19409:6;19327:95;:::i;:::-;19320:102;;19439:95;19530:3;19521:6;19439:95;:::i;:::-;19432:102;;19551:92;19639:3;19630:6;19551:92;:::i;:::-;19544:99;;19660:3;19653:10;;19080:589;;;;;;:::o;19675:379::-;19859:3;19881:147;20024:3;19881:147;:::i;:::-;19874:154;;20045:3;20038:10;;19675:379;;;:::o;20060:222::-;20153:4;20191:2;20180:9;20176:18;20168:26;;20204:71;20272:1;20261:9;20257:17;20248:6;20204:71;:::i;:::-;20060:222;;;;:::o;20288:640::-;20483:4;20521:3;20510:9;20506:19;20498:27;;20535:71;20603:1;20592:9;20588:17;20579:6;20535:71;:::i;:::-;20616:72;20684:2;20673:9;20669:18;20660:6;20616:72;:::i;:::-;20698;20766:2;20755:9;20751:18;20742:6;20698:72;:::i;:::-;20817:9;20811:4;20807:20;20802:2;20791:9;20787:18;20780:48;20845:76;20916:4;20907:6;20845:76;:::i;:::-;20837:84;;20288:640;;;;;;;:::o;20934:373::-;21077:4;21115:2;21104:9;21100:18;21092:26;;21164:9;21158:4;21154:20;21150:1;21139:9;21135:17;21128:47;21192:108;21295:4;21286:6;21192:108;:::i;:::-;21184:116;;20934:373;;;;:::o;21313:210::-;21400:4;21438:2;21427:9;21423:18;21415:26;;21451:65;21513:1;21502:9;21498:17;21489:6;21451:65;:::i;:::-;21313:210;;;;:::o;21529:313::-;21642:4;21680:2;21669:9;21665:18;21657:26;;21729:9;21723:4;21719:20;21715:1;21704:9;21700:17;21693:47;21757:78;21830:4;21821:6;21757:78;:::i;:::-;21749:86;;21529:313;;;;:::o;21848:419::-;22014:4;22052:2;22041:9;22037:18;22029:26;;22101:9;22095:4;22091:20;22087:1;22076:9;22072:17;22065:47;22129:131;22255:4;22129:131;:::i;:::-;22121:139;;21848:419;;;:::o;22273:::-;22439:4;22477:2;22466:9;22462:18;22454:26;;22526:9;22520:4;22516:20;22512:1;22501:9;22497:17;22490:47;22554:131;22680:4;22554:131;:::i;:::-;22546:139;;22273:419;;;:::o;22698:::-;22864:4;22902:2;22891:9;22887:18;22879:26;;22951:9;22945:4;22941:20;22937:1;22926:9;22922:17;22915:47;22979:131;23105:4;22979:131;:::i;:::-;22971:139;;22698:419;;;:::o;23123:::-;23289:4;23327:2;23316:9;23312:18;23304:26;;23376:9;23370:4;23366:20;23362:1;23351:9;23347:17;23340:47;23404:131;23530:4;23404:131;:::i;:::-;23396:139;;23123:419;;;:::o;23548:::-;23714:4;23752:2;23741:9;23737:18;23729:26;;23801:9;23795:4;23791:20;23787:1;23776:9;23772:17;23765:47;23829:131;23955:4;23829:131;:::i;:::-;23821:139;;23548:419;;;:::o;23973:::-;24139:4;24177:2;24166:9;24162:18;24154:26;;24226:9;24220:4;24216:20;24212:1;24201:9;24197:17;24190:47;24254:131;24380:4;24254:131;:::i;:::-;24246:139;;23973:419;;;:::o;24398:::-;24564:4;24602:2;24591:9;24587:18;24579:26;;24651:9;24645:4;24641:20;24637:1;24626:9;24622:17;24615:47;24679:131;24805:4;24679:131;:::i;:::-;24671:139;;24398:419;;;:::o;24823:::-;24989:4;25027:2;25016:9;25012:18;25004:26;;25076:9;25070:4;25066:20;25062:1;25051:9;25047:17;25040:47;25104:131;25230:4;25104:131;:::i;:::-;25096:139;;24823:419;;;:::o;25248:::-;25414:4;25452:2;25441:9;25437:18;25429:26;;25501:9;25495:4;25491:20;25487:1;25476:9;25472:17;25465:47;25529:131;25655:4;25529:131;:::i;:::-;25521:139;;25248:419;;;:::o;25673:::-;25839:4;25877:2;25866:9;25862:18;25854:26;;25926:9;25920:4;25916:20;25912:1;25901:9;25897:17;25890:47;25954:131;26080:4;25954:131;:::i;:::-;25946:139;;25673:419;;;:::o;26098:::-;26264:4;26302:2;26291:9;26287:18;26279:26;;26351:9;26345:4;26341:20;26337:1;26326:9;26322:17;26315:47;26379:131;26505:4;26379:131;:::i;:::-;26371:139;;26098:419;;;:::o;26523:::-;26689:4;26727:2;26716:9;26712:18;26704:26;;26776:9;26770:4;26766:20;26762:1;26751:9;26747:17;26740:47;26804:131;26930:4;26804:131;:::i;:::-;26796:139;;26523:419;;;:::o;26948:::-;27114:4;27152:2;27141:9;27137:18;27129:26;;27201:9;27195:4;27191:20;27187:1;27176:9;27172:17;27165:47;27229:131;27355:4;27229:131;:::i;:::-;27221:139;;26948:419;;;:::o;27373:::-;27539:4;27577:2;27566:9;27562:18;27554:26;;27626:9;27620:4;27616:20;27612:1;27601:9;27597:17;27590:47;27654:131;27780:4;27654:131;:::i;:::-;27646:139;;27373:419;;;:::o;27798:::-;27964:4;28002:2;27991:9;27987:18;27979:26;;28051:9;28045:4;28041:20;28037:1;28026:9;28022:17;28015:47;28079:131;28205:4;28079:131;:::i;:::-;28071:139;;27798:419;;;:::o;28223:::-;28389:4;28427:2;28416:9;28412:18;28404:26;;28476:9;28470:4;28466:20;28462:1;28451:9;28447:17;28440:47;28504:131;28630:4;28504:131;:::i;:::-;28496:139;;28223:419;;;:::o;28648:::-;28814:4;28852:2;28841:9;28837:18;28829:26;;28901:9;28895:4;28891:20;28887:1;28876:9;28872:17;28865:47;28929:131;29055:4;28929:131;:::i;:::-;28921:139;;28648:419;;;:::o;29073:222::-;29166:4;29204:2;29193:9;29189:18;29181:26;;29217:71;29285:1;29274:9;29270:17;29261:6;29217:71;:::i;:::-;29073:222;;;;:::o;29301:129::-;29335:6;29362:20;;:::i;:::-;29352:30;;29391:33;29419:4;29411:6;29391:33;:::i;:::-;29301:129;;;:::o;29436:75::-;29469:6;29502:2;29496:9;29486:19;;29436:75;:::o;29517:251::-;29594:4;29684:18;29676:6;29673:30;29670:56;;;29706:18;;:::i;:::-;29670:56;29756:4;29748:6;29744:17;29736:25;;29517:251;;;:::o;29774:307::-;29835:4;29925:18;29917:6;29914:30;29911:56;;;29947:18;;:::i;:::-;29911:56;29985:29;30007:6;29985:29;:::i;:::-;29977:37;;30069:4;30063;30059:15;30051:23;;29774:307;;;:::o;30087:308::-;30149:4;30239:18;30231:6;30228:30;30225:56;;;30261:18;;:::i;:::-;30225:56;30299:29;30321:6;30299:29;:::i;:::-;30291:37;;30383:4;30377;30373:15;30365:23;;30087:308;;;:::o;30401:132::-;30468:4;30491:3;30483:11;;30521:4;30516:3;30512:14;30504:22;;30401:132;;;:::o;30539:141::-;30588:4;30611:3;30603:11;;30634:3;30631:1;30624:14;30668:4;30665:1;30655:18;30647:26;;30539:141;;;:::o;30686:114::-;30753:6;30787:5;30781:12;30771:22;;30686:114;;;:::o;30806:98::-;30857:6;30891:5;30885:12;30875:22;;30806:98;;;:::o;30910:99::-;30962:6;30996:5;30990:12;30980:22;;30910:99;;;:::o;31015:113::-;31085:4;31117;31112:3;31108:14;31100:22;;31015:113;;;:::o;31134:184::-;31233:11;31267:6;31262:3;31255:19;31307:4;31302:3;31298:14;31283:29;;31134:184;;;;:::o;31324:168::-;31407:11;31441:6;31436:3;31429:19;31481:4;31476:3;31472:14;31457:29;;31324:168;;;;:::o;31498:147::-;31599:11;31636:3;31621:18;;31498:147;;;;:::o;31651:169::-;31735:11;31769:6;31764:3;31757:19;31809:4;31804:3;31800:14;31785:29;;31651:169;;;;:::o;31826:148::-;31928:11;31965:3;31950:18;;31826:148;;;;:::o;31980:305::-;32020:3;32039:20;32057:1;32039:20;:::i;:::-;32034:25;;32073:20;32091:1;32073:20;:::i;:::-;32068:25;;32227:1;32159:66;32155:74;32152:1;32149:81;32146:107;;;32233:18;;:::i;:::-;32146:107;32277:1;32274;32270:9;32263:16;;31980:305;;;;:::o;32291:348::-;32331:7;32354:20;32372:1;32354:20;:::i;:::-;32349:25;;32388:20;32406:1;32388:20;:::i;:::-;32383:25;;32576:1;32508:66;32504:74;32501:1;32498:81;32493:1;32486:9;32479:17;32475:105;32472:131;;;32583:18;;:::i;:::-;32472:131;32631:1;32628;32624:9;32613:20;;32291:348;;;;:::o;32645:191::-;32685:4;32705:20;32723:1;32705:20;:::i;:::-;32700:25;;32739:20;32757:1;32739:20;:::i;:::-;32734:25;;32778:1;32775;32772:8;32769:34;;;32783:18;;:::i;:::-;32769:34;32828:1;32825;32821:9;32813:17;;32645:191;;;;:::o;32842:96::-;32879:7;32908:24;32926:5;32908:24;:::i;:::-;32897:35;;32842:96;;;:::o;32944:90::-;32978:7;33021:5;33014:13;33007:21;32996:32;;32944:90;;;:::o;33040:149::-;33076:7;33116:66;33109:5;33105:78;33094:89;;33040:149;;;:::o;33195:126::-;33232:7;33272:42;33265:5;33261:54;33250:65;;33195:126;;;:::o;33327:77::-;33364:7;33393:5;33382:16;;33327:77;;;:::o;33410:154::-;33494:6;33489:3;33484;33471:30;33556:1;33547:6;33542:3;33538:16;33531:27;33410:154;;;:::o;33570:307::-;33638:1;33648:113;33662:6;33659:1;33656:13;33648:113;;;33747:1;33742:3;33738:11;33732:18;33728:1;33723:3;33719:11;33712:39;33684:2;33681:1;33677:10;33672:15;;33648:113;;;33779:6;33776:1;33773:13;33770:101;;;33859:1;33850:6;33845:3;33841:16;33834:27;33770:101;33619:258;33570:307;;;:::o;33883:320::-;33927:6;33964:1;33958:4;33954:12;33944:22;;34011:1;34005:4;34001:12;34032:18;34022:81;;34088:4;34080:6;34076:17;34066:27;;34022:81;34150:2;34142:6;34139:14;34119:18;34116:38;34113:84;;;34169:18;;:::i;:::-;34113:84;33934:269;33883:320;;;:::o;34209:281::-;34292:27;34314:4;34292:27;:::i;:::-;34284:6;34280:40;34422:6;34410:10;34407:22;34386:18;34374:10;34371:34;34368:62;34365:88;;;34433:18;;:::i;:::-;34365:88;34473:10;34469:2;34462:22;34252:238;34209:281;;:::o;34496:233::-;34535:3;34558:24;34576:5;34558:24;:::i;:::-;34549:33;;34604:66;34597:5;34594:77;34591:103;;;34674:18;;:::i;:::-;34591:103;34721:1;34714:5;34710:13;34703:20;;34496:233;;;:::o;34735:180::-;34783:77;34780:1;34773:88;34880:4;34877:1;34870:15;34904:4;34901:1;34894:15;34921:180;34969:77;34966:1;34959:88;35066:4;35063:1;35056:15;35090:4;35087:1;35080:15;35107:180;35155:77;35152:1;35145:88;35252:4;35249:1;35242:15;35276:4;35273:1;35266:15;35293:180;35341:77;35338:1;35331:88;35438:4;35435:1;35428:15;35462:4;35459:1;35452:15;35479:180;35527:77;35524:1;35517:88;35624:4;35621:1;35614:15;35648:4;35645:1;35638:15;35665:180;35713:77;35710:1;35703:88;35810:4;35807:1;35800:15;35834:4;35831:1;35824:15;35851:117;35960:1;35957;35950:12;35974:117;36083:1;36080;36073:12;36097:117;36206:1;36203;36196:12;36220:117;36329:1;36326;36319:12;36343:117;36452:1;36449;36442:12;36466:102;36507:6;36558:2;36554:7;36549:2;36542:5;36538:14;36534:28;36524:38;;36466:102;;;:::o;36574:232::-;36714:34;36710:1;36702:6;36698:14;36691:58;36783:15;36778:2;36770:6;36766:15;36759:40;36574:232;:::o;36812:230::-;36952:34;36948:1;36940:6;36936:14;36929:58;37021:13;37016:2;37008:6;37004:15;36997:38;36812:230;:::o;37048:237::-;37188:34;37184:1;37176:6;37172:14;37165:58;37257:20;37252:2;37244:6;37240:15;37233:45;37048:237;:::o;37291:225::-;37431:34;37427:1;37419:6;37415:14;37408:58;37500:8;37495:2;37487:6;37483:15;37476:33;37291:225;:::o;37522:224::-;37662:34;37658:1;37650:6;37646:14;37639:58;37731:7;37726:2;37718:6;37714:15;37707:32;37522:224;:::o;37752:178::-;37892:30;37888:1;37880:6;37876:14;37869:54;37752:178;:::o;37936:223::-;38076:34;38072:1;38064:6;38060:14;38053:58;38145:6;38140:2;38132:6;38128:15;38121:31;37936:223;:::o;38165:175::-;38305:27;38301:1;38293:6;38289:14;38282:51;38165:175;:::o;38346:228::-;38486:34;38482:1;38474:6;38470:14;38463:58;38555:11;38550:2;38542:6;38538:15;38531:36;38346:228;:::o;38580:182::-;38720:34;38716:1;38708:6;38704:14;38697:58;38580:182;:::o;38768:::-;38908:34;38904:1;38896:6;38892:14;38885:58;38768:182;:::o;38956:234::-;39096:34;39092:1;39084:6;39080:14;39073:58;39165:17;39160:2;39152:6;39148:15;39141:42;38956:234;:::o;39196:174::-;39336:26;39332:1;39324:6;39320:14;39313:50;39196:174;:::o;39376:220::-;39516:34;39512:1;39504:6;39500:14;39493:58;39585:3;39580:2;39572:6;39568:15;39561:28;39376:220;:::o;39602:114::-;;:::o;39722:248::-;39862:34;39858:1;39850:6;39846:14;39839:58;39931:31;39926:2;39918:6;39914:15;39907:56;39722:248;:::o;39976:231::-;40116:34;40112:1;40104:6;40100:14;40093:58;40185:14;40180:2;40172:6;40168:15;40161:39;39976:231;:::o;40213:240::-;40353:34;40349:1;40341:6;40337:14;40330:58;40422:23;40417:2;40409:6;40405:15;40398:48;40213:240;:::o;40459:122::-;40532:24;40550:5;40532:24;:::i;:::-;40525:5;40522:35;40512:63;;40571:1;40568;40561:12;40512:63;40459:122;:::o;40587:116::-;40657:21;40672:5;40657:21;:::i;:::-;40650:5;40647:32;40637:60;;40693:1;40690;40683:12;40637:60;40587:116;:::o;40709:120::-;40781:23;40798:5;40781:23;:::i;:::-;40774:5;40771:34;40761:62;;40819:1;40816;40809:12;40761:62;40709:120;:::o;40835:122::-;40908:24;40926:5;40908:24;:::i;:::-;40901:5;40898:35;40888:63;;40947:1;40944;40937:12;40888:63;40835:122;:::o

Swarm Source

ipfs://1727d729735d1f786f0008d8feede2d52d3069fd73440d8a5d5507bee421043b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.