ETH Price: $3,498.40 (+0.32%)
Gas: 2 Gwei

Token

ANSATZ_ORDINAL (ANSATZ)
 

Overview

Max Total Supply

521 ANSATZ

Holders

72

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ANSATZ
0x50fadad144718b239f85ef1178b0c3d753ccf5b5
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:
ANSATZ_ORDINAL

Compiler Version
v0.8.18+commit.87f61d96

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-09
*/

// 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/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/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/utils/math/Math.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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/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: contracts/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */


// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// 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);
    }
}


contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

  /**
   * @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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  /**
   * @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 overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); // take out for devmint

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

// File: contracts/contract_template_721a.sol



pragma solidity ^0.8.0;



contract ANSATZ_ORDINAL is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0.1 ether;
    uint256 public MAX_SUPPLY = 666;
    uint256 public MAX_MINTS = 10;
    uint256 public MAX_MINTS_RESERVED = 10;
    string public projName = "ANSATZ_ORDINAL";
    string public projSym = "ANSATZ";

    bool public DROP_ACTIVE = false;

    string public baseURI = "https://ipfs.io/ipfs/QmdgWymcLBfiiHksapLRvs3kzjeKcJwuH9pr5fzwNZiAaf/";
    mapping(address => uint) addressToReservedMints;
    
    constructor() ERC721A(projName, projSym, MAX_MINTS, MAX_SUPPLY) {}

    function mint(uint256 numTokens) public payable {
        require(DROP_ACTIVE, "Sale not started");
        require(
            numTokens > 0 && numTokens <= MAX_MINTS,
            "Must mint between 1 and 10 tokens"
        );
        require(totalSupply() + numTokens <= MAX_SUPPLY, "Sold Out");
        require(
            msg.value >= NFT_PRICE * numTokens,
            "Amount of ether sent is not enough"
        );

        _safeMint(msg.sender, numTokens);
    }

    function flipDropState() public onlyOwner {
        DROP_ACTIVE = !DROP_ACTIVE;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        NFT_PRICE = newPrice;
    }

    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }


    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function reservedMintedBy() external view returns (uint256) {
        return addressToReservedMints[msg.sender];
    }

    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function Wormhole() public view returns (string memory) {
        return "Tetration. Coming soon....";
    }	

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DROP_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Wormhole","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projSym","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintedBy","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":"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260008055600060075567016345785d8a000060095561029a600a55600a600b55600a600c556040518060400160405280600e81526020017f414e5341545a5f4f5244494e414c000000000000000000000000000000000000815250600d90816200006f919062000669565b506040518060400160405280600681526020017f414e5341545a0000000000000000000000000000000000000000000000000000815250600e9081620000b6919062000669565b506000600f60006101000a81548160ff02191690831515021790555060405180608001604052806044815260200162004f2f6044913960109081620000fc919062000669565b503480156200010a57600080fd5b50600d80546200011a9062000458565b80601f0160208091040260200160405190810160405280929190818152602001828054620001489062000458565b8015620001995780601f106200016d5761010080835404028352916020019162000199565b820191906000526020600020905b8154815290600101906020018083116200017b57829003601f168201915b5050505050600e8054620001ad9062000458565b80601f0160208091040260200160405190810160405280929190818152602001828054620001db9062000458565b80156200022c5780601f1062000200576101008083540402835291602001916200022c565b820191906000526020600020905b8154815290600101906020018083116200020e57829003601f168201915b5050505050600b54600a54600081116200027d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027490620007d7565b60405180910390fd5b60008211620002c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ba906200086f565b60405180910390fd5b8360019081620002d4919062000669565b508260029081620002e6919062000669565b508160a081815250508060808181525050505050506200031b6200030f6200032160201b60201c565b6200032960201b60201c565b62000891565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047157607f821691505b60208210810362000487576200048662000429565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b2565b620004fd8683620004b2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200054a620005446200053e8462000515565b6200051f565b62000515565b9050919050565b6000819050919050565b620005668362000529565b6200057e620005758262000551565b848454620004bf565b825550505050565b600090565b6200059562000586565b620005a28184846200055b565b505050565b5b81811015620005ca57620005be6000826200058b565b600181019050620005a8565b5050565b601f8211156200061957620005e3816200048d565b620005ee84620004a2565b81016020851015620005fe578190505b620006166200060d85620004a2565b830182620005a7565b50505b505050565b600082821c905092915050565b60006200063e600019846008026200061e565b1980831691505092915050565b60006200065983836200062b565b9150826002028217905092915050565b6200067482620003ef565b67ffffffffffffffff81111562000690576200068f620003fa565b5b6200069c825462000458565b620006a9828285620005ce565b600060209050601f831160018114620006e15760008415620006cc578287015190505b620006d885826200064b565b86555062000748565b601f198416620006f1866200048d565b60005b828110156200071b57848901518255600182019150602085019450602081019050620006f4565b868310156200073b578489015162000737601f8916826200062b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6000620007bf602e8362000750565b9150620007cc8262000761565b604082019050919050565b60006020820190508181036000830152620007f281620007b0565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200085760278362000750565b91506200086482620007f9565b604082019050919050565b600060208201905081810360008301526200088a8162000848565b9050919050565b60805160a05161466d620008c2600039600081816120030152818161202c015261264901526000505061466d6000f3fe60806040526004361061020f5760003560e01c806379c9cb7b11610118578063b88d4fde116100a0578063da241d061161006f578063da241d061461076c578063e03c69e814610797578063e985e9c5146107c2578063f2fde38b146107ff578063f7cd09c7146108285761020f565b8063b88d4fde146106b0578063c87b56dd146106d9578063cce132d114610716578063d7224ba0146107415761020f565b806396f8f6dd116100e757806396f8f6dd146105fe578063a0712d6814610615578063a22cb46514610631578063a7b8cd4d1461065a578063b875e2ce146106855761020f565b806379c9cb7b146105565780638da5cb5b1461057f57806391b7f5ed146105aa57806395d89b41146105d35761020f565b80633ccfd60b1161019b5780636352211e1161016a5780636352211e1461046f578063676dd563146104ac5780636c0360eb146104d757806370a0823114610502578063715018a61461053f5761020f565b80633ccfd60b146103c957806342842e0e146103e05780634f6ccce71461040957806355f804b3146104465761020f565b806315f47ec0116101e257806315f47ec0146102e257806318160ddd1461030d57806323b872dd146103385780632f745c591461036157806332cb6b0c1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612c83565b610853565b6040516102489190612ccb565b60405180910390f35b34801561025d57600080fd5b5061026661099d565b6040516102739190612d76565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612dce565b610a2f565b6040516102b09190612e3c565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612e83565b610ab4565b005b3480156102ee57600080fd5b506102f7610bcc565b6040516103049190612d76565b60405180910390f35b34801561031957600080fd5b50610322610c09565b60405161032f9190612ed2565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612eed565b610c12565b005b34801561036d57600080fd5b5061038860048036038101906103839190612e83565b610c22565b6040516103959190612ed2565b60405180910390f35b3480156103aa57600080fd5b506103b3610e1e565b6040516103c09190612ed2565b60405180910390f35b3480156103d557600080fd5b506103de610e24565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612eed565b610e6c565b005b34801561041557600080fd5b50610430600480360381019061042b9190612dce565b610e8c565b60405161043d9190612ed2565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613075565b610edf565b005b34801561047b57600080fd5b5061049660048036038101906104919190612dce565b610efa565b6040516104a39190612e3c565b60405180910390f35b3480156104b857600080fd5b506104c1610f10565b6040516104ce9190612ed2565b60405180910390f35b3480156104e357600080fd5b506104ec610f16565b6040516104f99190612d76565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906130be565b610fa4565b6040516105369190612ed2565b60405180910390f35b34801561054b57600080fd5b5061055461108c565b005b34801561056257600080fd5b5061057d60048036038101906105789190612dce565b6110a0565b005b34801561058b57600080fd5b506105946110b2565b6040516105a19190612e3c565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612dce565b6110dc565b005b3480156105df57600080fd5b506105e86110ee565b6040516105f59190612d76565b60405180910390f35b34801561060a57600080fd5b50610613611180565b005b61062f600480360381019061062a9190612dce565b6111b4565b005b34801561063d57600080fd5b5061065860048036038101906106539190613117565b611308565b005b34801561066657600080fd5b5061066f611488565b60405161067c9190612ed2565b60405180910390f35b34801561069157600080fd5b5061069a6114cf565b6040516106a79190612ed2565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906131f8565b6114d5565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190612dce565b611531565b60405161070d9190612d76565b60405180910390f35b34801561072257600080fd5b5061072b6115f7565b6040516107389190612ed2565b60405180910390f35b34801561074d57600080fd5b506107566115fd565b6040516107639190612ed2565b60405180910390f35b34801561077857600080fd5b50610781611603565b60405161078e9190612d76565b60405180910390f35b3480156107a357600080fd5b506107ac611691565b6040516107b99190612d76565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e4919061327b565b61171f565b6040516107f69190612ccb565b60405180910390f35b34801561080b57600080fd5b50610826600480360381019061082191906130be565b6117b3565b005b34801561083457600080fd5b5061083d611836565b60405161084a9190612ccb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610996575061099582611849565b5b9050919050565b6060600180546109ac906132ea565b80601f01602080910402602001604051908101604052809291908181526020018280546109d8906132ea565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b5050505050905090565b6000610a3a826118b3565b610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a709061338d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abf82610efa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b269061341f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4e6118c0565b73ffffffffffffffffffffffffffffffffffffffff161480610b7d5750610b7c81610b776118c0565b61171f565b5b610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb3906134b1565b60405180910390fd5b610bc78383836118c8565b505050565b60606040518060400160405280601a81526020017f546574726174696f6e2e20436f6d696e6720736f6f6e2e2e2e2e000000000000815250905090565b60008054905090565b610c1d83838361197a565b505050565b6000610c2d83610fa4565b8210610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613543565b60405180910390fd5b6000610c78610c09565b905060008060005b83811015610ddc576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc857868403610db9578195505050505050610e18565b8380610dc490613592565b9450505b508080610dd490613592565b915050610c80565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061364c565b60405180910390fd5b92915050565b600a5481565b610e2c611f31565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e6a57600080fd5b565b610e87838383604051806020016040528060008152506114d5565b505050565b6000610e96610c09565b8210610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece906136de565b60405180910390fd5b819050919050565b610ee7611f31565b8060109081610ef691906138aa565b5050565b6000610f0582611faf565b600001519050919050565b60095481565b60108054610f23906132ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f906132ea565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b906139ee565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611094611f31565b61109e60006121b2565b565b6110a8611f31565b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110e4611f31565b8060098190555050565b6060600280546110fd906132ea565b80601f0160208091040260200160405190810160405280929190818152602001828054611129906132ea565b80156111765780601f1061114b57610100808354040283529160200191611176565b820191906000526020600020905b81548152906001019060200180831161115957829003601f168201915b5050505050905090565b611188611f31565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff16611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90613a5a565b60405180910390fd5b6000811180156112155750600b548111155b611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90613aec565b60405180910390fd5b600a5481611260610c09565b61126a9190613b0c565b11156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613b8c565b60405180910390fd5b806009546112b99190613bac565b3410156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613c60565b60405180910390fd5b6113053382612278565b50565b6113106118c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ccc565b60405180910390fd5b806006600061138a6118c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114376118c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147c9190612ccb565b60405180910390a35050565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600c5481565b6114e084848461197a565b6114ec84848484612296565b61152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290613d5e565b60405180910390fd5b50505050565b606061153c826118b3565b61157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290613df0565b60405180910390fd5b600061158561241d565b905060008151116115a557604051806020016040528060008152506115ef565b806115af846124af565b6040516020016115bf9190613e72565b6040516020818303038152906040526040516020016115df929190613e98565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600e8054611610906132ea565b80601f016020809104026020016040519081016040528092919081815260200182805461163c906132ea565b80156116895780601f1061165e57610100808354040283529160200191611689565b820191906000526020600020905b81548152906001019060200180831161166c57829003601f168201915b505050505081565b600d805461169e906132ea565b80601f01602080910402602001604051908101604052809291908181526020018280546116ca906132ea565b80156117175780601f106116ec57610100808354040283529160200191611717565b820191906000526020600020905b8154815290600101906020018083116116fa57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117bb611f31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613f2e565b60405180910390fd5b611833816121b2565b50565b600f60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061198582611faf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119ac6118c0565b73ffffffffffffffffffffffffffffffffffffffff161480611a0857506119d16118c0565b73ffffffffffffffffffffffffffffffffffffffff166119f084610a2f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a245750611a238260000151611a1e6118c0565b61171f565b5b905080611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90613fc0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90614052565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e906140e4565b60405180910390fd5b611b54858585600161257d565b611b6460008484600001516118c8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611bd29190614120565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c769190614164565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d7c9190613b0c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611ec157611df1816118b3565b15611ec0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f298686866001612583565b505050505050565b611f396118c0565b73ffffffffffffffffffffffffffffffffffffffff16611f576110b2565b73ffffffffffffffffffffffffffffffffffffffff1614611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa4906141f4565b60405180910390fd5b565b611fb7612bdd565b611fc0826118b3565b611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614286565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106120635760017f00000000000000000000000000000000000000000000000000000000000000008461205691906142a6565b6120609190613b0c565b90505b60008390505b818110612171576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461215d578093505050506121ad565b508080612169906142da565b915050612069565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490614375565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612292828260405180602001604052806000815250612589565b5050565b60006122b78473ffffffffffffffffffffffffffffffffffffffff16612a67565b15612410578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e06118c0565b8786866040518563ffffffff1660e01b815260040161230294939291906143ea565b6020604051808303816000875af192505050801561233e57506040513d601f19601f8201168201806040525081019061233b919061444b565b60015b6123c0573d806000811461236e576040519150601f19603f3d011682016040523d82523d6000602084013e612373565b606091505b5060008151036123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90613d5e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612415565b600190505b949350505050565b60606010805461242c906132ea565b80601f0160208091040260200160405190810160405280929190818152602001828054612458906132ea565b80156124a55780601f1061247a576101008083540402835291602001916124a5565b820191906000526020600020905b81548152906001019060200180831161248857829003601f168201915b5050505050905090565b6060600060016124be84612a8a565b01905060008167ffffffffffffffff8111156124dd576124dc612f4a565b5b6040519080825280601f01601f19166020018201604052801561250f5781602001600182028036833780820191505090505b509050600082602001820190505b600115612572578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256657612565614478565b5b0494506000850361251d575b819350505050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f590614519565b60405180910390fd5b612607816118b3565b15612647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263e90614585565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190614617565b60405180910390fd5b6126b7600085838661257d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516127b49190614164565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127db9190614164565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612a4a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129ea6000888488612296565b612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090613d5e565b60405180910390fd5b8180612a3490613592565b9250508080612a4290613592565b915050612979565b5080600081905550612a5f6000878588612583565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612ae8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612ade57612add614478565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612b25576d04ee2d6d415b85acef81000000008381612b1b57612b1a614478565b5b0492506020810190505b662386f26fc100008310612b5457662386f26fc100008381612b4a57612b49614478565b5b0492506010810190505b6305f5e1008310612b7d576305f5e1008381612b7357612b72614478565b5b0492506008810190505b6127108310612ba2576127108381612b9857612b97614478565b5b0492506004810190505b60648310612bc55760648381612bbb57612bba614478565b5b0492506002810190505b600a8310612bd4576001810190505b80915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c6081612c2b565b8114612c6b57600080fd5b50565b600081359050612c7d81612c57565b92915050565b600060208284031215612c9957612c98612c21565b5b6000612ca784828501612c6e565b91505092915050565b60008115159050919050565b612cc581612cb0565b82525050565b6000602082019050612ce06000830184612cbc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d20578082015181840152602081019050612d05565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d4882612ce6565b612d528185612cf1565b9350612d62818560208601612d02565b612d6b81612d2c565b840191505092915050565b60006020820190508181036000830152612d908184612d3d565b905092915050565b6000819050919050565b612dab81612d98565b8114612db657600080fd5b50565b600081359050612dc881612da2565b92915050565b600060208284031215612de457612de3612c21565b5b6000612df284828501612db9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e2682612dfb565b9050919050565b612e3681612e1b565b82525050565b6000602082019050612e516000830184612e2d565b92915050565b612e6081612e1b565b8114612e6b57600080fd5b50565b600081359050612e7d81612e57565b92915050565b60008060408385031215612e9a57612e99612c21565b5b6000612ea885828601612e6e565b9250506020612eb985828601612db9565b9150509250929050565b612ecc81612d98565b82525050565b6000602082019050612ee76000830184612ec3565b92915050565b600080600060608486031215612f0657612f05612c21565b5b6000612f1486828701612e6e565b9350506020612f2586828701612e6e565b9250506040612f3686828701612db9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f8282612d2c565b810181811067ffffffffffffffff82111715612fa157612fa0612f4a565b5b80604052505050565b6000612fb4612c17565b9050612fc08282612f79565b919050565b600067ffffffffffffffff821115612fe057612fdf612f4a565b5b612fe982612d2c565b9050602081019050919050565b82818337600083830152505050565b600061301861301384612fc5565b612faa565b90508281526020810184848401111561303457613033612f45565b5b61303f848285612ff6565b509392505050565b600082601f83011261305c5761305b612f40565b5b813561306c848260208601613005565b91505092915050565b60006020828403121561308b5761308a612c21565b5b600082013567ffffffffffffffff8111156130a9576130a8612c26565b5b6130b584828501613047565b91505092915050565b6000602082840312156130d4576130d3612c21565b5b60006130e284828501612e6e565b91505092915050565b6130f481612cb0565b81146130ff57600080fd5b50565b600081359050613111816130eb565b92915050565b6000806040838503121561312e5761312d612c21565b5b600061313c85828601612e6e565b925050602061314d85828601613102565b9150509250929050565b600067ffffffffffffffff82111561317257613171612f4a565b5b61317b82612d2c565b9050602081019050919050565b600061319b61319684613157565b612faa565b9050828152602081018484840111156131b7576131b6612f45565b5b6131c2848285612ff6565b509392505050565b600082601f8301126131df576131de612f40565b5b81356131ef848260208601613188565b91505092915050565b6000806000806080858703121561321257613211612c21565b5b600061322087828801612e6e565b945050602061323187828801612e6e565b935050604061324287828801612db9565b925050606085013567ffffffffffffffff81111561326357613262612c26565b5b61326f878288016131ca565b91505092959194509250565b6000806040838503121561329257613291612c21565b5b60006132a085828601612e6e565b92505060206132b185828601612e6e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330257607f821691505b602082108103613315576133146132bb565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613377602d83612cf1565b91506133828261331b565b604082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613409602283612cf1565b9150613414826133ad565b604082019050919050565b60006020820190508181036000830152613438816133fc565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061349b603983612cf1565b91506134a68261343f565b604082019050919050565b600060208201905081810360008301526134ca8161348e565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061352d602283612cf1565b9150613538826134d1565b604082019050919050565b6000602082019050818103600083015261355c81613520565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061359d82612d98565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135cf576135ce613563565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613636602e83612cf1565b9150613641826135da565b604082019050919050565b6000602082019050818103600083015261366581613629565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006136c8602383612cf1565b91506136d38261366c565b604082019050919050565b600060208201905081810360008301526136f7816136bb565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613723565b61376a8683613723565b95508019841693508086168417925050509392505050565b6000819050919050565b60006137a76137a261379d84612d98565b613782565b612d98565b9050919050565b6000819050919050565b6137c18361378c565b6137d56137cd826137ae565b848454613730565b825550505050565b600090565b6137ea6137dd565b6137f58184846137b8565b505050565b5b818110156138195761380e6000826137e2565b6001810190506137fb565b5050565b601f82111561385e5761382f816136fe565b61383884613713565b81016020851015613847578190505b61385b61385385613713565b8301826137fa565b50505b505050565b600082821c905092915050565b600061388160001984600802613863565b1980831691505092915050565b600061389a8383613870565b9150826002028217905092915050565b6138b382612ce6565b67ffffffffffffffff8111156138cc576138cb612f4a565b5b6138d682546132ea565b6138e182828561381d565b600060209050601f8311600181146139145760008415613902578287015190505b61390c858261388e565b865550613974565b601f198416613922866136fe565b60005b8281101561394a57848901518255600182019150602085019450602081019050613925565b868310156139675784890151613963601f891682613870565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006139d8602b83612cf1565b91506139e38261397c565b604082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b6000613a44601083612cf1565b9150613a4f82613a0e565b602082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ad6602183612cf1565b9150613ae182613a7a565b604082019050919050565b60006020820190508181036000830152613b0581613ac9565b9050919050565b6000613b1782612d98565b9150613b2283612d98565b9250828201905080821115613b3a57613b39613563565b5b92915050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b6000613b76600883612cf1565b9150613b8182613b40565b602082019050919050565b60006020820190508181036000830152613ba581613b69565b9050919050565b6000613bb782612d98565b9150613bc283612d98565b9250828202613bd081612d98565b91508282048414831517613be757613be6613563565b5b5092915050565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c4a602283612cf1565b9150613c5582613bee565b604082019050919050565b60006020820190508181036000830152613c7981613c3d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613cb6601a83612cf1565b9150613cc182613c80565b602082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613d48603383612cf1565b9150613d5382613cec565b604082019050919050565b60006020820190508181036000830152613d7781613d3b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613dda602f83612cf1565b9150613de582613d7e565b604082019050919050565b60006020820190508181036000830152613e0981613dcd565b9050919050565b600081905092915050565b6000613e2682612ce6565b613e308185613e10565b9350613e40818560208601612d02565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b6000613e7e8284613e1b565b9150613e8982613e4c565b60058201915081905092915050565b6000613ea48285613e1b565b9150613eb08284613e1b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f18602683612cf1565b9150613f2382613ebc565b604082019050919050565b60006020820190508181036000830152613f4781613f0b565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613faa603283612cf1565b9150613fb582613f4e565b604082019050919050565b60006020820190508181036000830152613fd981613f9d565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061403c602683612cf1565b915061404782613fe0565b604082019050919050565b6000602082019050818103600083015261406b8161402f565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006140ce602583612cf1565b91506140d982614072565b604082019050919050565b600060208201905081810360008301526140fd816140c1565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061412b82614104565b915061413683614104565b925082820390506fffffffffffffffffffffffffffffffff81111561415e5761415d613563565b5b92915050565b600061416f82614104565b915061417a83614104565b925082820190506fffffffffffffffffffffffffffffffff8111156141a2576141a1613563565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141de602083612cf1565b91506141e9826141a8565b602082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614270602a83612cf1565b915061427b82614214565b604082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b60006142b182612d98565b91506142bc83612d98565b92508282039050818111156142d4576142d3613563565b5b92915050565b60006142e582612d98565b9150600082036142f8576142f7613563565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061435f602f83612cf1565b915061436a82614303565b604082019050919050565b6000602082019050818103600083015261438e81614352565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143bc82614395565b6143c681856143a0565b93506143d6818560208601612d02565b6143df81612d2c565b840191505092915050565b60006080820190506143ff6000830187612e2d565b61440c6020830186612e2d565b6144196040830185612ec3565b818103606083015261442b81846143b1565b905095945050505050565b60008151905061444581612c57565b92915050565b60006020828403121561446157614460612c21565b5b600061446f84828501614436565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614503602183612cf1565b915061450e826144a7565b604082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061456f601d83612cf1565b915061457a82614539565b602082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614601602283612cf1565b915061460c826145a5565b604082019050919050565b60006020820190508181036000830152614630816145f4565b905091905056fea264697066735822122081ee56873a2903a3abaa4fcc68cc289871a5cf1349af0e43986db1dae045212a64736f6c6343000812003368747470733a2f2f697066732e696f2f697066732f516d646757796d634c42666969486b7361704c527673336b7a6a654b634a77754839707235667a774e5a694161662f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806379c9cb7b11610118578063b88d4fde116100a0578063da241d061161006f578063da241d061461076c578063e03c69e814610797578063e985e9c5146107c2578063f2fde38b146107ff578063f7cd09c7146108285761020f565b8063b88d4fde146106b0578063c87b56dd146106d9578063cce132d114610716578063d7224ba0146107415761020f565b806396f8f6dd116100e757806396f8f6dd146105fe578063a0712d6814610615578063a22cb46514610631578063a7b8cd4d1461065a578063b875e2ce146106855761020f565b806379c9cb7b146105565780638da5cb5b1461057f57806391b7f5ed146105aa57806395d89b41146105d35761020f565b80633ccfd60b1161019b5780636352211e1161016a5780636352211e1461046f578063676dd563146104ac5780636c0360eb146104d757806370a0823114610502578063715018a61461053f5761020f565b80633ccfd60b146103c957806342842e0e146103e05780634f6ccce71461040957806355f804b3146104465761020f565b806315f47ec0116101e257806315f47ec0146102e257806318160ddd1461030d57806323b872dd146103385780632f745c591461036157806332cb6b0c1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612c83565b610853565b6040516102489190612ccb565b60405180910390f35b34801561025d57600080fd5b5061026661099d565b6040516102739190612d76565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612dce565b610a2f565b6040516102b09190612e3c565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612e83565b610ab4565b005b3480156102ee57600080fd5b506102f7610bcc565b6040516103049190612d76565b60405180910390f35b34801561031957600080fd5b50610322610c09565b60405161032f9190612ed2565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612eed565b610c12565b005b34801561036d57600080fd5b5061038860048036038101906103839190612e83565b610c22565b6040516103959190612ed2565b60405180910390f35b3480156103aa57600080fd5b506103b3610e1e565b6040516103c09190612ed2565b60405180910390f35b3480156103d557600080fd5b506103de610e24565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612eed565b610e6c565b005b34801561041557600080fd5b50610430600480360381019061042b9190612dce565b610e8c565b60405161043d9190612ed2565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613075565b610edf565b005b34801561047b57600080fd5b5061049660048036038101906104919190612dce565b610efa565b6040516104a39190612e3c565b60405180910390f35b3480156104b857600080fd5b506104c1610f10565b6040516104ce9190612ed2565b60405180910390f35b3480156104e357600080fd5b506104ec610f16565b6040516104f99190612d76565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906130be565b610fa4565b6040516105369190612ed2565b60405180910390f35b34801561054b57600080fd5b5061055461108c565b005b34801561056257600080fd5b5061057d60048036038101906105789190612dce565b6110a0565b005b34801561058b57600080fd5b506105946110b2565b6040516105a19190612e3c565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612dce565b6110dc565b005b3480156105df57600080fd5b506105e86110ee565b6040516105f59190612d76565b60405180910390f35b34801561060a57600080fd5b50610613611180565b005b61062f600480360381019061062a9190612dce565b6111b4565b005b34801561063d57600080fd5b5061065860048036038101906106539190613117565b611308565b005b34801561066657600080fd5b5061066f611488565b60405161067c9190612ed2565b60405180910390f35b34801561069157600080fd5b5061069a6114cf565b6040516106a79190612ed2565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906131f8565b6114d5565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190612dce565b611531565b60405161070d9190612d76565b60405180910390f35b34801561072257600080fd5b5061072b6115f7565b6040516107389190612ed2565b60405180910390f35b34801561074d57600080fd5b506107566115fd565b6040516107639190612ed2565b60405180910390f35b34801561077857600080fd5b50610781611603565b60405161078e9190612d76565b60405180910390f35b3480156107a357600080fd5b506107ac611691565b6040516107b99190612d76565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e4919061327b565b61171f565b6040516107f69190612ccb565b60405180910390f35b34801561080b57600080fd5b50610826600480360381019061082191906130be565b6117b3565b005b34801561083457600080fd5b5061083d611836565b60405161084a9190612ccb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610996575061099582611849565b5b9050919050565b6060600180546109ac906132ea565b80601f01602080910402602001604051908101604052809291908181526020018280546109d8906132ea565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b5050505050905090565b6000610a3a826118b3565b610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a709061338d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abf82610efa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b269061341f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4e6118c0565b73ffffffffffffffffffffffffffffffffffffffff161480610b7d5750610b7c81610b776118c0565b61171f565b5b610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb3906134b1565b60405180910390fd5b610bc78383836118c8565b505050565b60606040518060400160405280601a81526020017f546574726174696f6e2e20436f6d696e6720736f6f6e2e2e2e2e000000000000815250905090565b60008054905090565b610c1d83838361197a565b505050565b6000610c2d83610fa4565b8210610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613543565b60405180910390fd5b6000610c78610c09565b905060008060005b83811015610ddc576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc857868403610db9578195505050505050610e18565b8380610dc490613592565b9450505b508080610dd490613592565b915050610c80565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061364c565b60405180910390fd5b92915050565b600a5481565b610e2c611f31565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e6a57600080fd5b565b610e87838383604051806020016040528060008152506114d5565b505050565b6000610e96610c09565b8210610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece906136de565b60405180910390fd5b819050919050565b610ee7611f31565b8060109081610ef691906138aa565b5050565b6000610f0582611faf565b600001519050919050565b60095481565b60108054610f23906132ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f906132ea565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b906139ee565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611094611f31565b61109e60006121b2565b565b6110a8611f31565b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110e4611f31565b8060098190555050565b6060600280546110fd906132ea565b80601f0160208091040260200160405190810160405280929190818152602001828054611129906132ea565b80156111765780601f1061114b57610100808354040283529160200191611176565b820191906000526020600020905b81548152906001019060200180831161115957829003601f168201915b5050505050905090565b611188611f31565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff16611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90613a5a565b60405180910390fd5b6000811180156112155750600b548111155b611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90613aec565b60405180910390fd5b600a5481611260610c09565b61126a9190613b0c565b11156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613b8c565b60405180910390fd5b806009546112b99190613bac565b3410156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613c60565b60405180910390fd5b6113053382612278565b50565b6113106118c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613ccc565b60405180910390fd5b806006600061138a6118c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114376118c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147c9190612ccb565b60405180910390a35050565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600c5481565b6114e084848461197a565b6114ec84848484612296565b61152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290613d5e565b60405180910390fd5b50505050565b606061153c826118b3565b61157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290613df0565b60405180910390fd5b600061158561241d565b905060008151116115a557604051806020016040528060008152506115ef565b806115af846124af565b6040516020016115bf9190613e72565b6040516020818303038152906040526040516020016115df929190613e98565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600e8054611610906132ea565b80601f016020809104026020016040519081016040528092919081815260200182805461163c906132ea565b80156116895780601f1061165e57610100808354040283529160200191611689565b820191906000526020600020905b81548152906001019060200180831161166c57829003601f168201915b505050505081565b600d805461169e906132ea565b80601f01602080910402602001604051908101604052809291908181526020018280546116ca906132ea565b80156117175780601f106116ec57610100808354040283529160200191611717565b820191906000526020600020905b8154815290600101906020018083116116fa57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117bb611f31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613f2e565b60405180910390fd5b611833816121b2565b50565b600f60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061198582611faf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119ac6118c0565b73ffffffffffffffffffffffffffffffffffffffff161480611a0857506119d16118c0565b73ffffffffffffffffffffffffffffffffffffffff166119f084610a2f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a245750611a238260000151611a1e6118c0565b61171f565b5b905080611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90613fc0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90614052565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e906140e4565b60405180910390fd5b611b54858585600161257d565b611b6460008484600001516118c8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611bd29190614120565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c769190614164565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d7c9190613b0c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611ec157611df1816118b3565b15611ec0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f298686866001612583565b505050505050565b611f396118c0565b73ffffffffffffffffffffffffffffffffffffffff16611f576110b2565b73ffffffffffffffffffffffffffffffffffffffff1614611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa4906141f4565b60405180910390fd5b565b611fb7612bdd565b611fc0826118b3565b611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614286565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106120635760017f000000000000000000000000000000000000000000000000000000000000000a8461205691906142a6565b6120609190613b0c565b90505b60008390505b818110612171576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461215d578093505050506121ad565b508080612169906142da565b915050612069565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490614375565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612292828260405180602001604052806000815250612589565b5050565b60006122b78473ffffffffffffffffffffffffffffffffffffffff16612a67565b15612410578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e06118c0565b8786866040518563ffffffff1660e01b815260040161230294939291906143ea565b6020604051808303816000875af192505050801561233e57506040513d601f19601f8201168201806040525081019061233b919061444b565b60015b6123c0573d806000811461236e576040519150601f19603f3d011682016040523d82523d6000602084013e612373565b606091505b5060008151036123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90613d5e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612415565b600190505b949350505050565b60606010805461242c906132ea565b80601f0160208091040260200160405190810160405280929190818152602001828054612458906132ea565b80156124a55780601f1061247a576101008083540402835291602001916124a5565b820191906000526020600020905b81548152906001019060200180831161248857829003601f168201915b5050505050905090565b6060600060016124be84612a8a565b01905060008167ffffffffffffffff8111156124dd576124dc612f4a565b5b6040519080825280601f01601f19166020018201604052801561250f5781602001600182028036833780820191505090505b509050600082602001820190505b600115612572578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256657612565614478565b5b0494506000850361251d575b819350505050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f590614519565b60405180910390fd5b612607816118b3565b15612647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263e90614585565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190614617565b60405180910390fd5b6126b7600085838661257d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516127b49190614164565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127db9190614164565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612a4a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129ea6000888488612296565b612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090613d5e565b60405180910390fd5b8180612a3490613592565b9250508080612a4290613592565b915050612979565b5080600081905550612a5f6000878588612583565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612ae8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612ade57612add614478565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612b25576d04ee2d6d415b85acef81000000008381612b1b57612b1a614478565b5b0492506020810190505b662386f26fc100008310612b5457662386f26fc100008381612b4a57612b49614478565b5b0492506010810190505b6305f5e1008310612b7d576305f5e1008381612b7357612b72614478565b5b0492506008810190505b6127108310612ba2576127108381612b9857612b97614478565b5b0492506004810190505b60648310612bc55760648381612bbb57612bba614478565b5b0492506002810190505b600a8310612bd4576001810190505b80915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c6081612c2b565b8114612c6b57600080fd5b50565b600081359050612c7d81612c57565b92915050565b600060208284031215612c9957612c98612c21565b5b6000612ca784828501612c6e565b91505092915050565b60008115159050919050565b612cc581612cb0565b82525050565b6000602082019050612ce06000830184612cbc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d20578082015181840152602081019050612d05565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d4882612ce6565b612d528185612cf1565b9350612d62818560208601612d02565b612d6b81612d2c565b840191505092915050565b60006020820190508181036000830152612d908184612d3d565b905092915050565b6000819050919050565b612dab81612d98565b8114612db657600080fd5b50565b600081359050612dc881612da2565b92915050565b600060208284031215612de457612de3612c21565b5b6000612df284828501612db9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e2682612dfb565b9050919050565b612e3681612e1b565b82525050565b6000602082019050612e516000830184612e2d565b92915050565b612e6081612e1b565b8114612e6b57600080fd5b50565b600081359050612e7d81612e57565b92915050565b60008060408385031215612e9a57612e99612c21565b5b6000612ea885828601612e6e565b9250506020612eb985828601612db9565b9150509250929050565b612ecc81612d98565b82525050565b6000602082019050612ee76000830184612ec3565b92915050565b600080600060608486031215612f0657612f05612c21565b5b6000612f1486828701612e6e565b9350506020612f2586828701612e6e565b9250506040612f3686828701612db9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f8282612d2c565b810181811067ffffffffffffffff82111715612fa157612fa0612f4a565b5b80604052505050565b6000612fb4612c17565b9050612fc08282612f79565b919050565b600067ffffffffffffffff821115612fe057612fdf612f4a565b5b612fe982612d2c565b9050602081019050919050565b82818337600083830152505050565b600061301861301384612fc5565b612faa565b90508281526020810184848401111561303457613033612f45565b5b61303f848285612ff6565b509392505050565b600082601f83011261305c5761305b612f40565b5b813561306c848260208601613005565b91505092915050565b60006020828403121561308b5761308a612c21565b5b600082013567ffffffffffffffff8111156130a9576130a8612c26565b5b6130b584828501613047565b91505092915050565b6000602082840312156130d4576130d3612c21565b5b60006130e284828501612e6e565b91505092915050565b6130f481612cb0565b81146130ff57600080fd5b50565b600081359050613111816130eb565b92915050565b6000806040838503121561312e5761312d612c21565b5b600061313c85828601612e6e565b925050602061314d85828601613102565b9150509250929050565b600067ffffffffffffffff82111561317257613171612f4a565b5b61317b82612d2c565b9050602081019050919050565b600061319b61319684613157565b612faa565b9050828152602081018484840111156131b7576131b6612f45565b5b6131c2848285612ff6565b509392505050565b600082601f8301126131df576131de612f40565b5b81356131ef848260208601613188565b91505092915050565b6000806000806080858703121561321257613211612c21565b5b600061322087828801612e6e565b945050602061323187828801612e6e565b935050604061324287828801612db9565b925050606085013567ffffffffffffffff81111561326357613262612c26565b5b61326f878288016131ca565b91505092959194509250565b6000806040838503121561329257613291612c21565b5b60006132a085828601612e6e565b92505060206132b185828601612e6e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330257607f821691505b602082108103613315576133146132bb565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613377602d83612cf1565b91506133828261331b565b604082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613409602283612cf1565b9150613414826133ad565b604082019050919050565b60006020820190508181036000830152613438816133fc565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061349b603983612cf1565b91506134a68261343f565b604082019050919050565b600060208201905081810360008301526134ca8161348e565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061352d602283612cf1565b9150613538826134d1565b604082019050919050565b6000602082019050818103600083015261355c81613520565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061359d82612d98565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135cf576135ce613563565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613636602e83612cf1565b9150613641826135da565b604082019050919050565b6000602082019050818103600083015261366581613629565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006136c8602383612cf1565b91506136d38261366c565b604082019050919050565b600060208201905081810360008301526136f7816136bb565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613723565b61376a8683613723565b95508019841693508086168417925050509392505050565b6000819050919050565b60006137a76137a261379d84612d98565b613782565b612d98565b9050919050565b6000819050919050565b6137c18361378c565b6137d56137cd826137ae565b848454613730565b825550505050565b600090565b6137ea6137dd565b6137f58184846137b8565b505050565b5b818110156138195761380e6000826137e2565b6001810190506137fb565b5050565b601f82111561385e5761382f816136fe565b61383884613713565b81016020851015613847578190505b61385b61385385613713565b8301826137fa565b50505b505050565b600082821c905092915050565b600061388160001984600802613863565b1980831691505092915050565b600061389a8383613870565b9150826002028217905092915050565b6138b382612ce6565b67ffffffffffffffff8111156138cc576138cb612f4a565b5b6138d682546132ea565b6138e182828561381d565b600060209050601f8311600181146139145760008415613902578287015190505b61390c858261388e565b865550613974565b601f198416613922866136fe565b60005b8281101561394a57848901518255600182019150602085019450602081019050613925565b868310156139675784890151613963601f891682613870565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006139d8602b83612cf1565b91506139e38261397c565b604082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b6000613a44601083612cf1565b9150613a4f82613a0e565b602082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ad6602183612cf1565b9150613ae182613a7a565b604082019050919050565b60006020820190508181036000830152613b0581613ac9565b9050919050565b6000613b1782612d98565b9150613b2283612d98565b9250828201905080821115613b3a57613b39613563565b5b92915050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b6000613b76600883612cf1565b9150613b8182613b40565b602082019050919050565b60006020820190508181036000830152613ba581613b69565b9050919050565b6000613bb782612d98565b9150613bc283612d98565b9250828202613bd081612d98565b91508282048414831517613be757613be6613563565b5b5092915050565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c4a602283612cf1565b9150613c5582613bee565b604082019050919050565b60006020820190508181036000830152613c7981613c3d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613cb6601a83612cf1565b9150613cc182613c80565b602082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613d48603383612cf1565b9150613d5382613cec565b604082019050919050565b60006020820190508181036000830152613d7781613d3b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613dda602f83612cf1565b9150613de582613d7e565b604082019050919050565b60006020820190508181036000830152613e0981613dcd565b9050919050565b600081905092915050565b6000613e2682612ce6565b613e308185613e10565b9350613e40818560208601612d02565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b6000613e7e8284613e1b565b9150613e8982613e4c565b60058201915081905092915050565b6000613ea48285613e1b565b9150613eb08284613e1b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f18602683612cf1565b9150613f2382613ebc565b604082019050919050565b60006020820190508181036000830152613f4781613f0b565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613faa603283612cf1565b9150613fb582613f4e565b604082019050919050565b60006020820190508181036000830152613fd981613f9d565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061403c602683612cf1565b915061404782613fe0565b604082019050919050565b6000602082019050818103600083015261406b8161402f565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006140ce602583612cf1565b91506140d982614072565b604082019050919050565b600060208201905081810360008301526140fd816140c1565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061412b82614104565b915061413683614104565b925082820390506fffffffffffffffffffffffffffffffff81111561415e5761415d613563565b5b92915050565b600061416f82614104565b915061417a83614104565b925082820190506fffffffffffffffffffffffffffffffff8111156141a2576141a1613563565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141de602083612cf1565b91506141e9826141a8565b602082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614270602a83612cf1565b915061427b82614214565b604082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b60006142b182612d98565b91506142bc83612d98565b92508282039050818111156142d4576142d3613563565b5b92915050565b60006142e582612d98565b9150600082036142f8576142f7613563565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061435f602f83612cf1565b915061436a82614303565b604082019050919050565b6000602082019050818103600083015261438e81614352565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143bc82614395565b6143c681856143a0565b93506143d6818560208601612d02565b6143df81612d2c565b840191505092915050565b60006080820190506143ff6000830187612e2d565b61440c6020830186612e2d565b6144196040830185612ec3565b818103606083015261442b81846143b1565b905095945050505050565b60008151905061444581612c57565b92915050565b60006020828403121561446157614460612c21565b5b600061446f84828501614436565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614503602183612cf1565b915061450e826144a7565b604082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061456f601d83612cf1565b915061457a82614539565b602082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614601602283612cf1565b915061460c826145a5565b604082019050919050565b60006020820190508181036000830152614630816145f4565b905091905056fea264697066735822122081ee56873a2903a3abaa4fcc68cc289871a5cf1349af0e43986db1dae045212a64736f6c63430008120033

Deployed Bytecode Sourcemap

57152:1960:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44804:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46530:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48079:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47642:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58996:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43368:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48929:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43996:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57246:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58876:112;;;;;;;;;;;;;:::i;:::-;;49134:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43531:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58317:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46353:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57203:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57494:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45230:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40840:103;;;;;;;;;;;;;:::i;:::-;;58527:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40192:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58427:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46685:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58222:87;;;;;;;;;;;;;:::i;:::-;;57729:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48347:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58748:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57320:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49354:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46846:418;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57284:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53709:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57413:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57365:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48684:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41098:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57454:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44804:370;44931:4;44976:25;44961:40;;;:11;:40;;;;:99;;;;45027:33;45012:48;;;:11;:48;;;;44961:99;:160;;;;45086:35;45071:50;;;:11;:50;;;;44961:160;:207;;;;45132:36;45156:11;45132:23;:36::i;:::-;44961:207;44947:221;;44804:370;;;:::o;46530:94::-;46584:13;46613:5;46606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46530:94;:::o;48079:204::-;48147:7;48171:16;48179:7;48171;:16::i;:::-;48163:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;48253:15;:24;48269:7;48253:24;;;;;;;;;;;;;;;;;;;;;48246:31;;48079:204;;;:::o;47642:379::-;47711:13;47727:24;47743:7;47727:15;:24::i;:::-;47711:40;;47772:5;47766:11;;:2;:11;;;47758:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47857:5;47841:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;47866:37;47883:5;47890:12;:10;:12::i;:::-;47866:16;:37::i;:::-;47841:62;47825:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;47987:28;47996:2;48000:7;48009:5;47987:8;:28::i;:::-;47704:317;47642:379;;:::o;58996:110::-;59037:13;59063:35;;;;;;;;;;;;;;;;;;;58996:110;:::o;43368:94::-;43421:7;43444:12;;43437:19;;43368:94;:::o;48929:142::-;49037:28;49047:4;49053:2;49057:7;49037:9;:28::i;:::-;48929:142;;;:::o;43996:744::-;44105:7;44140:16;44150:5;44140:9;:16::i;:::-;44132:5;:24;44124:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44202:22;44227:13;:11;:13::i;:::-;44202:38;;44247:19;44277:25;44327:9;44322:350;44346:14;44342:1;:18;44322:350;;;44376:31;44410:11;:14;44422:1;44410:14;;;;;;;;;;;44376:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44463:1;44437:28;;:9;:14;;;:28;;;44433:89;;44498:9;:14;;;44478:34;;44433:89;44555:5;44534:26;;:17;:26;;;44530:135;;44592:5;44577:11;:20;44573:59;;44619:1;44612:8;;;;;;;;;44573:59;44642:13;;;;;:::i;:::-;;;;44530:135;44367:305;44362:3;;;;;:::i;:::-;;;;44322:350;;;;44678:56;;;;;;;;;;:::i;:::-;;;;;;;;43996:744;;;;;:::o;57246:31::-;;;;:::o;58876:112::-;40078:13;:11;:13::i;:::-;58940:10:::1;58932:24;;:47;58957:21;58932:47;;;;;;;;;;;;;;;;;;;;;;;58924:56;;;::::0;::::1;;58876:112::o:0;49134:157::-;49246:39;49263:4;49269:2;49273:7;49246:39;;;;;;;;;;;;:16;:39::i;:::-;49134:157;;;:::o;43531:177::-;43598:7;43630:13;:11;:13::i;:::-;43622:5;:21;43614:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43697:5;43690:12;;43531:177;;;:::o;58317:102::-;40078:13;:11;:13::i;:::-;58401:10:::1;58391:7;:20;;;;;;:::i;:::-;;58317:102:::0;:::o;46353:118::-;46417:7;46440:20;46452:7;46440:11;:20::i;:::-;:25;;;46433:32;;46353:118;;;:::o;57203:36::-;;;;:::o;57494:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45230:211::-;45294:7;45335:1;45318:19;;:5;:19;;;45310:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;45407:12;:19;45420:5;45407:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;45399:36;;45392:43;;45230:211;;;:::o;40840:103::-;40078:13;:11;:13::i;:::-;40905:30:::1;40932:1;40905:18;:30::i;:::-;40840:103::o:0;58527:91::-;40078:13;:11;:13::i;:::-;58604:6:::1;58592:9;:18;;;;58527:91:::0;:::o;40192:87::-;40238:7;40265:6;;;;;;;;;;;40258:13;;40192:87;:::o;58427:92::-;40078:13;:11;:13::i;:::-;58503:8:::1;58491:9;:20;;;;58427:92:::0;:::o;46685:98::-;46741:13;46770:7;46763:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46685:98;:::o;58222:87::-;40078:13;:11;:13::i;:::-;58290:11:::1;;;;;;;;;;;58289:12;58275:11;;:26;;;;;;;;;;;;;;;;;;58222:87::o:0;57729:485::-;57796:11;;;;;;;;;;;57788:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;57873:1;57861:9;:13;:39;;;;;57891:9;;57878;:22;;57861:39;57839:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;58009:10;;57996:9;57980:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;57972:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58090:9;58078;;:21;;;;:::i;:::-;58065:9;:34;;58043:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;58174:32;58184:10;58196:9;58174;:32::i;:::-;57729:485;:::o;48347:274::-;48450:12;:10;:12::i;:::-;48438:24;;:8;:24;;;48430:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48547:8;48502:18;:32;48521:12;:10;:12::i;:::-;48502:32;;;;;;;;;;;;;;;:42;48535:8;48502:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;48596:8;48567:48;;48582:12;:10;:12::i;:::-;48567:48;;;48606:8;48567:48;;;;;;:::i;:::-;;;;;;;;48347:274;;:::o;58748:120::-;58799:7;58826:22;:34;58849:10;58826:34;;;;;;;;;;;;;;;;58819:41;;58748:120;:::o;57320:38::-;;;;:::o;49354:311::-;49491:28;49501:4;49507:2;49511:7;49491:9;:28::i;:::-;49542:48;49565:4;49571:2;49575:7;49584:5;49542:22;:48::i;:::-;49526:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;49354:311;;;;:::o;46846:418::-;46944:13;46985:16;46993:7;46985;:16::i;:::-;46969:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;47075:21;47099:10;:8;:10::i;:::-;47075:34;;47154:1;47136:7;47130:21;:25;:128;;;;;;;;;;;;;;;;;47191:7;47214:18;:7;:16;:18::i;:::-;47200:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;47174:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47130:128;47116:142;;;46846:418;;;:::o;57284:29::-;;;;:::o;53709:43::-;;;;:::o;57413:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57365:41::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48684:186::-;48806:4;48829:18;:25;48848:5;48829:25;;;;;;;;;;;;;;;:35;48855:8;48829:35;;;;;;;;;;;;;;;;;;;;;;;;;48822:42;;48684:186;;;;:::o;41098:201::-;40078:13;:11;:13::i;:::-;41207:1:::1;41187:22;;:8;:22;;::::0;41179:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41263:28;41282:8;41263:18;:28::i;:::-;41098:201:::0;:::o;57454:31::-;;;;;;;;;;;;;:::o;6888:157::-;6973:4;7012:25;6997:40;;;:11;:40;;;;6990:47;;6888:157;;;:::o;49904:105::-;49961:4;49991:12;;49981:7;:22;49974:29;;49904:105;;;:::o;38743:98::-;38796:7;38823:10;38816:17;;38743:98;:::o;53531:172::-;53655:2;53628:15;:24;53644:7;53628:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53689:7;53685:2;53669:28;;53678:5;53669:28;;;;;;;;;;;;53531:172;;;:::o;51896:1529::-;51993:35;52031:20;52043:7;52031:11;:20::i;:::-;51993:58;;52060:22;52102:13;:18;;;52086:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;52155:12;:10;:12::i;:::-;52131:36;;:20;52143:7;52131:11;:20::i;:::-;:36;;;52086:81;:142;;;;52178:50;52195:13;:18;;;52215:12;:10;:12::i;:::-;52178:16;:50::i;:::-;52086:142;52060:169;;52254:17;52238:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;52386:4;52364:26;;:13;:18;;;:26;;;52348:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52475:1;52461:16;;:2;:16;;;52453:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;52528:43;52550:4;52556:2;52560:7;52569:1;52528:21;:43::i;:::-;52628:49;52645:1;52649:7;52658:13;:18;;;52628:8;:49::i;:::-;52716:1;52686:12;:18;52699:4;52686:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52752:1;52724:12;:16;52737:2;52724:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52783:43;;;;;;;;52798:2;52783:43;;;;;;52809:15;52783:43;;;;;52760:11;:20;52772:7;52760:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53054:19;53086:1;53076:7;:11;;;;:::i;:::-;53054:33;;53139:1;53098:43;;:11;:24;53110:11;53098:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;53094:236;;53156:20;53164:11;53156:7;:20::i;:::-;53152:171;;;53216:97;;;;;;;;53243:13;:18;;;53216:97;;;;;;53274:13;:28;;;53216:97;;;;;53189:11;:24;53201:11;53189:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53152:171;53094:236;53362:7;53358:2;53343:27;;53352:4;53343:27;;;;;;;;;;;;53377:42;53398:4;53404:2;53408:7;53417:1;53377:20;:42::i;:::-;51986:1439;;;51896:1529;;;:::o;40357:132::-;40432:12;:10;:12::i;:::-;40421:23;;:7;:5;:7::i;:::-;:23;;;40413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40357:132::o;45693:606::-;45769:21;;:::i;:::-;45810:16;45818:7;45810;:16::i;:::-;45802:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45882:26;45930:12;45919:7;:23;45915:93;;45999:1;45984:12;45974:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;45953:47;;45915:93;46021:12;46036:7;46021:22;;46016:212;46053:18;46045:4;:26;46016:212;;46090:31;46124:11;:17;46136:4;46124:17;;;;;;;;;;;46090:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46180:1;46154:28;;:9;:14;;;:28;;;46150:71;;46202:9;46195:16;;;;;;;46150:71;46081:147;46073:6;;;;;:::i;:::-;;;;46016:212;;;;46236:57;;;;;;;;;;:::i;:::-;;;;;;;;45693:606;;;;:::o;41459:191::-;41533:16;41552:6;;;;;;;;;;;41533:25;;41578:8;41569:6;;:17;;;;;;;;;;;;;;;;;;41633:8;41602:40;;41623:8;41602:40;;;;;;;;;;;;41522:128;41459:191;:::o;50015:98::-;50080:27;50090:2;50094:8;50080:27;;;;;;;;;;;;:9;:27::i;:::-;50015:98;;:::o;55242:690::-;55379:4;55396:15;:2;:13;;;:15::i;:::-;55392:535;;;55451:2;55435:36;;;55472:12;:10;:12::i;:::-;55486:4;55492:7;55501:5;55435:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55422:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55683:1;55666:6;:13;:18;55662:215;;55699:61;;;;;;;;;;:::i;:::-;;;;;;;;55662:215;55845:6;55839:13;55830:6;55826:2;55822:15;55815:38;55422:464;55567:45;;;55557:55;;;:6;:55;;;;55550:62;;;;;55392:535;55915:4;55908:11;;55242:690;;;;;;;:::o;58628:108::-;58688:13;58721:7;58714:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58628:108;:::o;20357:716::-;20413:13;20464:14;20501:1;20481:17;20492:5;20481:10;:17::i;:::-;:21;20464:38;;20517:20;20551:6;20540:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20517:41;;20573:11;20702:6;20698:2;20694:15;20686:6;20682:28;20675:35;;20739:288;20746:4;20739:288;;;20771:5;;;;;;;;20913:8;20908:2;20901:5;20897:14;20892:30;20887:3;20879:44;20969:2;20960:11;;;;;;:::i;:::-;;;;;21003:1;20994:5;:10;20739:288;20990:21;20739:288;21048:6;21041:13;;;;;20357:716;;;:::o;56394:141::-;;;;;:::o;56921:140::-;;;;;:::o;50368:1296::-;50473:20;50496:12;;50473:35;;50537:1;50523:16;;:2;:16;;;50515:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50714:21;50722:12;50714:7;:21::i;:::-;50713:22;50705:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50796:12;50784:8;:24;;50776:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50880:61;50910:1;50914:2;50918:12;50932:8;50880:21;:61::i;:::-;50950:30;50983:12;:16;50996:2;50983:16;;;;;;;;;;;;;;;50950:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51025:119;;;;;;;;51075:8;51045:11;:19;;;:39;;;;:::i;:::-;51025:119;;;;;;51128:8;51093:11;:24;;;:44;;;;:::i;:::-;51025:119;;;;;51006:12;:16;51019:2;51006:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51179:43;;;;;;;;51194:2;51179:43;;;;;;51205:15;51179:43;;;;;51151:11;:25;51163:12;51151:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51231:20;51254:12;51231:35;;51280:9;51275:281;51299:8;51295:1;:12;51275:281;;;51353:12;51349:2;51328:38;;51345:1;51328:38;;;;;;;;;;;;51393:59;51424:1;51428:2;51432:12;51446:5;51393:22;:59::i;:::-;51375:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;51534:14;;;;;:::i;:::-;;;;51309:3;;;;;:::i;:::-;;;;51275:281;;;;51579:12;51564;:27;;;;51598:60;51627:1;51631:2;51635:12;51649:8;51598:20;:60::i;:::-;50466:1198;;;50368:1296;;;:::o;23484:326::-;23544:4;23801:1;23779:7;:19;;;:23;23772:30;;23484:326;;;:::o;17223:922::-;17276:7;17296:14;17313:1;17296:18;;17363:6;17354:5;:15;17350:102;;17399:6;17390:15;;;;;;:::i;:::-;;;;;17434:2;17424:12;;;;17350:102;17479:6;17470:5;:15;17466:102;;17515:6;17506:15;;;;;;:::i;:::-;;;;;17550:2;17540:12;;;;17466:102;17595:6;17586:5;:15;17582:102;;17631:6;17622:15;;;;;;:::i;:::-;;;;;17666:2;17656:12;;;;17582:102;17711:5;17702;:14;17698:99;;17746:5;17737:14;;;;;;:::i;:::-;;;;;17780:1;17770:11;;;;17698:99;17824:5;17815;:14;17811:99;;17859:5;17850:14;;;;;;:::i;:::-;;;;;17893:1;17883:11;;;;17811:99;17937:5;17928;:14;17924:99;;17972:5;17963:14;;;;;;:::i;:::-;;;;;18006:1;17996:11;;;;17924:99;18050:5;18041;:14;18037:66;;18086:1;18076:11;;;;18037:66;18131:6;18124:13;;;17223:922;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:232::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:15;12807:2;12799:6;12795:15;12788:40;12603:232;:::o;12841:366::-;12983:3;13004:67;13068:2;13063:3;13004:67;:::i;:::-;12997:74;;13080:93;13169:3;13080:93;:::i;:::-;13198:2;13193:3;13189:12;13182:19;;12841:366;;;:::o;13213:419::-;13379:4;13417:2;13406:9;13402:18;13394:26;;13466:9;13460:4;13456:20;13452:1;13441:9;13437:17;13430:47;13494:131;13620:4;13494:131;:::i;:::-;13486:139;;13213:419;;;:::o;13638:221::-;13778:34;13774:1;13766:6;13762:14;13755:58;13847:4;13842:2;13834:6;13830:15;13823:29;13638:221;:::o;13865:366::-;14007:3;14028:67;14092:2;14087:3;14028:67;:::i;:::-;14021:74;;14104:93;14193:3;14104:93;:::i;:::-;14222:2;14217:3;14213:12;14206:19;;13865:366;;;:::o;14237:419::-;14403:4;14441:2;14430:9;14426:18;14418:26;;14490:9;14484:4;14480:20;14476:1;14465:9;14461:17;14454:47;14518:131;14644:4;14518:131;:::i;:::-;14510:139;;14237:419;;;:::o;14662:244::-;14802:34;14798:1;14790:6;14786:14;14779:58;14871:27;14866:2;14858:6;14854:15;14847:52;14662:244;:::o;14912:366::-;15054:3;15075:67;15139:2;15134:3;15075:67;:::i;:::-;15068:74;;15151:93;15240:3;15151:93;:::i;:::-;15269:2;15264:3;15260:12;15253:19;;14912:366;;;:::o;15284:419::-;15450:4;15488:2;15477:9;15473:18;15465:26;;15537:9;15531:4;15527:20;15523:1;15512:9;15508:17;15501:47;15565:131;15691:4;15565:131;:::i;:::-;15557:139;;15284:419;;;:::o;15709:221::-;15849:34;15845:1;15837:6;15833:14;15826:58;15918:4;15913:2;15905:6;15901:15;15894:29;15709:221;:::o;15936:366::-;16078:3;16099:67;16163:2;16158:3;16099:67;:::i;:::-;16092:74;;16175:93;16264:3;16175:93;:::i;:::-;16293:2;16288:3;16284:12;16277:19;;15936:366;;;:::o;16308:419::-;16474:4;16512:2;16501:9;16497:18;16489:26;;16561:9;16555:4;16551:20;16547:1;16536:9;16532:17;16525:47;16589:131;16715:4;16589:131;:::i;:::-;16581:139;;16308:419;;;:::o;16733:180::-;16781:77;16778:1;16771:88;16878:4;16875:1;16868:15;16902:4;16899:1;16892:15;16919:233;16958:3;16981:24;16999:5;16981:24;:::i;:::-;16972:33;;17027:66;17020:5;17017:77;17014:103;;17097:18;;:::i;:::-;17014:103;17144:1;17137:5;17133:13;17126:20;;16919:233;;;:::o;17158:::-;17298:34;17294:1;17286:6;17282:14;17275:58;17367:16;17362:2;17354:6;17350:15;17343:41;17158:233;:::o;17397:366::-;17539:3;17560:67;17624:2;17619:3;17560:67;:::i;:::-;17553:74;;17636:93;17725:3;17636:93;:::i;:::-;17754:2;17749:3;17745:12;17738:19;;17397:366;;;:::o;17769:419::-;17935:4;17973:2;17962:9;17958:18;17950:26;;18022:9;18016:4;18012:20;18008:1;17997:9;17993:17;17986:47;18050:131;18176:4;18050:131;:::i;:::-;18042:139;;17769:419;;;:::o;18194:222::-;18334:34;18330:1;18322:6;18318:14;18311:58;18403:5;18398:2;18390:6;18386:15;18379:30;18194:222;:::o;18422:366::-;18564:3;18585:67;18649:2;18644:3;18585:67;:::i;:::-;18578:74;;18661:93;18750:3;18661:93;:::i;:::-;18779:2;18774:3;18770:12;18763:19;;18422:366;;;:::o;18794:419::-;18960:4;18998:2;18987:9;18983:18;18975:26;;19047:9;19041:4;19037:20;19033:1;19022:9;19018:17;19011:47;19075:131;19201:4;19075:131;:::i;:::-;19067:139;;18794:419;;;:::o;19219:141::-;19268:4;19291:3;19283:11;;19314:3;19311:1;19304:14;19348:4;19345:1;19335:18;19327:26;;19219:141;;;:::o;19366:93::-;19403:6;19450:2;19445;19438:5;19434:14;19430:23;19420:33;;19366:93;;;:::o;19465:107::-;19509:8;19559:5;19553:4;19549:16;19528:37;;19465:107;;;;:::o;19578:393::-;19647:6;19697:1;19685:10;19681:18;19720:97;19750:66;19739:9;19720:97;:::i;:::-;19838:39;19868:8;19857:9;19838:39;:::i;:::-;19826:51;;19910:4;19906:9;19899:5;19895:21;19886:30;;19959:4;19949:8;19945:19;19938:5;19935:30;19925:40;;19654:317;;19578:393;;;;;:::o;19977:60::-;20005:3;20026:5;20019:12;;19977:60;;;:::o;20043:142::-;20093:9;20126:53;20144:34;20153:24;20171:5;20153:24;:::i;:::-;20144:34;:::i;:::-;20126:53;:::i;:::-;20113:66;;20043:142;;;:::o;20191:75::-;20234:3;20255:5;20248:12;;20191:75;;;:::o;20272:269::-;20382:39;20413:7;20382:39;:::i;:::-;20443:91;20492:41;20516:16;20492:41;:::i;:::-;20484:6;20477:4;20471:11;20443:91;:::i;:::-;20437:4;20430:105;20348:193;20272:269;;;:::o;20547:73::-;20592:3;20547:73;:::o;20626:189::-;20703:32;;:::i;:::-;20744:65;20802:6;20794;20788:4;20744:65;:::i;:::-;20679:136;20626:189;;:::o;20821:186::-;20881:120;20898:3;20891:5;20888:14;20881:120;;;20952:39;20989:1;20982:5;20952:39;:::i;:::-;20925:1;20918:5;20914:13;20905:22;;20881:120;;;20821:186;;:::o;21013:543::-;21114:2;21109:3;21106:11;21103:446;;;21148:38;21180:5;21148:38;:::i;:::-;21232:29;21250:10;21232:29;:::i;:::-;21222:8;21218:44;21415:2;21403:10;21400:18;21397:49;;;21436:8;21421:23;;21397:49;21459:80;21515:22;21533:3;21515:22;:::i;:::-;21505:8;21501:37;21488:11;21459:80;:::i;:::-;21118:431;;21103:446;21013:543;;;:::o;21562:117::-;21616:8;21666:5;21660:4;21656:16;21635:37;;21562:117;;;;:::o;21685:169::-;21729:6;21762:51;21810:1;21806:6;21798:5;21795:1;21791:13;21762:51;:::i;:::-;21758:56;21843:4;21837;21833:15;21823:25;;21736:118;21685:169;;;;:::o;21859:295::-;21935:4;22081:29;22106:3;22100:4;22081:29;:::i;:::-;22073:37;;22143:3;22140:1;22136:11;22130:4;22127:21;22119:29;;21859:295;;;;:::o;22159:1395::-;22276:37;22309:3;22276:37;:::i;:::-;22378:18;22370:6;22367:30;22364:56;;;22400:18;;:::i;:::-;22364:56;22444:38;22476:4;22470:11;22444:38;:::i;:::-;22529:67;22589:6;22581;22575:4;22529:67;:::i;:::-;22623:1;22647:4;22634:17;;22679:2;22671:6;22668:14;22696:1;22691:618;;;;23353:1;23370:6;23367:77;;;23419:9;23414:3;23410:19;23404:26;23395:35;;23367:77;23470:67;23530:6;23523:5;23470:67;:::i;:::-;23464:4;23457:81;23326:222;22661:887;;22691:618;22743:4;22739:9;22731:6;22727:22;22777:37;22809:4;22777:37;:::i;:::-;22836:1;22850:208;22864:7;22861:1;22858:14;22850:208;;;22943:9;22938:3;22934:19;22928:26;22920:6;22913:42;22994:1;22986:6;22982:14;22972:24;;23041:2;23030:9;23026:18;23013:31;;22887:4;22884:1;22880:12;22875:17;;22850:208;;;23086:6;23077:7;23074:19;23071:179;;;23144:9;23139:3;23135:19;23129:26;23187:48;23229:4;23221:6;23217:17;23206:9;23187:48;:::i;:::-;23179:6;23172:64;23094:156;23071:179;23296:1;23292;23284:6;23280:14;23276:22;23270:4;23263:36;22698:611;;;22661:887;;22251:1303;;;22159:1395;;:::o;23560:230::-;23700:34;23696:1;23688:6;23684:14;23677:58;23769:13;23764:2;23756:6;23752:15;23745:38;23560:230;:::o;23796:366::-;23938:3;23959:67;24023:2;24018:3;23959:67;:::i;:::-;23952:74;;24035:93;24124:3;24035:93;:::i;:::-;24153:2;24148:3;24144:12;24137:19;;23796:366;;;:::o;24168:419::-;24334:4;24372:2;24361:9;24357:18;24349:26;;24421:9;24415:4;24411:20;24407:1;24396:9;24392:17;24385:47;24449:131;24575:4;24449:131;:::i;:::-;24441:139;;24168:419;;;:::o;24593:166::-;24733:18;24729:1;24721:6;24717:14;24710:42;24593:166;:::o;24765:366::-;24907:3;24928:67;24992:2;24987:3;24928:67;:::i;:::-;24921:74;;25004:93;25093:3;25004:93;:::i;:::-;25122:2;25117:3;25113:12;25106:19;;24765:366;;;:::o;25137:419::-;25303:4;25341:2;25330:9;25326:18;25318:26;;25390:9;25384:4;25380:20;25376:1;25365:9;25361:17;25354:47;25418:131;25544:4;25418:131;:::i;:::-;25410:139;;25137:419;;;:::o;25562:220::-;25702:34;25698:1;25690:6;25686:14;25679:58;25771:3;25766:2;25758:6;25754:15;25747:28;25562:220;:::o;25788:366::-;25930:3;25951:67;26015:2;26010:3;25951:67;:::i;:::-;25944:74;;26027:93;26116:3;26027:93;:::i;:::-;26145:2;26140:3;26136:12;26129:19;;25788:366;;;:::o;26160:419::-;26326:4;26364:2;26353:9;26349:18;26341:26;;26413:9;26407:4;26403:20;26399:1;26388:9;26384:17;26377:47;26441:131;26567:4;26441:131;:::i;:::-;26433:139;;26160:419;;;:::o;26585:191::-;26625:3;26644:20;26662:1;26644:20;:::i;:::-;26639:25;;26678:20;26696:1;26678:20;:::i;:::-;26673:25;;26721:1;26718;26714:9;26707:16;;26742:3;26739:1;26736:10;26733:36;;;26749:18;;:::i;:::-;26733:36;26585:191;;;;:::o;26782:158::-;26922:10;26918:1;26910:6;26906:14;26899:34;26782:158;:::o;26946:365::-;27088:3;27109:66;27173:1;27168:3;27109:66;:::i;:::-;27102:73;;27184:93;27273:3;27184:93;:::i;:::-;27302:2;27297:3;27293:12;27286:19;;26946:365;;;:::o;27317:419::-;27483:4;27521:2;27510:9;27506:18;27498:26;;27570:9;27564:4;27560:20;27556:1;27545:9;27541:17;27534:47;27598:131;27724:4;27598:131;:::i;:::-;27590:139;;27317:419;;;:::o;27742:410::-;27782:7;27805:20;27823:1;27805:20;:::i;:::-;27800:25;;27839:20;27857:1;27839:20;:::i;:::-;27834:25;;27894:1;27891;27887:9;27916:30;27934:11;27916:30;:::i;:::-;27905:41;;28095:1;28086:7;28082:15;28079:1;28076:22;28056:1;28049:9;28029:83;28006:139;;28125:18;;:::i;:::-;28006:139;27790:362;27742:410;;;;:::o;28158:221::-;28298:34;28294:1;28286:6;28282:14;28275:58;28367:4;28362:2;28354:6;28350:15;28343:29;28158:221;:::o;28385:366::-;28527:3;28548:67;28612:2;28607:3;28548:67;:::i;:::-;28541:74;;28624:93;28713:3;28624:93;:::i;:::-;28742:2;28737:3;28733:12;28726:19;;28385:366;;;:::o;28757:419::-;28923:4;28961:2;28950:9;28946:18;28938:26;;29010:9;29004:4;29000:20;28996:1;28985:9;28981:17;28974:47;29038:131;29164:4;29038:131;:::i;:::-;29030:139;;28757:419;;;:::o;29182:176::-;29322:28;29318:1;29310:6;29306:14;29299:52;29182:176;:::o;29364:366::-;29506:3;29527:67;29591:2;29586:3;29527:67;:::i;:::-;29520:74;;29603:93;29692:3;29603:93;:::i;:::-;29721:2;29716:3;29712:12;29705:19;;29364:366;;;:::o;29736:419::-;29902:4;29940:2;29929:9;29925:18;29917:26;;29989:9;29983:4;29979:20;29975:1;29964:9;29960:17;29953:47;30017:131;30143:4;30017:131;:::i;:::-;30009:139;;29736:419;;;:::o;30161:238::-;30301:34;30297:1;30289:6;30285:14;30278:58;30370:21;30365:2;30357:6;30353:15;30346:46;30161:238;:::o;30405:366::-;30547:3;30568:67;30632:2;30627:3;30568:67;:::i;:::-;30561:74;;30644:93;30733:3;30644:93;:::i;:::-;30762:2;30757:3;30753:12;30746:19;;30405:366;;;:::o;30777:419::-;30943:4;30981:2;30970:9;30966:18;30958:26;;31030:9;31024:4;31020:20;31016:1;31005:9;31001:17;30994:47;31058:131;31184:4;31058:131;:::i;:::-;31050:139;;30777:419;;;:::o;31202:234::-;31342:34;31338:1;31330:6;31326:14;31319:58;31411:17;31406:2;31398:6;31394:15;31387:42;31202:234;:::o;31442:366::-;31584:3;31605:67;31669:2;31664:3;31605:67;:::i;:::-;31598:74;;31681:93;31770:3;31681:93;:::i;:::-;31799:2;31794:3;31790:12;31783:19;;31442:366;;;:::o;31814:419::-;31980:4;32018:2;32007:9;32003:18;31995:26;;32067:9;32061:4;32057:20;32053:1;32042:9;32038:17;32031:47;32095:131;32221:4;32095:131;:::i;:::-;32087:139;;31814:419;;;:::o;32239:148::-;32341:11;32378:3;32363:18;;32239:148;;;;:::o;32393:390::-;32499:3;32527:39;32560:5;32527:39;:::i;:::-;32582:89;32664:6;32659:3;32582:89;:::i;:::-;32575:96;;32680:65;32738:6;32733:3;32726:4;32719:5;32715:16;32680:65;:::i;:::-;32770:6;32765:3;32761:16;32754:23;;32503:280;32393:390;;;;:::o;32789:182::-;32957:7;32952:3;32945:20;32789:182;:::o;32977:539::-;33199:3;33221:95;33312:3;33303:6;33221:95;:::i;:::-;33214:102;;33326:137;33459:3;33326:137;:::i;:::-;33488:1;33483:3;33479:11;33472:18;;33507:3;33500:10;;32977:539;;;;:::o;33522:435::-;33702:3;33724:95;33815:3;33806:6;33724:95;:::i;:::-;33717:102;;33836:95;33927:3;33918:6;33836:95;:::i;:::-;33829:102;;33948:3;33941:10;;33522:435;;;;;:::o;33963:225::-;34103:34;34099:1;34091:6;34087:14;34080:58;34172:8;34167:2;34159:6;34155:15;34148:33;33963:225;:::o;34194:366::-;34336:3;34357:67;34421:2;34416:3;34357:67;:::i;:::-;34350:74;;34433:93;34522:3;34433:93;:::i;:::-;34551:2;34546:3;34542:12;34535:19;;34194:366;;;:::o;34566:419::-;34732:4;34770:2;34759:9;34755:18;34747:26;;34819:9;34813:4;34809:20;34805:1;34794:9;34790:17;34783:47;34847:131;34973:4;34847:131;:::i;:::-;34839:139;;34566:419;;;:::o;34991:237::-;35131:34;35127:1;35119:6;35115:14;35108:58;35200:20;35195:2;35187:6;35183:15;35176:45;34991:237;:::o;35234:366::-;35376:3;35397:67;35461:2;35456:3;35397:67;:::i;:::-;35390:74;;35473:93;35562:3;35473:93;:::i;:::-;35591:2;35586:3;35582:12;35575:19;;35234:366;;;:::o;35606:419::-;35772:4;35810:2;35799:9;35795:18;35787:26;;35859:9;35853:4;35849:20;35845:1;35834:9;35830:17;35823:47;35887:131;36013:4;35887:131;:::i;:::-;35879:139;;35606:419;;;:::o;36031:225::-;36171:34;36167:1;36159:6;36155:14;36148:58;36240:8;36235:2;36227:6;36223:15;36216:33;36031:225;:::o;36262:366::-;36404:3;36425:67;36489:2;36484:3;36425:67;:::i;:::-;36418:74;;36501:93;36590:3;36501:93;:::i;:::-;36619:2;36614:3;36610:12;36603:19;;36262:366;;;:::o;36634:419::-;36800:4;36838:2;36827:9;36823:18;36815:26;;36887:9;36881:4;36877:20;36873:1;36862:9;36858:17;36851:47;36915:131;37041:4;36915:131;:::i;:::-;36907:139;;36634:419;;;:::o;37059:224::-;37199:34;37195:1;37187:6;37183:14;37176:58;37268:7;37263:2;37255:6;37251:15;37244:32;37059:224;:::o;37289:366::-;37431:3;37452:67;37516:2;37511:3;37452:67;:::i;:::-;37445:74;;37528:93;37617:3;37528:93;:::i;:::-;37646:2;37641:3;37637:12;37630:19;;37289:366;;;:::o;37661:419::-;37827:4;37865:2;37854:9;37850:18;37842:26;;37914:9;37908:4;37904:20;37900:1;37889:9;37885:17;37878:47;37942:131;38068:4;37942:131;:::i;:::-;37934:139;;37661:419;;;:::o;38086:118::-;38123:7;38163:34;38156:5;38152:46;38141:57;;38086:118;;;:::o;38210:227::-;38250:4;38270:20;38288:1;38270:20;:::i;:::-;38265:25;;38304:20;38322:1;38304:20;:::i;:::-;38299:25;;38348:1;38345;38341:9;38333:17;;38372:34;38366:4;38363:44;38360:70;;;38410:18;;:::i;:::-;38360:70;38210:227;;;;:::o;38443:224::-;38483:3;38502:20;38520:1;38502:20;:::i;:::-;38497:25;;38536:20;38554:1;38536:20;:::i;:::-;38531:25;;38579:1;38576;38572:9;38565:16;;38602:34;38597:3;38594:43;38591:69;;;38640:18;;:::i;:::-;38591:69;38443:224;;;;:::o;38673:182::-;38813:34;38809:1;38801:6;38797:14;38790:58;38673:182;:::o;38861:366::-;39003:3;39024:67;39088:2;39083:3;39024:67;:::i;:::-;39017:74;;39100:93;39189:3;39100:93;:::i;:::-;39218:2;39213:3;39209:12;39202:19;;38861:366;;;:::o;39233:419::-;39399:4;39437:2;39426:9;39422:18;39414:26;;39486:9;39480:4;39476:20;39472:1;39461:9;39457:17;39450:47;39514:131;39640:4;39514:131;:::i;:::-;39506:139;;39233:419;;;:::o;39658:229::-;39798:34;39794:1;39786:6;39782:14;39775:58;39867:12;39862:2;39854:6;39850:15;39843:37;39658:229;:::o;39893:366::-;40035:3;40056:67;40120:2;40115:3;40056:67;:::i;:::-;40049:74;;40132:93;40221:3;40132:93;:::i;:::-;40250:2;40245:3;40241:12;40234:19;;39893:366;;;:::o;40265:419::-;40431:4;40469:2;40458:9;40454:18;40446:26;;40518:9;40512:4;40508:20;40504:1;40493:9;40489:17;40482:47;40546:131;40672:4;40546:131;:::i;:::-;40538:139;;40265:419;;;:::o;40690:194::-;40730:4;40750:20;40768:1;40750:20;:::i;:::-;40745:25;;40784:20;40802:1;40784:20;:::i;:::-;40779:25;;40828:1;40825;40821:9;40813:17;;40852:1;40846:4;40843:11;40840:37;;;40857:18;;:::i;:::-;40840:37;40690:194;;;;:::o;40890:171::-;40929:3;40952:24;40970:5;40952:24;:::i;:::-;40943:33;;40998:4;40991:5;40988:15;40985:41;;41006:18;;:::i;:::-;40985:41;41053:1;41046:5;41042:13;41035:20;;40890:171;;;:::o;41067:234::-;41207:34;41203:1;41195:6;41191:14;41184:58;41276:17;41271:2;41263:6;41259:15;41252:42;41067:234;:::o;41307:366::-;41449:3;41470:67;41534:2;41529:3;41470:67;:::i;:::-;41463:74;;41546:93;41635:3;41546:93;:::i;:::-;41664:2;41659:3;41655:12;41648:19;;41307:366;;;:::o;41679:419::-;41845:4;41883:2;41872:9;41868:18;41860:26;;41932:9;41926:4;41922:20;41918:1;41907:9;41903:17;41896:47;41960:131;42086:4;41960:131;:::i;:::-;41952:139;;41679:419;;;:::o;42104:98::-;42155:6;42189:5;42183:12;42173:22;;42104:98;;;:::o;42208:168::-;42291:11;42325:6;42320:3;42313:19;42365:4;42360:3;42356:14;42341:29;;42208:168;;;;:::o;42382:373::-;42468:3;42496:38;42528:5;42496:38;:::i;:::-;42550:70;42613:6;42608:3;42550:70;:::i;:::-;42543:77;;42629:65;42687:6;42682:3;42675:4;42668:5;42664:16;42629:65;:::i;:::-;42719:29;42741:6;42719:29;:::i;:::-;42714:3;42710:39;42703:46;;42472:283;42382:373;;;;:::o;42761:640::-;42956:4;42994:3;42983:9;42979:19;42971:27;;43008:71;43076:1;43065:9;43061:17;43052:6;43008:71;:::i;:::-;43089:72;43157:2;43146:9;43142:18;43133:6;43089:72;:::i;:::-;43171;43239:2;43228:9;43224:18;43215:6;43171:72;:::i;:::-;43290:9;43284:4;43280:20;43275:2;43264:9;43260:18;43253:48;43318:76;43389:4;43380:6;43318:76;:::i;:::-;43310:84;;42761:640;;;;;;;:::o;43407:141::-;43463:5;43494:6;43488:13;43479:22;;43510:32;43536:5;43510:32;:::i;:::-;43407:141;;;;:::o;43554:349::-;43623:6;43672:2;43660:9;43651:7;43647:23;43643:32;43640:119;;;43678:79;;:::i;:::-;43640:119;43798:1;43823:63;43878:7;43869:6;43858:9;43854:22;43823:63;:::i;:::-;43813:73;;43769:127;43554:349;;;;:::o;43909:180::-;43957:77;43954:1;43947:88;44054:4;44051:1;44044:15;44078:4;44075:1;44068:15;44095:220;44235:34;44231:1;44223:6;44219:14;44212:58;44304:3;44299:2;44291:6;44287:15;44280:28;44095:220;:::o;44321:366::-;44463:3;44484:67;44548:2;44543:3;44484:67;:::i;:::-;44477:74;;44560:93;44649:3;44560:93;:::i;:::-;44678:2;44673:3;44669:12;44662:19;;44321:366;;;:::o;44693:419::-;44859:4;44897:2;44886:9;44882:18;44874:26;;44946:9;44940:4;44936:20;44932:1;44921:9;44917:17;44910:47;44974:131;45100:4;44974:131;:::i;:::-;44966:139;;44693:419;;;:::o;45118:179::-;45258:31;45254:1;45246:6;45242:14;45235:55;45118:179;:::o;45303:366::-;45445:3;45466:67;45530:2;45525:3;45466:67;:::i;:::-;45459:74;;45542:93;45631:3;45542:93;:::i;:::-;45660:2;45655:3;45651:12;45644:19;;45303:366;;;:::o;45675:419::-;45841:4;45879:2;45868:9;45864:18;45856:26;;45928:9;45922:4;45918:20;45914:1;45903:9;45899:17;45892:47;45956:131;46082:4;45956:131;:::i;:::-;45948:139;;45675:419;;;:::o;46100:221::-;46240:34;46236:1;46228:6;46224:14;46217:58;46309:4;46304:2;46296:6;46292:15;46285:29;46100:221;:::o;46327:366::-;46469:3;46490:67;46554:2;46549:3;46490:67;:::i;:::-;46483:74;;46566:93;46655:3;46566:93;:::i;:::-;46684:2;46679:3;46675:12;46668:19;;46327:366;;;:::o;46699:419::-;46865:4;46903:2;46892:9;46888:18;46880:26;;46952:9;46946:4;46942:20;46938:1;46927:9;46923:17;46916:47;46980:131;47106:4;46980:131;:::i;:::-;46972:139;;46699:419;;;:::o

Swarm Source

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