ETH Price: $2,626.18 (+1.74%)

Token

This Is POM (Spartan)
 

Overview

Max Total Supply

62 Spartan

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Spartan
0xe27268b1045a1b9262df527706a83348a85d54e0
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:
NFT

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 2023-02-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: thisispomnft.sol




pragma solidity >=0.7.0 <0.9.0;



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

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.18 ether;//.18
  uint256 public maxSupply = 300;
  uint256 public maxMintAmount = 2;
  uint256 public nftPerAddressLimit = 2; 
  bool public paused = true;
  bool public revealed = false;
  string public notRevealedUri;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit,"MAX_WALLET_EXCEEDED");
    

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
      
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
      addressMintedBalance[msg.sender]++;
    }
  }


  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"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

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

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

   function setmaxWalletAmount(uint256 _newmaxWalletAmount) public onlyOwner {
    nftPerAddressLimit = _newmaxWalletAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  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 withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxWalletAmount","type":"uint256"}],"name":"setmaxWalletAmount","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200033a565b5067027f7d0bdb920000600d5561012c600e556002600f5560026010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000b157600080fd5b5060405162004b5338038062004b538339818101604052810190620000d7919062000468565b83838160009080519060200190620000f19291906200033a565b5080600190805190602001906200010a9291906200033a565b5050506200012d620001216200015960201b60201c565b6200016160201b60201c565b6200013e826200022760201b60201c565b6200014f816200025360201b60201c565b505050506200075d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002376200027f60201b60201c565b80600b90805190602001906200024f9291906200033a565b5050565b620002636200027f60201b60201c565b80601290805190602001906200027b9291906200033a565b5050565b6200028f6200015960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b56200031060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000305906200057d565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003489062000645565b90600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b600062000401620003fb84620005c8565b6200059f565b90508281526020810184848401111562000420576200041f62000714565b5b6200042d8482856200060f565b509392505050565b600082601f8301126200044d576200044c6200070f565b5b81516200045f848260208601620003ea565b91505092915050565b600080600080608085870312156200048557620004846200071e565b5b600085015167ffffffffffffffff811115620004a657620004a562000719565b5b620004b48782880162000435565b945050602085015167ffffffffffffffff811115620004d857620004d762000719565b5b620004e68782880162000435565b935050604085015167ffffffffffffffff8111156200050a576200050962000719565b5b620005188782880162000435565b925050606085015167ffffffffffffffff8111156200053c576200053b62000719565b5b6200054a8782880162000435565b91505092959194509250565b600062000565602083620005fe565b9150620005728262000734565b602082019050919050565b60006020820190508181036000830152620005988162000556565b9050919050565b6000620005ab620005be565b9050620005b982826200067b565b919050565b6000604051905090565b600067ffffffffffffffff821115620005e657620005e5620006e0565b5b620005f18262000723565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200062f57808201518184015260208101905062000612565b838111156200063f576000848401525b50505050565b600060028204905060018216806200065e57607f821691505b60208210811415620006755762000674620006b1565b5b50919050565b620006868262000723565b810181811067ffffffffffffffff82111715620006a857620006a7620006e0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6143e6806200076d6000396000f3fe6080604052600436106102305760003560e01c806355f804b31161012e578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610821578063da3ef23f1461084c578063e985e9c514610875578063f2c4ce1e146108b2578063f2fde38b146108db57610230565b8063a475b5dd1461074e578063b88d4fde14610765578063ba7d2c761461078e578063c6682862146107b9578063c87b56dd146107e457610230565b80637f00c7a6116100f25780637f00c7a61461068a5780638da5cb5b146106b357806395d89b41146106de578063a0712d6814610709578063a22cb4651461072557610230565b806355f804b3146105a55780635c975abb146105ce5780636352211e146105f957806370a0823114610636578063715018a61461067357610230565b8063239c70ae116101bc57806342842e0e1161018057806342842e0e146104ae578063438b6300146104d757806344a0d68a146105145780634f6ccce71461053d578063518302271461057a57610230565b8063239c70ae146103ea57806323b872dd1461041557806329bde5511461043e5780632f745c59146104675780633ccfd60b146104a457610230565b8063081c8c4411610203578063081c8c4414610303578063095ea7b31461032e57806313faede61461035757806318160ddd1461038257806318cae269146103ad57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061315b565b610904565b6040516102699190613767565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061312e565b61097e565b005b3480156102a757600080fd5b506102b06109a3565b6040516102bd9190613782565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e891906131fe565b610a35565b6040516102fa91906136de565b60405180910390f35b34801561030f57600080fd5b50610318610a7b565b6040516103259190613782565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906130ee565b610b09565b005b34801561036357600080fd5b5061036c610c21565b60405161037991906139e4565b60405180910390f35b34801561038e57600080fd5b50610397610c27565b6040516103a491906139e4565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612f6b565b610c34565b6040516103e191906139e4565b60405180910390f35b3480156103f657600080fd5b506103ff610c4c565b60405161040c91906139e4565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612fd8565b610c52565b005b34801561044a57600080fd5b50610465600480360381019061046091906131fe565b610cb2565b005b34801561047357600080fd5b5061048e600480360381019061048991906130ee565b610cc4565b60405161049b91906139e4565b60405180910390f35b6104ac610d69565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612fd8565b610df1565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612f6b565b610e11565b60405161050b9190613745565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906131fe565b610ebf565b005b34801561054957600080fd5b50610564600480360381019061055f91906131fe565b610ed1565b60405161057191906139e4565b60405180910390f35b34801561058657600080fd5b5061058f610f42565b60405161059c9190613767565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c791906131b5565b610f55565b005b3480156105da57600080fd5b506105e3610f77565b6040516105f09190613767565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906131fe565b610f8a565b60405161062d91906136de565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612f6b565b611011565b60405161066a91906139e4565b60405180910390f35b34801561067f57600080fd5b506106886110c9565b005b34801561069657600080fd5b506106b160048036038101906106ac91906131fe565b6110dd565b005b3480156106bf57600080fd5b506106c86110ef565b6040516106d591906136de565b60405180910390f35b3480156106ea57600080fd5b506106f3611119565b6040516107009190613782565b60405180910390f35b610723600480360381019061071e91906131fe565b6111ab565b005b34801561073157600080fd5b5061074c600480360381019061074791906130ae565b611381565b005b34801561075a57600080fd5b50610763611397565b005b34801561077157600080fd5b5061078c6004803603810190610787919061302b565b6113bc565b005b34801561079a57600080fd5b506107a361141e565b6040516107b091906139e4565b60405180910390f35b3480156107c557600080fd5b506107ce611424565b6040516107db9190613782565b60405180910390f35b3480156107f057600080fd5b5061080b600480360381019061080691906131fe565b6114b2565b6040516108189190613782565b60405180910390f35b34801561082d57600080fd5b5061083661160b565b60405161084391906139e4565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e91906131b5565b611611565b005b34801561088157600080fd5b5061089c60048036038101906108979190612f98565b611633565b6040516108a99190613767565b60405180910390f35b3480156108be57600080fd5b506108d960048036038101906108d491906131b5565b6116c7565b005b3480156108e757600080fd5b5061090260048036038101906108fd9190612f6b565b6116e9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097757506109768261176d565b5b9050919050565b61098661184f565b80601160006101000a81548160ff02191690831515021790555050565b6060600080546109b290613cbc565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613cbc565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a40826118cd565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610a8890613cbc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490613cbc565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b505050505081565b6000610b1482610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613964565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba4611918565b73ffffffffffffffffffffffffffffffffffffffff161480610bd35750610bd281610bcd611918565b611633565b5b610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990613984565b60405180910390fd5b610c1c8383611920565b505050565b600d5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b600f5481565b610c63610c5d611918565b826119d9565b610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906137a4565b60405180910390fd5b610cad838383611a6e565b505050565b610cba61184f565b8060108190555050565b6000610ccf83611011565b8210610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d07906137c4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d7161184f565b6000610d7b6110ef565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d9e906136c9565b60006040518083038185875af1925050503d8060008114610ddb576040519150601f19603f3d011682016040523d82523d6000602084013e610de0565b606091505b5050905080610dee57600080fd5b50565b610e0c838383604051806020016040528060008152506113bc565b505050565b60606000610e1e83611011565b905060008167ffffffffffffffff811115610e3c57610e3b613e53565b5b604051908082528060200260200182016040528015610e6a5781602001602082028036833780820191505090505b50905060005b82811015610eb457610e828582610cc4565b828281518110610e9557610e94613e24565b5b6020026020010181815250508080610eac90613d1f565b915050610e70565b508092505050919050565b610ec761184f565b80600d8190555050565b6000610edb610c27565b8210610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f13906139a4565b60405180910390fd5b60088281548110610f3057610f2f613e24565b5b90600052602060002001549050919050565b601160019054906101000a900460ff1681565b610f5d61184f565b80600b9080519060200190610f73929190612d7f565b5050565b601160009054906101000a900460ff1681565b600080610f9683611d68565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613944565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611079906138a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d161184f565b6110db6000611da5565b565b6110e561184f565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461112890613cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461115490613cbc565b80156111a15780601f10611176576101008083540402835291602001916111a1565b820191906000526020600020905b81548152906001019060200180831161118457829003601f168201915b5050505050905090565b60006111b5610c27565b9050601160009054906101000a900460ff16156111d157600080fd5b600082116111de57600080fd5b600f548211156111ed57600080fd5b600e5482826111fc9190613b22565b111561120757600080fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054838261125a9190613b22565b111561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613904565b60405180910390fd5b6112a36110ef565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f05782600d546112e39190613b78565b3410156112ef57600080fd5b5b6000600190505b83811161137b5761131333828561130e9190613b22565b611e6b565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061136390613d1f565b9190505550808061137390613d1f565b9150506112f7565b50505050565b61139361138c611918565b8383611e89565b5050565b61139f61184f565b6001601160016101000a81548160ff021916908315150217905550565b6113cd6113c7611918565b836119d9565b61140c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611403906137a4565b60405180910390fd5b61141884848484611ff6565b50505050565b60105481565b600c805461143190613cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461145d90613cbc565b80156114aa5780601f1061147f576101008083540402835291602001916114aa565b820191906000526020600020905b81548152906001019060200180831161148d57829003601f168201915b505050505081565b60606114bd82612052565b6114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390613924565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156115aa576012805461152590613cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461155190613cbc565b801561159e5780601f106115735761010080835404028352916020019161159e565b820191906000526020600020905b81548152906001019060200180831161158157829003601f168201915b50505050509050611606565b60006115b4612093565b905060008151116115d45760405180602001604052806000815250611602565b806115de84612125565b600c6040516020016115f293929190613698565b6040516020818303038152906040525b9150505b919050565b600e5481565b61161961184f565b80600c908051906020019061162f929190612d7f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116cf61184f565b80601290805190602001906116e5929190612d7f565b5050565b6116f161184f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890613804565b60405180910390fd5b61176a81611da5565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061183857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118485750611847826121fd565b5b9050919050565b611857611918565b73ffffffffffffffffffffffffffffffffffffffff166118756110ef565b73ffffffffffffffffffffffffffffffffffffffff16146118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c2906138e4565b60405180910390fd5b565b6118d681612052565b611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90613944565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661199383610f8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119e583610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a275750611a268185611633565b5b80611a6557508373ffffffffffffffffffffffffffffffffffffffff16611a4d84610a35565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a8e82610f8a565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613824565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90613864565b60405180910390fd5b611b618383836001612267565b8273ffffffffffffffffffffffffffffffffffffffff16611b8182610f8a565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90613824565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d6383838360016123c7565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e858282604051806020016040528060008152506123cd565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613884565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fe99190613767565b60405180910390a3505050565b612001848484611a6e565b61200d84848484612428565b61204c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612043906137e4565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661207483611d68565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546120a290613cbc565b80601f01602080910402602001604051908101604052809291908181526020018280546120ce90613cbc565b801561211b5780601f106120f05761010080835404028352916020019161211b565b820191906000526020600020905b8154815290600101906020018083116120fe57829003601f168201915b5050505050905090565b606060006001612134846125bf565b01905060008167ffffffffffffffff81111561215357612152613e53565b5b6040519080825280601f01601f1916602001820160405280156121855781602001600182028036833780820191505090505b509050600082602001820190505b6001156121f2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121dc576121db613d97565b5b04945060008514156121ed576121f2565b612193565b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61227384848484612712565b60018111156122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae906139c4565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156122ff576122fa81612838565b61233e565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461233d5761233c8582612881565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123815761237c816129ee565b6123c0565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146123bf576123be8482612abf565b5b5b5050505050565b50505050565b6123d78383612b3e565b6123e46000848484612428565b612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a906137e4565b60405180910390fd5b505050565b60006124498473ffffffffffffffffffffffffffffffffffffffff16612d5c565b156125b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612472611918565b8786866040518563ffffffff1660e01b815260040161249494939291906136f9565b602060405180830381600087803b1580156124ae57600080fd5b505af19250505080156124df57506040513d601f19601f820116820180604052508101906124dc9190613188565b60015b612562573d806000811461250f576040519150601f19603f3d011682016040523d82523d6000602084013e612514565b606091505b5060008151141561255a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612551906137e4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125b7565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061261d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161261357612612613d97565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061265a576d04ee2d6d415b85acef810000000083816126505761264f613d97565b5b0492506020810190505b662386f26fc10000831061268957662386f26fc10000838161267f5761267e613d97565b5b0492506010810190505b6305f5e10083106126b2576305f5e10083816126a8576126a7613d97565b5b0492506008810190505b61271083106126d75761271083816126cd576126cc613d97565b5b0492506004810190505b606483106126fa57606483816126f0576126ef613d97565b5b0492506002810190505b600a8310612709576001810190505b80915050919050565b600181111561283257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146127a65780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279e9190613bd2565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128315780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128299190613b22565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161288e84611011565b6128989190613bd2565b905060006007600084815260200190815260200160002054905081811461297d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a029190613bd2565b9050600060096000848152602001908152602001600020549050600060088381548110612a3257612a31613e24565b5b906000526020600020015490508060088381548110612a5457612a53613e24565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612aa357612aa2613df5565b5b6001900381819060005260206000200160009055905550505050565b6000612aca83611011565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba5906138c4565b60405180910390fd5b612bb781612052565b15612bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bee90613844565b60405180910390fd5b612c05600083836001612267565b612c0e81612052565b15612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4590613844565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d586000838360016123c7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d8b90613cbc565b90600052602060002090601f016020900481019282612dad5760008555612df4565b82601f10612dc657805160ff1916838001178555612df4565b82800160010185558215612df4579182015b82811115612df3578251825591602001919060010190612dd8565b5b509050612e019190612e05565b5090565b5b80821115612e1e576000816000905550600101612e06565b5090565b6000612e35612e3084613a24565b6139ff565b905082815260208101848484011115612e5157612e50613e87565b5b612e5c848285613c7a565b509392505050565b6000612e77612e7284613a55565b6139ff565b905082815260208101848484011115612e9357612e92613e87565b5b612e9e848285613c7a565b509392505050565b600081359050612eb581614354565b92915050565b600081359050612eca8161436b565b92915050565b600081359050612edf81614382565b92915050565b600081519050612ef481614382565b92915050565b600082601f830112612f0f57612f0e613e82565b5b8135612f1f848260208601612e22565b91505092915050565b600082601f830112612f3d57612f3c613e82565b5b8135612f4d848260208601612e64565b91505092915050565b600081359050612f6581614399565b92915050565b600060208284031215612f8157612f80613e91565b5b6000612f8f84828501612ea6565b91505092915050565b60008060408385031215612faf57612fae613e91565b5b6000612fbd85828601612ea6565b9250506020612fce85828601612ea6565b9150509250929050565b600080600060608486031215612ff157612ff0613e91565b5b6000612fff86828701612ea6565b935050602061301086828701612ea6565b925050604061302186828701612f56565b9150509250925092565b6000806000806080858703121561304557613044613e91565b5b600061305387828801612ea6565b945050602061306487828801612ea6565b935050604061307587828801612f56565b925050606085013567ffffffffffffffff81111561309657613095613e8c565b5b6130a287828801612efa565b91505092959194509250565b600080604083850312156130c5576130c4613e91565b5b60006130d385828601612ea6565b92505060206130e485828601612ebb565b9150509250929050565b6000806040838503121561310557613104613e91565b5b600061311385828601612ea6565b925050602061312485828601612f56565b9150509250929050565b60006020828403121561314457613143613e91565b5b600061315284828501612ebb565b91505092915050565b60006020828403121561317157613170613e91565b5b600061317f84828501612ed0565b91505092915050565b60006020828403121561319e5761319d613e91565b5b60006131ac84828501612ee5565b91505092915050565b6000602082840312156131cb576131ca613e91565b5b600082013567ffffffffffffffff8111156131e9576131e8613e8c565b5b6131f584828501612f28565b91505092915050565b60006020828403121561321457613213613e91565b5b600061322284828501612f56565b91505092915050565b6000613237838361367a565b60208301905092915050565b61324c81613c06565b82525050565b600061325d82613aab565b6132678185613ad9565b935061327283613a86565b8060005b838110156132a357815161328a888261322b565b975061329583613acc565b925050600181019050613276565b5085935050505092915050565b6132b981613c18565b82525050565b60006132ca82613ab6565b6132d48185613aea565b93506132e4818560208601613c89565b6132ed81613e96565b840191505092915050565b600061330382613ac1565b61330d8185613b06565b935061331d818560208601613c89565b61332681613e96565b840191505092915050565b600061333c82613ac1565b6133468185613b17565b9350613356818560208601613c89565b80840191505092915050565b6000815461336f81613cbc565b6133798186613b17565b9450600182166000811461339457600181146133a5576133d8565b60ff198316865281860193506133d8565b6133ae85613a96565b60005b838110156133d0578154818901526001820191506020810190506133b1565b838801955050505b50505092915050565b60006133ee602d83613b06565b91506133f982613ea7565b604082019050919050565b6000613411602b83613b06565b915061341c82613ef6565b604082019050919050565b6000613434603283613b06565b915061343f82613f45565b604082019050919050565b6000613457602683613b06565b915061346282613f94565b604082019050919050565b600061347a602583613b06565b915061348582613fe3565b604082019050919050565b600061349d601c83613b06565b91506134a882614032565b602082019050919050565b60006134c0602483613b06565b91506134cb8261405b565b604082019050919050565b60006134e3601983613b06565b91506134ee826140aa565b602082019050919050565b6000613506602983613b06565b9150613511826140d3565b604082019050919050565b6000613529602083613b06565b915061353482614122565b602082019050919050565b600061354c602083613b06565b91506135578261414b565b602082019050919050565b600061356f601383613b06565b915061357a82614174565b602082019050919050565b6000613592602f83613b06565b915061359d8261419d565b604082019050919050565b60006135b5601883613b06565b91506135c0826141ec565b602082019050919050565b60006135d8602183613b06565b91506135e382614215565b604082019050919050565b60006135fb600083613afb565b915061360682614264565b600082019050919050565b600061361e603d83613b06565b915061362982614267565b604082019050919050565b6000613641602c83613b06565b915061364c826142b6565b604082019050919050565b6000613664603583613b06565b915061366f82614305565b604082019050919050565b61368381613c70565b82525050565b61369281613c70565b82525050565b60006136a48286613331565b91506136b08285613331565b91506136bc8284613362565b9150819050949350505050565b60006136d4826135ee565b9150819050919050565b60006020820190506136f36000830184613243565b92915050565b600060808201905061370e6000830187613243565b61371b6020830186613243565b6137286040830185613689565b818103606083015261373a81846132bf565b905095945050505050565b6000602082019050818103600083015261375f8184613252565b905092915050565b600060208201905061377c60008301846132b0565b92915050565b6000602082019050818103600083015261379c81846132f8565b905092915050565b600060208201905081810360008301526137bd816133e1565b9050919050565b600060208201905081810360008301526137dd81613404565b9050919050565b600060208201905081810360008301526137fd81613427565b9050919050565b6000602082019050818103600083015261381d8161344a565b9050919050565b6000602082019050818103600083015261383d8161346d565b9050919050565b6000602082019050818103600083015261385d81613490565b9050919050565b6000602082019050818103600083015261387d816134b3565b9050919050565b6000602082019050818103600083015261389d816134d6565b9050919050565b600060208201905081810360008301526138bd816134f9565b9050919050565b600060208201905081810360008301526138dd8161351c565b9050919050565b600060208201905081810360008301526138fd8161353f565b9050919050565b6000602082019050818103600083015261391d81613562565b9050919050565b6000602082019050818103600083015261393d81613585565b9050919050565b6000602082019050818103600083015261395d816135a8565b9050919050565b6000602082019050818103600083015261397d816135cb565b9050919050565b6000602082019050818103600083015261399d81613611565b9050919050565b600060208201905081810360008301526139bd81613634565b9050919050565b600060208201905081810360008301526139dd81613657565b9050919050565b60006020820190506139f96000830184613689565b92915050565b6000613a09613a1a565b9050613a158282613cee565b919050565b6000604051905090565b600067ffffffffffffffff821115613a3f57613a3e613e53565b5b613a4882613e96565b9050602081019050919050565b600067ffffffffffffffff821115613a7057613a6f613e53565b5b613a7982613e96565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b2d82613c70565b9150613b3883613c70565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6d57613b6c613d68565b5b828201905092915050565b6000613b8382613c70565b9150613b8e83613c70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bc757613bc6613d68565b5b828202905092915050565b6000613bdd82613c70565b9150613be883613c70565b925082821015613bfb57613bfa613d68565b5b828203905092915050565b6000613c1182613c50565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ca7578082015181840152602081019050613c8c565b83811115613cb6576000848401525b50505050565b60006002820490506001821680613cd457607f821691505b60208210811415613ce857613ce7613dc6565b5b50919050565b613cf782613e96565b810181811067ffffffffffffffff82111715613d1657613d15613e53565b5b80604052505050565b6000613d2a82613c70565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5d57613d5c613d68565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d41585f57414c4c45545f455843454544454400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b61435d81613c06565b811461436857600080fd5b50565b61437481613c18565b811461437f57600080fd5b50565b61438b81613c24565b811461439657600080fd5b50565b6143a281613c70565b81146143ad57600080fd5b5056fea2646970667358221220caacf97a1b319f427f3b2e37f9de14a8137d2d377b81c455b74e826306bced0964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000b5468697320497320504f4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075370617274616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f626166796265696733686263616f6c70737873666a77336d76776e73616d657a62687935643534757270366b72656262327577336f73776f6466712e697066732e6e667473746f726167652e6c696e6b2f00000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f626166796265696733686263616f6c70737873666a77336d76776e73616d657a62687935643534757270366b72656262327577336f73776f6466712e697066732e6e667473746f726167652e6c696e6b2f00000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c806355f804b31161012e578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610821578063da3ef23f1461084c578063e985e9c514610875578063f2c4ce1e146108b2578063f2fde38b146108db57610230565b8063a475b5dd1461074e578063b88d4fde14610765578063ba7d2c761461078e578063c6682862146107b9578063c87b56dd146107e457610230565b80637f00c7a6116100f25780637f00c7a61461068a5780638da5cb5b146106b357806395d89b41146106de578063a0712d6814610709578063a22cb4651461072557610230565b806355f804b3146105a55780635c975abb146105ce5780636352211e146105f957806370a0823114610636578063715018a61461067357610230565b8063239c70ae116101bc57806342842e0e1161018057806342842e0e146104ae578063438b6300146104d757806344a0d68a146105145780634f6ccce71461053d578063518302271461057a57610230565b8063239c70ae146103ea57806323b872dd1461041557806329bde5511461043e5780632f745c59146104675780633ccfd60b146104a457610230565b8063081c8c4411610203578063081c8c4414610303578063095ea7b31461032e57806313faede61461035757806318160ddd1461038257806318cae269146103ad57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061315b565b610904565b6040516102699190613767565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061312e565b61097e565b005b3480156102a757600080fd5b506102b06109a3565b6040516102bd9190613782565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e891906131fe565b610a35565b6040516102fa91906136de565b60405180910390f35b34801561030f57600080fd5b50610318610a7b565b6040516103259190613782565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906130ee565b610b09565b005b34801561036357600080fd5b5061036c610c21565b60405161037991906139e4565b60405180910390f35b34801561038e57600080fd5b50610397610c27565b6040516103a491906139e4565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612f6b565b610c34565b6040516103e191906139e4565b60405180910390f35b3480156103f657600080fd5b506103ff610c4c565b60405161040c91906139e4565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612fd8565b610c52565b005b34801561044a57600080fd5b50610465600480360381019061046091906131fe565b610cb2565b005b34801561047357600080fd5b5061048e600480360381019061048991906130ee565b610cc4565b60405161049b91906139e4565b60405180910390f35b6104ac610d69565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612fd8565b610df1565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612f6b565b610e11565b60405161050b9190613745565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906131fe565b610ebf565b005b34801561054957600080fd5b50610564600480360381019061055f91906131fe565b610ed1565b60405161057191906139e4565b60405180910390f35b34801561058657600080fd5b5061058f610f42565b60405161059c9190613767565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c791906131b5565b610f55565b005b3480156105da57600080fd5b506105e3610f77565b6040516105f09190613767565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906131fe565b610f8a565b60405161062d91906136de565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612f6b565b611011565b60405161066a91906139e4565b60405180910390f35b34801561067f57600080fd5b506106886110c9565b005b34801561069657600080fd5b506106b160048036038101906106ac91906131fe565b6110dd565b005b3480156106bf57600080fd5b506106c86110ef565b6040516106d591906136de565b60405180910390f35b3480156106ea57600080fd5b506106f3611119565b6040516107009190613782565b60405180910390f35b610723600480360381019061071e91906131fe565b6111ab565b005b34801561073157600080fd5b5061074c600480360381019061074791906130ae565b611381565b005b34801561075a57600080fd5b50610763611397565b005b34801561077157600080fd5b5061078c6004803603810190610787919061302b565b6113bc565b005b34801561079a57600080fd5b506107a361141e565b6040516107b091906139e4565b60405180910390f35b3480156107c557600080fd5b506107ce611424565b6040516107db9190613782565b60405180910390f35b3480156107f057600080fd5b5061080b600480360381019061080691906131fe565b6114b2565b6040516108189190613782565b60405180910390f35b34801561082d57600080fd5b5061083661160b565b60405161084391906139e4565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e91906131b5565b611611565b005b34801561088157600080fd5b5061089c60048036038101906108979190612f98565b611633565b6040516108a99190613767565b60405180910390f35b3480156108be57600080fd5b506108d960048036038101906108d491906131b5565b6116c7565b005b3480156108e757600080fd5b5061090260048036038101906108fd9190612f6b565b6116e9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097757506109768261176d565b5b9050919050565b61098661184f565b80601160006101000a81548160ff02191690831515021790555050565b6060600080546109b290613cbc565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613cbc565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a40826118cd565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610a8890613cbc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490613cbc565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b505050505081565b6000610b1482610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613964565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba4611918565b73ffffffffffffffffffffffffffffffffffffffff161480610bd35750610bd281610bcd611918565b611633565b5b610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990613984565b60405180910390fd5b610c1c8383611920565b505050565b600d5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b600f5481565b610c63610c5d611918565b826119d9565b610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906137a4565b60405180910390fd5b610cad838383611a6e565b505050565b610cba61184f565b8060108190555050565b6000610ccf83611011565b8210610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d07906137c4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d7161184f565b6000610d7b6110ef565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d9e906136c9565b60006040518083038185875af1925050503d8060008114610ddb576040519150601f19603f3d011682016040523d82523d6000602084013e610de0565b606091505b5050905080610dee57600080fd5b50565b610e0c838383604051806020016040528060008152506113bc565b505050565b60606000610e1e83611011565b905060008167ffffffffffffffff811115610e3c57610e3b613e53565b5b604051908082528060200260200182016040528015610e6a5781602001602082028036833780820191505090505b50905060005b82811015610eb457610e828582610cc4565b828281518110610e9557610e94613e24565b5b6020026020010181815250508080610eac90613d1f565b915050610e70565b508092505050919050565b610ec761184f565b80600d8190555050565b6000610edb610c27565b8210610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f13906139a4565b60405180910390fd5b60088281548110610f3057610f2f613e24565b5b90600052602060002001549050919050565b601160019054906101000a900460ff1681565b610f5d61184f565b80600b9080519060200190610f73929190612d7f565b5050565b601160009054906101000a900460ff1681565b600080610f9683611d68565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613944565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611079906138a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d161184f565b6110db6000611da5565b565b6110e561184f565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461112890613cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461115490613cbc565b80156111a15780601f10611176576101008083540402835291602001916111a1565b820191906000526020600020905b81548152906001019060200180831161118457829003601f168201915b5050505050905090565b60006111b5610c27565b9050601160009054906101000a900460ff16156111d157600080fd5b600082116111de57600080fd5b600f548211156111ed57600080fd5b600e5482826111fc9190613b22565b111561120757600080fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054838261125a9190613b22565b111561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613904565b60405180910390fd5b6112a36110ef565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f05782600d546112e39190613b78565b3410156112ef57600080fd5b5b6000600190505b83811161137b5761131333828561130e9190613b22565b611e6b565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061136390613d1f565b9190505550808061137390613d1f565b9150506112f7565b50505050565b61139361138c611918565b8383611e89565b5050565b61139f61184f565b6001601160016101000a81548160ff021916908315150217905550565b6113cd6113c7611918565b836119d9565b61140c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611403906137a4565b60405180910390fd5b61141884848484611ff6565b50505050565b60105481565b600c805461143190613cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461145d90613cbc565b80156114aa5780601f1061147f576101008083540402835291602001916114aa565b820191906000526020600020905b81548152906001019060200180831161148d57829003601f168201915b505050505081565b60606114bd82612052565b6114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390613924565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156115aa576012805461152590613cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461155190613cbc565b801561159e5780601f106115735761010080835404028352916020019161159e565b820191906000526020600020905b81548152906001019060200180831161158157829003601f168201915b50505050509050611606565b60006115b4612093565b905060008151116115d45760405180602001604052806000815250611602565b806115de84612125565b600c6040516020016115f293929190613698565b6040516020818303038152906040525b9150505b919050565b600e5481565b61161961184f565b80600c908051906020019061162f929190612d7f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116cf61184f565b80601290805190602001906116e5929190612d7f565b5050565b6116f161184f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890613804565b60405180910390fd5b61176a81611da5565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061183857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118485750611847826121fd565b5b9050919050565b611857611918565b73ffffffffffffffffffffffffffffffffffffffff166118756110ef565b73ffffffffffffffffffffffffffffffffffffffff16146118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c2906138e4565b60405180910390fd5b565b6118d681612052565b611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90613944565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661199383610f8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119e583610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a275750611a268185611633565b5b80611a6557508373ffffffffffffffffffffffffffffffffffffffff16611a4d84610a35565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a8e82610f8a565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613824565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90613864565b60405180910390fd5b611b618383836001612267565b8273ffffffffffffffffffffffffffffffffffffffff16611b8182610f8a565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90613824565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d6383838360016123c7565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e858282604051806020016040528060008152506123cd565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613884565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fe99190613767565b60405180910390a3505050565b612001848484611a6e565b61200d84848484612428565b61204c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612043906137e4565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661207483611d68565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546120a290613cbc565b80601f01602080910402602001604051908101604052809291908181526020018280546120ce90613cbc565b801561211b5780601f106120f05761010080835404028352916020019161211b565b820191906000526020600020905b8154815290600101906020018083116120fe57829003601f168201915b5050505050905090565b606060006001612134846125bf565b01905060008167ffffffffffffffff81111561215357612152613e53565b5b6040519080825280601f01601f1916602001820160405280156121855781602001600182028036833780820191505090505b509050600082602001820190505b6001156121f2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121dc576121db613d97565b5b04945060008514156121ed576121f2565b612193565b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61227384848484612712565b60018111156122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae906139c4565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156122ff576122fa81612838565b61233e565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461233d5761233c8582612881565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123815761237c816129ee565b6123c0565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146123bf576123be8482612abf565b5b5b5050505050565b50505050565b6123d78383612b3e565b6123e46000848484612428565b612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a906137e4565b60405180910390fd5b505050565b60006124498473ffffffffffffffffffffffffffffffffffffffff16612d5c565b156125b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612472611918565b8786866040518563ffffffff1660e01b815260040161249494939291906136f9565b602060405180830381600087803b1580156124ae57600080fd5b505af19250505080156124df57506040513d601f19601f820116820180604052508101906124dc9190613188565b60015b612562573d806000811461250f576040519150601f19603f3d011682016040523d82523d6000602084013e612514565b606091505b5060008151141561255a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612551906137e4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125b7565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061261d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161261357612612613d97565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061265a576d04ee2d6d415b85acef810000000083816126505761264f613d97565b5b0492506020810190505b662386f26fc10000831061268957662386f26fc10000838161267f5761267e613d97565b5b0492506010810190505b6305f5e10083106126b2576305f5e10083816126a8576126a7613d97565b5b0492506008810190505b61271083106126d75761271083816126cd576126cc613d97565b5b0492506004810190505b606483106126fa57606483816126f0576126ef613d97565b5b0492506002810190505b600a8310612709576001810190505b80915050919050565b600181111561283257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146127a65780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279e9190613bd2565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128315780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128299190613b22565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161288e84611011565b6128989190613bd2565b905060006007600084815260200190815260200160002054905081811461297d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a029190613bd2565b9050600060096000848152602001908152602001600020549050600060088381548110612a3257612a31613e24565b5b906000526020600020015490508060088381548110612a5457612a53613e24565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612aa357612aa2613df5565b5b6001900381819060005260206000200160009055905550505050565b6000612aca83611011565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba5906138c4565b60405180910390fd5b612bb781612052565b15612bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bee90613844565b60405180910390fd5b612c05600083836001612267565b612c0e81612052565b15612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4590613844565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d586000838360016123c7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d8b90613cbc565b90600052602060002090601f016020900481019282612dad5760008555612df4565b82601f10612dc657805160ff1916838001178555612df4565b82800160010185558215612df4579182015b82811115612df3578251825591602001919060010190612dd8565b5b509050612e019190612e05565b5090565b5b80821115612e1e576000816000905550600101612e06565b5090565b6000612e35612e3084613a24565b6139ff565b905082815260208101848484011115612e5157612e50613e87565b5b612e5c848285613c7a565b509392505050565b6000612e77612e7284613a55565b6139ff565b905082815260208101848484011115612e9357612e92613e87565b5b612e9e848285613c7a565b509392505050565b600081359050612eb581614354565b92915050565b600081359050612eca8161436b565b92915050565b600081359050612edf81614382565b92915050565b600081519050612ef481614382565b92915050565b600082601f830112612f0f57612f0e613e82565b5b8135612f1f848260208601612e22565b91505092915050565b600082601f830112612f3d57612f3c613e82565b5b8135612f4d848260208601612e64565b91505092915050565b600081359050612f6581614399565b92915050565b600060208284031215612f8157612f80613e91565b5b6000612f8f84828501612ea6565b91505092915050565b60008060408385031215612faf57612fae613e91565b5b6000612fbd85828601612ea6565b9250506020612fce85828601612ea6565b9150509250929050565b600080600060608486031215612ff157612ff0613e91565b5b6000612fff86828701612ea6565b935050602061301086828701612ea6565b925050604061302186828701612f56565b9150509250925092565b6000806000806080858703121561304557613044613e91565b5b600061305387828801612ea6565b945050602061306487828801612ea6565b935050604061307587828801612f56565b925050606085013567ffffffffffffffff81111561309657613095613e8c565b5b6130a287828801612efa565b91505092959194509250565b600080604083850312156130c5576130c4613e91565b5b60006130d385828601612ea6565b92505060206130e485828601612ebb565b9150509250929050565b6000806040838503121561310557613104613e91565b5b600061311385828601612ea6565b925050602061312485828601612f56565b9150509250929050565b60006020828403121561314457613143613e91565b5b600061315284828501612ebb565b91505092915050565b60006020828403121561317157613170613e91565b5b600061317f84828501612ed0565b91505092915050565b60006020828403121561319e5761319d613e91565b5b60006131ac84828501612ee5565b91505092915050565b6000602082840312156131cb576131ca613e91565b5b600082013567ffffffffffffffff8111156131e9576131e8613e8c565b5b6131f584828501612f28565b91505092915050565b60006020828403121561321457613213613e91565b5b600061322284828501612f56565b91505092915050565b6000613237838361367a565b60208301905092915050565b61324c81613c06565b82525050565b600061325d82613aab565b6132678185613ad9565b935061327283613a86565b8060005b838110156132a357815161328a888261322b565b975061329583613acc565b925050600181019050613276565b5085935050505092915050565b6132b981613c18565b82525050565b60006132ca82613ab6565b6132d48185613aea565b93506132e4818560208601613c89565b6132ed81613e96565b840191505092915050565b600061330382613ac1565b61330d8185613b06565b935061331d818560208601613c89565b61332681613e96565b840191505092915050565b600061333c82613ac1565b6133468185613b17565b9350613356818560208601613c89565b80840191505092915050565b6000815461336f81613cbc565b6133798186613b17565b9450600182166000811461339457600181146133a5576133d8565b60ff198316865281860193506133d8565b6133ae85613a96565b60005b838110156133d0578154818901526001820191506020810190506133b1565b838801955050505b50505092915050565b60006133ee602d83613b06565b91506133f982613ea7565b604082019050919050565b6000613411602b83613b06565b915061341c82613ef6565b604082019050919050565b6000613434603283613b06565b915061343f82613f45565b604082019050919050565b6000613457602683613b06565b915061346282613f94565b604082019050919050565b600061347a602583613b06565b915061348582613fe3565b604082019050919050565b600061349d601c83613b06565b91506134a882614032565b602082019050919050565b60006134c0602483613b06565b91506134cb8261405b565b604082019050919050565b60006134e3601983613b06565b91506134ee826140aa565b602082019050919050565b6000613506602983613b06565b9150613511826140d3565b604082019050919050565b6000613529602083613b06565b915061353482614122565b602082019050919050565b600061354c602083613b06565b91506135578261414b565b602082019050919050565b600061356f601383613b06565b915061357a82614174565b602082019050919050565b6000613592602f83613b06565b915061359d8261419d565b604082019050919050565b60006135b5601883613b06565b91506135c0826141ec565b602082019050919050565b60006135d8602183613b06565b91506135e382614215565b604082019050919050565b60006135fb600083613afb565b915061360682614264565b600082019050919050565b600061361e603d83613b06565b915061362982614267565b604082019050919050565b6000613641602c83613b06565b915061364c826142b6565b604082019050919050565b6000613664603583613b06565b915061366f82614305565b604082019050919050565b61368381613c70565b82525050565b61369281613c70565b82525050565b60006136a48286613331565b91506136b08285613331565b91506136bc8284613362565b9150819050949350505050565b60006136d4826135ee565b9150819050919050565b60006020820190506136f36000830184613243565b92915050565b600060808201905061370e6000830187613243565b61371b6020830186613243565b6137286040830185613689565b818103606083015261373a81846132bf565b905095945050505050565b6000602082019050818103600083015261375f8184613252565b905092915050565b600060208201905061377c60008301846132b0565b92915050565b6000602082019050818103600083015261379c81846132f8565b905092915050565b600060208201905081810360008301526137bd816133e1565b9050919050565b600060208201905081810360008301526137dd81613404565b9050919050565b600060208201905081810360008301526137fd81613427565b9050919050565b6000602082019050818103600083015261381d8161344a565b9050919050565b6000602082019050818103600083015261383d8161346d565b9050919050565b6000602082019050818103600083015261385d81613490565b9050919050565b6000602082019050818103600083015261387d816134b3565b9050919050565b6000602082019050818103600083015261389d816134d6565b9050919050565b600060208201905081810360008301526138bd816134f9565b9050919050565b600060208201905081810360008301526138dd8161351c565b9050919050565b600060208201905081810360008301526138fd8161353f565b9050919050565b6000602082019050818103600083015261391d81613562565b9050919050565b6000602082019050818103600083015261393d81613585565b9050919050565b6000602082019050818103600083015261395d816135a8565b9050919050565b6000602082019050818103600083015261397d816135cb565b9050919050565b6000602082019050818103600083015261399d81613611565b9050919050565b600060208201905081810360008301526139bd81613634565b9050919050565b600060208201905081810360008301526139dd81613657565b9050919050565b60006020820190506139f96000830184613689565b92915050565b6000613a09613a1a565b9050613a158282613cee565b919050565b6000604051905090565b600067ffffffffffffffff821115613a3f57613a3e613e53565b5b613a4882613e96565b9050602081019050919050565b600067ffffffffffffffff821115613a7057613a6f613e53565b5b613a7982613e96565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b2d82613c70565b9150613b3883613c70565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6d57613b6c613d68565b5b828201905092915050565b6000613b8382613c70565b9150613b8e83613c70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bc757613bc6613d68565b5b828202905092915050565b6000613bdd82613c70565b9150613be883613c70565b925082821015613bfb57613bfa613d68565b5b828203905092915050565b6000613c1182613c50565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ca7578082015181840152602081019050613c8c565b83811115613cb6576000848401525b50505050565b60006002820490506001821680613cd457607f821691505b60208210811415613ce857613ce7613dc6565b5b50919050565b613cf782613e96565b810181811067ffffffffffffffff82111715613d1657613d15613e53565b5b80604052505050565b6000613d2a82613c70565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5d57613d5c613d68565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d41585f57414c4c45545f455843454544454400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b61435d81613c06565b811461436857600080fd5b50565b61437481613c18565b811461437f57600080fd5b50565b61438b81613c24565b811461439657600080fd5b50565b6143a281613c70565b81146143ad57600080fd5b5056fea2646970667358221220caacf97a1b319f427f3b2e37f9de14a8137d2d377b81c455b74e826306bced0964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000b5468697320497320504f4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075370617274616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f626166796265696733686263616f6c70737873666a77336d76776e73616d657a62687935643534757270366b72656262327577336f73776f6466712e697066732e6e667473746f726167652e6c696e6b2f00000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f626166796265696733686263616f6c70737873666a77336d76776e73616d657a62687935643534757270366b72656262327577336f73776f6466712e697066732e6e667473746f726167652e6c696e6b2f00000000000000

-----Decoded View---------------
Arg [0] : _name (string): This Is POM
Arg [1] : _symbol (string): Spartan
Arg [2] : _initBaseURI (string): https://bafybeig3hbcaolpsxsfjw3mvwnsamezbhy5d54urp6krebb2uw3oswodfq.ipfs.nftstorage.link/
Arg [3] : _initNotRevealedUri (string): https://bafybeig3hbcaolpsxsfjw3mvwnsamezbhy5d54urp6krebb2uw3oswodfq.ipfs.nftstorage.link/

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 5468697320497320504f4d000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 5370617274616e00000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [9] : 68747470733a2f2f626166796265696733686263616f6c70737873666a77336d
Arg [10] : 76776e73616d657a62687935643534757270366b72656262327577336f73776f
Arg [11] : 6466712e697066732e6e667473746f726167652e6c696e6b2f00000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [13] : 68747470733a2f2f626166796265696733686263616f6c70737873666a77336d
Arg [14] : 76776e73616d657a62687935643534757270366b72656262327577336f73776f
Arg [15] : 6466712e697066732e6e667473746f726167652e6c696e6b2f00000000000000


Deployed Bytecode Sourcemap

62499:3376:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56490:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65647:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40552:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42064:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62859:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41582:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62639:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57130:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62892:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62716:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42764:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65154:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56798:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65727:145;;;:::i;:::-;;43170:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63999:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64945:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57320:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62826:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65415:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62796:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40262:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39993:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17975:103;;;;;;;;;;;;;:::i;:::-;;65031:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17327:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40721:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63345:646;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42307:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64872:65;;;;;;;;;;;;;:::i;:::-;;43426:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62753:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62597;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64353:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62681:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65519:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42533:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65289:120;;;;;;;;;;;;;;;;;;;;;;;:::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;65647:73::-;17213:13;:11;:13::i;:::-;65708:6:::1;65699;;:15;;;;;;;;;;;;;;;;;;65647:73:::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;62859:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;62639:32::-;;;;:::o;57130:113::-;57191:7;57218:10;:17;;;;57211:24;;57130:113;:::o;62892:55::-;;;;;;;;;;;;;;;;;:::o;62716:32::-;;;;:::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;65154:127::-;17213:13;:11;:13::i;:::-;65256:19:::1;65235:18;:40;;;;65154:127:::0;:::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;65727:145::-;17213:13;:11;:13::i;:::-;65780:7:::1;65801;:5;:7::i;:::-;65793:21;;65822;65793:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65779:69;;;65863:2;65855:11;;;::::0;::::1;;65772:100;65727:145::o:0;43170:185::-;43308:39;43325:4;43331:2;43335:7;43308:39;;;;;;;;;;;;:16;:39::i;:::-;43170:185;;;:::o;63999:348::-;64074:16;64102:23;64128:17;64138:6;64128:9;:17::i;:::-;64102:43;;64152:25;64194:15;64180:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64152:58;;64222:9;64217:103;64237:15;64233:1;:19;64217:103;;;64282:30;64302:6;64310:1;64282:19;:30::i;:::-;64268:8;64277:1;64268:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;64254:3;;;;;:::i;:::-;;;;64217:103;;;;64333:8;64326:15;;;;63999:348;;;:::o;64945:80::-;17213:13;:11;:13::i;:::-;65011:8:::1;65004:4;:15;;;;64945:80:::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;62826:28::-;;;;;;;;;;;;;:::o;65415:98::-;17213:13;:11;:13::i;:::-;65496:11:::1;65486:7;:21;;;;;;;;;;;;:::i;:::-;;65415:98:::0;:::o;62796:25::-;;;;;;;;;;;;;:::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;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;65031:116::-;17213:13;:11;:13::i;:::-;65124:17:::1;65108:13;:33;;;;65031:116:::0;:::o;17327:87::-;17373:7;17400:6;;;;;;;;;;;17393:13;;17327:87;:::o;40721:104::-;40777:13;40810:7;40803:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40721:104;:::o;63345:646::-;63402:14;63419:13;:11;:13::i;:::-;63402:30;;63448:6;;;;;;;;;;;63447:7;63439:16;;;;;;63484:1;63470:11;:15;63462:24;;;;;;63516:13;;63501:11;:28;;63493:37;;;;;;63569:9;;63554:11;63545:6;:20;;;;:::i;:::-;:33;;63537:42;;;;;;63586:24;63613:20;:32;63634:10;63613:32;;;;;;;;;;;;;;;;63586:59;;63694:18;;63679:11;63660:16;:30;;;;:::i;:::-;:52;;63652:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;63768:7;:5;:7::i;:::-;63754:21;;:10;:21;;;63750:92;;63814:11;63807:4;;:18;;;;:::i;:::-;63794:9;:31;;63786:40;;;;;;63750:92;63855:9;63867:1;63855:13;;63850:136;63875:11;63870:1;:16;63850:136;;63902:33;63912:10;63933:1;63924:6;:10;;;;:::i;:::-;63902:9;:33::i;:::-;63944:20;:32;63965:10;63944:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;63888:3;;;;;:::i;:::-;;;;63850:136;;;;63395:596;;63345:646;:::o;42307:155::-;42402:52;42421:12;:10;:12::i;:::-;42435:8;42445;42402:18;:52::i;:::-;42307:155;;:::o;64872:65::-;17213:13;:11;:13::i;:::-;64927:4:::1;64916:8;;:15;;;;;;;;;;;;;;;;;;64872:65::o:0;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;62753:37::-;;;;:::o;62597:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64353:497::-;64451:13;64492:16;64500:7;64492;:16::i;:::-;64476:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;64601:5;64589:17;;:8;;;;;;;;;;;:17;;;64586:62;;;64626:14;64619:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64586:62;64656:28;64687:10;:8;:10::i;:::-;64656:41;;64742:1;64717:14;64711:28;:32;:133;;;;;;;;;;;;;;;;;64779:14;64795:18;:7;:16;:18::i;:::-;64815:13;64762:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64711:133;64704:140;;;64353:497;;;;:::o;62681:30::-;;;;:::o;65519:122::-;17213:13;:11;:13::i;:::-;65618:17:::1;65602:13;:33;;;;;;;;;;;;:::i;:::-;;65519:122:::0;:::o;42533:164::-;42630:4;42654:18;:25;42673:5;42654:25;;;;;;;;;;;;;;;:35;42680:8;42654:35;;;;;;;;;;;;;;;;;;;;;;;;;42647:42;;42533:164;;;;:::o;65289:120::-;17213:13;:11;:13::i;:::-;65388:15:::1;65371:14;:32;;;;;;;;;;;;:::i;:::-;;65289:120:::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;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;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;46387:110::-;46463:26;46473:2;46477:7;46463:26;;;;;;;;;;;;:9;:26::i;:::-;46387:110;;:::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:102::-;63284:13;63313:7;63306:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63224:102;:::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;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;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;20025:326::-;20085:4;20342:1;20320:7;:19;;;:23;20313:30;;20025:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:398::-;16412:3;16433:83;16514:1;16509:3;16433:83;:::i;:::-;16426:90;;16525:93;16614:3;16525:93;:::i;:::-;16643:1;16638:3;16634:11;16627:18;;16253:398;;;:::o;16657:366::-;16799:3;16820:67;16884:2;16879:3;16820:67;:::i;:::-;16813:74;;16896:93;16985:3;16896:93;:::i;:::-;17014:2;17009:3;17005:12;16998:19;;16657:366;;;:::o;17029:::-;17171:3;17192:67;17256:2;17251:3;17192:67;:::i;:::-;17185:74;;17268:93;17357:3;17268:93;:::i;:::-;17386:2;17381:3;17377:12;17370:19;;17029:366;;;:::o;17401:::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:108::-;17850:24;17868:5;17850:24;:::i;:::-;17845:3;17838:37;17773:108;;:::o;17887:118::-;17974:24;17992:5;17974:24;:::i;:::-;17969:3;17962:37;17887:118;;:::o;18011:589::-;18236:3;18258:95;18349:3;18340:6;18258:95;:::i;:::-;18251:102;;18370:95;18461:3;18452:6;18370:95;:::i;:::-;18363:102;;18482:92;18570:3;18561:6;18482:92;:::i;:::-;18475:99;;18591:3;18584:10;;18011:589;;;;;;:::o;18606:379::-;18790:3;18812:147;18955:3;18812:147;:::i;:::-;18805:154;;18976:3;18969:10;;18606:379;;;:::o;18991:222::-;19084:4;19122:2;19111:9;19107:18;19099:26;;19135:71;19203:1;19192:9;19188:17;19179:6;19135:71;:::i;:::-;18991:222;;;;:::o;19219:640::-;19414:4;19452:3;19441:9;19437:19;19429:27;;19466:71;19534:1;19523:9;19519:17;19510:6;19466:71;:::i;:::-;19547:72;19615:2;19604:9;19600:18;19591:6;19547:72;:::i;:::-;19629;19697:2;19686:9;19682:18;19673:6;19629:72;:::i;:::-;19748:9;19742:4;19738:20;19733:2;19722:9;19718:18;19711:48;19776:76;19847:4;19838:6;19776:76;:::i;:::-;19768:84;;19219:640;;;;;;;:::o;19865:373::-;20008:4;20046:2;20035:9;20031:18;20023:26;;20095:9;20089:4;20085:20;20081:1;20070:9;20066:17;20059:47;20123:108;20226:4;20217:6;20123:108;:::i;:::-;20115:116;;19865:373;;;;:::o;20244:210::-;20331:4;20369:2;20358:9;20354:18;20346:26;;20382:65;20444:1;20433:9;20429:17;20420:6;20382:65;:::i;:::-;20244:210;;;;:::o;20460:313::-;20573:4;20611:2;20600:9;20596:18;20588:26;;20660:9;20654:4;20650:20;20646:1;20635:9;20631:17;20624:47;20688:78;20761:4;20752:6;20688:78;:::i;:::-;20680:86;;20460:313;;;;:::o;20779:419::-;20945:4;20983:2;20972:9;20968:18;20960:26;;21032:9;21026:4;21022:20;21018:1;21007:9;21003:17;20996:47;21060:131;21186:4;21060:131;:::i;:::-;21052:139;;20779:419;;;:::o;21204:::-;21370:4;21408:2;21397:9;21393:18;21385:26;;21457:9;21451:4;21447:20;21443:1;21432:9;21428:17;21421:47;21485:131;21611:4;21485:131;:::i;:::-;21477:139;;21204:419;;;:::o;21629:::-;21795:4;21833:2;21822:9;21818:18;21810:26;;21882:9;21876:4;21872:20;21868:1;21857:9;21853:17;21846:47;21910:131;22036:4;21910:131;:::i;:::-;21902:139;;21629:419;;;:::o;22054:::-;22220:4;22258:2;22247:9;22243:18;22235:26;;22307:9;22301:4;22297:20;22293:1;22282:9;22278:17;22271:47;22335:131;22461:4;22335:131;:::i;:::-;22327:139;;22054:419;;;:::o;22479:::-;22645:4;22683:2;22672:9;22668:18;22660:26;;22732:9;22726:4;22722:20;22718:1;22707:9;22703:17;22696:47;22760:131;22886:4;22760:131;:::i;:::-;22752:139;;22479:419;;;:::o;22904:::-;23070:4;23108:2;23097:9;23093:18;23085:26;;23157:9;23151:4;23147:20;23143:1;23132:9;23128:17;23121:47;23185:131;23311:4;23185:131;:::i;:::-;23177:139;;22904:419;;;:::o;23329:::-;23495:4;23533:2;23522:9;23518:18;23510:26;;23582:9;23576:4;23572:20;23568:1;23557:9;23553:17;23546:47;23610:131;23736:4;23610:131;:::i;:::-;23602:139;;23329:419;;;:::o;23754:::-;23920:4;23958:2;23947:9;23943:18;23935:26;;24007:9;24001:4;23997:20;23993:1;23982:9;23978:17;23971:47;24035:131;24161:4;24035:131;:::i;:::-;24027:139;;23754:419;;;:::o;24179:::-;24345:4;24383:2;24372:9;24368:18;24360:26;;24432:9;24426:4;24422:20;24418:1;24407:9;24403:17;24396:47;24460:131;24586:4;24460:131;:::i;:::-;24452:139;;24179:419;;;:::o;24604:::-;24770:4;24808:2;24797:9;24793:18;24785:26;;24857:9;24851:4;24847:20;24843:1;24832:9;24828:17;24821:47;24885:131;25011:4;24885:131;:::i;:::-;24877:139;;24604:419;;;:::o;25029:::-;25195:4;25233:2;25222:9;25218:18;25210:26;;25282:9;25276:4;25272:20;25268:1;25257:9;25253:17;25246:47;25310:131;25436:4;25310:131;:::i;:::-;25302:139;;25029:419;;;:::o;25454:::-;25620:4;25658:2;25647:9;25643:18;25635:26;;25707:9;25701:4;25697:20;25693:1;25682:9;25678:17;25671:47;25735:131;25861:4;25735:131;:::i;:::-;25727:139;;25454:419;;;:::o;25879:::-;26045:4;26083:2;26072:9;26068:18;26060:26;;26132:9;26126:4;26122:20;26118:1;26107:9;26103:17;26096:47;26160:131;26286:4;26160:131;:::i;:::-;26152:139;;25879:419;;;:::o;26304:::-;26470:4;26508:2;26497:9;26493:18;26485:26;;26557:9;26551:4;26547:20;26543:1;26532:9;26528:17;26521:47;26585:131;26711:4;26585:131;:::i;:::-;26577:139;;26304:419;;;:::o;26729:::-;26895:4;26933:2;26922:9;26918:18;26910:26;;26982:9;26976:4;26972:20;26968:1;26957:9;26953:17;26946:47;27010:131;27136:4;27010:131;:::i;:::-;27002:139;;26729:419;;;:::o;27154:::-;27320:4;27358:2;27347:9;27343:18;27335:26;;27407:9;27401:4;27397:20;27393:1;27382:9;27378:17;27371:47;27435:131;27561:4;27435:131;:::i;:::-;27427:139;;27154:419;;;:::o;27579:::-;27745:4;27783:2;27772:9;27768:18;27760:26;;27832:9;27826:4;27822:20;27818:1;27807:9;27803:17;27796:47;27860:131;27986:4;27860:131;:::i;:::-;27852:139;;27579:419;;;:::o;28004:::-;28170:4;28208:2;28197:9;28193:18;28185:26;;28257:9;28251:4;28247:20;28243:1;28232:9;28228:17;28221:47;28285:131;28411:4;28285:131;:::i;:::-;28277:139;;28004:419;;;:::o;28429:222::-;28522:4;28560:2;28549:9;28545:18;28537:26;;28573:71;28641:1;28630:9;28626:17;28617:6;28573:71;:::i;:::-;28429:222;;;;:::o;28657:129::-;28691:6;28718:20;;:::i;:::-;28708:30;;28747:33;28775:4;28767:6;28747:33;:::i;:::-;28657:129;;;:::o;28792:75::-;28825:6;28858:2;28852:9;28842:19;;28792:75;:::o;28873:307::-;28934:4;29024:18;29016:6;29013:30;29010:56;;;29046:18;;:::i;:::-;29010:56;29084:29;29106:6;29084:29;:::i;:::-;29076:37;;29168:4;29162;29158:15;29150:23;;28873:307;;;:::o;29186:308::-;29248:4;29338:18;29330:6;29327:30;29324:56;;;29360:18;;:::i;:::-;29324:56;29398:29;29420:6;29398:29;:::i;:::-;29390:37;;29482:4;29476;29472:15;29464:23;;29186:308;;;:::o;29500:132::-;29567:4;29590:3;29582:11;;29620:4;29615:3;29611:14;29603:22;;29500:132;;;:::o;29638:141::-;29687:4;29710:3;29702:11;;29733:3;29730:1;29723:14;29767:4;29764:1;29754:18;29746:26;;29638:141;;;:::o;29785:114::-;29852:6;29886:5;29880:12;29870:22;;29785:114;;;:::o;29905:98::-;29956:6;29990:5;29984:12;29974:22;;29905:98;;;:::o;30009:99::-;30061:6;30095:5;30089:12;30079:22;;30009:99;;;:::o;30114:113::-;30184:4;30216;30211:3;30207:14;30199:22;;30114:113;;;:::o;30233:184::-;30332:11;30366:6;30361:3;30354:19;30406:4;30401:3;30397:14;30382:29;;30233:184;;;;:::o;30423:168::-;30506:11;30540:6;30535:3;30528:19;30580:4;30575:3;30571:14;30556:29;;30423:168;;;;:::o;30597:147::-;30698:11;30735:3;30720:18;;30597:147;;;;:::o;30750:169::-;30834:11;30868:6;30863:3;30856:19;30908:4;30903:3;30899:14;30884:29;;30750:169;;;;:::o;30925:148::-;31027:11;31064:3;31049:18;;30925:148;;;;:::o;31079:305::-;31119:3;31138:20;31156:1;31138:20;:::i;:::-;31133:25;;31172:20;31190:1;31172:20;:::i;:::-;31167:25;;31326:1;31258:66;31254:74;31251:1;31248:81;31245:107;;;31332:18;;:::i;:::-;31245:107;31376:1;31373;31369:9;31362:16;;31079:305;;;;:::o;31390:348::-;31430:7;31453:20;31471:1;31453:20;:::i;:::-;31448:25;;31487:20;31505:1;31487:20;:::i;:::-;31482:25;;31675:1;31607:66;31603:74;31600:1;31597:81;31592:1;31585:9;31578:17;31574:105;31571:131;;;31682:18;;:::i;:::-;31571:131;31730:1;31727;31723:9;31712:20;;31390:348;;;;:::o;31744:191::-;31784:4;31804:20;31822:1;31804:20;:::i;:::-;31799:25;;31838:20;31856:1;31838:20;:::i;:::-;31833:25;;31877:1;31874;31871:8;31868:34;;;31882:18;;:::i;:::-;31868:34;31927:1;31924;31920:9;31912:17;;31744:191;;;;:::o;31941:96::-;31978:7;32007:24;32025:5;32007:24;:::i;:::-;31996:35;;31941:96;;;:::o;32043:90::-;32077:7;32120:5;32113:13;32106:21;32095:32;;32043:90;;;:::o;32139:149::-;32175:7;32215:66;32208:5;32204:78;32193:89;;32139:149;;;:::o;32294:126::-;32331:7;32371:42;32364:5;32360:54;32349:65;;32294:126;;;:::o;32426:77::-;32463:7;32492:5;32481:16;;32426:77;;;:::o;32509:154::-;32593:6;32588:3;32583;32570:30;32655:1;32646:6;32641:3;32637:16;32630:27;32509:154;;;:::o;32669:307::-;32737:1;32747:113;32761:6;32758:1;32755:13;32747:113;;;32846:1;32841:3;32837:11;32831:18;32827:1;32822:3;32818:11;32811:39;32783:2;32780:1;32776:10;32771:15;;32747:113;;;32878:6;32875:1;32872:13;32869:101;;;32958:1;32949:6;32944:3;32940:16;32933:27;32869:101;32718:258;32669:307;;;:::o;32982:320::-;33026:6;33063:1;33057:4;33053:12;33043:22;;33110:1;33104:4;33100:12;33131:18;33121:81;;33187:4;33179:6;33175:17;33165:27;;33121:81;33249:2;33241:6;33238:14;33218:18;33215:38;33212:84;;;33268:18;;:::i;:::-;33212:84;33033:269;32982:320;;;:::o;33308:281::-;33391:27;33413:4;33391:27;:::i;:::-;33383:6;33379:40;33521:6;33509:10;33506:22;33485:18;33473:10;33470:34;33467:62;33464:88;;;33532:18;;:::i;:::-;33464:88;33572:10;33568:2;33561:22;33351:238;33308:281;;:::o;33595:233::-;33634:3;33657:24;33675:5;33657:24;:::i;:::-;33648:33;;33703:66;33696:5;33693:77;33690:103;;;33773:18;;:::i;:::-;33690:103;33820:1;33813:5;33809:13;33802:20;;33595:233;;;:::o;33834:180::-;33882:77;33879:1;33872:88;33979:4;33976:1;33969:15;34003:4;34000:1;33993:15;34020:180;34068:77;34065:1;34058:88;34165:4;34162:1;34155:15;34189:4;34186:1;34179:15;34206:180;34254:77;34251:1;34244:88;34351:4;34348:1;34341:15;34375:4;34372:1;34365:15;34392:180;34440:77;34437:1;34430:88;34537:4;34534:1;34527:15;34561:4;34558:1;34551:15;34578:180;34626:77;34623:1;34616:88;34723:4;34720:1;34713:15;34747:4;34744:1;34737:15;34764:180;34812:77;34809:1;34802:88;34909:4;34906:1;34899:15;34933:4;34930:1;34923:15;34950:117;35059:1;35056;35049:12;35073:117;35182:1;35179;35172:12;35196:117;35305:1;35302;35295:12;35319:117;35428:1;35425;35418:12;35442:102;35483:6;35534:2;35530:7;35525:2;35518:5;35514:14;35510:28;35500:38;;35442:102;;;:::o;35550:232::-;35690:34;35686:1;35678:6;35674:14;35667:58;35759:15;35754:2;35746:6;35742:15;35735:40;35550:232;:::o;35788:230::-;35928:34;35924:1;35916:6;35912:14;35905:58;35997:13;35992:2;35984:6;35980:15;35973:38;35788:230;:::o;36024:237::-;36164:34;36160:1;36152:6;36148:14;36141:58;36233:20;36228:2;36220:6;36216:15;36209:45;36024:237;:::o;36267:225::-;36407:34;36403:1;36395:6;36391:14;36384:58;36476:8;36471:2;36463:6;36459:15;36452:33;36267:225;:::o;36498:224::-;36638:34;36634:1;36626:6;36622:14;36615:58;36707:7;36702:2;36694:6;36690:15;36683:32;36498:224;:::o;36728:178::-;36868:30;36864:1;36856:6;36852:14;36845:54;36728:178;:::o;36912:223::-;37052:34;37048:1;37040:6;37036:14;37029:58;37121:6;37116:2;37108:6;37104:15;37097:31;36912:223;:::o;37141:175::-;37281:27;37277:1;37269:6;37265:14;37258:51;37141:175;:::o;37322:228::-;37462:34;37458:1;37450:6;37446:14;37439:58;37531:11;37526:2;37518:6;37514:15;37507:36;37322:228;:::o;37556:182::-;37696:34;37692:1;37684:6;37680:14;37673:58;37556:182;:::o;37744:::-;37884:34;37880:1;37872:6;37868:14;37861:58;37744:182;:::o;37932:169::-;38072:21;38068:1;38060:6;38056:14;38049:45;37932:169;:::o;38107:234::-;38247:34;38243:1;38235:6;38231:14;38224:58;38316:17;38311:2;38303:6;38299:15;38292:42;38107:234;:::o;38347:174::-;38487:26;38483:1;38475:6;38471:14;38464:50;38347:174;:::o;38527:220::-;38667:34;38663:1;38655:6;38651:14;38644:58;38736:3;38731:2;38723:6;38719:15;38712:28;38527:220;:::o;38753:114::-;;:::o;38873:248::-;39013:34;39009:1;39001:6;38997:14;38990:58;39082:31;39077:2;39069:6;39065:15;39058:56;38873:248;:::o;39127:231::-;39267:34;39263:1;39255:6;39251:14;39244:58;39336:14;39331:2;39323:6;39319:15;39312:39;39127:231;:::o;39364:240::-;39504:34;39500:1;39492:6;39488:14;39481:58;39573:23;39568:2;39560:6;39556:15;39549:48;39364:240;:::o;39610:122::-;39683:24;39701:5;39683:24;:::i;:::-;39676:5;39673:35;39663:63;;39722:1;39719;39712:12;39663:63;39610:122;:::o;39738:116::-;39808:21;39823:5;39808:21;:::i;:::-;39801:5;39798:32;39788:60;;39844:1;39841;39834:12;39788:60;39738:116;:::o;39860:120::-;39932:23;39949:5;39932:23;:::i;:::-;39925:5;39922:34;39912:62;;39970:1;39967;39960:12;39912:62;39860:120;:::o;39986:122::-;40059:24;40077:5;40059:24;:::i;:::-;40052:5;40049:35;40039:63;;40098:1;40095;40088:12;40039:63;39986:122;:::o

Swarm Source

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