ETH Price: $3,484.05 (-1.25%)
Gas: 3 Gwei

Token

HAPEWIFES (HW)
 

Overview

Max Total Supply

376 HW

Holders

228

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 HW
0xae83297759aab210eb2fa3c7cf42a77d0bd2b07e
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:
HapeWifes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, 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 overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

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

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

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

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

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


pragma solidity ^0.8.0;

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

contract HapeWifes is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI;
    string private notRevealedURI;
    address private donAddress = 0x7F1486142887cadC7f382aC6BE121D506723a91E;
    address private mtvAddress = 0x42150e59Cc600D10d2892Da2EA5966Bd343655Ac;
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

    uint256 public maxSupply = 8000;
    uint256 public mintPerWhitelistTransaction = 2;
    uint256 public mintPerTransaction = 5;
    uint256 public giveawayReserved = 888;
    bytes32 public merkleRoot = 0xf7fae294703a10266ebb810c5df9cfa66a605ec93f45673b7979a1e1f390c5d4;

    uint256 public constant salePrice = 0.15 ether;
    uint256 public constant whitelistSalePrice = 0.1 ether;
    bool public isPublicSaleActive = false;
    bool public revealed = false;
    // MODIFIERS

    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(numberOfTokens <= getMintPerTransaction(), "Max mints per transaction exceeded");
        require(numberOfTokens <= canMintAmount(), "Cant mint this number of tokens");
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(totalSupply() + numberOfTokens <= maxSupply, "The rest reserved for a giveaway");
        require(numberOfTokens > 0, "Mint amount must be more than 0");
        _;
    }


    modifier isCorrectPayment(uint256 numberOfTokens) {
        if (msg.sender != owner()) {
            require((_getPrice() * numberOfTokens) == msg.value, "Incorrect ETH value sent");
        }
        _;
    }
    modifier checkMerkle(bytes32[] calldata _merkleProof) {
        if (!isPublicSaleActive) {
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Not in the WifeList');
        }
        _;
    }

    function _getPrice() internal view returns (uint256){
        if(isPublicSaleActive) {
            return salePrice;
        }
        else {
            return whitelistSalePrice;
        }
    }
    function cost() public view returns(uint256) {
      return _getPrice();
    }


    function getMintPerTransaction() internal view returns (uint256){
        if(isPublicSaleActive) {
            return mintPerTransaction;
        }
        else {
            return mintPerWhitelistTransaction;
        }
    }

    constructor(
        string memory _NotRevealedURI,
        string memory _initBaseURI
    ) ERC721A("HAPEWIFES", "HW", giveawayReserved) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_NotRevealedURI);
    }

    // SET VARIABLES ON DEPLOY

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

    function setNotRevealedURI (string memory _notRevealedURI) public onlyOwner {
        notRevealedURI = _notRevealedURI;
    }

    // PUBLIC FUNCTIONS

    function mint(uint256 numberOfTokens, bytes32[] calldata _merkleProof) external payable nonReentrant
        checkMerkle(_merkleProof)
        isCorrectPayment(numberOfTokens)
        canMintNFTs(numberOfTokens)
    {
        _safeMint(msg.sender, numberOfTokens);
    }

    // PUBLIC READ-ONLY FUNCTIONS

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    // ONLYOWNER ADMIN FUNCTIONS

    function reveal() public onlyOwner {
        revealed = true;
    }

    function giveaway() public onlyOwner {
        require(giveawayReserved > 0);
        _safeMint(owner(), giveawayReserved);
        giveawayReserved = 0;
    }

    function canMintAmount() public view returns (uint256) {
        return getMintPerTransaction() - balanceOf(msg.sender);
    }

    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

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

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setDonAddresst(address _donAddress) external onlyOwner {
        donAddress = _donAddress;
    }

    function setMtvAddress(address _mtvAddress) external onlyOwner {
        mtvAddress = _mtvAddress;
    }

  function withdraw() public payable onlyOwner {
    (bool don, ) = payable(donAddress).call{value: address(this).balance * 10 / 100}("");
    require(don);

      //Metaverse
    (bool mtv, ) = payable(mtvAddress).call{value: address(this).balance * 37 / 100}("");
    require(mtv);

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }


    // SUPPORTING FUNCTIONS

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // FUNCTION OVERRIDES 

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");
        if(revealed == false) {
            return notRevealedURI;
        }
        return string(abi.encodePacked(baseURI, (tokenId).toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 SalePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(SalePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_NotRevealedURI","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveawayReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPerWhitelistTransaction","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"SalePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_donAddress","type":"address"}],"name":"setDonAddresst","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mtvAddress","type":"address"}],"name":"setMtvAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a060405260016000556000600755737f1486142887cadc7f382ac6be121d506723a91e600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507342150e59cc600d10d2892da2ea5966bd343655ac600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a5409ec958c83c3f309868babaca7c86dcb077c1600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60146101000a81548160ff021916908315150217905550611f40601055600260115560056012556103786013557ff7fae294703a10266ebb810c5df9cfa66a605ec93f45673b7979a1e1f390c5d460001b6014556000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff021916908315150217905550348015620001a857600080fd5b5060405162005e3438038062005e348339818101604052810190620001ce91906200068e565b6040518060400160405280600981526020017f48415045574946455300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f48570000000000000000000000000000000000000000000000000000000000008152506013546000811162000283576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027a9062000761565b60405180910390fd5b82600190805190602001906200029b92919062000560565b508160029080519060200190620002b492919062000560565b508060808181525050505050620002e0620002d46200031260201b60201c565b6200031a60201b60201c565b6001600981905550620002f981620003e060201b60201c565b6200030a826200048b60201b60201c565b5050620009b2565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003f06200031260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004166200053660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200046f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004669062000783565b60405180910390fd5b80600b90805190602001906200048792919062000560565b5050565b6200049b6200031260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004c16200053660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200051a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005119062000783565b60405180910390fd5b80600c90805190602001906200053292919062000560565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200056e906200084b565b90600052602060002090601f016020900481019282620005925760008555620005de565b82601f10620005ad57805160ff1916838001178555620005de565b82800160010185558215620005de579182015b82811115620005dd578251825591602001919060010190620005c0565b5b509050620005ed9190620005f1565b5090565b5b808211156200060c576000816000905550600101620005f2565b5090565b6000620006276200062184620007ce565b620007a5565b9050828152602081018484840111156200064657620006456200091a565b5b6200065384828562000815565b509392505050565b600082601f83011262000673576200067262000915565b5b81516200068584826020860162000610565b91505092915050565b60008060408385031215620006a857620006a762000924565b5b600083015167ffffffffffffffff811115620006c957620006c86200091f565b5b620006d7858286016200065b565b925050602083015167ffffffffffffffff811115620006fb57620006fa6200091f565b5b62000709858286016200065b565b9150509250929050565b60006200072260278362000804565b91506200072f826200093a565b604082019050919050565b60006200074960208362000804565b9150620007568262000989565b602082019050919050565b600060208201905081810360008301526200077c8162000713565b9050919050565b600060208201905081810360008301526200079e816200073a565b9050919050565b6000620007b1620007c4565b9050620007bf828262000881565b919050565b6000604051905090565b600067ffffffffffffffff821115620007ec57620007eb620008e6565b5b620007f78262000929565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200083557808201518184015260208101905062000818565b8381111562000845576000848401525b50505050565b600060028204905060018216806200086457607f821691505b602082108114156200087b576200087a620008b7565b5b50919050565b6200088c8262000929565b810181811067ffffffffffffffff82111715620008ae57620008ad620008e6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b608051615458620009dc60003960008181612b2001528181612b49015261331501526154586000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063c289e9f4116100b6578063e985e9c51161007a578063e985e9c5146108f3578063f2c4ce1e14610930578063f2fde38b14610959578063f51f96dd14610982578063f9850b72146109ad578063f9fd68dc146109c457610267565b8063c289e9f41461080c578063c87b56dd14610837578063d5abeb0114610874578063d7224ba01461089f578063e43082f7146108ca57610267565b8063a22cb46511610108578063a22cb46514610731578063a475b5dd1461075a578063b1fdf79814610771578063b88d4fde1461079c578063ba41b0c6146107c5578063c1173250146107e157610267565b8063715018a6146106705780637cb64759146106875780638da5cb5b146106b0578063917b7e0f146106db57806395d89b411461070657610267565b80632eb4a7ab116101dd5780634f6ccce7116101a15780634f6ccce71461053a578063518302271461057757806355f804b3146105a25780636352211e146105cb57806370a0823114610608578063714c53981461064557610267565b80632eb4a7ab146104765780632f745c59146104a15780633c8abb5f146104de5780633ccfd60b1461050757806342842e0e1461051157610267565b806318160ddd1161022f57806318160ddd146103655780631a25376b146103905780631e84c413146103bb57806323b872dd146103e657806328cad13d1461040f5780632a55205a1461043857610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806313faede61461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c0d565b6109ed565b6040516102a091906143bf565b60405180910390f35b3480156102b557600080fd5b506102be610a67565b6040516102cb91906143f5565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613cdd565b610af9565b604051610308919061432f565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613b73565b610b7e565b005b34801561034657600080fd5b5061034f610c97565b60405161035c9190614737565b60405180910390f35b34801561037157600080fd5b5061037a610ca6565b6040516103879190614737565b60405180910390f35b34801561039c57600080fd5b506103a5610caf565b6040516103b29190614737565b60405180910390f35b3480156103c757600080fd5b506103d0610cd1565b6040516103dd91906143bf565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613a5d565b610ce4565b005b34801561041b57600080fd5b5061043660048036038101906104319190613bb3565b610cf4565b005b34801561044457600080fd5b5061045f600480360381019061045a9190613d6a565b610d8d565b60405161046d929190614396565b60405180910390f35b34801561048257600080fd5b5061048b610df9565b60405161049891906143da565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613b73565b610dff565b6040516104d59190614737565b60405180910390f35b3480156104ea57600080fd5b50610505600480360381019061050091906139f0565b610ffd565b005b61050f6110bd565b005b34801561051d57600080fd5b5061053860048036038101906105339190613a5d565b61131b565b005b34801561054657600080fd5b50610561600480360381019061055c9190613cdd565b61133b565b60405161056e9190614737565b60405180910390f35b34801561058357600080fd5b5061058c61138e565b60405161059991906143bf565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613c94565b6113a1565b005b3480156105d757600080fd5b506105f260048036038101906105ed9190613cdd565b611437565b6040516105ff919061432f565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a91906139f0565b61144d565b60405161063c9190614737565b60405180910390f35b34801561065157600080fd5b5061065a611536565b60405161066791906143f5565b60405180910390f35b34801561067c57600080fd5b506106856115c8565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613be0565b611650565b005b3480156106bc57600080fd5b506106c56116d6565b6040516106d2919061432f565b60405180910390f35b3480156106e757600080fd5b506106f0611700565b6040516106fd9190614737565b60405180910390f35b34801561071257600080fd5b5061071b611706565b60405161072891906143f5565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190613b33565b611798565b005b34801561076657600080fd5b5061076f611919565b005b34801561077d57600080fd5b506107866119b2565b6040516107939190614737565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190613ab0565b6119b8565b005b6107df60048036038101906107da9190613d0a565b611a14565b005b3480156107ed57600080fd5b506107f6611c78565b6040516108039190614737565b60405180910390f35b34801561081857600080fd5b50610821611c84565b60405161082e9190614737565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613cdd565b611c8a565b60405161086b91906143f5565b60405180910390f35b34801561088057600080fd5b50610889611db5565b6040516108969190614737565b60405180910390f35b3480156108ab57600080fd5b506108b4611dbb565b6040516108c19190614737565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613bb3565b611dc1565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613a1d565b611e5a565b60405161092791906143bf565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613c94565b611f74565b005b34801561096557600080fd5b50610980600480360381019061097b91906139f0565b61200a565b005b34801561098e57600080fd5b50610997612102565b6040516109a49190614737565b60405180910390f35b3480156109b957600080fd5b506109c261210e565b005b3480156109d057600080fd5b506109eb60048036038101906109e691906139f0565b6121b6565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a605750610a5f82612276565b5b9050919050565b606060018054610a7690614ae3565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290614ae3565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050905090565b6000610b04826123c0565b610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a906146f7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8982611437565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf1906145d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c196123cd565b73ffffffffffffffffffffffffffffffffffffffff161480610c485750610c4781610c426123cd565b611e5a565b5b610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e906144f7565b60405180910390fd5b610c928383836123d5565b505050565b6000610ca1612487565b905090565b60008054905090565b6000610cba3361144d565b610cc26124bd565b610ccc9190614997565b905090565b601560009054906101000a900460ff1681565b610cef8383836124e7565b505050565b610cfc6123cd565b73ffffffffffffffffffffffffffffffffffffffff16610d1a6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614577565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b600080610d99846123c0565b610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906144d7565b60405180910390fd5b30610dee610de7856005612aa0565b6064612ab6565b915091509250929050565b60145481565b6000610e0a8361144d565b8210610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290614417565b60405180910390fd5b6000610e55610ca6565b905060008060005b83811015610fbb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa75786841415610f98578195505050505050610ff7565b8380610fa390614b46565b9450505b508080610fb390614b46565b915050610e5d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90614677565b60405180910390fd5b92915050565b6110056123cd565b73ffffffffffffffffffffffffffffffffffffffff166110236116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090614577565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110c56123cd565b73ffffffffffffffffffffffffffffffffffffffff166110e36116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090614577565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600a476111839190614909565b61118d91906148d8565b6040516111999061431a565b60006040518083038185875af1925050503d80600081146111d6576040519150601f19603f3d011682016040523d82523d6000602084013e6111db565b606091505b50509050806111e957600080fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646025476112339190614909565b61123d91906148d8565b6040516112499061431a565b60006040518083038185875af1925050503d8060008114611286576040519150601f19603f3d011682016040523d82523d6000602084013e61128b565b606091505b505090508061129957600080fd5b60006112a36116d6565b73ffffffffffffffffffffffffffffffffffffffff16476040516112c69061431a565b60006040518083038185875af1925050503d8060008114611303576040519150601f19603f3d011682016040523d82523d6000602084013e611308565b606091505b505090508061131657600080fd5b505050565b611336838383604051806020016040528060008152506119b8565b505050565b6000611345610ca6565b8210611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90614497565b60405180910390fd5b819050919050565b601560019054906101000a900460ff1681565b6113a96123cd565b73ffffffffffffffffffffffffffffffffffffffff166113c76116d6565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490614577565b60405180910390fd5b80600b908051906020019061143392919061374a565b5050565b600061144282612acc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614537565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461154590614ae3565b80601f016020809104026020016040519081016040528092919081815260200182805461157190614ae3565b80156115be5780601f10611593576101008083540402835291602001916115be565b820191906000526020600020905b8154815290600101906020018083116115a157829003601f168201915b5050505050905090565b6115d06123cd565b73ffffffffffffffffffffffffffffffffffffffff166115ee6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90614577565b60405180910390fd5b61164e6000612ccf565b565b6116586123cd565b73ffffffffffffffffffffffffffffffffffffffff166116766116d6565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390614577565b60405180910390fd5b8060148190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606002805461171590614ae3565b80601f016020809104026020016040519081016040528092919081815260200182805461174190614ae3565b801561178e5780601f106117635761010080835404028352916020019161178e565b820191906000526020600020905b81548152906001019060200180831161177157829003601f168201915b5050505050905090565b6117a06123cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180590614597565b60405180910390fd5b806006600061181b6123cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c86123cd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190d91906143bf565b60405180910390a35050565b6119216123cd565b73ffffffffffffffffffffffffffffffffffffffff1661193f6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90614577565b60405180910390fd5b6001601560016101000a81548160ff021916908315150217905550565b60125481565b6119c38484846124e7565b6119cf84848484612d95565b611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a05906145f7565b60405180910390fd5b50505050565b60026009541415611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a51906146b7565b60405180910390fd5b60026009819055508181601560009054906101000a900460ff16611b3257600033604051602001611a8b91906142d0565b604051602081830303815290604052805190602001209050611af1838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483612f2c565b611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2790614517565b60405180910390fd5b505b84611b3b6116d6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bc2573481611b77612487565b611b819190614909565b14611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890614657565b60405180910390fd5b5b8560105481611bcf610ca6565b611bd99190614882565b1115611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190614697565b60405180910390fd5b60008111611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614437565b60405180910390fd5b611c673388612f43565b505050506001600981905550505050565b67016345785d8a000081565b60135481565b6060611c95826123c0565b611cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccb906144d7565b60405180910390fd5b60001515601560019054906101000a900460ff1615151415611d8257600c8054611cfd90614ae3565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2990614ae3565b8015611d765780601f10611d4b57610100808354040283529160200191611d76565b820191906000526020600020905b815481529060010190602001808311611d5957829003601f168201915b50505050509050611db0565b600b611d8d83612f61565b604051602001611d9e9291906142eb565b60405160208183030381529060405290505b919050565b60105481565b60075481565b611dc96123cd565b73ffffffffffffffffffffffffffffffffffffffff16611de76116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490614577565b60405180910390fd5b80600f60146101000a81548160ff02191690831515021790555050565b600080600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600f60149054906101000a900460ff168015611f5157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611ee9919061432f565b60206040518083038186803b158015611f0157600080fd5b505afa158015611f15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f399190613c67565b73ffffffffffffffffffffffffffffffffffffffff16145b15611f60576001915050611f6e565b611f6a84846130c2565b9150505b92915050565b611f7c6123cd565b73ffffffffffffffffffffffffffffffffffffffff16611f9a6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790614577565b60405180910390fd5b80600c908051906020019061200692919061374a565b5050565b6120126123cd565b73ffffffffffffffffffffffffffffffffffffffff166120306116d6565b73ffffffffffffffffffffffffffffffffffffffff1614612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d90614577565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ed90614457565b60405180910390fd5b6120ff81612ccf565b50565b670214e8348c4f000081565b6121166123cd565b73ffffffffffffffffffffffffffffffffffffffff166121346116d6565b73ffffffffffffffffffffffffffffffffffffffff161461218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190614577565b60405180910390fd5b60006013541161219957600080fd5b6121ac6121a46116d6565b601354612f43565b6000601381905550565b6121be6123cd565b73ffffffffffffffffffffffffffffffffffffffff166121dc6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990614577565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061234157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123a957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123b957506123b882613156565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000601560009054906101000a900460ff16156124ae57670214e8348c4f000090506124ba565b67016345785d8a000090505b90565b6000601560009054906101000a900460ff16156124de5760125490506124e4565b60115490505b90565b60006124f282612acc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125196123cd565b73ffffffffffffffffffffffffffffffffffffffff161480612575575061253e6123cd565b73ffffffffffffffffffffffffffffffffffffffff1661255d84610af9565b73ffffffffffffffffffffffffffffffffffffffff16145b806125915750612590826000015161258b6123cd565b611e5a565b5b9050806125d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca906145b7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263c90614557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac906144b7565b60405180910390fd5b6126c285858560016131c0565b6126d260008484600001516123d5565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166127409190614963565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166127e4919061483c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846128ea9190614882565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a3057612960816123c0565b15612a2f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a9886868660016131c6565b505050505050565b60008183612aae9190614909565b905092915050565b60008183612ac491906148d8565b905092915050565b612ad46137d0565b612add826123c0565b612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1390614477565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612b805760017f000000000000000000000000000000000000000000000000000000000000000084612b739190614997565b612b7d9190614882565b90505b60008390505b818110612c8e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c7a57809350505050612cca565b508080612c8690614ab9565b915050612b86565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc1906146d7565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612db68473ffffffffffffffffffffffffffffffffffffffff166131cc565b15612f1f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ddf6123cd565b8786866040518563ffffffff1660e01b8152600401612e01949392919061434a565b602060405180830381600087803b158015612e1b57600080fd5b505af1925050508015612e4c57506040513d601f19601f82011682018060405250810190612e499190613c3a565b60015b612ecf573d8060008114612e7c576040519150601f19603f3d011682016040523d82523d6000602084013e612e81565b606091505b50600081511415612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f24565b600190505b949350505050565b600082612f3985846131df565b1490509392505050565b612f5d828260405180602001604052806000815250613254565b5050565b60606000821415612fa9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130bd565b600082905060005b60008214612fdb578080612fc490614b46565b915050600a82612fd491906148d8565b9150612fb1565b60008167ffffffffffffffff811115612ff757612ff6614ca0565b5b6040519080825280601f01601f1916602001820160405280156130295781602001600182028036833780820191505090505b5090505b600085146130b6576001826130429190614997565b9150600a856130519190614bb3565b603061305d9190614882565b60f81b81838151811061307357613072614c71565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130af91906148d8565b945061302d565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080823b905060008111915050919050565b60008082905060005b845181101561324957600085828151811061320657613205614c71565b5b60200260200101519050808311613228576132218382613733565b9250613235565b6132328184613733565b92505b50808061324190614b46565b9150506131e8565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c190614637565b60405180910390fd5b6132d3816123c0565b15613313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a90614617565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336d90614717565b60405180910390fd5b61338360008583866131c0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613480919061483c565b6fffffffffffffffffffffffffffffffff1681526020018583602001516134a7919061483c565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561371657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136b66000888488612d95565b6136f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ec906145f7565b60405180910390fd5b818061370090614b46565b925050808061370e90614b46565b915050613645565b508060008190555061372b60008785886131c6565b505050505050565b600082600052816020526040600020905092915050565b82805461375690614ae3565b90600052602060002090601f01602090048101928261377857600085556137bf565b82601f1061379157805160ff19168380011785556137bf565b828001600101855582156137bf579182015b828111156137be5782518255916020019190600101906137a3565b5b5090506137cc919061380a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561382357600081600090555060010161380b565b5090565b600061383a61383584614777565b614752565b90508281526020810184848401111561385657613855614cde565b5b613861848285614a77565b509392505050565b600061387c613877846147a8565b614752565b90508281526020810184848401111561389857613897614cde565b5b6138a3848285614a77565b509392505050565b6000813590506138ba81615398565b92915050565b60008083601f8401126138d6576138d5614cd4565b5b8235905067ffffffffffffffff8111156138f3576138f2614ccf565b5b60208301915083602082028301111561390f5761390e614cd9565b5b9250929050565b600081359050613925816153af565b92915050565b60008135905061393a816153c6565b92915050565b60008135905061394f816153dd565b92915050565b600081519050613964816153dd565b92915050565b600082601f83011261397f5761397e614cd4565b5b813561398f848260208601613827565b91505092915050565b6000815190506139a7816153f4565b92915050565b600082601f8301126139c2576139c1614cd4565b5b81356139d2848260208601613869565b91505092915050565b6000813590506139ea8161540b565b92915050565b600060208284031215613a0657613a05614ce8565b5b6000613a14848285016138ab565b91505092915050565b60008060408385031215613a3457613a33614ce8565b5b6000613a42858286016138ab565b9250506020613a53858286016138ab565b9150509250929050565b600080600060608486031215613a7657613a75614ce8565b5b6000613a84868287016138ab565b9350506020613a95868287016138ab565b9250506040613aa6868287016139db565b9150509250925092565b60008060008060808587031215613aca57613ac9614ce8565b5b6000613ad8878288016138ab565b9450506020613ae9878288016138ab565b9350506040613afa878288016139db565b925050606085013567ffffffffffffffff811115613b1b57613b1a614ce3565b5b613b278782880161396a565b91505092959194509250565b60008060408385031215613b4a57613b49614ce8565b5b6000613b58858286016138ab565b9250506020613b6985828601613916565b9150509250929050565b60008060408385031215613b8a57613b89614ce8565b5b6000613b98858286016138ab565b9250506020613ba9858286016139db565b9150509250929050565b600060208284031215613bc957613bc8614ce8565b5b6000613bd784828501613916565b91505092915050565b600060208284031215613bf657613bf5614ce8565b5b6000613c048482850161392b565b91505092915050565b600060208284031215613c2357613c22614ce8565b5b6000613c3184828501613940565b91505092915050565b600060208284031215613c5057613c4f614ce8565b5b6000613c5e84828501613955565b91505092915050565b600060208284031215613c7d57613c7c614ce8565b5b6000613c8b84828501613998565b91505092915050565b600060208284031215613caa57613ca9614ce8565b5b600082013567ffffffffffffffff811115613cc857613cc7614ce3565b5b613cd4848285016139ad565b91505092915050565b600060208284031215613cf357613cf2614ce8565b5b6000613d01848285016139db565b91505092915050565b600080600060408486031215613d2357613d22614ce8565b5b6000613d31868287016139db565b935050602084013567ffffffffffffffff811115613d5257613d51614ce3565b5b613d5e868287016138c0565b92509250509250925092565b60008060408385031215613d8157613d80614ce8565b5b6000613d8f858286016139db565b9250506020613da0858286016139db565b9150509250929050565b613db3816149cb565b82525050565b613dca613dc5826149cb565b614b8f565b82525050565b613dd9816149dd565b82525050565b613de8816149e9565b82525050565b6000613df9826147ee565b613e038185614804565b9350613e13818560208601614a86565b613e1c81614ced565b840191505092915050565b6000613e32826147f9565b613e3c8185614820565b9350613e4c818560208601614a86565b613e5581614ced565b840191505092915050565b6000613e6b826147f9565b613e758185614831565b9350613e85818560208601614a86565b80840191505092915050565b60008154613e9e81614ae3565b613ea88186614831565b94506001821660008114613ec35760018114613ed457613f07565b60ff19831686528186019350613f07565b613edd856147d9565b60005b83811015613eff57815481890152600182019150602081019050613ee0565b838801955050505b50505092915050565b6000613f1d602283614820565b9150613f2882614d0b565b604082019050919050565b6000613f40601f83614820565b9150613f4b82614d5a565b602082019050919050565b6000613f63602683614820565b9150613f6e82614d83565b604082019050919050565b6000613f86602a83614820565b9150613f9182614dd2565b604082019050919050565b6000613fa9602383614820565b9150613fb482614e21565b604082019050919050565b6000613fcc602583614820565b9150613fd782614e70565b604082019050919050565b6000613fef601183614820565b9150613ffa82614ebf565b602082019050919050565b6000614012603983614820565b915061401d82614ee8565b604082019050919050565b6000614035601383614820565b915061404082614f37565b602082019050919050565b6000614058602b83614820565b915061406382614f60565b604082019050919050565b600061407b602683614820565b915061408682614faf565b604082019050919050565b600061409e600583614831565b91506140a982614ffe565b600582019050919050565b60006140c1602083614820565b91506140cc82615027565b602082019050919050565b60006140e4601a83614820565b91506140ef82615050565b602082019050919050565b6000614107603283614820565b915061411282615079565b604082019050919050565b600061412a602283614820565b9150614135826150c8565b604082019050919050565b600061414d600083614815565b915061415882615117565b600082019050919050565b6000614170603383614820565b915061417b8261511a565b604082019050919050565b6000614193601d83614820565b915061419e82615169565b602082019050919050565b60006141b6602183614820565b91506141c182615192565b604082019050919050565b60006141d9601883614820565b91506141e4826151e1565b602082019050919050565b60006141fc602e83614820565b91506142078261520a565b604082019050919050565b600061421f602083614820565b915061422a82615259565b602082019050919050565b6000614242601f83614820565b915061424d82615282565b602082019050919050565b6000614265602f83614820565b9150614270826152ab565b604082019050919050565b6000614288602d83614820565b9150614293826152fa565b604082019050919050565b60006142ab602283614820565b91506142b682615349565b604082019050919050565b6142ca81614a6d565b82525050565b60006142dc8284613db9565b60148201915081905092915050565b60006142f78285613e91565b91506143038284613e60565b915061430e82614091565b91508190509392505050565b600061432582614140565b9150819050919050565b60006020820190506143446000830184613daa565b92915050565b600060808201905061435f6000830187613daa565b61436c6020830186613daa565b61437960408301856142c1565b818103606083015261438b8184613dee565b905095945050505050565b60006040820190506143ab6000830185613daa565b6143b860208301846142c1565b9392505050565b60006020820190506143d46000830184613dd0565b92915050565b60006020820190506143ef6000830184613ddf565b92915050565b6000602082019050818103600083015261440f8184613e27565b905092915050565b6000602082019050818103600083015261443081613f10565b9050919050565b6000602082019050818103600083015261445081613f33565b9050919050565b6000602082019050818103600083015261447081613f56565b9050919050565b6000602082019050818103600083015261449081613f79565b9050919050565b600060208201905081810360008301526144b081613f9c565b9050919050565b600060208201905081810360008301526144d081613fbf565b9050919050565b600060208201905081810360008301526144f081613fe2565b9050919050565b6000602082019050818103600083015261451081614005565b9050919050565b6000602082019050818103600083015261453081614028565b9050919050565b600060208201905081810360008301526145508161404b565b9050919050565b600060208201905081810360008301526145708161406e565b9050919050565b60006020820190508181036000830152614590816140b4565b9050919050565b600060208201905081810360008301526145b0816140d7565b9050919050565b600060208201905081810360008301526145d0816140fa565b9050919050565b600060208201905081810360008301526145f08161411d565b9050919050565b6000602082019050818103600083015261461081614163565b9050919050565b6000602082019050818103600083015261463081614186565b9050919050565b60006020820190508181036000830152614650816141a9565b9050919050565b60006020820190508181036000830152614670816141cc565b9050919050565b60006020820190508181036000830152614690816141ef565b9050919050565b600060208201905081810360008301526146b081614212565b9050919050565b600060208201905081810360008301526146d081614235565b9050919050565b600060208201905081810360008301526146f081614258565b9050919050565b600060208201905081810360008301526147108161427b565b9050919050565b600060208201905081810360008301526147308161429e565b9050919050565b600060208201905061474c60008301846142c1565b92915050565b600061475c61476d565b90506147688282614b15565b919050565b6000604051905090565b600067ffffffffffffffff82111561479257614791614ca0565b5b61479b82614ced565b9050602081019050919050565b600067ffffffffffffffff8211156147c3576147c2614ca0565b5b6147cc82614ced565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061484782614a31565b915061485283614a31565b9250826fffffffffffffffffffffffffffffffff0382111561487757614876614be4565b5b828201905092915050565b600061488d82614a6d565b915061489883614a6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148cd576148cc614be4565b5b828201905092915050565b60006148e382614a6d565b91506148ee83614a6d565b9250826148fe576148fd614c13565b5b828204905092915050565b600061491482614a6d565b915061491f83614a6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561495857614957614be4565b5b828202905092915050565b600061496e82614a31565b915061497983614a31565b92508282101561498c5761498b614be4565b5b828203905092915050565b60006149a282614a6d565b91506149ad83614a6d565b9250828210156149c0576149bf614be4565b5b828203905092915050565b60006149d682614a4d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614a2a826149cb565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614aa4578082015181840152602081019050614a89565b83811115614ab3576000848401525b50505050565b6000614ac482614a6d565b91506000821415614ad857614ad7614be4565b5b600182039050919050565b60006002820490506001821680614afb57607f821691505b60208210811415614b0f57614b0e614c42565b5b50919050565b614b1e82614ced565b810181811067ffffffffffffffff82111715614b3d57614b3c614ca0565b5b80604052505050565b6000614b5182614a6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8457614b83614be4565b5b600182019050919050565b6000614b9a82614ba1565b9050919050565b6000614bac82614cfe565b9050919050565b6000614bbe82614a6d565b9150614bc983614a6d565b925082614bd957614bd8614c13565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e74206d757374206265206d6f7265207468616e203000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4e6f7420696e2074686520576966654c69737400000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f546865207265737420726573657276656420666f722061206769766561776179600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153a1816149cb565b81146153ac57600080fd5b50565b6153b8816149dd565b81146153c357600080fd5b50565b6153cf816149e9565b81146153da57600080fd5b50565b6153e6816149f3565b81146153f157600080fd5b50565b6153fd81614a1f565b811461540857600080fd5b50565b61541481614a6d565b811461541f57600080fd5b5056fea26469706673582212200337e82d9d9591e2f212a86d23e56cbabdebbe27b94f7f1bf541ba3d16142ac664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d66533568797162366155587358744b77423455474a586b35724d474c516644563668686f45557161725448372f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d66533568797162366155587358744b77423455474a586b35724d474c516644563668686f45557161725448372f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063c289e9f4116100b6578063e985e9c51161007a578063e985e9c5146108f3578063f2c4ce1e14610930578063f2fde38b14610959578063f51f96dd14610982578063f9850b72146109ad578063f9fd68dc146109c457610267565b8063c289e9f41461080c578063c87b56dd14610837578063d5abeb0114610874578063d7224ba01461089f578063e43082f7146108ca57610267565b8063a22cb46511610108578063a22cb46514610731578063a475b5dd1461075a578063b1fdf79814610771578063b88d4fde1461079c578063ba41b0c6146107c5578063c1173250146107e157610267565b8063715018a6146106705780637cb64759146106875780638da5cb5b146106b0578063917b7e0f146106db57806395d89b411461070657610267565b80632eb4a7ab116101dd5780634f6ccce7116101a15780634f6ccce71461053a578063518302271461057757806355f804b3146105a25780636352211e146105cb57806370a0823114610608578063714c53981461064557610267565b80632eb4a7ab146104765780632f745c59146104a15780633c8abb5f146104de5780633ccfd60b1461050757806342842e0e1461051157610267565b806318160ddd1161022f57806318160ddd146103655780631a25376b146103905780631e84c413146103bb57806323b872dd146103e657806328cad13d1461040f5780632a55205a1461043857610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806313faede61461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c0d565b6109ed565b6040516102a091906143bf565b60405180910390f35b3480156102b557600080fd5b506102be610a67565b6040516102cb91906143f5565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613cdd565b610af9565b604051610308919061432f565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613b73565b610b7e565b005b34801561034657600080fd5b5061034f610c97565b60405161035c9190614737565b60405180910390f35b34801561037157600080fd5b5061037a610ca6565b6040516103879190614737565b60405180910390f35b34801561039c57600080fd5b506103a5610caf565b6040516103b29190614737565b60405180910390f35b3480156103c757600080fd5b506103d0610cd1565b6040516103dd91906143bf565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613a5d565b610ce4565b005b34801561041b57600080fd5b5061043660048036038101906104319190613bb3565b610cf4565b005b34801561044457600080fd5b5061045f600480360381019061045a9190613d6a565b610d8d565b60405161046d929190614396565b60405180910390f35b34801561048257600080fd5b5061048b610df9565b60405161049891906143da565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613b73565b610dff565b6040516104d59190614737565b60405180910390f35b3480156104ea57600080fd5b50610505600480360381019061050091906139f0565b610ffd565b005b61050f6110bd565b005b34801561051d57600080fd5b5061053860048036038101906105339190613a5d565b61131b565b005b34801561054657600080fd5b50610561600480360381019061055c9190613cdd565b61133b565b60405161056e9190614737565b60405180910390f35b34801561058357600080fd5b5061058c61138e565b60405161059991906143bf565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613c94565b6113a1565b005b3480156105d757600080fd5b506105f260048036038101906105ed9190613cdd565b611437565b6040516105ff919061432f565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a91906139f0565b61144d565b60405161063c9190614737565b60405180910390f35b34801561065157600080fd5b5061065a611536565b60405161066791906143f5565b60405180910390f35b34801561067c57600080fd5b506106856115c8565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613be0565b611650565b005b3480156106bc57600080fd5b506106c56116d6565b6040516106d2919061432f565b60405180910390f35b3480156106e757600080fd5b506106f0611700565b6040516106fd9190614737565b60405180910390f35b34801561071257600080fd5b5061071b611706565b60405161072891906143f5565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190613b33565b611798565b005b34801561076657600080fd5b5061076f611919565b005b34801561077d57600080fd5b506107866119b2565b6040516107939190614737565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190613ab0565b6119b8565b005b6107df60048036038101906107da9190613d0a565b611a14565b005b3480156107ed57600080fd5b506107f6611c78565b6040516108039190614737565b60405180910390f35b34801561081857600080fd5b50610821611c84565b60405161082e9190614737565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613cdd565b611c8a565b60405161086b91906143f5565b60405180910390f35b34801561088057600080fd5b50610889611db5565b6040516108969190614737565b60405180910390f35b3480156108ab57600080fd5b506108b4611dbb565b6040516108c19190614737565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613bb3565b611dc1565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613a1d565b611e5a565b60405161092791906143bf565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613c94565b611f74565b005b34801561096557600080fd5b50610980600480360381019061097b91906139f0565b61200a565b005b34801561098e57600080fd5b50610997612102565b6040516109a49190614737565b60405180910390f35b3480156109b957600080fd5b506109c261210e565b005b3480156109d057600080fd5b506109eb60048036038101906109e691906139f0565b6121b6565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a605750610a5f82612276565b5b9050919050565b606060018054610a7690614ae3565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290614ae3565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050905090565b6000610b04826123c0565b610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a906146f7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8982611437565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf1906145d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c196123cd565b73ffffffffffffffffffffffffffffffffffffffff161480610c485750610c4781610c426123cd565b611e5a565b5b610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e906144f7565b60405180910390fd5b610c928383836123d5565b505050565b6000610ca1612487565b905090565b60008054905090565b6000610cba3361144d565b610cc26124bd565b610ccc9190614997565b905090565b601560009054906101000a900460ff1681565b610cef8383836124e7565b505050565b610cfc6123cd565b73ffffffffffffffffffffffffffffffffffffffff16610d1a6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614577565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b600080610d99846123c0565b610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906144d7565b60405180910390fd5b30610dee610de7856005612aa0565b6064612ab6565b915091509250929050565b60145481565b6000610e0a8361144d565b8210610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290614417565b60405180910390fd5b6000610e55610ca6565b905060008060005b83811015610fbb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa75786841415610f98578195505050505050610ff7565b8380610fa390614b46565b9450505b508080610fb390614b46565b915050610e5d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90614677565b60405180910390fd5b92915050565b6110056123cd565b73ffffffffffffffffffffffffffffffffffffffff166110236116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090614577565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110c56123cd565b73ffffffffffffffffffffffffffffffffffffffff166110e36116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090614577565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600a476111839190614909565b61118d91906148d8565b6040516111999061431a565b60006040518083038185875af1925050503d80600081146111d6576040519150601f19603f3d011682016040523d82523d6000602084013e6111db565b606091505b50509050806111e957600080fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646025476112339190614909565b61123d91906148d8565b6040516112499061431a565b60006040518083038185875af1925050503d8060008114611286576040519150601f19603f3d011682016040523d82523d6000602084013e61128b565b606091505b505090508061129957600080fd5b60006112a36116d6565b73ffffffffffffffffffffffffffffffffffffffff16476040516112c69061431a565b60006040518083038185875af1925050503d8060008114611303576040519150601f19603f3d011682016040523d82523d6000602084013e611308565b606091505b505090508061131657600080fd5b505050565b611336838383604051806020016040528060008152506119b8565b505050565b6000611345610ca6565b8210611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90614497565b60405180910390fd5b819050919050565b601560019054906101000a900460ff1681565b6113a96123cd565b73ffffffffffffffffffffffffffffffffffffffff166113c76116d6565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490614577565b60405180910390fd5b80600b908051906020019061143392919061374a565b5050565b600061144282612acc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614537565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461154590614ae3565b80601f016020809104026020016040519081016040528092919081815260200182805461157190614ae3565b80156115be5780601f10611593576101008083540402835291602001916115be565b820191906000526020600020905b8154815290600101906020018083116115a157829003601f168201915b5050505050905090565b6115d06123cd565b73ffffffffffffffffffffffffffffffffffffffff166115ee6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90614577565b60405180910390fd5b61164e6000612ccf565b565b6116586123cd565b73ffffffffffffffffffffffffffffffffffffffff166116766116d6565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390614577565b60405180910390fd5b8060148190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606002805461171590614ae3565b80601f016020809104026020016040519081016040528092919081815260200182805461174190614ae3565b801561178e5780601f106117635761010080835404028352916020019161178e565b820191906000526020600020905b81548152906001019060200180831161177157829003601f168201915b5050505050905090565b6117a06123cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180590614597565b60405180910390fd5b806006600061181b6123cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c86123cd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190d91906143bf565b60405180910390a35050565b6119216123cd565b73ffffffffffffffffffffffffffffffffffffffff1661193f6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90614577565b60405180910390fd5b6001601560016101000a81548160ff021916908315150217905550565b60125481565b6119c38484846124e7565b6119cf84848484612d95565b611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a05906145f7565b60405180910390fd5b50505050565b60026009541415611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a51906146b7565b60405180910390fd5b60026009819055508181601560009054906101000a900460ff16611b3257600033604051602001611a8b91906142d0565b604051602081830303815290604052805190602001209050611af1838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483612f2c565b611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2790614517565b60405180910390fd5b505b84611b3b6116d6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bc2573481611b77612487565b611b819190614909565b14611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890614657565b60405180910390fd5b5b8560105481611bcf610ca6565b611bd99190614882565b1115611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190614697565b60405180910390fd5b60008111611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614437565b60405180910390fd5b611c673388612f43565b505050506001600981905550505050565b67016345785d8a000081565b60135481565b6060611c95826123c0565b611cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccb906144d7565b60405180910390fd5b60001515601560019054906101000a900460ff1615151415611d8257600c8054611cfd90614ae3565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2990614ae3565b8015611d765780601f10611d4b57610100808354040283529160200191611d76565b820191906000526020600020905b815481529060010190602001808311611d5957829003601f168201915b50505050509050611db0565b600b611d8d83612f61565b604051602001611d9e9291906142eb565b60405160208183030381529060405290505b919050565b60105481565b60075481565b611dc96123cd565b73ffffffffffffffffffffffffffffffffffffffff16611de76116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490614577565b60405180910390fd5b80600f60146101000a81548160ff02191690831515021790555050565b600080600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600f60149054906101000a900460ff168015611f5157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611ee9919061432f565b60206040518083038186803b158015611f0157600080fd5b505afa158015611f15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f399190613c67565b73ffffffffffffffffffffffffffffffffffffffff16145b15611f60576001915050611f6e565b611f6a84846130c2565b9150505b92915050565b611f7c6123cd565b73ffffffffffffffffffffffffffffffffffffffff16611f9a6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790614577565b60405180910390fd5b80600c908051906020019061200692919061374a565b5050565b6120126123cd565b73ffffffffffffffffffffffffffffffffffffffff166120306116d6565b73ffffffffffffffffffffffffffffffffffffffff1614612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d90614577565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ed90614457565b60405180910390fd5b6120ff81612ccf565b50565b670214e8348c4f000081565b6121166123cd565b73ffffffffffffffffffffffffffffffffffffffff166121346116d6565b73ffffffffffffffffffffffffffffffffffffffff161461218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190614577565b60405180910390fd5b60006013541161219957600080fd5b6121ac6121a46116d6565b601354612f43565b6000601381905550565b6121be6123cd565b73ffffffffffffffffffffffffffffffffffffffff166121dc6116d6565b73ffffffffffffffffffffffffffffffffffffffff1614612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990614577565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061234157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123a957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123b957506123b882613156565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000601560009054906101000a900460ff16156124ae57670214e8348c4f000090506124ba565b67016345785d8a000090505b90565b6000601560009054906101000a900460ff16156124de5760125490506124e4565b60115490505b90565b60006124f282612acc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125196123cd565b73ffffffffffffffffffffffffffffffffffffffff161480612575575061253e6123cd565b73ffffffffffffffffffffffffffffffffffffffff1661255d84610af9565b73ffffffffffffffffffffffffffffffffffffffff16145b806125915750612590826000015161258b6123cd565b611e5a565b5b9050806125d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca906145b7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263c90614557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac906144b7565b60405180910390fd5b6126c285858560016131c0565b6126d260008484600001516123d5565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166127409190614963565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166127e4919061483c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846128ea9190614882565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a3057612960816123c0565b15612a2f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a9886868660016131c6565b505050505050565b60008183612aae9190614909565b905092915050565b60008183612ac491906148d8565b905092915050565b612ad46137d0565b612add826123c0565b612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1390614477565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000003788310612b805760017f000000000000000000000000000000000000000000000000000000000000037884612b739190614997565b612b7d9190614882565b90505b60008390505b818110612c8e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c7a57809350505050612cca565b508080612c8690614ab9565b915050612b86565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc1906146d7565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612db68473ffffffffffffffffffffffffffffffffffffffff166131cc565b15612f1f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ddf6123cd565b8786866040518563ffffffff1660e01b8152600401612e01949392919061434a565b602060405180830381600087803b158015612e1b57600080fd5b505af1925050508015612e4c57506040513d601f19601f82011682018060405250810190612e499190613c3a565b60015b612ecf573d8060008114612e7c576040519150601f19603f3d011682016040523d82523d6000602084013e612e81565b606091505b50600081511415612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f24565b600190505b949350505050565b600082612f3985846131df565b1490509392505050565b612f5d828260405180602001604052806000815250613254565b5050565b60606000821415612fa9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130bd565b600082905060005b60008214612fdb578080612fc490614b46565b915050600a82612fd491906148d8565b9150612fb1565b60008167ffffffffffffffff811115612ff757612ff6614ca0565b5b6040519080825280601f01601f1916602001820160405280156130295781602001600182028036833780820191505090505b5090505b600085146130b6576001826130429190614997565b9150600a856130519190614bb3565b603061305d9190614882565b60f81b81838151811061307357613072614c71565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130af91906148d8565b945061302d565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080823b905060008111915050919050565b60008082905060005b845181101561324957600085828151811061320657613205614c71565b5b60200260200101519050808311613228576132218382613733565b9250613235565b6132328184613733565b92505b50808061324190614b46565b9150506131e8565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c190614637565b60405180910390fd5b6132d3816123c0565b15613313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a90614617565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000378831115613376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336d90614717565b60405180910390fd5b61338360008583866131c0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613480919061483c565b6fffffffffffffffffffffffffffffffff1681526020018583602001516134a7919061483c565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561371657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136b66000888488612d95565b6136f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ec906145f7565b60405180910390fd5b818061370090614b46565b925050808061370e90614b46565b915050613645565b508060008190555061372b60008785886131c6565b505050505050565b600082600052816020526040600020905092915050565b82805461375690614ae3565b90600052602060002090601f01602090048101928261377857600085556137bf565b82601f1061379157805160ff19168380011785556137bf565b828001600101855582156137bf579182015b828111156137be5782518255916020019190600101906137a3565b5b5090506137cc919061380a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561382357600081600090555060010161380b565b5090565b600061383a61383584614777565b614752565b90508281526020810184848401111561385657613855614cde565b5b613861848285614a77565b509392505050565b600061387c613877846147a8565b614752565b90508281526020810184848401111561389857613897614cde565b5b6138a3848285614a77565b509392505050565b6000813590506138ba81615398565b92915050565b60008083601f8401126138d6576138d5614cd4565b5b8235905067ffffffffffffffff8111156138f3576138f2614ccf565b5b60208301915083602082028301111561390f5761390e614cd9565b5b9250929050565b600081359050613925816153af565b92915050565b60008135905061393a816153c6565b92915050565b60008135905061394f816153dd565b92915050565b600081519050613964816153dd565b92915050565b600082601f83011261397f5761397e614cd4565b5b813561398f848260208601613827565b91505092915050565b6000815190506139a7816153f4565b92915050565b600082601f8301126139c2576139c1614cd4565b5b81356139d2848260208601613869565b91505092915050565b6000813590506139ea8161540b565b92915050565b600060208284031215613a0657613a05614ce8565b5b6000613a14848285016138ab565b91505092915050565b60008060408385031215613a3457613a33614ce8565b5b6000613a42858286016138ab565b9250506020613a53858286016138ab565b9150509250929050565b600080600060608486031215613a7657613a75614ce8565b5b6000613a84868287016138ab565b9350506020613a95868287016138ab565b9250506040613aa6868287016139db565b9150509250925092565b60008060008060808587031215613aca57613ac9614ce8565b5b6000613ad8878288016138ab565b9450506020613ae9878288016138ab565b9350506040613afa878288016139db565b925050606085013567ffffffffffffffff811115613b1b57613b1a614ce3565b5b613b278782880161396a565b91505092959194509250565b60008060408385031215613b4a57613b49614ce8565b5b6000613b58858286016138ab565b9250506020613b6985828601613916565b9150509250929050565b60008060408385031215613b8a57613b89614ce8565b5b6000613b98858286016138ab565b9250506020613ba9858286016139db565b9150509250929050565b600060208284031215613bc957613bc8614ce8565b5b6000613bd784828501613916565b91505092915050565b600060208284031215613bf657613bf5614ce8565b5b6000613c048482850161392b565b91505092915050565b600060208284031215613c2357613c22614ce8565b5b6000613c3184828501613940565b91505092915050565b600060208284031215613c5057613c4f614ce8565b5b6000613c5e84828501613955565b91505092915050565b600060208284031215613c7d57613c7c614ce8565b5b6000613c8b84828501613998565b91505092915050565b600060208284031215613caa57613ca9614ce8565b5b600082013567ffffffffffffffff811115613cc857613cc7614ce3565b5b613cd4848285016139ad565b91505092915050565b600060208284031215613cf357613cf2614ce8565b5b6000613d01848285016139db565b91505092915050565b600080600060408486031215613d2357613d22614ce8565b5b6000613d31868287016139db565b935050602084013567ffffffffffffffff811115613d5257613d51614ce3565b5b613d5e868287016138c0565b92509250509250925092565b60008060408385031215613d8157613d80614ce8565b5b6000613d8f858286016139db565b9250506020613da0858286016139db565b9150509250929050565b613db3816149cb565b82525050565b613dca613dc5826149cb565b614b8f565b82525050565b613dd9816149dd565b82525050565b613de8816149e9565b82525050565b6000613df9826147ee565b613e038185614804565b9350613e13818560208601614a86565b613e1c81614ced565b840191505092915050565b6000613e32826147f9565b613e3c8185614820565b9350613e4c818560208601614a86565b613e5581614ced565b840191505092915050565b6000613e6b826147f9565b613e758185614831565b9350613e85818560208601614a86565b80840191505092915050565b60008154613e9e81614ae3565b613ea88186614831565b94506001821660008114613ec35760018114613ed457613f07565b60ff19831686528186019350613f07565b613edd856147d9565b60005b83811015613eff57815481890152600182019150602081019050613ee0565b838801955050505b50505092915050565b6000613f1d602283614820565b9150613f2882614d0b565b604082019050919050565b6000613f40601f83614820565b9150613f4b82614d5a565b602082019050919050565b6000613f63602683614820565b9150613f6e82614d83565b604082019050919050565b6000613f86602a83614820565b9150613f9182614dd2565b604082019050919050565b6000613fa9602383614820565b9150613fb482614e21565b604082019050919050565b6000613fcc602583614820565b9150613fd782614e70565b604082019050919050565b6000613fef601183614820565b9150613ffa82614ebf565b602082019050919050565b6000614012603983614820565b915061401d82614ee8565b604082019050919050565b6000614035601383614820565b915061404082614f37565b602082019050919050565b6000614058602b83614820565b915061406382614f60565b604082019050919050565b600061407b602683614820565b915061408682614faf565b604082019050919050565b600061409e600583614831565b91506140a982614ffe565b600582019050919050565b60006140c1602083614820565b91506140cc82615027565b602082019050919050565b60006140e4601a83614820565b91506140ef82615050565b602082019050919050565b6000614107603283614820565b915061411282615079565b604082019050919050565b600061412a602283614820565b9150614135826150c8565b604082019050919050565b600061414d600083614815565b915061415882615117565b600082019050919050565b6000614170603383614820565b915061417b8261511a565b604082019050919050565b6000614193601d83614820565b915061419e82615169565b602082019050919050565b60006141b6602183614820565b91506141c182615192565b604082019050919050565b60006141d9601883614820565b91506141e4826151e1565b602082019050919050565b60006141fc602e83614820565b91506142078261520a565b604082019050919050565b600061421f602083614820565b915061422a82615259565b602082019050919050565b6000614242601f83614820565b915061424d82615282565b602082019050919050565b6000614265602f83614820565b9150614270826152ab565b604082019050919050565b6000614288602d83614820565b9150614293826152fa565b604082019050919050565b60006142ab602283614820565b91506142b682615349565b604082019050919050565b6142ca81614a6d565b82525050565b60006142dc8284613db9565b60148201915081905092915050565b60006142f78285613e91565b91506143038284613e60565b915061430e82614091565b91508190509392505050565b600061432582614140565b9150819050919050565b60006020820190506143446000830184613daa565b92915050565b600060808201905061435f6000830187613daa565b61436c6020830186613daa565b61437960408301856142c1565b818103606083015261438b8184613dee565b905095945050505050565b60006040820190506143ab6000830185613daa565b6143b860208301846142c1565b9392505050565b60006020820190506143d46000830184613dd0565b92915050565b60006020820190506143ef6000830184613ddf565b92915050565b6000602082019050818103600083015261440f8184613e27565b905092915050565b6000602082019050818103600083015261443081613f10565b9050919050565b6000602082019050818103600083015261445081613f33565b9050919050565b6000602082019050818103600083015261447081613f56565b9050919050565b6000602082019050818103600083015261449081613f79565b9050919050565b600060208201905081810360008301526144b081613f9c565b9050919050565b600060208201905081810360008301526144d081613fbf565b9050919050565b600060208201905081810360008301526144f081613fe2565b9050919050565b6000602082019050818103600083015261451081614005565b9050919050565b6000602082019050818103600083015261453081614028565b9050919050565b600060208201905081810360008301526145508161404b565b9050919050565b600060208201905081810360008301526145708161406e565b9050919050565b60006020820190508181036000830152614590816140b4565b9050919050565b600060208201905081810360008301526145b0816140d7565b9050919050565b600060208201905081810360008301526145d0816140fa565b9050919050565b600060208201905081810360008301526145f08161411d565b9050919050565b6000602082019050818103600083015261461081614163565b9050919050565b6000602082019050818103600083015261463081614186565b9050919050565b60006020820190508181036000830152614650816141a9565b9050919050565b60006020820190508181036000830152614670816141cc565b9050919050565b60006020820190508181036000830152614690816141ef565b9050919050565b600060208201905081810360008301526146b081614212565b9050919050565b600060208201905081810360008301526146d081614235565b9050919050565b600060208201905081810360008301526146f081614258565b9050919050565b600060208201905081810360008301526147108161427b565b9050919050565b600060208201905081810360008301526147308161429e565b9050919050565b600060208201905061474c60008301846142c1565b92915050565b600061475c61476d565b90506147688282614b15565b919050565b6000604051905090565b600067ffffffffffffffff82111561479257614791614ca0565b5b61479b82614ced565b9050602081019050919050565b600067ffffffffffffffff8211156147c3576147c2614ca0565b5b6147cc82614ced565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061484782614a31565b915061485283614a31565b9250826fffffffffffffffffffffffffffffffff0382111561487757614876614be4565b5b828201905092915050565b600061488d82614a6d565b915061489883614a6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148cd576148cc614be4565b5b828201905092915050565b60006148e382614a6d565b91506148ee83614a6d565b9250826148fe576148fd614c13565b5b828204905092915050565b600061491482614a6d565b915061491f83614a6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561495857614957614be4565b5b828202905092915050565b600061496e82614a31565b915061497983614a31565b92508282101561498c5761498b614be4565b5b828203905092915050565b60006149a282614a6d565b91506149ad83614a6d565b9250828210156149c0576149bf614be4565b5b828203905092915050565b60006149d682614a4d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614a2a826149cb565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614aa4578082015181840152602081019050614a89565b83811115614ab3576000848401525b50505050565b6000614ac482614a6d565b91506000821415614ad857614ad7614be4565b5b600182039050919050565b60006002820490506001821680614afb57607f821691505b60208210811415614b0f57614b0e614c42565b5b50919050565b614b1e82614ced565b810181811067ffffffffffffffff82111715614b3d57614b3c614ca0565b5b80604052505050565b6000614b5182614a6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8457614b83614be4565b5b600182019050919050565b6000614b9a82614ba1565b9050919050565b6000614bac82614cfe565b9050919050565b6000614bbe82614a6d565b9150614bc983614a6d565b925082614bd957614bd8614c13565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e74206d757374206265206d6f7265207468616e203000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4e6f7420696e2074686520576966654c69737400000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f546865207265737420726573657276656420666f722061206769766561776179600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153a1816149cb565b81146153ac57600080fd5b50565b6153b8816149dd565b81146153c357600080fd5b50565b6153cf816149e9565b81146153da57600080fd5b50565b6153e6816149f3565b81146153f157600080fd5b50565b6153fd81614a1f565b811461540857600080fd5b50565b61541481614a6d565b811461541f57600080fd5b5056fea26469706673582212200337e82d9d9591e2f212a86d23e56cbabdebbe27b94f7f1bf541ba3d16142ac664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d66533568797162366155587358744b77423455474a586b35724d474c516644563668686f45557161725448372f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d66533568797162366155587358744b77423455474a586b35724d474c516644563668686f45557161725448372f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _NotRevealedURI (string): ipfs://QmfS5hyqb6aUXsXtKwB4UGJXk5rMGLQfDV6hhoEUqarTH7/hidden.json
Arg [1] : _initBaseURI (string): ipfs://QmfS5hyqb6aUXsXtKwB4UGJXk5rMGLQfDV6hhoEUqarTH7/hidden.json

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [3] : 697066733a2f2f516d66533568797162366155587358744b77423455474a586b
Arg [4] : 35724d474c516644563668686f45557161725448372f68696464656e2e6a736f
Arg [5] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [7] : 697066733a2f2f516d66533568797162366155587358744b77423455474a586b
Arg [8] : 35724d474c516644563668686f45557161725448372f68696464656e2e6a736f
Arg [9] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

53238:7052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58497:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40849:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42374:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41937:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55527:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37687:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57104:128;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54194:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43224:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57414:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59969:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;53977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38315:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57671:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57898:388;;;:::i;:::-;;43429:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37850:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54239:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56129:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40672:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39549:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56719:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16020:103;;;;;;;;;;;;;:::i;:::-;;57557:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15369:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53836:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41004:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42642:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56856:69;;;;;;;;;;;;;:::i;:::-;;53889:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43649:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56398:276;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54133:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53933:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59538:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53798:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47980:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57240:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58850:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56236:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16278:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54080:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56933:163;;;;;;;;;;;;;:::i;:::-;;57786:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58497:216;58600:4;58639:26;58624:41;;;:11;:41;;;;:81;;;;58669:36;58693:11;58669:23;:36::i;:::-;58624:81;58617:88;;58497:216;;;:::o;40849:94::-;40903:13;40932:5;40925:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40849:94;:::o;42374:204::-;42442:7;42466:16;42474:7;42466;:16::i;:::-;42458:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42548:15;:24;42564:7;42548:24;;;;;;;;;;;;;;;;;;;;;42541:31;;42374:204;;;:::o;41937:379::-;42006:13;42022:24;42038:7;42022:15;:24::i;:::-;42006:40;;42067:5;42061:11;;:2;:11;;;;42053:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42152:5;42136:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42161:37;42178:5;42185:12;:10;:12::i;:::-;42161:16;:37::i;:::-;42136:62;42120:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42282:28;42291:2;42295:7;42304:5;42282:8;:28::i;:::-;41999:317;41937:379;;:::o;55527:80::-;55563:7;55588:11;:9;:11::i;:::-;55581:18;;55527:80;:::o;37687:94::-;37740:7;37763:12;;37756:19;;37687:94;:::o;57104:128::-;57150:7;57203:21;57213:10;57203:9;:21::i;:::-;57177:23;:21;:23::i;:::-;:47;;;;:::i;:::-;57170:54;;57104:128;:::o;54194:38::-;;;;;;;;;;;;;:::o;43224:142::-;43332:28;43342:4;43348:2;43352:7;43332:9;:28::i;:::-;43224:142;;;:::o;57414:135::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57522:19:::1;57501:18;;:40;;;;;;;;;;;;;;;;;;57414:135:::0;:::o;59969:318::-;60094:16;60112:21;60159:16;60167:7;60159;:16::i;:::-;60151:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60226:4;60233:45;60246:26;60259:9;60270:1;60246:12;:26::i;:::-;60274:3;60233:12;:45::i;:::-;60210:69;;;;59969:318;;;;;:::o;53977:94::-;;;;:::o;38315:744::-;38424:7;38459:16;38469:5;38459:9;:16::i;:::-;38451:5;:24;38443:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38521:22;38546:13;:11;:13::i;:::-;38521:38;;38566:19;38596:25;38646:9;38641:350;38665:14;38661:1;:18;38641:350;;;38695:31;38729:11;:14;38741:1;38729:14;;;;;;;;;;;38695:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38782:1;38756:28;;:9;:14;;;:28;;;38752:89;;38817:9;:14;;;38797:34;;38752:89;38874:5;38853:26;;:17;:26;;;38849:135;;;38911:5;38896:11;:20;38892:59;;;38938:1;38931:8;;;;;;;;;38892:59;38961:13;;;;;:::i;:::-;;;;38849:135;38686:305;38681:3;;;;;:::i;:::-;;;;38641:350;;;;38997:56;;;;;;;;;;:::i;:::-;;;;;;;;38315:744;;;;;:::o;57671:107::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57759:11:::1;57746:10;;:24;;;;;;;;;;;;;;;;;;57671:107:::0;:::o;57898:388::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57951:8:::1;57973:10;;;;;;;;;;;57965:24;;58026:3;58021:2;57997:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;57965:69;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57950:84;;;58049:3;58041:12;;;::::0;::::1;;58082:8;58104:10;;;;;;;;;;;58096:24;;58157:3;58152:2;58128:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;58096:69;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58081:84;;;58180:3;58172:12;;;::::0;::::1;;58194:7;58215;:5;:7::i;:::-;58207:21;;58236;58207:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58193:69;;;58277:2;58269:11;;;::::0;::::1;;57943:343;;;57898:388::o:0;43429:157::-;43541:39;43558:4;43564:2;43568:7;43541:39;;;;;;;;;;;;:16;:39::i;:::-;43429:157;;;:::o;37850:177::-;37917:7;37949:13;:11;:13::i;:::-;37941:5;:21;37933:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;38016:5;38009:12;;37850:177;;;:::o;54239:28::-;;;;;;;;;;;;;:::o;56129:99::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56212:8:::1;56202:7;:18;;;;;;;;;;;;:::i;:::-;;56129:99:::0;:::o;40672:118::-;40736:7;40759:20;40771:7;40759:11;:20::i;:::-;:25;;;40752:32;;40672:118;;;:::o;39549:211::-;39613:7;39654:1;39637:19;;:5;:19;;;;39629:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;39726:12;:19;39739:5;39726:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;39718:36;;39711:43;;39549:211;;;:::o;56719:93::-;56764:13;56797:7;56790:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56719:93;:::o;16020:103::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16085:30:::1;16112:1;16085:18;:30::i;:::-;16020:103::o:0;57557:106::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57644:11:::1;57631:10;:24;;;;57557:106:::0;:::o;15369:87::-;15415:7;15442:6;;;;;;;;;;;15435:13;;15369:87;:::o;53836:46::-;;;;:::o;41004:98::-;41060:13;41089:7;41082:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41004:98;:::o;42642:274::-;42745:12;:10;:12::i;:::-;42733:24;;:8;:24;;;;42725:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42842:8;42797:18;:32;42816:12;:10;:12::i;:::-;42797:32;;;;;;;;;;;;;;;:42;42830:8;42797:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;42891:8;42862:48;;42877:12;:10;:12::i;:::-;42862:48;;;42901:8;42862:48;;;;;;:::i;:::-;;;;;;;;42642:274;;:::o;56856:69::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56913:4:::1;56902:8;;:15;;;;;;;;;;;;;;;;;;56856:69::o:0;53889:37::-;;;;:::o;43649:311::-;43786:28;43796:4;43802:2;43806:7;43786:9;:28::i;:::-;43837:48;43860:4;43866:2;43870:7;43879:5;43837:22;:48::i;:::-;43821:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;43649:311;;;;:::o;56398:276::-;10275:1;10873:7;;:19;;10865:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10275:1;11006:7;:18;;;;56520:12:::1;;55093:18;;;;;;;;;;;55088:203;;55128:12;55170:10;55153:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;55143:39;;;;;;55128:54;;55205:50;55224:12;;55205:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55238:10;;55250:4;55205:18;:50::i;:::-;55197:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;55113:178;55088:203;56560:14:::2;54882:7;:5;:7::i;:::-;54868:21;;:10;:21;;;54864:134;;54948:9;54929:14;54915:11;:9;:11::i;:::-;:28;;;;:::i;:::-;54914:43;54906:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;54864:134;56597:14:::3;54654:9;;54636:14;54620:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;54612:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;54736:1;54719:14;:18;54711:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56629:37:::4;56639:10;56651:14;56629:9;:37::i;:::-;55008:1:::3;55301::::2;11037::::1;;10231::::0;11185:7;:22;;;;56398:276;;;:::o;54133:54::-;54178:9;54133:54;:::o;53933:37::-;;;;:::o;59538:365::-;59656:13;59695:16;59703:7;59695;:16::i;:::-;59687:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59759:5;59747:17;;:8;;;;;;;;;;;:17;;;59744:70;;;59788:14;59781:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59744:70;59855:7;59864:20;59865:7;59864:18;:20::i;:::-;59838:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59824:71;;59538:365;;;;:::o;53798:31::-;;;;:::o;47980:43::-;;;;:::o;57240:166::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57377:21:::1;57354:20;;:44;;;;;;;;;;;;;;;;;;57240:166:::0;:::o;58850:617::-;58975:4;59140:27;59198;;;;;;;;;;;59140:96;;59265:20;;;;;;;;;;;:86;;;;;59343:8;59302:49;;59310:13;:21;;;59332:5;59310:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59302:49;;;59265:86;59247:154;;;59385:4;59378:11;;;;;59247:154;59420:39;59443:5;59450:8;59420:22;:39::i;:::-;59413:46;;;58850:617;;;;;:::o;56236:127::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56340:15:::1;56323:14;:32;;;;;;;;;;;;:::i;:::-;;56236:127:::0;:::o;16278:201::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16387:1:::1;16367:22;;:8;:22;;;;16359:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16443:28;16462:8;16443:18;:28::i;:::-;16278:201:::0;:::o;54080:46::-;54116:10;54080:46;:::o;56933:163::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57008:1:::1;56989:16;;:20;56981:29;;;::::0;::::1;;57021:36;57031:7;:5;:7::i;:::-;57040:16;;57021:9;:36::i;:::-;57087:1;57068:16;:20;;;;56933:163::o:0;57786:106::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57873:11:::1;57860:10;;:24;;;;;;;;;;;;;;;;;;57786:106:::0;:::o;39123:370::-;39250:4;39295:25;39280:40;;;:11;:40;;;;:99;;;;39346:33;39331:48;;;:11;:48;;;;39280:99;:160;;;;39405:35;39390:50;;;:11;:50;;;;39280:160;:207;;;;39451:36;39475:11;39451:23;:36::i;:::-;39280:207;39266:221;;39123:370;;;:::o;44199:105::-;44256:4;44286:12;;44276:7;:22;44269:29;;44199:105;;;:::o;14093:98::-;14146:7;14173:10;14166:17;;14093:98;:::o;47802:172::-;47926:2;47899:15;:24;47915:7;47899:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47960:7;47956:2;47940:28;;47949:5;47940:28;;;;;;;;;;;;47802:172;;;:::o;55318:203::-;55362:7;55384:18;;;;;;;;;;;55381:133;;;54116:10;55419:16;;;;55381:133;54178:9;55477:25;;55318:203;;:::o;55617:233::-;55673:7;55695:18;;;;;;;;;;;55692:151;;;55737:18;;55730:25;;;;55692:151;55804:27;;55797:34;;55617:233;;:::o;46167:1529::-;46264:35;46302:20;46314:7;46302:11;:20::i;:::-;46264:58;;46331:22;46373:13;:18;;;46357:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;46426:12;:10;:12::i;:::-;46402:36;;:20;46414:7;46402:11;:20::i;:::-;:36;;;46357:81;:142;;;;46449:50;46466:13;:18;;;46486:12;:10;:12::i;:::-;46449:16;:50::i;:::-;46357:142;46331:169;;46525:17;46509:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;46657:4;46635:26;;:13;:18;;;:26;;;46619:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;46746:1;46732:16;;:2;:16;;;;46724:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46799:43;46821:4;46827:2;46831:7;46840:1;46799:21;:43::i;:::-;46899:49;46916:1;46920:7;46929:13;:18;;;46899:8;:49::i;:::-;46987:1;46957:12;:18;46970:4;46957:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47023:1;46995:12;:16;47008:2;46995:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47054:43;;;;;;;;47069:2;47054:43;;;;;;47080:15;47054:43;;;;;47031:11;:20;47043:7;47031:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47325:19;47357:1;47347:7;:11;;;;:::i;:::-;47325:33;;47410:1;47369:43;;:11;:24;47381:11;47369:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47365:236;;;47427:20;47435:11;47427:7;:20::i;:::-;47423:171;;;47487:97;;;;;;;;47514:13;:18;;;47487:97;;;;;;47545:13;:28;;;47487:97;;;;;47460:11;:24;47472:11;47460:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47423:171;47365:236;47633:7;47629:2;47614:27;;47623:4;47614:27;;;;;;;;;;;;47648:42;47669:4;47675:2;47679:7;47688:1;47648:20;:42::i;:::-;46257:1439;;;46167:1529;;;:::o;3571:98::-;3629:7;3660:1;3656;:5;;;;:::i;:::-;3649:12;;3571:98;;;;:::o;3970:::-;4028:7;4059:1;4055;:5;;;;:::i;:::-;4048:12;;3970:98;;;;:::o;40012:606::-;40088:21;;:::i;:::-;40129:16;40137:7;40129;:16::i;:::-;40121:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40201:26;40249:12;40238:7;:23;40234:93;;40318:1;40303:12;40293:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;40272:47;;40234:93;40340:12;40355:7;40340:22;;40335:212;40372:18;40364:4;:26;40335:212;;40409:31;40443:11;:17;40455:4;40443:17;;;;;;;;;;;40409:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40499:1;40473:28;;:9;:14;;;:28;;;40469:71;;40521:9;40514:16;;;;;;;40469:71;40400:147;40392:6;;;;;:::i;:::-;;;;40335:212;;;;40555:57;;;;;;;;;;:::i;:::-;;;;;;;;40012:606;;;;:::o;16639:191::-;16713:16;16732:6;;;;;;;;;;;16713:25;;16758:8;16749:6;;:17;;;;;;;;;;;;;;;;;;16813:8;16782:40;;16803:8;16782:40;;;;;;;;;;;;16702:128;16639:191;:::o;49513:690::-;49650:4;49667:15;:2;:13;;;:15::i;:::-;49663:535;;;49722:2;49706:36;;;49743:12;:10;:12::i;:::-;49757:4;49763:7;49772:5;49706:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49693:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49954:1;49937:6;:13;:18;49933:215;;;49970:61;;;;;;;;;;:::i;:::-;;;;;;;;49933:215;50116:6;50110:13;50101:6;50097:2;50093:15;50086:38;49693:464;49838:45;;;49828:55;;;:6;:55;;;;49821:62;;;;;49663:535;50186:4;50179:11;;49513:690;;;;;;;:::o;51729:190::-;51854:4;51907;51878:25;51891:5;51898:4;51878:12;:25::i;:::-;:33;51871:40;;51729:190;;;;;:::o;44310:98::-;44375:27;44385:2;44389:8;44375:27;;;;;;;;;;;;:9;:27::i;:::-;44310:98;;:::o;11655:723::-;11711:13;11941:1;11932:5;:10;11928:53;;;11959:10;;;;;;;;;;;;;;;;;;;;;11928:53;11991:12;12006:5;11991:20;;12022:14;12047:78;12062:1;12054:4;:9;12047:78;;12080:8;;;;;:::i;:::-;;;;12111:2;12103:10;;;;;:::i;:::-;;;12047:78;;;12135:19;12167:6;12157:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12135:39;;12185:154;12201:1;12192:5;:10;12185:154;;12229:1;12219:11;;;;;:::i;:::-;;;12296:2;12288:5;:10;;;;:::i;:::-;12275:2;:24;;;;:::i;:::-;12262:39;;12245:6;12252;12245:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12325:2;12316:11;;;;;:::i;:::-;;;12185:154;;;12363:6;12349:21;;;;;11655:723;;;;:::o;42979:186::-;43101:4;43124:18;:25;43143:5;43124:25;;;;;;;;;;;;;;;:35;43150:8;43124:35;;;;;;;;;;;;;;;;;;;;;;;;;43117:42;;42979:186;;;;:::o;28769:157::-;28854:4;28893:25;28878:40;;;:11;:40;;;;28871:47;;28769:157;;;:::o;50665:141::-;;;;;:::o;51192:140::-;;;;;:::o;17657:387::-;17717:4;17925:12;17992:7;17980:20;17972:28;;18035:1;18028:4;:8;18021:15;;;17657:387;;;:::o;52280:675::-;52363:7;52383:20;52406:4;52383:27;;52426:9;52421:497;52445:5;:12;52441:1;:16;52421:497;;;52479:20;52502:5;52508:1;52502:8;;;;;;;;:::i;:::-;;;;;;;;52479:31;;52545:12;52529;:28;52525:382;;52672:42;52687:12;52701;52672:14;:42::i;:::-;52657:57;;52525:382;;;52849:42;52864:12;52878;52849:14;:42::i;:::-;52834:57;;52525:382;52464:454;52459:3;;;;;:::i;:::-;;;;52421:497;;;;52935:12;52928:19;;;52280:675;;;;:::o;44663:1272::-;44768:20;44791:12;;44768:35;;44832:1;44818:16;;:2;:16;;;;44810:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45009:21;45017:12;45009:7;:21::i;:::-;45008:22;45000:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45091:12;45079:8;:24;;45071:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45151:61;45181:1;45185:2;45189:12;45203:8;45151:21;:61::i;:::-;45221:30;45254:12;:16;45267:2;45254:16;;;;;;;;;;;;;;;45221:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45296:119;;;;;;;;45346:8;45316:11;:19;;;:39;;;;:::i;:::-;45296:119;;;;;;45399:8;45364:11;:24;;;:44;;;;:::i;:::-;45296:119;;;;;45277:12;:16;45290:2;45277:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45450:43;;;;;;;;45465:2;45450:43;;;;;;45476:15;45450:43;;;;;45422:11;:25;45434:12;45422:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45502:20;45525:12;45502:35;;45551:9;45546:281;45570:8;45566:1;:12;45546:281;;;45624:12;45620:2;45599:38;;45616:1;45599:38;;;;;;;;;;;;45664:59;45695:1;45699:2;45703:12;45717:5;45664:22;:59::i;:::-;45646:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;45805:14;;;;;:::i;:::-;;;;45580:3;;;;;:::i;:::-;;;;45546:281;;;;45850:12;45835;:27;;;;45869:60;45898:1;45902:2;45906:12;45920:8;45869:20;:60::i;:::-;44761:1174;;;44663:1272;;;:::o;52963:268::-;53031:13;53138:1;53132:4;53125:15;53167:1;53161:4;53154:15;53208:4;53202;53192:21;53183:30;;52963:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2508:201::-;2594:5;2625:6;2619:13;2610:22;;2641:62;2697:5;2641:62;:::i;:::-;2508:201;;;;:::o;2729:340::-;2785:5;2834:3;2827:4;2819:6;2815:17;2811:27;2801:122;;2842:79;;:::i;:::-;2801:122;2959:6;2946:20;2984:79;3059:3;3051:6;3044:4;3036:6;3032:17;2984:79;:::i;:::-;2975:88;;2791:278;2729:340;;;;:::o;3075:139::-;3121:5;3159:6;3146:20;3137:29;;3175:33;3202:5;3175:33;:::i;:::-;3075:139;;;;:::o;3220:329::-;3279:6;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3220:329;;;;:::o;3555:474::-;3623:6;3631;3680:2;3668:9;3659:7;3655:23;3651:32;3648:119;;;3686:79;;:::i;:::-;3648:119;3806:1;3831:53;3876:7;3867:6;3856:9;3852:22;3831:53;:::i;:::-;3821:63;;3777:117;3933:2;3959:53;4004:7;3995:6;3984:9;3980:22;3959:53;:::i;:::-;3949:63;;3904:118;3555:474;;;;;:::o;4035:619::-;4112:6;4120;4128;4177:2;4165:9;4156:7;4152:23;4148:32;4145:119;;;4183:79;;:::i;:::-;4145:119;4303:1;4328:53;4373:7;4364:6;4353:9;4349:22;4328:53;:::i;:::-;4318:63;;4274:117;4430:2;4456:53;4501:7;4492:6;4481:9;4477:22;4456:53;:::i;:::-;4446:63;;4401:118;4558:2;4584:53;4629:7;4620:6;4609:9;4605:22;4584:53;:::i;:::-;4574:63;;4529:118;4035:619;;;;;:::o;4660:943::-;4755:6;4763;4771;4779;4828:3;4816:9;4807:7;4803:23;4799:33;4796:120;;;4835:79;;:::i;:::-;4796:120;4955:1;4980:53;5025:7;5016:6;5005:9;5001:22;4980:53;:::i;:::-;4970:63;;4926:117;5082:2;5108:53;5153:7;5144:6;5133:9;5129:22;5108:53;:::i;:::-;5098:63;;5053:118;5210:2;5236:53;5281:7;5272:6;5261:9;5257:22;5236:53;:::i;:::-;5226:63;;5181:118;5366:2;5355:9;5351:18;5338:32;5397:18;5389:6;5386:30;5383:117;;;5419:79;;:::i;:::-;5383:117;5524:62;5578:7;5569:6;5558:9;5554:22;5524:62;:::i;:::-;5514:72;;5309:287;4660:943;;;;;;;:::o;5609:468::-;5674:6;5682;5731:2;5719:9;5710:7;5706:23;5702:32;5699:119;;;5737:79;;:::i;:::-;5699:119;5857:1;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5828:117;5984:2;6010:50;6052:7;6043:6;6032:9;6028:22;6010:50;:::i;:::-;6000:60;;5955:115;5609:468;;;;;:::o;6083:474::-;6151:6;6159;6208:2;6196:9;6187:7;6183:23;6179:32;6176:119;;;6214:79;;:::i;:::-;6176:119;6334:1;6359:53;6404:7;6395:6;6384:9;6380:22;6359:53;:::i;:::-;6349:63;;6305:117;6461:2;6487:53;6532:7;6523:6;6512:9;6508:22;6487:53;:::i;:::-;6477:63;;6432:118;6083:474;;;;;:::o;6563:323::-;6619:6;6668:2;6656:9;6647:7;6643:23;6639:32;6636:119;;;6674:79;;:::i;:::-;6636:119;6794:1;6819:50;6861:7;6852:6;6841:9;6837:22;6819:50;:::i;:::-;6809:60;;6765:114;6563:323;;;;:::o;6892:329::-;6951:6;7000:2;6988:9;6979:7;6975:23;6971:32;6968:119;;;7006:79;;:::i;:::-;6968:119;7126:1;7151:53;7196:7;7187:6;7176:9;7172:22;7151:53;:::i;:::-;7141:63;;7097:117;6892:329;;;;:::o;7227:327::-;7285:6;7334:2;7322:9;7313:7;7309:23;7305:32;7302:119;;;7340:79;;:::i;:::-;7302:119;7460:1;7485:52;7529:7;7520:6;7509:9;7505:22;7485:52;:::i;:::-;7475:62;;7431:116;7227:327;;;;:::o;7560:349::-;7629:6;7678:2;7666:9;7657:7;7653:23;7649:32;7646:119;;;7684:79;;:::i;:::-;7646:119;7804:1;7829:63;7884:7;7875:6;7864:9;7860:22;7829:63;:::i;:::-;7819:73;;7775:127;7560:349;;;;:::o;7915:409::-;8014:6;8063:2;8051:9;8042:7;8038:23;8034:32;8031:119;;;8069:79;;:::i;:::-;8031:119;8189:1;8214:93;8299:7;8290:6;8279:9;8275:22;8214:93;:::i;:::-;8204:103;;8160:157;7915:409;;;;:::o;8330:509::-;8399:6;8448:2;8436:9;8427:7;8423:23;8419:32;8416:119;;;8454:79;;:::i;:::-;8416:119;8602:1;8591:9;8587:17;8574:31;8632:18;8624:6;8621:30;8618:117;;;8654:79;;:::i;:::-;8618:117;8759:63;8814:7;8805:6;8794:9;8790:22;8759:63;:::i;:::-;8749:73;;8545:287;8330:509;;;;:::o;8845:329::-;8904:6;8953:2;8941:9;8932:7;8928:23;8924:32;8921:119;;;8959:79;;:::i;:::-;8921:119;9079:1;9104:53;9149:7;9140:6;9129:9;9125:22;9104:53;:::i;:::-;9094:63;;9050:117;8845:329;;;;:::o;9180:704::-;9275:6;9283;9291;9340:2;9328:9;9319:7;9315:23;9311:32;9308:119;;;9346:79;;:::i;:::-;9308:119;9466:1;9491:53;9536:7;9527:6;9516:9;9512:22;9491:53;:::i;:::-;9481:63;;9437:117;9621:2;9610:9;9606:18;9593:32;9652:18;9644:6;9641:30;9638:117;;;9674:79;;:::i;:::-;9638:117;9787:80;9859:7;9850:6;9839:9;9835:22;9787:80;:::i;:::-;9769:98;;;;9564:313;9180:704;;;;;:::o;9890:474::-;9958:6;9966;10015:2;10003:9;9994:7;9990:23;9986:32;9983:119;;;10021:79;;:::i;:::-;9983:119;10141:1;10166:53;10211:7;10202:6;10191:9;10187:22;10166:53;:::i;:::-;10156:63;;10112:117;10268:2;10294:53;10339:7;10330:6;10319:9;10315:22;10294:53;:::i;:::-;10284:63;;10239:118;9890:474;;;;;:::o;10370:118::-;10457:24;10475:5;10457:24;:::i;:::-;10452:3;10445:37;10370:118;;:::o;10494:157::-;10599:45;10619:24;10637:5;10619:24;:::i;:::-;10599:45;:::i;:::-;10594:3;10587:58;10494:157;;:::o;10657:109::-;10738:21;10753:5;10738:21;:::i;:::-;10733:3;10726:34;10657:109;;:::o;10772:118::-;10859:24;10877:5;10859:24;:::i;:::-;10854:3;10847:37;10772:118;;:::o;10896:360::-;10982:3;11010:38;11042:5;11010:38;:::i;:::-;11064:70;11127:6;11122:3;11064:70;:::i;:::-;11057:77;;11143:52;11188:6;11183:3;11176:4;11169:5;11165:16;11143:52;:::i;:::-;11220:29;11242:6;11220:29;:::i;:::-;11215:3;11211:39;11204:46;;10986:270;10896:360;;;;:::o;11262:364::-;11350:3;11378:39;11411:5;11378:39;:::i;:::-;11433:71;11497:6;11492:3;11433:71;:::i;:::-;11426:78;;11513:52;11558:6;11553:3;11546:4;11539:5;11535:16;11513:52;:::i;:::-;11590:29;11612:6;11590:29;:::i;:::-;11585:3;11581:39;11574:46;;11354:272;11262:364;;;;:::o;11632:377::-;11738:3;11766:39;11799:5;11766:39;:::i;:::-;11821:89;11903:6;11898:3;11821:89;:::i;:::-;11814:96;;11919:52;11964:6;11959:3;11952:4;11945:5;11941:16;11919:52;:::i;:::-;11996:6;11991:3;11987:16;11980:23;;11742:267;11632:377;;;;:::o;12039:845::-;12142:3;12179:5;12173:12;12208:36;12234:9;12208:36;:::i;:::-;12260:89;12342:6;12337:3;12260:89;:::i;:::-;12253:96;;12380:1;12369:9;12365:17;12396:1;12391:137;;;;12542:1;12537:341;;;;12358:520;;12391:137;12475:4;12471:9;12460;12456:25;12451:3;12444:38;12511:6;12506:3;12502:16;12495:23;;12391:137;;12537:341;12604:38;12636:5;12604:38;:::i;:::-;12664:1;12678:154;12692:6;12689:1;12686:13;12678:154;;;12766:7;12760:14;12756:1;12751:3;12747:11;12740:35;12816:1;12807:7;12803:15;12792:26;;12714:4;12711:1;12707:12;12702:17;;12678:154;;;12861:6;12856:3;12852:16;12845:23;;12544:334;;12358:520;;12146:738;;12039:845;;;;:::o;12890:366::-;13032:3;13053:67;13117:2;13112:3;13053:67;:::i;:::-;13046:74;;13129:93;13218:3;13129:93;:::i;:::-;13247:2;13242:3;13238:12;13231:19;;12890:366;;;:::o;13262:::-;13404:3;13425:67;13489:2;13484:3;13425:67;:::i;:::-;13418:74;;13501:93;13590:3;13501:93;:::i;:::-;13619:2;13614:3;13610:12;13603:19;;13262:366;;;:::o;13634:::-;13776:3;13797:67;13861:2;13856:3;13797:67;:::i;:::-;13790:74;;13873:93;13962:3;13873:93;:::i;:::-;13991:2;13986:3;13982:12;13975:19;;13634:366;;;:::o;14006:::-;14148:3;14169:67;14233:2;14228:3;14169:67;:::i;:::-;14162:74;;14245:93;14334:3;14245:93;:::i;:::-;14363:2;14358:3;14354:12;14347:19;;14006:366;;;:::o;14378:::-;14520:3;14541:67;14605:2;14600:3;14541:67;:::i;:::-;14534:74;;14617:93;14706:3;14617:93;:::i;:::-;14735:2;14730:3;14726:12;14719:19;;14378:366;;;:::o;14750:::-;14892:3;14913:67;14977:2;14972:3;14913:67;:::i;:::-;14906:74;;14989:93;15078:3;14989:93;:::i;:::-;15107:2;15102:3;15098:12;15091:19;;14750:366;;;:::o;15122:::-;15264:3;15285:67;15349:2;15344:3;15285:67;:::i;:::-;15278:74;;15361:93;15450:3;15361:93;:::i;:::-;15479:2;15474:3;15470:12;15463:19;;15122:366;;;:::o;15494:::-;15636:3;15657:67;15721:2;15716:3;15657:67;:::i;:::-;15650:74;;15733:93;15822:3;15733:93;:::i;:::-;15851:2;15846:3;15842:12;15835:19;;15494:366;;;:::o;15866:::-;16008:3;16029:67;16093:2;16088:3;16029:67;:::i;:::-;16022:74;;16105:93;16194:3;16105:93;:::i;:::-;16223:2;16218:3;16214:12;16207:19;;15866:366;;;:::o;16238:::-;16380:3;16401:67;16465:2;16460:3;16401:67;:::i;:::-;16394:74;;16477:93;16566:3;16477:93;:::i;:::-;16595:2;16590:3;16586:12;16579:19;;16238:366;;;:::o;16610:::-;16752:3;16773:67;16837:2;16832:3;16773:67;:::i;:::-;16766:74;;16849:93;16938:3;16849:93;:::i;:::-;16967:2;16962:3;16958:12;16951:19;;16610:366;;;:::o;16982:400::-;17142:3;17163:84;17245:1;17240:3;17163:84;:::i;:::-;17156:91;;17256:93;17345:3;17256:93;:::i;:::-;17374:1;17369:3;17365:11;17358:18;;16982:400;;;:::o;17388:366::-;17530:3;17551:67;17615:2;17610:3;17551:67;:::i;:::-;17544:74;;17627:93;17716:3;17627:93;:::i;:::-;17745:2;17740:3;17736:12;17729:19;;17388:366;;;:::o;17760:::-;17902:3;17923:67;17987:2;17982:3;17923:67;:::i;:::-;17916:74;;17999:93;18088:3;17999:93;:::i;:::-;18117:2;18112:3;18108:12;18101:19;;17760:366;;;:::o;18132:::-;18274:3;18295:67;18359:2;18354:3;18295:67;:::i;:::-;18288:74;;18371:93;18460:3;18371:93;:::i;:::-;18489:2;18484:3;18480:12;18473:19;;18132:366;;;:::o;18504:::-;18646:3;18667:67;18731:2;18726:3;18667:67;:::i;:::-;18660:74;;18743:93;18832:3;18743:93;:::i;:::-;18861:2;18856:3;18852:12;18845:19;;18504:366;;;:::o;18876:398::-;19035:3;19056:83;19137:1;19132:3;19056:83;:::i;:::-;19049:90;;19148:93;19237:3;19148:93;:::i;:::-;19266:1;19261:3;19257:11;19250:18;;18876:398;;;:::o;19280:366::-;19422:3;19443:67;19507:2;19502:3;19443:67;:::i;:::-;19436:74;;19519:93;19608:3;19519:93;:::i;:::-;19637:2;19632:3;19628:12;19621:19;;19280:366;;;:::o;19652:::-;19794:3;19815:67;19879:2;19874:3;19815:67;:::i;:::-;19808:74;;19891:93;19980:3;19891:93;:::i;:::-;20009:2;20004:3;20000:12;19993:19;;19652:366;;;:::o;20024:::-;20166:3;20187:67;20251:2;20246:3;20187:67;:::i;:::-;20180:74;;20263:93;20352:3;20263:93;:::i;:::-;20381:2;20376:3;20372:12;20365:19;;20024:366;;;:::o;20396:::-;20538:3;20559:67;20623:2;20618:3;20559:67;:::i;:::-;20552:74;;20635:93;20724:3;20635:93;:::i;:::-;20753:2;20748:3;20744:12;20737:19;;20396:366;;;:::o;20768:::-;20910:3;20931:67;20995:2;20990:3;20931:67;:::i;:::-;20924:74;;21007:93;21096:3;21007:93;:::i;:::-;21125:2;21120:3;21116:12;21109:19;;20768:366;;;:::o;21140:::-;21282:3;21303:67;21367:2;21362:3;21303:67;:::i;:::-;21296:74;;21379:93;21468:3;21379:93;:::i;:::-;21497:2;21492:3;21488:12;21481:19;;21140:366;;;:::o;21512:::-;21654:3;21675:67;21739:2;21734:3;21675:67;:::i;:::-;21668:74;;21751:93;21840:3;21751:93;:::i;:::-;21869:2;21864:3;21860:12;21853:19;;21512:366;;;:::o;21884:::-;22026:3;22047:67;22111:2;22106:3;22047:67;:::i;:::-;22040:74;;22123:93;22212:3;22123:93;:::i;:::-;22241:2;22236:3;22232:12;22225:19;;21884:366;;;:::o;22256:::-;22398:3;22419:67;22483:2;22478:3;22419:67;:::i;:::-;22412:74;;22495:93;22584:3;22495:93;:::i;:::-;22613:2;22608:3;22604:12;22597:19;;22256:366;;;:::o;22628:::-;22770:3;22791:67;22855:2;22850:3;22791:67;:::i;:::-;22784:74;;22867:93;22956:3;22867:93;:::i;:::-;22985:2;22980:3;22976:12;22969:19;;22628:366;;;:::o;23000:118::-;23087:24;23105:5;23087:24;:::i;:::-;23082:3;23075:37;23000:118;;:::o;23124:256::-;23236:3;23251:75;23322:3;23313:6;23251:75;:::i;:::-;23351:2;23346:3;23342:12;23335:19;;23371:3;23364:10;;23124:256;;;;:::o;23386:695::-;23664:3;23686:92;23774:3;23765:6;23686:92;:::i;:::-;23679:99;;23795:95;23886:3;23877:6;23795:95;:::i;:::-;23788:102;;23907:148;24051:3;23907:148;:::i;:::-;23900:155;;24072:3;24065:10;;23386:695;;;;;:::o;24087:379::-;24271:3;24293:147;24436:3;24293:147;:::i;:::-;24286:154;;24457:3;24450:10;;24087:379;;;:::o;24472:222::-;24565:4;24603:2;24592:9;24588:18;24580:26;;24616:71;24684:1;24673:9;24669:17;24660:6;24616:71;:::i;:::-;24472:222;;;;:::o;24700:640::-;24895:4;24933:3;24922:9;24918:19;24910:27;;24947:71;25015:1;25004:9;25000:17;24991:6;24947:71;:::i;:::-;25028:72;25096:2;25085:9;25081:18;25072:6;25028:72;:::i;:::-;25110;25178:2;25167:9;25163:18;25154:6;25110:72;:::i;:::-;25229:9;25223:4;25219:20;25214:2;25203:9;25199:18;25192:48;25257:76;25328:4;25319:6;25257:76;:::i;:::-;25249:84;;24700:640;;;;;;;:::o;25346:332::-;25467:4;25505:2;25494:9;25490:18;25482:26;;25518:71;25586:1;25575:9;25571:17;25562:6;25518:71;:::i;:::-;25599:72;25667:2;25656:9;25652:18;25643:6;25599:72;:::i;:::-;25346:332;;;;;:::o;25684:210::-;25771:4;25809:2;25798:9;25794:18;25786:26;;25822:65;25884:1;25873:9;25869:17;25860:6;25822:65;:::i;:::-;25684:210;;;;:::o;25900:222::-;25993:4;26031:2;26020:9;26016:18;26008:26;;26044:71;26112:1;26101:9;26097:17;26088:6;26044:71;:::i;:::-;25900:222;;;;:::o;26128:313::-;26241:4;26279:2;26268:9;26264:18;26256:26;;26328:9;26322:4;26318:20;26314:1;26303:9;26299:17;26292:47;26356:78;26429:4;26420:6;26356:78;:::i;:::-;26348:86;;26128:313;;;;:::o;26447:419::-;26613:4;26651:2;26640:9;26636:18;26628:26;;26700:9;26694:4;26690:20;26686:1;26675:9;26671:17;26664:47;26728:131;26854:4;26728:131;:::i;:::-;26720:139;;26447:419;;;:::o;26872:::-;27038:4;27076:2;27065:9;27061:18;27053:26;;27125:9;27119:4;27115:20;27111:1;27100:9;27096:17;27089:47;27153:131;27279:4;27153:131;:::i;:::-;27145:139;;26872:419;;;:::o;27297:::-;27463:4;27501:2;27490:9;27486:18;27478:26;;27550:9;27544:4;27540:20;27536:1;27525:9;27521:17;27514:47;27578:131;27704:4;27578:131;:::i;:::-;27570:139;;27297:419;;;:::o;27722:::-;27888:4;27926:2;27915:9;27911:18;27903:26;;27975:9;27969:4;27965:20;27961:1;27950:9;27946:17;27939:47;28003:131;28129:4;28003:131;:::i;:::-;27995:139;;27722:419;;;:::o;28147:::-;28313:4;28351:2;28340:9;28336:18;28328:26;;28400:9;28394:4;28390:20;28386:1;28375:9;28371:17;28364:47;28428:131;28554:4;28428:131;:::i;:::-;28420:139;;28147:419;;;:::o;28572:::-;28738:4;28776:2;28765:9;28761:18;28753:26;;28825:9;28819:4;28815:20;28811:1;28800:9;28796:17;28789:47;28853:131;28979:4;28853:131;:::i;:::-;28845:139;;28572:419;;;:::o;28997:::-;29163:4;29201:2;29190:9;29186:18;29178:26;;29250:9;29244:4;29240:20;29236:1;29225:9;29221:17;29214:47;29278:131;29404:4;29278:131;:::i;:::-;29270:139;;28997:419;;;:::o;29422:::-;29588:4;29626:2;29615:9;29611:18;29603:26;;29675:9;29669:4;29665:20;29661:1;29650:9;29646:17;29639:47;29703:131;29829:4;29703:131;:::i;:::-;29695:139;;29422:419;;;:::o;29847:::-;30013:4;30051:2;30040:9;30036:18;30028:26;;30100:9;30094:4;30090:20;30086:1;30075:9;30071:17;30064:47;30128:131;30254:4;30128:131;:::i;:::-;30120:139;;29847:419;;;:::o;30272:::-;30438:4;30476:2;30465:9;30461:18;30453:26;;30525:9;30519:4;30515:20;30511:1;30500:9;30496:17;30489:47;30553:131;30679:4;30553:131;:::i;:::-;30545:139;;30272:419;;;:::o;30697:::-;30863:4;30901:2;30890:9;30886:18;30878:26;;30950:9;30944:4;30940:20;30936:1;30925:9;30921:17;30914:47;30978:131;31104:4;30978:131;:::i;:::-;30970:139;;30697:419;;;:::o;31122:::-;31288:4;31326:2;31315:9;31311:18;31303:26;;31375:9;31369:4;31365:20;31361:1;31350:9;31346:17;31339:47;31403:131;31529:4;31403:131;:::i;:::-;31395:139;;31122:419;;;:::o;31547:::-;31713:4;31751:2;31740:9;31736:18;31728:26;;31800:9;31794:4;31790:20;31786:1;31775:9;31771:17;31764:47;31828:131;31954:4;31828:131;:::i;:::-;31820:139;;31547:419;;;:::o;31972:::-;32138:4;32176:2;32165:9;32161:18;32153:26;;32225:9;32219:4;32215:20;32211:1;32200:9;32196:17;32189:47;32253:131;32379:4;32253:131;:::i;:::-;32245:139;;31972:419;;;:::o;32397:::-;32563:4;32601:2;32590:9;32586:18;32578:26;;32650:9;32644:4;32640:20;32636:1;32625:9;32621:17;32614:47;32678:131;32804:4;32678:131;:::i;:::-;32670:139;;32397:419;;;:::o;32822:::-;32988:4;33026:2;33015:9;33011:18;33003:26;;33075:9;33069:4;33065:20;33061:1;33050:9;33046:17;33039:47;33103:131;33229:4;33103:131;:::i;:::-;33095:139;;32822:419;;;:::o;33247:::-;33413:4;33451:2;33440:9;33436:18;33428:26;;33500:9;33494:4;33490:20;33486:1;33475:9;33471:17;33464:47;33528:131;33654:4;33528:131;:::i;:::-;33520:139;;33247:419;;;:::o;33672:::-;33838:4;33876:2;33865:9;33861:18;33853:26;;33925:9;33919:4;33915:20;33911:1;33900:9;33896:17;33889:47;33953:131;34079:4;33953:131;:::i;:::-;33945:139;;33672:419;;;:::o;34097:::-;34263:4;34301:2;34290:9;34286:18;34278:26;;34350:9;34344:4;34340:20;34336:1;34325:9;34321:17;34314:47;34378:131;34504:4;34378:131;:::i;:::-;34370:139;;34097:419;;;:::o;34522:::-;34688:4;34726:2;34715:9;34711:18;34703:26;;34775:9;34769:4;34765:20;34761:1;34750:9;34746:17;34739:47;34803:131;34929:4;34803:131;:::i;:::-;34795:139;;34522:419;;;:::o;34947:::-;35113:4;35151:2;35140:9;35136:18;35128:26;;35200:9;35194:4;35190:20;35186:1;35175:9;35171:17;35164:47;35228:131;35354:4;35228:131;:::i;:::-;35220:139;;34947:419;;;:::o;35372:::-;35538:4;35576:2;35565:9;35561:18;35553:26;;35625:9;35619:4;35615:20;35611:1;35600:9;35596:17;35589:47;35653:131;35779:4;35653:131;:::i;:::-;35645:139;;35372:419;;;:::o;35797:::-;35963:4;36001:2;35990:9;35986:18;35978:26;;36050:9;36044:4;36040:20;36036:1;36025:9;36021:17;36014:47;36078:131;36204:4;36078:131;:::i;:::-;36070:139;;35797:419;;;:::o;36222:::-;36388:4;36426:2;36415:9;36411:18;36403:26;;36475:9;36469:4;36465:20;36461:1;36450:9;36446:17;36439:47;36503:131;36629:4;36503:131;:::i;:::-;36495:139;;36222:419;;;:::o;36647:::-;36813:4;36851:2;36840:9;36836:18;36828:26;;36900:9;36894:4;36890:20;36886:1;36875:9;36871:17;36864:47;36928:131;37054:4;36928:131;:::i;:::-;36920:139;;36647:419;;;:::o;37072:222::-;37165:4;37203:2;37192:9;37188:18;37180:26;;37216:71;37284:1;37273:9;37269:17;37260:6;37216:71;:::i;:::-;37072:222;;;;:::o;37300:129::-;37334:6;37361:20;;:::i;:::-;37351:30;;37390:33;37418:4;37410:6;37390:33;:::i;:::-;37300:129;;;:::o;37435:75::-;37468:6;37501:2;37495:9;37485:19;;37435:75;:::o;37516:307::-;37577:4;37667:18;37659:6;37656:30;37653:56;;;37689:18;;:::i;:::-;37653:56;37727:29;37749:6;37727:29;:::i;:::-;37719:37;;37811:4;37805;37801:15;37793:23;;37516:307;;;:::o;37829:308::-;37891:4;37981:18;37973:6;37970:30;37967:56;;;38003:18;;:::i;:::-;37967:56;38041:29;38063:6;38041:29;:::i;:::-;38033:37;;38125:4;38119;38115:15;38107:23;;37829:308;;;:::o;38143:141::-;38192:4;38215:3;38207:11;;38238:3;38235:1;38228:14;38272:4;38269:1;38259:18;38251:26;;38143:141;;;:::o;38290:98::-;38341:6;38375:5;38369:12;38359:22;;38290:98;;;:::o;38394:99::-;38446:6;38480:5;38474:12;38464:22;;38394:99;;;:::o;38499:168::-;38582:11;38616:6;38611:3;38604:19;38656:4;38651:3;38647:14;38632:29;;38499:168;;;;:::o;38673:147::-;38774:11;38811:3;38796:18;;38673:147;;;;:::o;38826:169::-;38910:11;38944:6;38939:3;38932:19;38984:4;38979:3;38975:14;38960:29;;38826:169;;;;:::o;39001:148::-;39103:11;39140:3;39125:18;;39001:148;;;;:::o;39155:273::-;39195:3;39214:20;39232:1;39214:20;:::i;:::-;39209:25;;39248:20;39266:1;39248:20;:::i;:::-;39243:25;;39370:1;39334:34;39330:42;39327:1;39324:49;39321:75;;;39376:18;;:::i;:::-;39321:75;39420:1;39417;39413:9;39406:16;;39155:273;;;;:::o;39434:305::-;39474:3;39493:20;39511:1;39493:20;:::i;:::-;39488:25;;39527:20;39545:1;39527:20;:::i;:::-;39522:25;;39681:1;39613:66;39609:74;39606:1;39603:81;39600:107;;;39687:18;;:::i;:::-;39600:107;39731:1;39728;39724:9;39717:16;;39434:305;;;;:::o;39745:185::-;39785:1;39802:20;39820:1;39802:20;:::i;:::-;39797:25;;39836:20;39854:1;39836:20;:::i;:::-;39831:25;;39875:1;39865:35;;39880:18;;:::i;:::-;39865:35;39922:1;39919;39915:9;39910:14;;39745:185;;;;:::o;39936:348::-;39976:7;39999:20;40017:1;39999:20;:::i;:::-;39994:25;;40033:20;40051:1;40033:20;:::i;:::-;40028:25;;40221:1;40153:66;40149:74;40146:1;40143:81;40138:1;40131:9;40124:17;40120:105;40117:131;;;40228:18;;:::i;:::-;40117:131;40276:1;40273;40269:9;40258:20;;39936:348;;;;:::o;40290:191::-;40330:4;40350:20;40368:1;40350:20;:::i;:::-;40345:25;;40384:20;40402:1;40384:20;:::i;:::-;40379:25;;40423:1;40420;40417:8;40414:34;;;40428:18;;:::i;:::-;40414:34;40473:1;40470;40466:9;40458:17;;40290:191;;;;:::o;40487:::-;40527:4;40547:20;40565:1;40547:20;:::i;:::-;40542:25;;40581:20;40599:1;40581:20;:::i;:::-;40576:25;;40620:1;40617;40614:8;40611:34;;;40625:18;;:::i;:::-;40611:34;40670:1;40667;40663:9;40655:17;;40487:191;;;;:::o;40684:96::-;40721:7;40750:24;40768:5;40750:24;:::i;:::-;40739:35;;40684:96;;;:::o;40786:90::-;40820:7;40863:5;40856:13;40849:21;40838:32;;40786:90;;;:::o;40882:77::-;40919:7;40948:5;40937:16;;40882:77;;;:::o;40965:149::-;41001:7;41041:66;41034:5;41030:78;41019:89;;40965:149;;;:::o;41120:125::-;41186:7;41215:24;41233:5;41215:24;:::i;:::-;41204:35;;41120:125;;;:::o;41251:118::-;41288:7;41328:34;41321:5;41317:46;41306:57;;41251:118;;;:::o;41375:126::-;41412:7;41452:42;41445:5;41441:54;41430:65;;41375:126;;;:::o;41507:77::-;41544:7;41573:5;41562:16;;41507:77;;;:::o;41590:154::-;41674:6;41669:3;41664;41651:30;41736:1;41727:6;41722:3;41718:16;41711:27;41590:154;;;:::o;41750:307::-;41818:1;41828:113;41842:6;41839:1;41836:13;41828:113;;;41927:1;41922:3;41918:11;41912:18;41908:1;41903:3;41899:11;41892:39;41864:2;41861:1;41857:10;41852:15;;41828:113;;;41959:6;41956:1;41953:13;41950:101;;;42039:1;42030:6;42025:3;42021:16;42014:27;41950:101;41799:258;41750:307;;;:::o;42063:171::-;42102:3;42125:24;42143:5;42125:24;:::i;:::-;42116:33;;42171:4;42164:5;42161:15;42158:41;;;42179:18;;:::i;:::-;42158:41;42226:1;42219:5;42215:13;42208:20;;42063:171;;;:::o;42240:320::-;42284:6;42321:1;42315:4;42311:12;42301:22;;42368:1;42362:4;42358:12;42389:18;42379:81;;42445:4;42437:6;42433:17;42423:27;;42379:81;42507:2;42499:6;42496:14;42476:18;42473:38;42470:84;;;42526:18;;:::i;:::-;42470:84;42291:269;42240:320;;;:::o;42566:281::-;42649:27;42671:4;42649:27;:::i;:::-;42641:6;42637:40;42779:6;42767:10;42764:22;42743:18;42731:10;42728:34;42725:62;42722:88;;;42790:18;;:::i;:::-;42722:88;42830:10;42826:2;42819:22;42609:238;42566:281;;:::o;42853:233::-;42892:3;42915:24;42933:5;42915:24;:::i;:::-;42906:33;;42961:66;42954:5;42951:77;42948:103;;;43031:18;;:::i;:::-;42948:103;43078:1;43071:5;43067:13;43060:20;;42853:233;;;:::o;43092:100::-;43131:7;43160:26;43180:5;43160:26;:::i;:::-;43149:37;;43092:100;;;:::o;43198:94::-;43237:7;43266:20;43280:5;43266:20;:::i;:::-;43255:31;;43198:94;;;:::o;43298:176::-;43330:1;43347:20;43365:1;43347:20;:::i;:::-;43342:25;;43381:20;43399:1;43381:20;:::i;:::-;43376:25;;43420:1;43410:35;;43425:18;;:::i;:::-;43410:35;43466:1;43463;43459:9;43454:14;;43298:176;;;;:::o;43480:180::-;43528:77;43525:1;43518:88;43625:4;43622:1;43615:15;43649:4;43646:1;43639:15;43666:180;43714:77;43711:1;43704:88;43811:4;43808:1;43801:15;43835:4;43832:1;43825:15;43852:180;43900:77;43897:1;43890:88;43997:4;43994:1;43987:15;44021:4;44018:1;44011:15;44038:180;44086:77;44083:1;44076:88;44183:4;44180:1;44173:15;44207:4;44204:1;44197:15;44224:180;44272:77;44269:1;44262:88;44369:4;44366:1;44359:15;44393:4;44390:1;44383:15;44410:117;44519:1;44516;44509:12;44533:117;44642:1;44639;44632:12;44656:117;44765:1;44762;44755:12;44779:117;44888:1;44885;44878:12;44902:117;45011:1;45008;45001:12;45025:117;45134:1;45131;45124:12;45148:102;45189:6;45240:2;45236:7;45231:2;45224:5;45220:14;45216:28;45206:38;;45148:102;;;:::o;45256:94::-;45289:8;45337:5;45333:2;45329:14;45308:35;;45256:94;;;:::o;45356:221::-;45496:34;45492:1;45484:6;45480:14;45473:58;45565:4;45560:2;45552:6;45548:15;45541:29;45356:221;:::o;45583:181::-;45723:33;45719:1;45711:6;45707:14;45700:57;45583:181;:::o;45770:225::-;45910:34;45906:1;45898:6;45894:14;45887:58;45979:8;45974:2;45966:6;45962:15;45955:33;45770:225;:::o;46001:229::-;46141:34;46137:1;46129:6;46125:14;46118:58;46210:12;46205:2;46197:6;46193:15;46186:37;46001:229;:::o;46236:222::-;46376:34;46372:1;46364:6;46360:14;46353:58;46445:5;46440:2;46432:6;46428:15;46421:30;46236:222;:::o;46464:224::-;46604:34;46600:1;46592:6;46588:14;46581:58;46673:7;46668:2;46660:6;46656:15;46649:32;46464:224;:::o;46694:167::-;46834:19;46830:1;46822:6;46818:14;46811:43;46694:167;:::o;46867:244::-;47007:34;47003:1;46995:6;46991:14;46984:58;47076:27;47071:2;47063:6;47059:15;47052:52;46867:244;:::o;47117:169::-;47257:21;47253:1;47245:6;47241:14;47234:45;47117:169;:::o;47292:230::-;47432:34;47428:1;47420:6;47416:14;47409:58;47501:13;47496:2;47488:6;47484:15;47477:38;47292:230;:::o;47528:225::-;47668:34;47664:1;47656:6;47652:14;47645:58;47737:8;47732:2;47724:6;47720:15;47713:33;47528:225;:::o;47759:155::-;47899:7;47895:1;47887:6;47883:14;47876:31;47759:155;:::o;47920:182::-;48060:34;48056:1;48048:6;48044:14;48037:58;47920:182;:::o;48108:176::-;48248:28;48244:1;48236:6;48232:14;48225:52;48108:176;:::o;48290:237::-;48430:34;48426:1;48418:6;48414:14;48407:58;48499:20;48494:2;48486:6;48482:15;48475:45;48290:237;:::o;48533:221::-;48673:34;48669:1;48661:6;48657:14;48650:58;48742:4;48737:2;48729:6;48725:15;48718:29;48533:221;:::o;48760:114::-;;:::o;48880:238::-;49020:34;49016:1;49008:6;49004:14;48997:58;49089:21;49084:2;49076:6;49072:15;49065:46;48880:238;:::o;49124:179::-;49264:31;49260:1;49252:6;49248:14;49241:55;49124:179;:::o;49309:220::-;49449:34;49445:1;49437:6;49433:14;49426:58;49518:3;49513:2;49505:6;49501:15;49494:28;49309:220;:::o;49535:174::-;49675:26;49671:1;49663:6;49659:14;49652:50;49535:174;:::o;49715:233::-;49855:34;49851:1;49843:6;49839:14;49832:58;49924:16;49919:2;49911:6;49907:15;49900:41;49715:233;:::o;49954:182::-;50094:34;50090:1;50082:6;50078:14;50071:58;49954:182;:::o;50142:181::-;50282:33;50278:1;50270:6;50266:14;50259:57;50142:181;:::o;50329:234::-;50469:34;50465:1;50457:6;50453:14;50446:58;50538:17;50533:2;50525:6;50521:15;50514:42;50329:234;:::o;50569:232::-;50709:34;50705:1;50697:6;50693:14;50686:58;50778:15;50773:2;50765:6;50761:15;50754:40;50569:232;:::o;50807:221::-;50947:34;50943:1;50935:6;50931:14;50924:58;51016:4;51011:2;51003:6;50999:15;50992:29;50807:221;:::o;51034:122::-;51107:24;51125:5;51107:24;:::i;:::-;51100:5;51097:35;51087:63;;51146:1;51143;51136:12;51087:63;51034:122;:::o;51162:116::-;51232:21;51247:5;51232:21;:::i;:::-;51225:5;51222:32;51212:60;;51268:1;51265;51258:12;51212:60;51162:116;:::o;51284:122::-;51357:24;51375:5;51357:24;:::i;:::-;51350:5;51347:35;51337:63;;51396:1;51393;51386:12;51337:63;51284:122;:::o;51412:120::-;51484:23;51501:5;51484:23;:::i;:::-;51477:5;51474:34;51464:62;;51522:1;51519;51512:12;51464:62;51412:120;:::o;51538:180::-;51640:53;51687:5;51640:53;:::i;:::-;51633:5;51630:64;51620:92;;51708:1;51705;51698:12;51620:92;51538:180;:::o;51724:122::-;51797:24;51815:5;51797:24;:::i;:::-;51790:5;51787:35;51777:63;;51836:1;51833;51826:12;51777:63;51724:122;:::o

Swarm Source

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