ETH Price: $3,251.28 (+3.50%)
Gas: 4 Gwei

Token

Dwagon Eggs ($Dweggs)
 

Overview

Max Total Supply

24 $Dweggs

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 $Dweggs
0xdff1d709627cb4e5d47609c99af24c0ecbb5a6c8
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:
DwagonEggs

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-04-06
*/

// SPDX-License-Identifier: MIT
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);
}

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(
        address owner,
        uint256 index
    ) public view virtual override returns (uint256) {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

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

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

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

        uint256 tokenId = firstTokenId;

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

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

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

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

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

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

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

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

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

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

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

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(
        uint256 tokenId,
        string memory _tokenURI
    ) internal virtual {
        require(
            _exists(tokenId),
            "ERC721URIStorage: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

contract DwagonEggs is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    uint256 public constant MINTING_FEE = 0.012 ether;
    uint256 public constant WHITELISTED_FEE = 0.009 ether;

    uint256 public maxSupply;
    uint256 internal freeNFTS;
    address public feeReceiver;
    mapping(address => bool) private greylistedUsers;
    mapping(address => bool) private whitelistedUsers;

    constructor(address receiver) ERC721("Dwagon Eggs", "$Dweggs") {
        freeNFTS = 333;
        maxSupply = 3333;
        feeReceiver = receiver;
    }

    function safeMint(address to, string memory uri) public onlyOwner {
        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();

        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    function publicMint(string memory uri) external payable {
        require(totalSupply() + 1 <= maxSupply, "All NFTs Sold");
        uint256 fee = calculateMintFee(msg.sender);
        require(fee <= msg.value, "Insufficient Fee!");

        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();

        payable(feeReceiver).transfer(msg.value);
        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, uri);

        if (greylistedUsers[msg.sender]) {
            greylistedUsers[msg.sender] = false;
        }
    }

    function addWhitelistUsers(address[] memory _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            whitelistedUsers[_users[i]] = true;
        }
    }

    function removeWhitelistedUsers(
        address[] memory _users
    ) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            whitelistedUsers[_users[i]] = false;
        }
    }

    function addGreylistUsers(address[] memory _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            greylistedUsers[_users[i]] = true;
        }
    }

    function removeGreylistedUsers(address[] memory _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            greylistedUsers[_users[i]] = false;
        }
    }

    function updateFeeReceiver(address _receiver) external onlyOwner {
        feeReceiver = _receiver;
    }

    function updateFreeNFTs(uint256 _noOfNfts) external onlyOwner {
        freeNFTS = _noOfNfts;
    }

    function withdrawStuckFunds(uint256 amountInWei) external onlyOwner {
        payable(msg.sender).transfer(amountInWei);
    }

    function calculateMintFee(
        address _user
    ) public view returns (uint256 _fee) {
        uint256 currentTokenId = _tokenIdCounter.current();

        if (currentTokenId < freeNFTS || greylistedUsers[_user]) {
            _fee = 0;
        } else if (whitelistedUsers[_user]) {
            _fee = WHITELISTED_FEE;
        } else {
            _fee = MINTING_FEE;
        }
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function _burn(
        uint256 tokenId
    ) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(
        uint256 tokenId
    ) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"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":"MINTING_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELISTED_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addGreylistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"calculateMintFee","outputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"removeGreylistedUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"removeWhitelistedUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"updateFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noOfNfts","type":"uint256"}],"name":"updateFreeNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountInWei","type":"uint256"}],"name":"withdrawStuckFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004a5538038062004a5583398181016040528101906200003791906200027b565b6040518060400160405280600b81526020017f447761676f6e20456767730000000000000000000000000000000000000000008152506040518060400160405280600781526020017f24447765676773000000000000000000000000000000000000000000000000008152508160009081620000b4919062000527565b508060019081620000c6919062000527565b505050620000e9620000dd6200014360201b60201c565b6200014b60201b60201c565b61014d600e81905550610d05600d8190555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200060e565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002438262000216565b9050919050565b620002558162000236565b81146200026157600080fd5b50565b60008151905062000275816200024a565b92915050565b60006020828403121562000294576200029362000211565b5b6000620002a48482850162000264565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032f57607f821691505b602082108103620003455762000344620002e7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000370565b620003bb868362000370565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200040862000402620003fc84620003d3565b620003dd565b620003d3565b9050919050565b6000819050919050565b6200042483620003e7565b6200043c62000433826200040f565b8484546200037d565b825550505050565b600090565b6200045362000444565b6200046081848462000419565b505050565b5b8181101562000488576200047c60008262000449565b60018101905062000466565b5050565b601f821115620004d757620004a1816200034b565b620004ac8462000360565b81016020851015620004bc578190505b620004d4620004cb8562000360565b83018262000465565b50505b505050565b600082821c905092915050565b6000620004fc60001984600802620004dc565b1980831691505092915050565b6000620005178383620004e9565b9150826002028217905092915050565b6200053282620002ad565b67ffffffffffffffff8111156200054e576200054d620002b8565b5b6200055a825462000316565b620005678282856200048c565b600060209050601f8311600181146200059f57600084156200058a578287015190505b62000596858262000509565b86555062000606565b601f198416620005af866200034b565b60005b82811015620005d957848901518255600182019150602085019450602081019050620005b2565b86831015620005f95784890151620005f5601f891682620004e9565b8355505b6001600288020188555050505b505050505050565b614437806200061e6000396000f3fe6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063d80f6d681161006f578063d80f6d68146106fe578063df41a77314610729578063e985e9c514610752578063eff42f2e1461078f578063f2fde38b146107b8576101ee565b8063c87b56dd14610642578063d204c45e1461067f578063d5abeb01146106a8578063d642b4b1146106d3576101ee565b8063b3d7acf9116100dc578063b3d7acf9146105a9578063b3f00674146105c5578063b88d4fde146105f0578063c69bebe414610619576101ee565b80638da5cb5b1461050157806395d89b411461052c5780639e3b631414610557578063a22cb46514610580576101ee565b806342842e0e1161018557806363e40d621161015457806363e40d621461045b578063686b28121461048457806370a08231146104ad578063715018a6146104ea576101ee565b806342842e0e1461038f5780634f6ccce7146103b85780636352211e146103f557806363aa8bc114610432576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780634179857c14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d03565b6107e1565b6040516102279190612d4b565b60405180910390f35b34801561023c57600080fd5b506102456107f3565b6040516102529190612df6565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612e4e565b610885565b60405161028f9190612ebc565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f03565b6108cb565b005b3480156102cd57600080fd5b506102d66109e2565b6040516102e39190612f52565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612f6d565b6109ef565b005b34801561032157600080fd5b5061033c60048036038101906103379190612f03565b610a4f565b6040516103499190612f52565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612fc0565b610af4565b6040516103869190612f52565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190612f6d565b610bdd565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612e4e565b610bfd565b6040516103ec9190612f52565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190612e4e565b610c6e565b6040516104299190612ebc565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190612e4e565b610cf4565b005b34801561046757600080fd5b50610482600480360381019061047d9190613135565b610d06565b005b34801561049057600080fd5b506104ab60048036038101906104a69190613135565b610da3565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190612fc0565b610e40565b6040516104e19190612f52565b60405180910390f35b3480156104f657600080fd5b506104ff610ef7565b005b34801561050d57600080fd5b50610516610f0b565b6040516105239190612ebc565b60405180910390f35b34801561053857600080fd5b50610541610f35565b60405161054e9190612df6565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613135565b610fc7565b005b34801561058c57600080fd5b506105a760048036038101906105a291906131aa565b611064565b005b6105c360048036038101906105be919061329f565b61107a565b005b3480156105d157600080fd5b506105da611267565b6040516105e79190612ebc565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190613389565b61128d565b005b34801561062557600080fd5b50610640600480360381019061063b9190612fc0565b6112ef565b005b34801561064e57600080fd5b5061066960048036038101906106649190612e4e565b61133b565b6040516106769190612df6565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a1919061340c565b61134d565b005b3480156106b457600080fd5b506106bd611386565b6040516106ca9190612f52565b60405180910390f35b3480156106df57600080fd5b506106e861138c565b6040516106f59190612f52565b60405180910390f35b34801561070a57600080fd5b50610713611397565b6040516107209190612f52565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612e4e565b6113a2565b005b34801561075e57600080fd5b5061077960048036038101906107749190613468565b6113f4565b6040516107869190612d4b565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190613135565b611488565b005b3480156107c457600080fd5b506107df60048036038101906107da9190612fc0565b611525565b005b60006107ec826115a8565b9050919050565b606060008054610802906134d7565b80601f016020809104026020016040519081016040528092919081815260200182805461082e906134d7565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b600061089082611622565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d682610c6e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d9061357a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096561166d565b73ffffffffffffffffffffffffffffffffffffffff16148061099457506109938161098e61166d565b6113f4565b5b6109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca9061360c565b60405180910390fd5b6109dd8383611675565b505050565b6000600880549050905090565b610a006109fa61166d565b8261172e565b610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061369e565b60405180910390fd5b610a4a8383836117c3565b505050565b6000610a5a83610e40565b8210610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290613730565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080610b01600c611abc565b9050600e54811080610b5c5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610b6a5760009150610bd7565b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bcb57661ff973cafa80009150610bd6565b662aa1efb94e000091505b5b50919050565b610bf88383836040518060200160405280600081525061128d565b505050565b6000610c076109e2565b8210610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906137c2565b60405180910390fd5b60088281548110610c5c57610c5b6137e2565b5b90600052602060002001549050919050565b600080610c7a83611aca565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce29061385d565b60405180910390fd5b80915050919050565b610cfc611b07565b80600e8190555050565b610d0e611b07565b60005b8151811015610d9f57600060106000848481518110610d3357610d326137e2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d97906138ac565b915050610d11565b5050565b610dab611b07565b60005b8151811015610e3c57600160116000848481518110610dd057610dcf6137e2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e34906138ac565b915050610dae565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790613966565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eff611b07565b610f096000611b85565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f44906134d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f70906134d7565b8015610fbd5780601f10610f9257610100808354040283529160200191610fbd565b820191906000526020600020905b815481529060010190602001808311610fa057829003601f168201915b5050505050905090565b610fcf611b07565b60005b815181101561106057600160106000848481518110610ff457610ff36137e2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611058906138ac565b915050610fd2565b5050565b61107661106f61166d565b8383611c4b565b5050565b600d5460016110876109e2565b6110919190613986565b11156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990613a06565b60405180910390fd5b60006110dd33610af4565b905034811115611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990613a72565b60405180910390fd5b61112c600c611db7565b6000611138600c611abc565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156111a2573d6000803e3d6000fd5b506111ad3382611dcd565b6111b78184611deb565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611262576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61129e61129861166d565b8361172e565b6112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d49061369e565b60405180910390fd5b6112e984848484611e58565b50505050565b6112f7611b07565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061134682611eb4565b9050919050565b611355611b07565b61135f600c611db7565b600061136b600c611abc565b90506113778382611dcd565b6113818183611deb565b505050565b600d5481565b662aa1efb94e000081565b661ff973cafa800081565b6113aa611b07565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113f0573d6000803e3d6000fd5b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611490611b07565b60005b8151811015611521576000601160008484815181106114b5576114b46137e2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611519906138ac565b915050611493565b5050565b61152d611b07565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390613b04565b60405180910390fd5b6115a581611b85565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161b575061161a82611fc6565b5b9050919050565b61162b816120a8565b61166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061385d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116e883610c6e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061173a83610c6e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177c575061177b81856113f4565b5b806117ba57508373ffffffffffffffffffffffffffffffffffffffff166117a284610885565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117e382610c6e565b73ffffffffffffffffffffffffffffffffffffffff1614611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090613b96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613c28565b60405180910390fd5b6118b583838360016120e9565b8273ffffffffffffffffffffffffffffffffffffffff166118d582610c6e565b73ffffffffffffffffffffffffffffffffffffffff161461192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290613b96565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ab783838360016120fb565b505050565b600081600001549050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611b0f61166d565b73ffffffffffffffffffffffffffffffffffffffff16611b2d610f0b565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90613c94565b60405180910390fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613d00565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611daa9190612d4b565b60405180910390a3505050565b6001816000016000828254019250508190555050565b611de7828260405180602001604052806000815250612101565b5050565b611df4826120a8565b611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613d92565b60405180910390fd5b80600a60008481526020019081526020016000209081611e539190613f5e565b505050565b611e638484846117c3565b611e6f8484848461215c565b611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea5906140a2565b60405180910390fd5b50505050565b6060611ebf82611622565b6000600a60008481526020019081526020016000208054611edf906134d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0b906134d7565b8015611f585780601f10611f2d57610100808354040283529160200191611f58565b820191906000526020600020905b815481529060010190602001808311611f3b57829003601f168201915b505050505090506000611f696122e3565b90506000815103611f7e578192505050611fc1565b600082511115611fb3578082604051602001611f9b9291906140fe565b60405160208183030381529060405292505050611fc1565b611fbc846122fa565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120a157506120a082612362565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166120ca83611aca565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6120f5848484846123cc565b50505050565b50505050565b61210b838361252a565b612118600084848461215c565b612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e906140a2565b60405180910390fd5b505050565b600061217d8473ffffffffffffffffffffffffffffffffffffffff16612747565b156122d6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a661166d565b8786866040518563ffffffff1660e01b81526004016121c89493929190614177565b6020604051808303816000875af192505050801561220457506040513d601f19601f8201168201806040525081019061220191906141d8565b60015b612286573d8060008114612234576040519150601f19603f3d011682016040523d82523d6000602084013e612239565b606091505b50600081510361227e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612275906140a2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122db565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061230582611622565b600061230f6122e3565b9050600081511161232f576040518060200160405280600081525061235a565b806123398461276a565b60405160200161234a9291906140fe565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123d884848484612838565b600181111561241c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241390614277565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124635761245e8161283e565b6124a2565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146124a1576124a08582612887565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124e4576124df816129f4565b612523565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612522576125218482612ac5565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612590906142e3565b60405180910390fd5b6125a2816120a8565b156125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d99061434f565b60405180910390fd5b6125f06000838360016120e9565b6125f9816120a8565b15612639576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126309061434f565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127436000838360016120fb565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000600161277984612b44565b01905060008167ffffffffffffffff81111561279857612797612ff2565b5b6040519080825280601f01601f1916602001820160405280156127ca5781602001600182028036833780820191505090505b509050600082602001820190505b60011561282d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816128215761282061436f565b5b049450600085036127d8575b819350505050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161289484610e40565b61289e919061439e565b9050600060076000848152602001908152602001600020549050818114612983576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a08919061439e565b9050600060096000848152602001908152602001600020549050600060088381548110612a3857612a376137e2565b5b906000526020600020015490508060088381548110612a5a57612a596137e2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612aa957612aa86143d2565b5b6001900381819060005260206000200160009055905550505050565b6000612ad083610e40565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612ba2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612b9857612b9761436f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612bdf576d04ee2d6d415b85acef81000000008381612bd557612bd461436f565b5b0492506020810190505b662386f26fc100008310612c0e57662386f26fc100008381612c0457612c0361436f565b5b0492506010810190505b6305f5e1008310612c37576305f5e1008381612c2d57612c2c61436f565b5b0492506008810190505b6127108310612c5c576127108381612c5257612c5161436f565b5b0492506004810190505b60648310612c7f5760648381612c7557612c7461436f565b5b0492506002810190505b600a8310612c8e576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce081612cab565b8114612ceb57600080fd5b50565b600081359050612cfd81612cd7565b92915050565b600060208284031215612d1957612d18612ca1565b5b6000612d2784828501612cee565b91505092915050565b60008115159050919050565b612d4581612d30565b82525050565b6000602082019050612d606000830184612d3c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612da0578082015181840152602081019050612d85565b60008484015250505050565b6000601f19601f8301169050919050565b6000612dc882612d66565b612dd28185612d71565b9350612de2818560208601612d82565b612deb81612dac565b840191505092915050565b60006020820190508181036000830152612e108184612dbd565b905092915050565b6000819050919050565b612e2b81612e18565b8114612e3657600080fd5b50565b600081359050612e4881612e22565b92915050565b600060208284031215612e6457612e63612ca1565b5b6000612e7284828501612e39565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ea682612e7b565b9050919050565b612eb681612e9b565b82525050565b6000602082019050612ed16000830184612ead565b92915050565b612ee081612e9b565b8114612eeb57600080fd5b50565b600081359050612efd81612ed7565b92915050565b60008060408385031215612f1a57612f19612ca1565b5b6000612f2885828601612eee565b9250506020612f3985828601612e39565b9150509250929050565b612f4c81612e18565b82525050565b6000602082019050612f676000830184612f43565b92915050565b600080600060608486031215612f8657612f85612ca1565b5b6000612f9486828701612eee565b9350506020612fa586828701612eee565b9250506040612fb686828701612e39565b9150509250925092565b600060208284031215612fd657612fd5612ca1565b5b6000612fe484828501612eee565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61302a82612dac565b810181811067ffffffffffffffff8211171561304957613048612ff2565b5b80604052505050565b600061305c612c97565b90506130688282613021565b919050565b600067ffffffffffffffff82111561308857613087612ff2565b5b602082029050602081019050919050565b600080fd5b60006130b16130ac8461306d565b613052565b905080838252602082019050602084028301858111156130d4576130d3613099565b5b835b818110156130fd57806130e98882612eee565b8452602084019350506020810190506130d6565b5050509392505050565b600082601f83011261311c5761311b612fed565b5b813561312c84826020860161309e565b91505092915050565b60006020828403121561314b5761314a612ca1565b5b600082013567ffffffffffffffff81111561316957613168612ca6565b5b61317584828501613107565b91505092915050565b61318781612d30565b811461319257600080fd5b50565b6000813590506131a48161317e565b92915050565b600080604083850312156131c1576131c0612ca1565b5b60006131cf85828601612eee565b92505060206131e085828601613195565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561320a57613209612ff2565b5b61321382612dac565b9050602081019050919050565b82818337600083830152505050565b600061324261323d846131ef565b613052565b90508281526020810184848401111561325e5761325d6131ea565b5b613269848285613220565b509392505050565b600082601f83011261328657613285612fed565b5b813561329684826020860161322f565b91505092915050565b6000602082840312156132b5576132b4612ca1565b5b600082013567ffffffffffffffff8111156132d3576132d2612ca6565b5b6132df84828501613271565b91505092915050565b600067ffffffffffffffff82111561330357613302612ff2565b5b61330c82612dac565b9050602081019050919050565b600061332c613327846132e8565b613052565b905082815260208101848484011115613348576133476131ea565b5b613353848285613220565b509392505050565b600082601f8301126133705761336f612fed565b5b8135613380848260208601613319565b91505092915050565b600080600080608085870312156133a3576133a2612ca1565b5b60006133b187828801612eee565b94505060206133c287828801612eee565b93505060406133d387828801612e39565b925050606085013567ffffffffffffffff8111156133f4576133f3612ca6565b5b6134008782880161335b565b91505092959194509250565b6000806040838503121561342357613422612ca1565b5b600061343185828601612eee565b925050602083013567ffffffffffffffff81111561345257613451612ca6565b5b61345e85828601613271565b9150509250929050565b6000806040838503121561347f5761347e612ca1565b5b600061348d85828601612eee565b925050602061349e85828601612eee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ef57607f821691505b602082108103613502576135016134a8565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613564602183612d71565b915061356f82613508565b604082019050919050565b6000602082019050818103600083015261359381613557565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006135f6603d83612d71565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613688602d83612d71565b91506136938261362c565b604082019050919050565b600060208201905081810360008301526136b78161367b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061371a602b83612d71565b9150613725826136be565b604082019050919050565b600060208201905081810360008301526137498161370d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006137ac602c83612d71565b91506137b782613750565b604082019050919050565b600060208201905081810360008301526137db8161379f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613847601883612d71565b915061385282613811565b602082019050919050565b600060208201905081810360008301526138768161383a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138b782612e18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138e9576138e861387d565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613950602983612d71565b915061395b826138f4565b604082019050919050565b6000602082019050818103600083015261397f81613943565b9050919050565b600061399182612e18565b915061399c83612e18565b92508282019050808211156139b4576139b361387d565b5b92915050565b7f416c6c204e46547320536f6c6400000000000000000000000000000000000000600082015250565b60006139f0600d83612d71565b91506139fb826139ba565b602082019050919050565b60006020820190508181036000830152613a1f816139e3565b9050919050565b7f496e73756666696369656e742046656521000000000000000000000000000000600082015250565b6000613a5c601183612d71565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aee602683612d71565b9150613af982613a92565b604082019050919050565b60006020820190508181036000830152613b1d81613ae1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613b80602583612d71565b9150613b8b82613b24565b604082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c12602483612d71565b9150613c1d82613bb6565b604082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c7e602083612d71565b9150613c8982613c48565b602082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613cea601983612d71565b9150613cf582613cb4565b602082019050919050565b60006020820190508181036000830152613d1981613cdd565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613d7c602e83612d71565b9150613d8782613d20565b604082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613e147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613dd7565b613e1e8683613dd7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613e5b613e56613e5184612e18565b613e36565b612e18565b9050919050565b6000819050919050565b613e7583613e40565b613e89613e8182613e62565b848454613de4565b825550505050565b600090565b613e9e613e91565b613ea9818484613e6c565b505050565b5b81811015613ecd57613ec2600082613e96565b600181019050613eaf565b5050565b601f821115613f1257613ee381613db2565b613eec84613dc7565b81016020851015613efb578190505b613f0f613f0785613dc7565b830182613eae565b50505b505050565b600082821c905092915050565b6000613f3560001984600802613f17565b1980831691505092915050565b6000613f4e8383613f24565b9150826002028217905092915050565b613f6782612d66565b67ffffffffffffffff811115613f8057613f7f612ff2565b5b613f8a82546134d7565b613f95828285613ed1565b600060209050601f831160018114613fc85760008415613fb6578287015190505b613fc08582613f42565b865550614028565b601f198416613fd686613db2565b60005b82811015613ffe57848901518255600182019150602085019450602081019050613fd9565b8683101561401b5784890151614017601f891682613f24565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061408c603283612d71565b915061409782614030565b604082019050919050565b600060208201905081810360008301526140bb8161407f565b9050919050565b600081905092915050565b60006140d882612d66565b6140e281856140c2565b93506140f2818560208601612d82565b80840191505092915050565b600061410a82856140cd565b915061411682846140cd565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061414982614122565b614153818561412d565b9350614163818560208601612d82565b61416c81612dac565b840191505092915050565b600060808201905061418c6000830187612ead565b6141996020830186612ead565b6141a66040830185612f43565b81810360608301526141b8818461413e565b905095945050505050565b6000815190506141d281612cd7565b92915050565b6000602082840312156141ee576141ed612ca1565b5b60006141fc848285016141c3565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000614261603583612d71565b915061426c82614205565b604082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006142cd602083612d71565b91506142d882614297565b602082019050919050565b600060208201905081810360008301526142fc816142c0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614339601c83612d71565b915061434482614303565b602082019050919050565b600060208201905081810360008301526143688161432c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a982612e18565b91506143b483612e18565b92508282039050818111156143cc576143cb61387d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220277bf2f41fe62a4bc7616fe8e88a7a627b67e0894e37aa3faef1d467e63d445564736f6c6343000812003300000000000000000000000086abe2fa73072ca776003f80f59713551359bd25

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063d80f6d681161006f578063d80f6d68146106fe578063df41a77314610729578063e985e9c514610752578063eff42f2e1461078f578063f2fde38b146107b8576101ee565b8063c87b56dd14610642578063d204c45e1461067f578063d5abeb01146106a8578063d642b4b1146106d3576101ee565b8063b3d7acf9116100dc578063b3d7acf9146105a9578063b3f00674146105c5578063b88d4fde146105f0578063c69bebe414610619576101ee565b80638da5cb5b1461050157806395d89b411461052c5780639e3b631414610557578063a22cb46514610580576101ee565b806342842e0e1161018557806363e40d621161015457806363e40d621461045b578063686b28121461048457806370a08231146104ad578063715018a6146104ea576101ee565b806342842e0e1461038f5780634f6ccce7146103b85780636352211e146103f557806363aa8bc114610432576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780634179857c14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d03565b6107e1565b6040516102279190612d4b565b60405180910390f35b34801561023c57600080fd5b506102456107f3565b6040516102529190612df6565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612e4e565b610885565b60405161028f9190612ebc565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f03565b6108cb565b005b3480156102cd57600080fd5b506102d66109e2565b6040516102e39190612f52565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612f6d565b6109ef565b005b34801561032157600080fd5b5061033c60048036038101906103379190612f03565b610a4f565b6040516103499190612f52565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612fc0565b610af4565b6040516103869190612f52565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190612f6d565b610bdd565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612e4e565b610bfd565b6040516103ec9190612f52565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190612e4e565b610c6e565b6040516104299190612ebc565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190612e4e565b610cf4565b005b34801561046757600080fd5b50610482600480360381019061047d9190613135565b610d06565b005b34801561049057600080fd5b506104ab60048036038101906104a69190613135565b610da3565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190612fc0565b610e40565b6040516104e19190612f52565b60405180910390f35b3480156104f657600080fd5b506104ff610ef7565b005b34801561050d57600080fd5b50610516610f0b565b6040516105239190612ebc565b60405180910390f35b34801561053857600080fd5b50610541610f35565b60405161054e9190612df6565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613135565b610fc7565b005b34801561058c57600080fd5b506105a760048036038101906105a291906131aa565b611064565b005b6105c360048036038101906105be919061329f565b61107a565b005b3480156105d157600080fd5b506105da611267565b6040516105e79190612ebc565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190613389565b61128d565b005b34801561062557600080fd5b50610640600480360381019061063b9190612fc0565b6112ef565b005b34801561064e57600080fd5b5061066960048036038101906106649190612e4e565b61133b565b6040516106769190612df6565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a1919061340c565b61134d565b005b3480156106b457600080fd5b506106bd611386565b6040516106ca9190612f52565b60405180910390f35b3480156106df57600080fd5b506106e861138c565b6040516106f59190612f52565b60405180910390f35b34801561070a57600080fd5b50610713611397565b6040516107209190612f52565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612e4e565b6113a2565b005b34801561075e57600080fd5b5061077960048036038101906107749190613468565b6113f4565b6040516107869190612d4b565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190613135565b611488565b005b3480156107c457600080fd5b506107df60048036038101906107da9190612fc0565b611525565b005b60006107ec826115a8565b9050919050565b606060008054610802906134d7565b80601f016020809104026020016040519081016040528092919081815260200182805461082e906134d7565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b600061089082611622565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d682610c6e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d9061357a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096561166d565b73ffffffffffffffffffffffffffffffffffffffff16148061099457506109938161098e61166d565b6113f4565b5b6109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca9061360c565b60405180910390fd5b6109dd8383611675565b505050565b6000600880549050905090565b610a006109fa61166d565b8261172e565b610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061369e565b60405180910390fd5b610a4a8383836117c3565b505050565b6000610a5a83610e40565b8210610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290613730565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080610b01600c611abc565b9050600e54811080610b5c5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610b6a5760009150610bd7565b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bcb57661ff973cafa80009150610bd6565b662aa1efb94e000091505b5b50919050565b610bf88383836040518060200160405280600081525061128d565b505050565b6000610c076109e2565b8210610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906137c2565b60405180910390fd5b60088281548110610c5c57610c5b6137e2565b5b90600052602060002001549050919050565b600080610c7a83611aca565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce29061385d565b60405180910390fd5b80915050919050565b610cfc611b07565b80600e8190555050565b610d0e611b07565b60005b8151811015610d9f57600060106000848481518110610d3357610d326137e2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d97906138ac565b915050610d11565b5050565b610dab611b07565b60005b8151811015610e3c57600160116000848481518110610dd057610dcf6137e2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e34906138ac565b915050610dae565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790613966565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eff611b07565b610f096000611b85565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f44906134d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f70906134d7565b8015610fbd5780601f10610f9257610100808354040283529160200191610fbd565b820191906000526020600020905b815481529060010190602001808311610fa057829003601f168201915b5050505050905090565b610fcf611b07565b60005b815181101561106057600160106000848481518110610ff457610ff36137e2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611058906138ac565b915050610fd2565b5050565b61107661106f61166d565b8383611c4b565b5050565b600d5460016110876109e2565b6110919190613986565b11156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990613a06565b60405180910390fd5b60006110dd33610af4565b905034811115611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990613a72565b60405180910390fd5b61112c600c611db7565b6000611138600c611abc565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156111a2573d6000803e3d6000fd5b506111ad3382611dcd565b6111b78184611deb565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611262576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61129e61129861166d565b8361172e565b6112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d49061369e565b60405180910390fd5b6112e984848484611e58565b50505050565b6112f7611b07565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061134682611eb4565b9050919050565b611355611b07565b61135f600c611db7565b600061136b600c611abc565b90506113778382611dcd565b6113818183611deb565b505050565b600d5481565b662aa1efb94e000081565b661ff973cafa800081565b6113aa611b07565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113f0573d6000803e3d6000fd5b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611490611b07565b60005b8151811015611521576000601160008484815181106114b5576114b46137e2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611519906138ac565b915050611493565b5050565b61152d611b07565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390613b04565b60405180910390fd5b6115a581611b85565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161b575061161a82611fc6565b5b9050919050565b61162b816120a8565b61166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061385d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116e883610c6e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061173a83610c6e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177c575061177b81856113f4565b5b806117ba57508373ffffffffffffffffffffffffffffffffffffffff166117a284610885565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117e382610c6e565b73ffffffffffffffffffffffffffffffffffffffff1614611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090613b96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613c28565b60405180910390fd5b6118b583838360016120e9565b8273ffffffffffffffffffffffffffffffffffffffff166118d582610c6e565b73ffffffffffffffffffffffffffffffffffffffff161461192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290613b96565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ab783838360016120fb565b505050565b600081600001549050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611b0f61166d565b73ffffffffffffffffffffffffffffffffffffffff16611b2d610f0b565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90613c94565b60405180910390fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613d00565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611daa9190612d4b565b60405180910390a3505050565b6001816000016000828254019250508190555050565b611de7828260405180602001604052806000815250612101565b5050565b611df4826120a8565b611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613d92565b60405180910390fd5b80600a60008481526020019081526020016000209081611e539190613f5e565b505050565b611e638484846117c3565b611e6f8484848461215c565b611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea5906140a2565b60405180910390fd5b50505050565b6060611ebf82611622565b6000600a60008481526020019081526020016000208054611edf906134d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0b906134d7565b8015611f585780601f10611f2d57610100808354040283529160200191611f58565b820191906000526020600020905b815481529060010190602001808311611f3b57829003601f168201915b505050505090506000611f696122e3565b90506000815103611f7e578192505050611fc1565b600082511115611fb3578082604051602001611f9b9291906140fe565b60405160208183030381529060405292505050611fc1565b611fbc846122fa565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120a157506120a082612362565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166120ca83611aca565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6120f5848484846123cc565b50505050565b50505050565b61210b838361252a565b612118600084848461215c565b612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e906140a2565b60405180910390fd5b505050565b600061217d8473ffffffffffffffffffffffffffffffffffffffff16612747565b156122d6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a661166d565b8786866040518563ffffffff1660e01b81526004016121c89493929190614177565b6020604051808303816000875af192505050801561220457506040513d601f19601f8201168201806040525081019061220191906141d8565b60015b612286573d8060008114612234576040519150601f19603f3d011682016040523d82523d6000602084013e612239565b606091505b50600081510361227e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612275906140a2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122db565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061230582611622565b600061230f6122e3565b9050600081511161232f576040518060200160405280600081525061235a565b806123398461276a565b60405160200161234a9291906140fe565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123d884848484612838565b600181111561241c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241390614277565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124635761245e8161283e565b6124a2565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146124a1576124a08582612887565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124e4576124df816129f4565b612523565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612522576125218482612ac5565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612590906142e3565b60405180910390fd5b6125a2816120a8565b156125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d99061434f565b60405180910390fd5b6125f06000838360016120e9565b6125f9816120a8565b15612639576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126309061434f565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127436000838360016120fb565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000600161277984612b44565b01905060008167ffffffffffffffff81111561279857612797612ff2565b5b6040519080825280601f01601f1916602001820160405280156127ca5781602001600182028036833780820191505090505b509050600082602001820190505b60011561282d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816128215761282061436f565b5b049450600085036127d8575b819350505050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161289484610e40565b61289e919061439e565b9050600060076000848152602001908152602001600020549050818114612983576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a08919061439e565b9050600060096000848152602001908152602001600020549050600060088381548110612a3857612a376137e2565b5b906000526020600020015490508060088381548110612a5a57612a596137e2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612aa957612aa86143d2565b5b6001900381819060005260206000200160009055905550505050565b6000612ad083610e40565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612ba2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612b9857612b9761436f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612bdf576d04ee2d6d415b85acef81000000008381612bd557612bd461436f565b5b0492506020810190505b662386f26fc100008310612c0e57662386f26fc100008381612c0457612c0361436f565b5b0492506010810190505b6305f5e1008310612c37576305f5e1008381612c2d57612c2c61436f565b5b0492506008810190505b6127108310612c5c576127108381612c5257612c5161436f565b5b0492506004810190505b60648310612c7f5760648381612c7557612c7461436f565b5b0492506002810190505b600a8310612c8e576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce081612cab565b8114612ceb57600080fd5b50565b600081359050612cfd81612cd7565b92915050565b600060208284031215612d1957612d18612ca1565b5b6000612d2784828501612cee565b91505092915050565b60008115159050919050565b612d4581612d30565b82525050565b6000602082019050612d606000830184612d3c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612da0578082015181840152602081019050612d85565b60008484015250505050565b6000601f19601f8301169050919050565b6000612dc882612d66565b612dd28185612d71565b9350612de2818560208601612d82565b612deb81612dac565b840191505092915050565b60006020820190508181036000830152612e108184612dbd565b905092915050565b6000819050919050565b612e2b81612e18565b8114612e3657600080fd5b50565b600081359050612e4881612e22565b92915050565b600060208284031215612e6457612e63612ca1565b5b6000612e7284828501612e39565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ea682612e7b565b9050919050565b612eb681612e9b565b82525050565b6000602082019050612ed16000830184612ead565b92915050565b612ee081612e9b565b8114612eeb57600080fd5b50565b600081359050612efd81612ed7565b92915050565b60008060408385031215612f1a57612f19612ca1565b5b6000612f2885828601612eee565b9250506020612f3985828601612e39565b9150509250929050565b612f4c81612e18565b82525050565b6000602082019050612f676000830184612f43565b92915050565b600080600060608486031215612f8657612f85612ca1565b5b6000612f9486828701612eee565b9350506020612fa586828701612eee565b9250506040612fb686828701612e39565b9150509250925092565b600060208284031215612fd657612fd5612ca1565b5b6000612fe484828501612eee565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61302a82612dac565b810181811067ffffffffffffffff8211171561304957613048612ff2565b5b80604052505050565b600061305c612c97565b90506130688282613021565b919050565b600067ffffffffffffffff82111561308857613087612ff2565b5b602082029050602081019050919050565b600080fd5b60006130b16130ac8461306d565b613052565b905080838252602082019050602084028301858111156130d4576130d3613099565b5b835b818110156130fd57806130e98882612eee565b8452602084019350506020810190506130d6565b5050509392505050565b600082601f83011261311c5761311b612fed565b5b813561312c84826020860161309e565b91505092915050565b60006020828403121561314b5761314a612ca1565b5b600082013567ffffffffffffffff81111561316957613168612ca6565b5b61317584828501613107565b91505092915050565b61318781612d30565b811461319257600080fd5b50565b6000813590506131a48161317e565b92915050565b600080604083850312156131c1576131c0612ca1565b5b60006131cf85828601612eee565b92505060206131e085828601613195565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561320a57613209612ff2565b5b61321382612dac565b9050602081019050919050565b82818337600083830152505050565b600061324261323d846131ef565b613052565b90508281526020810184848401111561325e5761325d6131ea565b5b613269848285613220565b509392505050565b600082601f83011261328657613285612fed565b5b813561329684826020860161322f565b91505092915050565b6000602082840312156132b5576132b4612ca1565b5b600082013567ffffffffffffffff8111156132d3576132d2612ca6565b5b6132df84828501613271565b91505092915050565b600067ffffffffffffffff82111561330357613302612ff2565b5b61330c82612dac565b9050602081019050919050565b600061332c613327846132e8565b613052565b905082815260208101848484011115613348576133476131ea565b5b613353848285613220565b509392505050565b600082601f8301126133705761336f612fed565b5b8135613380848260208601613319565b91505092915050565b600080600080608085870312156133a3576133a2612ca1565b5b60006133b187828801612eee565b94505060206133c287828801612eee565b93505060406133d387828801612e39565b925050606085013567ffffffffffffffff8111156133f4576133f3612ca6565b5b6134008782880161335b565b91505092959194509250565b6000806040838503121561342357613422612ca1565b5b600061343185828601612eee565b925050602083013567ffffffffffffffff81111561345257613451612ca6565b5b61345e85828601613271565b9150509250929050565b6000806040838503121561347f5761347e612ca1565b5b600061348d85828601612eee565b925050602061349e85828601612eee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ef57607f821691505b602082108103613502576135016134a8565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613564602183612d71565b915061356f82613508565b604082019050919050565b6000602082019050818103600083015261359381613557565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006135f6603d83612d71565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613688602d83612d71565b91506136938261362c565b604082019050919050565b600060208201905081810360008301526136b78161367b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061371a602b83612d71565b9150613725826136be565b604082019050919050565b600060208201905081810360008301526137498161370d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006137ac602c83612d71565b91506137b782613750565b604082019050919050565b600060208201905081810360008301526137db8161379f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613847601883612d71565b915061385282613811565b602082019050919050565b600060208201905081810360008301526138768161383a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138b782612e18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138e9576138e861387d565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613950602983612d71565b915061395b826138f4565b604082019050919050565b6000602082019050818103600083015261397f81613943565b9050919050565b600061399182612e18565b915061399c83612e18565b92508282019050808211156139b4576139b361387d565b5b92915050565b7f416c6c204e46547320536f6c6400000000000000000000000000000000000000600082015250565b60006139f0600d83612d71565b91506139fb826139ba565b602082019050919050565b60006020820190508181036000830152613a1f816139e3565b9050919050565b7f496e73756666696369656e742046656521000000000000000000000000000000600082015250565b6000613a5c601183612d71565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aee602683612d71565b9150613af982613a92565b604082019050919050565b60006020820190508181036000830152613b1d81613ae1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613b80602583612d71565b9150613b8b82613b24565b604082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c12602483612d71565b9150613c1d82613bb6565b604082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c7e602083612d71565b9150613c8982613c48565b602082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613cea601983612d71565b9150613cf582613cb4565b602082019050919050565b60006020820190508181036000830152613d1981613cdd565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613d7c602e83612d71565b9150613d8782613d20565b604082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613e147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613dd7565b613e1e8683613dd7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613e5b613e56613e5184612e18565b613e36565b612e18565b9050919050565b6000819050919050565b613e7583613e40565b613e89613e8182613e62565b848454613de4565b825550505050565b600090565b613e9e613e91565b613ea9818484613e6c565b505050565b5b81811015613ecd57613ec2600082613e96565b600181019050613eaf565b5050565b601f821115613f1257613ee381613db2565b613eec84613dc7565b81016020851015613efb578190505b613f0f613f0785613dc7565b830182613eae565b50505b505050565b600082821c905092915050565b6000613f3560001984600802613f17565b1980831691505092915050565b6000613f4e8383613f24565b9150826002028217905092915050565b613f6782612d66565b67ffffffffffffffff811115613f8057613f7f612ff2565b5b613f8a82546134d7565b613f95828285613ed1565b600060209050601f831160018114613fc85760008415613fb6578287015190505b613fc08582613f42565b865550614028565b601f198416613fd686613db2565b60005b82811015613ffe57848901518255600182019150602085019450602081019050613fd9565b8683101561401b5784890151614017601f891682613f24565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061408c603283612d71565b915061409782614030565b604082019050919050565b600060208201905081810360008301526140bb8161407f565b9050919050565b600081905092915050565b60006140d882612d66565b6140e281856140c2565b93506140f2818560208601612d82565b80840191505092915050565b600061410a82856140cd565b915061411682846140cd565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061414982614122565b614153818561412d565b9350614163818560208601612d82565b61416c81612dac565b840191505092915050565b600060808201905061418c6000830187612ead565b6141996020830186612ead565b6141a66040830185612f43565b81810360608301526141b8818461413e565b905095945050505050565b6000815190506141d281612cd7565b92915050565b6000602082840312156141ee576141ed612ca1565b5b60006141fc848285016141c3565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000614261603583612d71565b915061426c82614205565b604082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006142cd602083612d71565b91506142d882614297565b602082019050919050565b600060208201905081810360008301526142fc816142c0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614339601c83612d71565b915061434482614303565b602082019050919050565b600060208201905081810360008301526143688161432c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a982612e18565b91506143b483612e18565b92508282039050818111156143cc576143cb61387d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220277bf2f41fe62a4bc7616fe8e88a7a627b67e0894e37aa3faef1d467e63d445564736f6c63430008120033

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

00000000000000000000000086abe2fa73072ca776003f80f59713551359bd25

-----Decoded View---------------
Arg [0] : receiver (address): 0x86ABE2fA73072Ca776003f80f59713551359bd25

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000086abe2fa73072ca776003f80f59713551359bd25


Deployed Bytecode Sourcemap

65955:3933:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69698:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36536:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38111:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37629:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54825:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38877:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54431:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68640:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39320:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55015:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36230:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68395:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68074:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67448:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35908:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63777:103;;;;;;;;;;;;;:::i;:::-;;63129:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36705:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67874:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38370:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66867:573;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66311:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39576:359;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68280:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69519:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66621:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66248:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66130:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66186:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68504:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38621:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67650:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64035:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69698:187;69817:4;69841:36;69865:11;69841:23;:36::i;:::-;69834:43;;69698:187;;;:::o;36536:100::-;36590:13;36623:5;36616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36536:100;:::o;38111:187::-;38203:7;38223:23;38238:7;38223:14;:23::i;:::-;38266:15;:24;38282:7;38266:24;;;;;;;;;;;;;;;;;;;;;38259:31;;38111:187;;;:::o;37629:416::-;37710:13;37726:23;37741:7;37726:14;:23::i;:::-;37710:39;;37774:5;37768:11;;:2;:11;;;37760:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37868:5;37852:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37877:37;37894:5;37901:12;:10;:12::i;:::-;37877:16;:37::i;:::-;37852:62;37830:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38016:21;38025:2;38029:7;38016:8;:21::i;:::-;37699:346;37629:416;;:::o;54825:113::-;54886:7;54913:10;:17;;;;54906:24;;54825:113;:::o;38877:372::-;39086:41;39105:12;:10;:12::i;:::-;39119:7;39086:18;:41::i;:::-;39064:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;39213:28;39223:4;39229:2;39233:7;39213:9;:28::i;:::-;38877:372;;;:::o;54431:318::-;54553:7;54603:23;54620:5;54603:16;:23::i;:::-;54595:5;:31;54573:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;54715:12;:19;54728:5;54715:19;;;;;;;;;;;;;;;:26;54735:5;54715:26;;;;;;;;;;;;54708:33;;54431:318;;;;:::o;68640:400::-;68718:12;68743:22;68768:25;:15;:23;:25::i;:::-;68743:50;;68827:8;;68810:14;:25;:51;;;;68839:15;:22;68855:5;68839:22;;;;;;;;;;;;;;;;;;;;;;;;;68810:51;68806:227;;;68885:1;68878:8;;68806:227;;;68908:16;:23;68925:5;68908:23;;;;;;;;;;;;;;;;;;;;;;;;;68904:129;;;66228:11;68948:22;;68904:129;;;66168:11;69003:18;;68904:129;68806:227;68732:308;68640:400;;;:::o;39320:185::-;39458:39;39475:4;39481:2;39485:7;39458:39;;;;;;;;;;;;:16;:39::i;:::-;39320:185;;;:::o;55015:286::-;55106:7;55156:30;:28;:30::i;:::-;55148:5;:38;55126:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;55276:10;55287:5;55276:17;;;;;;;;:::i;:::-;;;;;;;;;;55269:24;;55015:286;;;:::o;36230:239::-;36318:7;36338:13;36354:17;36363:7;36354:8;:17::i;:::-;36338:33;;36407:1;36390:19;;:5;:19;;;36382:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36456:5;36449:12;;;36230:239;;;:::o;68395:101::-;63015:13;:11;:13::i;:::-;68479:9:::1;68468:8;:20;;;;68395:101:::0;:::o;68074:198::-;63015:13;:11;:13::i;:::-;68165:9:::1;68160:105;68184:6;:13;68180:1;:17;68160:105;;;68248:5;68219:15;:26;68235:6;68242:1;68235:9;;;;;;;;:::i;:::-;;;;;;;;68219:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;68199:3;;;;;:::i;:::-;;;;68160:105;;;;68074:198:::0;:::o;67448:194::-;63015:13;:11;:13::i;:::-;67535:9:::1;67530:105;67554:6;:13;67550:1;:17;67530:105;;;67619:4;67589:16;:27;67606:6;67613:1;67606:9;;;;;;;;:::i;:::-;;;;;;;;67589:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;67569:3;;;;;:::i;:::-;;;;67530:105;;;;67448:194:::0;:::o;35908:260::-;35996:7;36055:1;36038:19;;:5;:19;;;36016:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;36144:9;:16;36154:5;36144:16;;;;;;;;;;;;;;;;36137:23;;35908:260;;;:::o;63777:103::-;63015:13;:11;:13::i;:::-;63842:30:::1;63869:1;63842:18;:30::i;:::-;63777:103::o:0;63129:87::-;63175:7;63202:6;;;;;;;;;;;63195:13;;63129:87;:::o;36705:104::-;36761:13;36794:7;36787:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36705:104;:::o;67874:192::-;63015:13;:11;:13::i;:::-;67960:9:::1;67955:104;67979:6;:13;67975:1;:17;67955:104;;;68043:4;68014:15;:26;68030:6;68037:1;68030:9;;;;;;;;:::i;:::-;;;;;;;;68014:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;67994:3;;;;;:::i;:::-;;;;67955:104;;;;67874:192:::0;:::o;38370:180::-;38490:52;38509:12;:10;:12::i;:::-;38523:8;38533;38490:18;:52::i;:::-;38370:180;;:::o;66867:573::-;66963:9;;66958:1;66942:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;66934:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;67001:11;67015:28;67032:10;67015:16;:28::i;:::-;67001:42;;67069:9;67062:3;:16;;67054:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;67113:27;:15;:25;:27::i;:::-;67151:15;67169:25;:15;:23;:25::i;:::-;67151:43;;67215:11;;;;;;;;;;;67207:29;;:40;67237:9;67207:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67258:30;67268:10;67280:7;67258:9;:30::i;:::-;67299:26;67312:7;67321:3;67299:12;:26::i;:::-;67342:15;:27;67358:10;67342:27;;;;;;;;;;;;;;;;;;;;;;;;;67338:95;;;67416:5;67386:15;:27;67402:10;67386:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;67338:95;66923:517;;66867:573;:::o;66311:26::-;;;;;;;;;;;;;:::o;39576:359::-;39764:41;39783:12;:10;:12::i;:::-;39797:7;39764:18;:41::i;:::-;39742:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;39889:38;39903:4;39909:2;39913:7;39922:4;39889:13;:38::i;:::-;39576:359;;;;:::o;68280:107::-;63015:13;:11;:13::i;:::-;68370:9:::1;68356:11;;:23;;;;;;;;;;;;;;;;;;68280:107:::0;:::o;69519:171::-;69626:13;69659:23;69674:7;69659:14;:23::i;:::-;69652:30;;69519:171;;;:::o;66621:238::-;63015:13;:11;:13::i;:::-;66698:27:::1;:15;:25;:27::i;:::-;66736:15;66754:25;:15;:23;:25::i;:::-;66736:43;;66792:22;66802:2;66806:7;66792:9;:22::i;:::-;66825:26;66838:7;66847:3;66825:12;:26::i;:::-;66687:172;66621:238:::0;;:::o;66248:24::-;;;;:::o;66130:49::-;66168:11;66130:49;:::o;66186:53::-;66228:11;66186:53;:::o;68504:128::-;63015:13;:11;:13::i;:::-;68591:10:::1;68583:28;;:41;68612:11;68583:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68504:128:::0;:::o;38621:189::-;38743:4;38767:18;:25;38786:5;38767:25;;;;;;;;;;;;;;;:35;38793:8;38767:35;;;;;;;;;;;;;;;;;;;;;;;;;38760:42;;38621:189;;;;:::o;67650:216::-;63015:13;:11;:13::i;:::-;67758:9:::1;67753:106;67777:6;:13;67773:1;:17;67753:106;;;67842:5;67812:16;:27;67829:6;67836:1;67829:9;;;;;;;;:::i;:::-;;;;;;;;67812:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;67792:3;;;;;:::i;:::-;;;;67753:106;;;;67650:216:::0;:::o;64035:238::-;63015:13;:11;:13::i;:::-;64158:1:::1;64138:22;;:8;:22;;::::0;64116:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64237:28;64256:8;64237:18;:28::i;:::-;64035:238:::0;:::o;54081:266::-;54199:4;54251:35;54236:50;;;:11;:50;;;;:103;;;;54303:36;54327:11;54303:23;:36::i;:::-;54236:103;54216:123;;54081:266;;;:::o;48232:135::-;48314:16;48322:7;48314;:16::i;:::-;48306:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48232:135;:::o;18030:98::-;18083:7;18110:10;18103:17;;18030:98;:::o;47511:174::-;47613:2;47586:15;:24;47602:7;47586:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47669:7;47665:2;47631:46;;47640:23;47655:7;47640:14;:23::i;:::-;47631:46;;;;;;;;;;;;47511:174;;:::o;42005:315::-;42123:4;42140:13;42156:23;42171:7;42156:14;:23::i;:::-;42140:39;;42209:5;42198:16;;:7;:16;;;:65;;;;42231:32;42248:5;42255:7;42231:16;:32::i;:::-;42198:65;:113;;;;42304:7;42280:31;;:20;42292:7;42280:11;:20::i;:::-;:31;;;42198:113;42190:122;;;42005:315;;;;:::o;46055:1337::-;46228:4;46201:31;;:23;46216:7;46201:14;:23::i;:::-;:31;;;46179:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;46330:1;46316:16;;:2;:16;;;46308:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46386:42;46407:4;46413:2;46417:7;46426:1;46386:20;:42::i;:::-;46572:4;46545:31;;:23;46560:7;46545:14;:23::i;:::-;:31;;;46523:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;46713:15;:24;46729:7;46713:24;;;;;;;;;;;;46706:31;;;;;;;;;;;47208:1;47189:9;:15;47199:4;47189:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47241:1;47224:9;:13;47234:2;47224:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47283:2;47264:7;:16;47272:7;47264:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47322:7;47318:2;47303:27;;47312:4;47303:27;;;;;;;;;;;;47343:41;47363:4;47369:2;47373:7;47382:1;47343:19;:41::i;:::-;46055:1337;;;:::o;65362:114::-;65427:7;65454;:14;;;65447:21;;65362:114;;;:::o;41280:117::-;41346:7;41373;:16;41381:7;41373:16;;;;;;;;;;;;;;;;;;;;;41366:23;;41280:117;;;:::o;63294:132::-;63369:12;:10;:12::i;:::-;63358:23;;:7;:5;:7::i;:::-;:23;;;63350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63294:132::o;64433:191::-;64507:16;64526:6;;;;;;;;;;;64507:25;;64552:8;64543:6;;:17;;;;;;;;;;;;;;;;;;64607:8;64576:40;;64597:8;64576:40;;;;;;;;;;;;64496:128;64433:191;:::o;47828:315::-;47983:8;47974:17;;:5;:17;;;47966:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48070:8;48032:18;:25;48051:5;48032:25;;;;;;;;;;;;;;;:35;48058:8;48032:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;48116:8;48094:41;;48109:5;48094:41;;;48126:8;48094:41;;;;;;:::i;:::-;;;;;;;;47828:315;;;:::o;65484:127::-;65591:1;65573:7;:14;;;:19;;;;;;;;;;;65484:127;:::o;42662:110::-;42738:26;42748:2;42752:7;42738:26;;;;;;;;;;;;:9;:26::i;:::-;42662:110;;:::o;61310:279::-;61449:16;61457:7;61449;:16::i;:::-;61427:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;61572:9;61550:10;:19;61561:7;61550:19;;;;;;;;;;;:31;;;;;;:::i;:::-;;61310:279;;:::o;40816:350::-;40972:28;40982:4;40988:2;40992:7;40972:9;:28::i;:::-;41033:47;41056:4;41062:2;41066:7;41075:4;41033:22;:47::i;:::-;41011:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;40816:350;;;;:::o;60514:640::-;60603:13;60629:23;60644:7;60629:14;:23::i;:::-;60665;60691:10;:19;60702:7;60691:19;;;;;;;;;;;60665:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60721:18;60742:10;:8;:10::i;:::-;60721:31;;60850:1;60834:4;60828:18;:23;60824:72;;60875:9;60868:16;;;;;;60824:72;61026:1;61006:9;61000:23;:27;60996:108;;;61075:4;61081:9;61058:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61044:48;;;;;;60996:108;61123:23;61138:7;61123:14;:23::i;:::-;61116:30;;;;60514:640;;;;:::o;35523:321::-;35641:4;35693:25;35678:40;;;:11;:40;;;;:105;;;;35750:33;35735:48;;;:11;:48;;;;35678:105;:158;;;;35800:36;35824:11;35800:23;:36::i;:::-;35678:158;35658:178;;35523:321;;;:::o;41710:128::-;41775:4;41828:1;41799:31;;:17;41808:7;41799:8;:17::i;:::-;:31;;;;41792:38;;41710:128;;;:::o;69118:254::-;69308:56;69335:4;69341:2;69345:7;69354:9;69308:26;:56::i;:::-;69118:254;;;;:::o;51578:158::-;;;;;:::o;42999:319::-;43128:18;43134:2;43138:7;43128:5;:18::i;:::-;43179:53;43210:1;43214:2;43218:7;43227:4;43179:22;:53::i;:::-;43157:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42999:319;;;:::o;48931:1034::-;49085:4;49106:15;:2;:13;;;:15::i;:::-;49102:856;;;49175:2;49159:36;;;49218:12;:10;:12::i;:::-;49253:4;49280:7;49310:4;49159:174;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49138:765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49533:1;49516:6;:13;:18;49512:376;;49559:108;;;;;;;;;;:::i;:::-;;;;;;;;49512:376;49838:6;49832:13;49823:6;49819:2;49815:15;49808:38;49138:765;49407:41;;;49397:51;;;:6;:51;;;;49390:58;;;;;49102:856;49942:4;49935:11;;48931:1034;;;;;;;:::o;37473:94::-;37524:13;37550:9;;;;;;;;;;;;;;37473:94;:::o;36880:344::-;36969:13;36995:23;37010:7;36995:14;:23::i;:::-;37031:21;37055:10;:8;:10::i;:::-;37031:34;;37120:1;37102:7;37096:21;:25;:120;;;;;;;;;;;;;;;;;37165:7;37174:18;:7;:16;:18::i;:::-;37148:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37096:120;37076:140;;;36880:344;;;:::o;34116:173::-;34217:4;34256:25;34241:40;;;:11;:40;;;;34234:47;;34116:173;;;:::o;55375:915::-;55552:61;55579:4;55585:2;55589:12;55603:9;55552:26;:61::i;:::-;55642:1;55630:9;:13;55626:222;;;55773:63;;;;;;;;;;:::i;:::-;;;;;;;;55626:222;55860:15;55878:12;55860:30;;55923:1;55907:18;;:4;:18;;;55903:187;;55942:40;55974:7;55942:31;:40::i;:::-;55903:187;;;56012:2;56004:10;;:4;:10;;;56000:90;;56031:47;56064:4;56070:7;56031:32;:47::i;:::-;56000:90;55903:187;56118:1;56104:16;;:2;:16;;;56100:183;;56137:45;56174:7;56137:36;:45::i;:::-;56100:183;;;56210:4;56204:10;;:2;:10;;;56200:83;;56231:40;56259:2;56263:7;56231:27;:40::i;:::-;56200:83;56100:183;55541:749;55375:915;;;;:::o;43654:942::-;43748:1;43734:16;;:2;:16;;;43726:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43807:16;43815:7;43807;:16::i;:::-;43806:17;43798:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43869:48;43898:1;43902:2;43906:7;43915:1;43869:20;:48::i;:::-;44016:16;44024:7;44016;:16::i;:::-;44015:17;44007:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44431:1;44414:9;:13;44424:2;44414:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44475:2;44456:7;:16;44464:7;44456:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44520:7;44516:2;44495:33;;44512:1;44495:33;;;;;;;;;;;;44541:47;44569:1;44573:2;44577:7;44586:1;44541:19;:47::i;:::-;43654:942;;:::o;8422:326::-;8482:4;8739:1;8717:7;:19;;;:23;8710:30;;8422:326;;;:::o;31499:716::-;31555:13;31606:14;31643:1;31623:17;31634:5;31623:10;:17::i;:::-;:21;31606:38;;31659:20;31693:6;31682:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31659:41;;31715:11;31844:6;31840:2;31836:15;31828:6;31824:28;31817:35;;31881:288;31888:4;31881:288;;;31913:5;;;;;;;;32055:8;32050:2;32043:5;32039:14;32034:30;32029:3;32021:44;32111:2;32102:11;;;;;;:::i;:::-;;;;;32145:1;32136:5;:10;31881:288;32132:21;31881:288;32190:6;32183:13;;;;;31499:716;;;:::o;50697:159::-;;;;;:::o;57013:164::-;57117:10;:17;;;;57090:15;:24;57106:7;57090:24;;;;;;;;;;;:44;;;;57145:10;57161:7;57145:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57013:164;:::o;57804:1013::-;58095:22;58145:1;58120:22;58137:4;58120:16;:22::i;:::-;:26;;;;:::i;:::-;58095:51;;58157:18;58178:17;:26;58196:7;58178:26;;;;;;;;;;;;58157:47;;58325:14;58311:10;:28;58307:328;;58356:19;58378:12;:18;58391:4;58378:18;;;;;;;;;;;;;;;:34;58397:14;58378:34;;;;;;;;;;;;58356:56;;58462:11;58429:12;:18;58442:4;58429:18;;;;;;;;;;;;;;;:30;58448:10;58429:30;;;;;;;;;;;:44;;;;58579:10;58546:17;:30;58564:11;58546:30;;;;;;;;;;;:43;;;;58341:294;58307:328;58731:17;:26;58749:7;58731:26;;;;;;;;;;;58724:33;;;58775:12;:18;58788:4;58775:18;;;;;;;;;;;;;;;:34;58794:14;58775:34;;;;;;;;;;;58768:41;;;57910:907;;57804:1013;;:::o;59112:1079::-;59365:22;59410:1;59390:10;:17;;;;:21;;;;:::i;:::-;59365:46;;59422:18;59443:15;:24;59459:7;59443:24;;;;;;;;;;;;59422:45;;59794:19;59816:10;59827:14;59816:26;;;;;;;;:::i;:::-;;;;;;;;;;59794:48;;59880:11;59855:10;59866;59855:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;59991:10;59960:15;:28;59976:11;59960:28;;;;;;;;;;;:41;;;;60132:15;:24;60148:7;60132:24;;;;;;;;;;;60125:31;;;60167:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;59183:1008;;;59112:1079;:::o;56591:221::-;56676:14;56693:20;56710:2;56693:16;:20::i;:::-;56676:37;;56751:7;56724:12;:16;56737:2;56724:16;;;;;;;;;;;;;;;:24;56741:6;56724:24;;;;;;;;;;;:34;;;;56798:6;56769:17;:26;56787:7;56769:26;;;;;;;;;;;:35;;;;56665:147;56591:221;;:::o;28375:948::-;28428:7;28448:14;28465:1;28448:18;;28515:8;28506:5;:17;28502:106;;28553:8;28544:17;;;;;;:::i;:::-;;;;;28590:2;28580:12;;;;28502:106;28635:8;28626:5;:17;28622:106;;28673:8;28664:17;;;;;;:::i;:::-;;;;;28710:2;28700:12;;;;28622:106;28755:8;28746:5;:17;28742:106;;28793:8;28784:17;;;;;;:::i;:::-;;;;;28830:2;28820:12;;;;28742:106;28875:7;28866:5;:16;28862:103;;28912:7;28903:16;;;;;;:::i;:::-;;;;;28948:1;28938:11;;;;28862:103;28992:7;28983:5;:16;28979:103;;29029:7;29020:16;;;;;;:::i;:::-;;;;;29065:1;29055:11;;;;28979:103;29109:7;29100:5;:16;29096:103;;29146:7;29137:16;;;;;;:::i;:::-;;;;;29182:1;29172:11;;;;29096:103;29226:7;29217:5;:16;29213:68;;29264:1;29254:11;;;;29213:68;29309:6;29302:13;;;28375:948;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:180;6373:77;6370:1;6363:88;6470:4;6467:1;6460:15;6494:4;6491:1;6484:15;6511:281;6594:27;6616:4;6594:27;:::i;:::-;6586:6;6582:40;6724:6;6712:10;6709:22;6688:18;6676:10;6673:34;6670:62;6667:88;;;6735:18;;:::i;:::-;6667:88;6775:10;6771:2;6764:22;6554:238;6511:281;;:::o;6798:129::-;6832:6;6859:20;;:::i;:::-;6849:30;;6888:33;6916:4;6908:6;6888:33;:::i;:::-;6798:129;;;:::o;6933:311::-;7010:4;7100:18;7092:6;7089:30;7086:56;;;7122:18;;:::i;:::-;7086:56;7172:4;7164:6;7160:17;7152:25;;7232:4;7226;7222:15;7214:23;;6933:311;;;:::o;7250:117::-;7359:1;7356;7349:12;7390:710;7486:5;7511:81;7527:64;7584:6;7527:64;:::i;:::-;7511:81;:::i;:::-;7502:90;;7612:5;7641:6;7634:5;7627:21;7675:4;7668:5;7664:16;7657:23;;7728:4;7720:6;7716:17;7708:6;7704:30;7757:3;7749:6;7746:15;7743:122;;;7776:79;;:::i;:::-;7743:122;7891:6;7874:220;7908:6;7903:3;7900:15;7874:220;;;7983:3;8012:37;8045:3;8033:10;8012:37;:::i;:::-;8007:3;8000:50;8079:4;8074:3;8070:14;8063:21;;7950:144;7934:4;7929:3;7925:14;7918:21;;7874:220;;;7878:21;7492:608;;7390:710;;;;;:::o;8123:370::-;8194:5;8243:3;8236:4;8228:6;8224:17;8220:27;8210:122;;8251:79;;:::i;:::-;8210:122;8368:6;8355:20;8393:94;8483:3;8475:6;8468:4;8460:6;8456:17;8393:94;:::i;:::-;8384:103;;8200:293;8123:370;;;;:::o;8499:539::-;8583:6;8632:2;8620:9;8611:7;8607:23;8603:32;8600:119;;;8638:79;;:::i;:::-;8600:119;8786:1;8775:9;8771:17;8758:31;8816:18;8808:6;8805:30;8802:117;;;8838:79;;:::i;:::-;8802:117;8943:78;9013:7;9004:6;8993:9;8989:22;8943:78;:::i;:::-;8933:88;;8729:302;8499:539;;;;:::o;9044:116::-;9114:21;9129:5;9114:21;:::i;:::-;9107:5;9104:32;9094:60;;9150:1;9147;9140:12;9094:60;9044:116;:::o;9166:133::-;9209:5;9247:6;9234:20;9225:29;;9263:30;9287:5;9263:30;:::i;:::-;9166:133;;;;:::o;9305:468::-;9370:6;9378;9427:2;9415:9;9406:7;9402:23;9398:32;9395:119;;;9433:79;;:::i;:::-;9395:119;9553:1;9578:53;9623:7;9614:6;9603:9;9599:22;9578:53;:::i;:::-;9568:63;;9524:117;9680:2;9706:50;9748:7;9739:6;9728:9;9724:22;9706:50;:::i;:::-;9696:60;;9651:115;9305:468;;;;;:::o;9779:117::-;9888:1;9885;9878:12;9902:308;9964:4;10054:18;10046:6;10043:30;10040:56;;;10076:18;;:::i;:::-;10040:56;10114:29;10136:6;10114:29;:::i;:::-;10106:37;;10198:4;10192;10188:15;10180:23;;9902:308;;;:::o;10216:146::-;10313:6;10308:3;10303;10290:30;10354:1;10345:6;10340:3;10336:16;10329:27;10216:146;;;:::o;10368:425::-;10446:5;10471:66;10487:49;10529:6;10487:49;:::i;:::-;10471:66;:::i;:::-;10462:75;;10560:6;10553:5;10546:21;10598:4;10591:5;10587:16;10636:3;10627:6;10622:3;10618:16;10615:25;10612:112;;;10643:79;;:::i;:::-;10612:112;10733:54;10780:6;10775:3;10770;10733:54;:::i;:::-;10452:341;10368:425;;;;;:::o;10813:340::-;10869:5;10918:3;10911:4;10903:6;10899:17;10895:27;10885:122;;10926:79;;:::i;:::-;10885:122;11043:6;11030:20;11068:79;11143:3;11135:6;11128:4;11120:6;11116:17;11068:79;:::i;:::-;11059:88;;10875:278;10813:340;;;;:::o;11159:509::-;11228:6;11277:2;11265:9;11256:7;11252:23;11248:32;11245:119;;;11283:79;;:::i;:::-;11245:119;11431:1;11420:9;11416:17;11403:31;11461:18;11453:6;11450:30;11447:117;;;11483:79;;:::i;:::-;11447:117;11588:63;11643:7;11634:6;11623:9;11619:22;11588:63;:::i;:::-;11578:73;;11374:287;11159:509;;;;:::o;11674:307::-;11735:4;11825:18;11817:6;11814:30;11811:56;;;11847:18;;:::i;:::-;11811:56;11885:29;11907:6;11885:29;:::i;:::-;11877:37;;11969:4;11963;11959:15;11951:23;;11674:307;;;:::o;11987:423::-;12064:5;12089:65;12105:48;12146:6;12105:48;:::i;:::-;12089:65;:::i;:::-;12080:74;;12177:6;12170:5;12163:21;12215:4;12208:5;12204:16;12253:3;12244:6;12239:3;12235:16;12232:25;12229:112;;;12260:79;;:::i;:::-;12229:112;12350:54;12397:6;12392:3;12387;12350:54;:::i;:::-;12070:340;11987:423;;;;;:::o;12429:338::-;12484:5;12533:3;12526:4;12518:6;12514:17;12510:27;12500:122;;12541:79;;:::i;:::-;12500:122;12658:6;12645:20;12683:78;12757:3;12749:6;12742:4;12734:6;12730:17;12683:78;:::i;:::-;12674:87;;12490:277;12429:338;;;;:::o;12773:943::-;12868:6;12876;12884;12892;12941:3;12929:9;12920:7;12916:23;12912:33;12909:120;;;12948:79;;:::i;:::-;12909:120;13068:1;13093:53;13138:7;13129:6;13118:9;13114:22;13093:53;:::i;:::-;13083:63;;13039:117;13195:2;13221:53;13266:7;13257:6;13246:9;13242:22;13221:53;:::i;:::-;13211:63;;13166:118;13323:2;13349:53;13394:7;13385:6;13374:9;13370:22;13349:53;:::i;:::-;13339:63;;13294:118;13479:2;13468:9;13464:18;13451:32;13510:18;13502:6;13499:30;13496:117;;;13532:79;;:::i;:::-;13496:117;13637:62;13691:7;13682:6;13671:9;13667:22;13637:62;:::i;:::-;13627:72;;13422:287;12773:943;;;;;;;:::o;13722:654::-;13800:6;13808;13857:2;13845:9;13836:7;13832:23;13828:32;13825:119;;;13863:79;;:::i;:::-;13825:119;13983:1;14008:53;14053:7;14044:6;14033:9;14029:22;14008:53;:::i;:::-;13998:63;;13954:117;14138:2;14127:9;14123:18;14110:32;14169:18;14161:6;14158:30;14155:117;;;14191:79;;:::i;:::-;14155:117;14296:63;14351:7;14342:6;14331:9;14327:22;14296:63;:::i;:::-;14286:73;;14081:288;13722:654;;;;;:::o;14382:474::-;14450:6;14458;14507:2;14495:9;14486:7;14482:23;14478:32;14475:119;;;14513:79;;:::i;:::-;14475:119;14633:1;14658:53;14703:7;14694:6;14683:9;14679:22;14658:53;:::i;:::-;14648:63;;14604:117;14760:2;14786:53;14831:7;14822:6;14811:9;14807:22;14786:53;:::i;:::-;14776:63;;14731:118;14382:474;;;;;:::o;14862:180::-;14910:77;14907:1;14900:88;15007:4;15004:1;14997:15;15031:4;15028:1;15021:15;15048:320;15092:6;15129:1;15123:4;15119:12;15109:22;;15176:1;15170:4;15166:12;15197:18;15187:81;;15253:4;15245:6;15241:17;15231:27;;15187:81;15315:2;15307:6;15304:14;15284:18;15281:38;15278:84;;15334:18;;:::i;:::-;15278:84;15099:269;15048:320;;;:::o;15374:220::-;15514:34;15510:1;15502:6;15498:14;15491:58;15583:3;15578:2;15570:6;15566:15;15559:28;15374:220;:::o;15600:366::-;15742:3;15763:67;15827:2;15822:3;15763:67;:::i;:::-;15756:74;;15839:93;15928:3;15839:93;:::i;:::-;15957:2;15952:3;15948:12;15941:19;;15600:366;;;:::o;15972:419::-;16138:4;16176:2;16165:9;16161:18;16153:26;;16225:9;16219:4;16215:20;16211:1;16200:9;16196:17;16189:47;16253:131;16379:4;16253:131;:::i;:::-;16245:139;;15972:419;;;:::o;16397:248::-;16537:34;16533:1;16525:6;16521:14;16514:58;16606:31;16601:2;16593:6;16589:15;16582:56;16397:248;:::o;16651:366::-;16793:3;16814:67;16878:2;16873:3;16814:67;:::i;:::-;16807:74;;16890:93;16979:3;16890:93;:::i;:::-;17008:2;17003:3;16999:12;16992:19;;16651:366;;;:::o;17023:419::-;17189:4;17227:2;17216:9;17212:18;17204:26;;17276:9;17270:4;17266:20;17262:1;17251:9;17247:17;17240:47;17304:131;17430:4;17304:131;:::i;:::-;17296:139;;17023:419;;;:::o;17448:232::-;17588:34;17584:1;17576:6;17572:14;17565:58;17657:15;17652:2;17644:6;17640:15;17633:40;17448:232;:::o;17686:366::-;17828:3;17849:67;17913:2;17908:3;17849:67;:::i;:::-;17842:74;;17925:93;18014:3;17925:93;:::i;:::-;18043:2;18038:3;18034:12;18027:19;;17686:366;;;:::o;18058:419::-;18224:4;18262:2;18251:9;18247:18;18239:26;;18311:9;18305:4;18301:20;18297:1;18286:9;18282:17;18275:47;18339:131;18465:4;18339:131;:::i;:::-;18331:139;;18058:419;;;:::o;18483:230::-;18623:34;18619:1;18611:6;18607:14;18600:58;18692:13;18687:2;18679:6;18675:15;18668:38;18483:230;:::o;18719:366::-;18861:3;18882:67;18946:2;18941:3;18882:67;:::i;:::-;18875:74;;18958:93;19047:3;18958:93;:::i;:::-;19076:2;19071:3;19067:12;19060:19;;18719:366;;;:::o;19091:419::-;19257:4;19295:2;19284:9;19280:18;19272:26;;19344:9;19338:4;19334:20;19330:1;19319:9;19315:17;19308:47;19372:131;19498:4;19372:131;:::i;:::-;19364:139;;19091:419;;;:::o;19516:231::-;19656:34;19652:1;19644:6;19640:14;19633:58;19725:14;19720:2;19712:6;19708:15;19701:39;19516:231;:::o;19753:366::-;19895:3;19916:67;19980:2;19975:3;19916:67;:::i;:::-;19909:74;;19992:93;20081:3;19992:93;:::i;:::-;20110:2;20105:3;20101:12;20094:19;;19753:366;;;:::o;20125:419::-;20291:4;20329:2;20318:9;20314:18;20306:26;;20378:9;20372:4;20368:20;20364:1;20353:9;20349:17;20342:47;20406:131;20532:4;20406:131;:::i;:::-;20398:139;;20125:419;;;:::o;20550:180::-;20598:77;20595:1;20588:88;20695:4;20692:1;20685:15;20719:4;20716:1;20709:15;20736:174;20876:26;20872:1;20864:6;20860:14;20853:50;20736:174;:::o;20916:366::-;21058:3;21079:67;21143:2;21138:3;21079:67;:::i;:::-;21072:74;;21155:93;21244:3;21155:93;:::i;:::-;21273:2;21268:3;21264:12;21257:19;;20916:366;;;:::o;21288:419::-;21454:4;21492:2;21481:9;21477:18;21469:26;;21541:9;21535:4;21531:20;21527:1;21516:9;21512:17;21505:47;21569:131;21695:4;21569:131;:::i;:::-;21561:139;;21288:419;;;:::o;21713:180::-;21761:77;21758:1;21751:88;21858:4;21855:1;21848:15;21882:4;21879:1;21872:15;21899:233;21938:3;21961:24;21979:5;21961:24;:::i;:::-;21952:33;;22007:66;22000:5;21997:77;21994:103;;22077:18;;:::i;:::-;21994:103;22124:1;22117:5;22113:13;22106:20;;21899:233;;;:::o;22138:228::-;22278:34;22274:1;22266:6;22262:14;22255:58;22347:11;22342:2;22334:6;22330:15;22323:36;22138:228;:::o;22372:366::-;22514:3;22535:67;22599:2;22594:3;22535:67;:::i;:::-;22528:74;;22611:93;22700:3;22611:93;:::i;:::-;22729:2;22724:3;22720:12;22713:19;;22372:366;;;:::o;22744:419::-;22910:4;22948:2;22937:9;22933:18;22925:26;;22997:9;22991:4;22987:20;22983:1;22972:9;22968:17;22961:47;23025:131;23151:4;23025:131;:::i;:::-;23017:139;;22744:419;;;:::o;23169:191::-;23209:3;23228:20;23246:1;23228:20;:::i;:::-;23223:25;;23262:20;23280:1;23262:20;:::i;:::-;23257:25;;23305:1;23302;23298:9;23291:16;;23326:3;23323:1;23320:10;23317:36;;;23333:18;;:::i;:::-;23317:36;23169:191;;;;:::o;23366:163::-;23506:15;23502:1;23494:6;23490:14;23483:39;23366:163;:::o;23535:366::-;23677:3;23698:67;23762:2;23757:3;23698:67;:::i;:::-;23691:74;;23774:93;23863:3;23774:93;:::i;:::-;23892:2;23887:3;23883:12;23876:19;;23535:366;;;:::o;23907:419::-;24073:4;24111:2;24100:9;24096:18;24088:26;;24160:9;24154:4;24150:20;24146:1;24135:9;24131:17;24124:47;24188:131;24314:4;24188:131;:::i;:::-;24180:139;;23907:419;;;:::o;24332:167::-;24472:19;24468:1;24460:6;24456:14;24449:43;24332:167;:::o;24505:366::-;24647:3;24668:67;24732:2;24727:3;24668:67;:::i;:::-;24661:74;;24744:93;24833:3;24744:93;:::i;:::-;24862:2;24857:3;24853:12;24846:19;;24505:366;;;:::o;24877:419::-;25043:4;25081:2;25070:9;25066:18;25058:26;;25130:9;25124:4;25120:20;25116:1;25105:9;25101:17;25094:47;25158:131;25284:4;25158:131;:::i;:::-;25150:139;;24877:419;;;:::o;25302:225::-;25442:34;25438:1;25430:6;25426:14;25419:58;25511:8;25506:2;25498:6;25494:15;25487:33;25302:225;:::o;25533:366::-;25675:3;25696:67;25760:2;25755:3;25696:67;:::i;:::-;25689:74;;25772:93;25861:3;25772:93;:::i;:::-;25890:2;25885:3;25881:12;25874:19;;25533:366;;;:::o;25905:419::-;26071:4;26109:2;26098:9;26094:18;26086:26;;26158:9;26152:4;26148:20;26144:1;26133:9;26129:17;26122:47;26186:131;26312:4;26186:131;:::i;:::-;26178:139;;25905:419;;;:::o;26330:224::-;26470:34;26466:1;26458:6;26454:14;26447:58;26539:7;26534:2;26526:6;26522:15;26515:32;26330:224;:::o;26560:366::-;26702:3;26723:67;26787:2;26782:3;26723:67;:::i;:::-;26716:74;;26799:93;26888:3;26799:93;:::i;:::-;26917:2;26912:3;26908:12;26901:19;;26560:366;;;:::o;26932:419::-;27098:4;27136:2;27125:9;27121:18;27113:26;;27185:9;27179:4;27175:20;27171:1;27160:9;27156:17;27149:47;27213:131;27339:4;27213:131;:::i;:::-;27205:139;;26932:419;;;:::o;27357:223::-;27497:34;27493:1;27485:6;27481:14;27474:58;27566:6;27561:2;27553:6;27549:15;27542:31;27357:223;:::o;27586:366::-;27728:3;27749:67;27813:2;27808:3;27749:67;:::i;:::-;27742:74;;27825:93;27914:3;27825:93;:::i;:::-;27943:2;27938:3;27934:12;27927:19;;27586:366;;;:::o;27958:419::-;28124:4;28162:2;28151:9;28147:18;28139:26;;28211:9;28205:4;28201:20;28197:1;28186:9;28182:17;28175:47;28239:131;28365:4;28239:131;:::i;:::-;28231:139;;27958:419;;;:::o;28383:182::-;28523:34;28519:1;28511:6;28507:14;28500:58;28383:182;:::o;28571:366::-;28713:3;28734:67;28798:2;28793:3;28734:67;:::i;:::-;28727:74;;28810:93;28899:3;28810:93;:::i;:::-;28928:2;28923:3;28919:12;28912:19;;28571:366;;;:::o;28943:419::-;29109:4;29147:2;29136:9;29132:18;29124:26;;29196:9;29190:4;29186:20;29182:1;29171:9;29167:17;29160:47;29224:131;29350:4;29224:131;:::i;:::-;29216:139;;28943:419;;;:::o;29368:175::-;29508:27;29504:1;29496:6;29492:14;29485:51;29368:175;:::o;29549:366::-;29691:3;29712:67;29776:2;29771:3;29712:67;:::i;:::-;29705:74;;29788:93;29877:3;29788:93;:::i;:::-;29906:2;29901:3;29897:12;29890:19;;29549:366;;;:::o;29921:419::-;30087:4;30125:2;30114:9;30110:18;30102:26;;30174:9;30168:4;30164:20;30160:1;30149:9;30145:17;30138:47;30202:131;30328:4;30202:131;:::i;:::-;30194:139;;29921:419;;;:::o;30346:233::-;30486:34;30482:1;30474:6;30470:14;30463:58;30555:16;30550:2;30542:6;30538:15;30531:41;30346:233;:::o;30585:366::-;30727:3;30748:67;30812:2;30807:3;30748:67;:::i;:::-;30741:74;;30824:93;30913:3;30824:93;:::i;:::-;30942:2;30937:3;30933:12;30926:19;;30585:366;;;:::o;30957:419::-;31123:4;31161:2;31150:9;31146:18;31138:26;;31210:9;31204:4;31200:20;31196:1;31185:9;31181:17;31174:47;31238:131;31364:4;31238:131;:::i;:::-;31230:139;;30957:419;;;:::o;31382:141::-;31431:4;31454:3;31446:11;;31477:3;31474:1;31467:14;31511:4;31508:1;31498:18;31490:26;;31382:141;;;:::o;31529:93::-;31566:6;31613:2;31608;31601:5;31597:14;31593:23;31583:33;;31529:93;;;:::o;31628:107::-;31672:8;31722:5;31716:4;31712:16;31691:37;;31628:107;;;;:::o;31741:393::-;31810:6;31860:1;31848:10;31844:18;31883:97;31913:66;31902:9;31883:97;:::i;:::-;32001:39;32031:8;32020:9;32001:39;:::i;:::-;31989:51;;32073:4;32069:9;32062:5;32058:21;32049:30;;32122:4;32112:8;32108:19;32101:5;32098:30;32088:40;;31817:317;;31741:393;;;;;:::o;32140:60::-;32168:3;32189:5;32182:12;;32140:60;;;:::o;32206:142::-;32256:9;32289:53;32307:34;32316:24;32334:5;32316:24;:::i;:::-;32307:34;:::i;:::-;32289:53;:::i;:::-;32276:66;;32206:142;;;:::o;32354:75::-;32397:3;32418:5;32411:12;;32354:75;;;:::o;32435:269::-;32545:39;32576:7;32545:39;:::i;:::-;32606:91;32655:41;32679:16;32655:41;:::i;:::-;32647:6;32640:4;32634:11;32606:91;:::i;:::-;32600:4;32593:105;32511:193;32435:269;;;:::o;32710:73::-;32755:3;32710:73;:::o;32789:189::-;32866:32;;:::i;:::-;32907:65;32965:6;32957;32951:4;32907:65;:::i;:::-;32842:136;32789:189;;:::o;32984:186::-;33044:120;33061:3;33054:5;33051:14;33044:120;;;33115:39;33152:1;33145:5;33115:39;:::i;:::-;33088:1;33081:5;33077:13;33068:22;;33044:120;;;32984:186;;:::o;33176:543::-;33277:2;33272:3;33269:11;33266:446;;;33311:38;33343:5;33311:38;:::i;:::-;33395:29;33413:10;33395:29;:::i;:::-;33385:8;33381:44;33578:2;33566:10;33563:18;33560:49;;;33599:8;33584:23;;33560:49;33622:80;33678:22;33696:3;33678:22;:::i;:::-;33668:8;33664:37;33651:11;33622:80;:::i;:::-;33281:431;;33266:446;33176:543;;;:::o;33725:117::-;33779:8;33829:5;33823:4;33819:16;33798:37;;33725:117;;;;:::o;33848:169::-;33892:6;33925:51;33973:1;33969:6;33961:5;33958:1;33954:13;33925:51;:::i;:::-;33921:56;34006:4;34000;33996:15;33986:25;;33899:118;33848:169;;;;:::o;34022:295::-;34098:4;34244:29;34269:3;34263:4;34244:29;:::i;:::-;34236:37;;34306:3;34303:1;34299:11;34293:4;34290:21;34282:29;;34022:295;;;;:::o;34322:1395::-;34439:37;34472:3;34439:37;:::i;:::-;34541:18;34533:6;34530:30;34527:56;;;34563:18;;:::i;:::-;34527:56;34607:38;34639:4;34633:11;34607:38;:::i;:::-;34692:67;34752:6;34744;34738:4;34692:67;:::i;:::-;34786:1;34810:4;34797:17;;34842:2;34834:6;34831:14;34859:1;34854:618;;;;35516:1;35533:6;35530:77;;;35582:9;35577:3;35573:19;35567:26;35558:35;;35530:77;35633:67;35693:6;35686:5;35633:67;:::i;:::-;35627:4;35620:81;35489:222;34824:887;;34854:618;34906:4;34902:9;34894:6;34890:22;34940:37;34972:4;34940:37;:::i;:::-;34999:1;35013:208;35027:7;35024:1;35021:14;35013:208;;;35106:9;35101:3;35097:19;35091:26;35083:6;35076:42;35157:1;35149:6;35145:14;35135:24;;35204:2;35193:9;35189:18;35176:31;;35050:4;35047:1;35043:12;35038:17;;35013:208;;;35249:6;35240:7;35237:19;35234:179;;;35307:9;35302:3;35298:19;35292:26;35350:48;35392:4;35384:6;35380:17;35369:9;35350:48;:::i;:::-;35342:6;35335:64;35257:156;35234:179;35459:1;35455;35447:6;35443:14;35439:22;35433:4;35426:36;34861:611;;;34824:887;;34414:1303;;;34322:1395;;:::o;35723:237::-;35863:34;35859:1;35851:6;35847:14;35840:58;35932:20;35927:2;35919:6;35915:15;35908:45;35723:237;:::o;35966:366::-;36108:3;36129:67;36193:2;36188:3;36129:67;:::i;:::-;36122:74;;36205:93;36294:3;36205:93;:::i;:::-;36323:2;36318:3;36314:12;36307:19;;35966:366;;;:::o;36338:419::-;36504:4;36542:2;36531:9;36527:18;36519:26;;36591:9;36585:4;36581:20;36577:1;36566:9;36562:17;36555:47;36619:131;36745:4;36619:131;:::i;:::-;36611:139;;36338:419;;;:::o;36763:148::-;36865:11;36902:3;36887:18;;36763:148;;;;:::o;36917:390::-;37023:3;37051:39;37084:5;37051:39;:::i;:::-;37106:89;37188:6;37183:3;37106:89;:::i;:::-;37099:96;;37204:65;37262:6;37257:3;37250:4;37243:5;37239:16;37204:65;:::i;:::-;37294:6;37289:3;37285:16;37278:23;;37027:280;36917:390;;;;:::o;37313:435::-;37493:3;37515:95;37606:3;37597:6;37515:95;:::i;:::-;37508:102;;37627:95;37718:3;37709:6;37627:95;:::i;:::-;37620:102;;37739:3;37732:10;;37313:435;;;;;:::o;37754:98::-;37805:6;37839:5;37833:12;37823:22;;37754:98;;;:::o;37858:168::-;37941:11;37975:6;37970:3;37963:19;38015:4;38010:3;38006:14;37991:29;;37858:168;;;;:::o;38032:373::-;38118:3;38146:38;38178:5;38146:38;:::i;:::-;38200:70;38263:6;38258:3;38200:70;:::i;:::-;38193:77;;38279:65;38337:6;38332:3;38325:4;38318:5;38314:16;38279:65;:::i;:::-;38369:29;38391:6;38369:29;:::i;:::-;38364:3;38360:39;38353:46;;38122:283;38032:373;;;;:::o;38411:640::-;38606:4;38644:3;38633:9;38629:19;38621:27;;38658:71;38726:1;38715:9;38711:17;38702:6;38658:71;:::i;:::-;38739:72;38807:2;38796:9;38792:18;38783:6;38739:72;:::i;:::-;38821;38889:2;38878:9;38874:18;38865:6;38821:72;:::i;:::-;38940:9;38934:4;38930:20;38925:2;38914:9;38910:18;38903:48;38968:76;39039:4;39030:6;38968:76;:::i;:::-;38960:84;;38411:640;;;;;;;:::o;39057:141::-;39113:5;39144:6;39138:13;39129:22;;39160:32;39186:5;39160:32;:::i;:::-;39057:141;;;;:::o;39204:349::-;39273:6;39322:2;39310:9;39301:7;39297:23;39293:32;39290:119;;;39328:79;;:::i;:::-;39290:119;39448:1;39473:63;39528:7;39519:6;39508:9;39504:22;39473:63;:::i;:::-;39463:73;;39419:127;39204:349;;;;:::o;39559:240::-;39699:34;39695:1;39687:6;39683:14;39676:58;39768:23;39763:2;39755:6;39751:15;39744:48;39559:240;:::o;39805:366::-;39947:3;39968:67;40032:2;40027:3;39968:67;:::i;:::-;39961:74;;40044:93;40133:3;40044:93;:::i;:::-;40162:2;40157:3;40153:12;40146:19;;39805:366;;;:::o;40177:419::-;40343:4;40381:2;40370:9;40366:18;40358:26;;40430:9;40424:4;40420:20;40416:1;40405:9;40401:17;40394:47;40458:131;40584:4;40458:131;:::i;:::-;40450:139;;40177:419;;;:::o;40602:182::-;40742:34;40738:1;40730:6;40726:14;40719:58;40602:182;:::o;40790:366::-;40932:3;40953:67;41017:2;41012:3;40953:67;:::i;:::-;40946:74;;41029:93;41118:3;41029:93;:::i;:::-;41147:2;41142:3;41138:12;41131:19;;40790:366;;;:::o;41162:419::-;41328:4;41366:2;41355:9;41351:18;41343:26;;41415:9;41409:4;41405:20;41401:1;41390:9;41386:17;41379:47;41443:131;41569:4;41443:131;:::i;:::-;41435:139;;41162:419;;;:::o;41587:178::-;41727:30;41723:1;41715:6;41711:14;41704:54;41587:178;:::o;41771:366::-;41913:3;41934:67;41998:2;41993:3;41934:67;:::i;:::-;41927:74;;42010:93;42099:3;42010:93;:::i;:::-;42128:2;42123:3;42119:12;42112:19;;41771:366;;;:::o;42143:419::-;42309:4;42347:2;42336:9;42332:18;42324:26;;42396:9;42390:4;42386:20;42382:1;42371:9;42367:17;42360:47;42424:131;42550:4;42424:131;:::i;:::-;42416:139;;42143:419;;;:::o;42568:180::-;42616:77;42613:1;42606:88;42713:4;42710:1;42703:15;42737:4;42734:1;42727:15;42754:194;42794:4;42814:20;42832:1;42814:20;:::i;:::-;42809:25;;42848:20;42866:1;42848:20;:::i;:::-;42843:25;;42892:1;42889;42885:9;42877:17;;42916:1;42910:4;42907:11;42904:37;;;42921:18;;:::i;:::-;42904:37;42754:194;;;;:::o;42954:180::-;43002:77;42999:1;42992:88;43099:4;43096:1;43089:15;43123:4;43120:1;43113:15

Swarm Source

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