ETH Price: $2,277.28 (-3.66%)

HAPEWIVES (HW)
 

Overview

TokenID

600

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
HapeWives

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

// 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 HapeWives is ERC721A, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

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

    address public oldAddress = 0x8bF1AF48Ec3fD8DC3a89eDC43Edf74820Bd890E6;
    IERC721Enumerable oldContract = IERC721Enumerable(oldAddress);
    mapping (uint256 => bool) public claimedTokens;
    mapping (address => uint256) public claimedBalance;

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

    uint256 public constant salePrice = 0.15 ether;
    uint256 public constant whitelistSalePrice = 0.1 ether;
    bool public isPublicSaleActive = false;
    bool public active = 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 isActive() {
        require(active, "Minting is not active");
        _;
    }

    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 + claimedBalance[msg.sender];
        }
        else {
            return mintPerWhitelistTransaction + claimedBalance[msg.sender];
        }
    }

    constructor(
        string memory _NotRevealedURI,
        string memory _initBaseURI
    ) ERC721A("HAPEWIVES", "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;
    }

    function setGiveawayReserved (uint256 _giveawayReserved) public onlyOwner {
      // WE WILL DECREASE IT IF CLAIM AND SOLD AMOUNT WILL BE MORE THAN 8000
      giveawayReserved = _giveawayReserved;
    }

    // PUBLIC FUNCTIONS

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

    function claim() external nonReentrant isActive {
        uint256 claimAmount = canClaim();
        require(claimAmount > 0, "You cant claim nft");

        for (uint256 i = 0 ; i < claimAmount; i++) {
          _idByOwner(i);
          claimedTokens[_idByOwner(i)] = true;
        }
        claimedBalance[msg.sender] = claimAmount * 2;
        _safeMint(msg.sender, claimAmount * 2);
    }
    // PUBLIC READ-ONLY FUNCTIONS

    function _idByOwner(uint256 _index) internal view returns (uint256) {
      return oldContract.tokenOfOwnerByIndex(msg.sender, _index);
    }

    function _canClaim() internal view returns (uint256) {
      return oldContract.balanceOf(msg.sender);
    }

    function canClaim() public view returns (uint256) {
      uint256 calculateCanClaim = 0;
      for (uint256 i = 0 ; i < _canClaim(); i++) {
        if (claimedTokens[_idByOwner(i)] == false) {
          calculateCanClaim += 1;
        }
      }
      return calculateCanClaim;
    }
    // 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) {
      if (balanceOf(msg.sender) > getMintPerTransaction()) {
        return 0;
      } else {
        return getMintPerTransaction() - balanceOf(msg.sender);
      }
    }

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

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

    function setActive(bool _active) external onlyOwner {
        active = _active;
    }

    // For debugging
    function setOldAddress(address _oldAddress) external onlyOwner {
        oldAddress = _oldAddress;
    }

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

  function withdraw() public payable onlyOwner {
      //Donation
    (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();
    }

    /**
     * @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 string(abi.encodePacked(notRevealedURI, (tokenId).toString(), ".json"));
        }
        return string(abi.encodePacked(baseURI, (tokenId).toString(), ".json"));
    }

}

// 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":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canClaim","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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"oldAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"bool","name":"_active","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_giveawayReserved","type":"uint256"}],"name":"setGiveawayReserved","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":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oldAddress","type":"address"}],"name":"setOldAddress","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"}]

60a06040526001600055600060075573a5409ec958c83c3f309868babaca7c86dcb077c1600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60146101000a81548160ff021916908315150217905550737f1486142887cadc7f382ac6be121d506723a91e600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507342150e59cc600d10d2892da2ea5966bd343655ac600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738bf1af48ec3fd8dc3a89edc43edf74820bd890e6601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611f40601455600260155560056016556103786017557f0cc057239d652ae106e52f1de624fb400052d46380cb2aec24dda5e0df77644560001b6018556000601960006101000a81548160ff0219169083151502179055506000601960016101000a81548160ff0219169083151502179055506000601960026101000a81548160ff0219169083151502179055503480156200027b57600080fd5b5060405162006465380380620064658339818101604052810190620002a1919062000761565b6040518060400160405280600981526020017f48415045574956455300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f48570000000000000000000000000000000000000000000000000000000000008152506017546000811162000356576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034d9062000834565b60405180910390fd5b82600190805190602001906200036e92919062000633565b5081600290805190602001906200038792919062000633565b508060808181525050505050620003b3620003a7620003e560201b60201c565b620003ed60201b60201c565b6001600981905550620003cc81620004b360201b60201c565b620003dd826200055e60201b60201c565b505062000a85565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004c3620003e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004e96200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005399062000856565b60405180910390fd5b80600b90805190602001906200055a92919062000633565b5050565b6200056e620003e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005946200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e49062000856565b60405180910390fd5b80600c90805190602001906200060592919062000633565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000641906200091e565b90600052602060002090601f016020900481019282620006655760008555620006b1565b82601f106200068057805160ff1916838001178555620006b1565b82800160010185558215620006b1579182015b82811115620006b057825182559160200191906001019062000693565b5b509050620006c09190620006c4565b5090565b5b80821115620006df576000816000905550600101620006c5565b5090565b6000620006fa620006f484620008a1565b62000878565b905082815260208101848484011115620007195762000718620009ed565b5b62000726848285620008e8565b509392505050565b600082601f830112620007465762000745620009e8565b5b815162000758848260208601620006e3565b91505092915050565b600080604083850312156200077b576200077a620009f7565b5b600083015167ffffffffffffffff8111156200079c576200079b620009f2565b5b620007aa858286016200072e565b925050602083015167ffffffffffffffff811115620007ce57620007cd620009f2565b5b620007dc858286016200072e565b9150509250929050565b6000620007f5602783620008d7565b9150620008028262000a0d565b604082019050919050565b60006200081c602083620008d7565b9150620008298262000a5c565b602082019050919050565b600060208201905081810360008301526200084f81620007e6565b9050919050565b6000602082019050818103600083015262000871816200080d565b9050919050565b60006200088462000897565b905062000892828262000954565b919050565b6000604051905090565b600067ffffffffffffffff821115620008bf57620008be620009b9565b5b620008ca82620009fc565b9050602081019050919050565b600082825260208201905092915050565b60005b8381101562000908578082015181840152602081019050620008eb565b8381111562000918576000848401525b50505050565b600060028204905060018216806200093757607f821691505b602082108114156200094e576200094d6200098a565b5b50919050565b6200095f82620009fc565b810181811067ffffffffffffffff82111715620009815762000980620009b9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6080516159b662000aaf60003960008181612f7a01528181612fa3015261371101526159b66000f3fe6080604052600436106102ae5760003560e01c80638da5cb5b11610175578063c289e9f4116100dc578063e5a342a311610095578063f2fde38b1161006f578063f2fde38b14610a72578063f51f96dd14610a9b578063f9850b7214610ac6578063fe5257a414610add576102ae565b8063e5a342a3146109cf578063e985e9c514610a0c578063f2c4ce1e14610a49576102ae565b8063c289e9f4146108bf578063c87b56dd146108ea578063d5abeb0114610927578063d7224ba014610952578063e29a593e1461097d578063e43082f7146109a6576102ae565b8063acec338a1161012e578063acec338a146107d0578063b1fdf798146107f9578063b88d4fde14610824578063ba41b0c61461084d578063bb8435ec14610869578063c117325014610894576102ae565b80638da5cb5b146106d2578063917b7e0f146106fd57806395d89b41146107285780639886c2a514610753578063a22cb46514610790578063a475b5dd146107b9576102ae565b80632f745c591161021957806355f804b3116101d257806355f804b3146105c45780636352211e146105ed5780636dc7a6271461062a57806370a0823114610655578063715018a6146106925780637cb64759146106a9576102ae565b80632f745c59146104d55780633ccfd60b1461051257806342842e0e1461051c5780634e71d92d146105455780634f6ccce71461055c5780635183022714610599576102ae565b806318160ddd1161026b57806318160ddd146103d75780631a25376b146104025780631e84c4131461042d57806323b872dd1461045857806328cad13d146104815780632eb4a7ab146104aa576102ae565b806301ffc9a7146102b357806302fb0c5e146102f057806306fdde031461031b578063081812fc14610346578063095ea7b31461038357806313faede6146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906140a6565b610b06565b6040516102e7919061488b565b60405180910390f35b3480156102fc57600080fd5b50610305610c50565b604051610312919061488b565b60405180910390f35b34801561032757600080fd5b50610330610c63565b60405161033d91906148c1565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190614176565b610cf5565b60405161037a91906147fb565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061400c565b610d7a565b005b3480156103b857600080fd5b506103c1610e93565b6040516103ce9190614c43565b60405180910390f35b3480156103e357600080fd5b506103ec610ea2565b6040516103f99190614c43565b60405180910390f35b34801561040e57600080fd5b50610417610eab565b6040516104249190614c43565b60405180910390f35b34801561043957600080fd5b50610442610eee565b60405161044f919061488b565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190613ef6565b610f01565b005b34801561048d57600080fd5b506104a860048036038101906104a3919061404c565b610f11565b005b3480156104b657600080fd5b506104bf610faa565b6040516104cc91906148a6565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f7919061400c565b610fb0565b6040516105099190614c43565b60405180910390f35b61051a6111ae565b005b34801561052857600080fd5b50610543600480360381019061053e9190613ef6565b61140c565b005b34801561055157600080fd5b5061055a61142c565b005b34801561056857600080fd5b50610583600480360381019061057e9190614176565b6115e6565b6040516105909190614c43565b60405180910390f35b3480156105a557600080fd5b506105ae611639565b6040516105bb919061488b565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e6919061412d565b61164c565b005b3480156105f957600080fd5b50610614600480360381019061060f9190614176565b6116e2565b60405161062191906147fb565b60405180910390f35b34801561063657600080fd5b5061063f6116f8565b60405161064c9190614c43565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613e89565b611771565b6040516106899190614c43565b60405180910390f35b34801561069e57600080fd5b506106a761185a565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190614079565b6118e2565b005b3480156106de57600080fd5b506106e7611968565b6040516106f491906147fb565b60405180910390f35b34801561070957600080fd5b50610712611992565b60405161071f9190614c43565b60405180910390f35b34801561073457600080fd5b5061073d611998565b60405161074a91906148c1565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190613e89565b611a2a565b6040516107879190614c43565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190613fcc565b611a42565b005b3480156107c557600080fd5b506107ce611bc3565b005b3480156107dc57600080fd5b506107f760048036038101906107f2919061404c565b611c5c565b005b34801561080557600080fd5b5061080e611cf5565b60405161081b9190614c43565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613f49565b611cfb565b005b610867600480360381019061086291906141d0565b611d57565b005b34801561087557600080fd5b5061087e61200a565b60405161088b91906147fb565b60405180910390f35b3480156108a057600080fd5b506108a9612030565b6040516108b69190614c43565b60405180910390f35b3480156108cb57600080fd5b506108d461203c565b6040516108e19190614c43565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c9190614176565b612042565b60405161091e91906148c1565b60405180910390f35b34801561093357600080fd5b5061093c61210d565b6040516109499190614c43565b60405180910390f35b34801561095e57600080fd5b50610967612113565b6040516109749190614c43565b60405180910390f35b34801561098957600080fd5b506109a4600480360381019061099f9190613e89565b612119565b005b3480156109b257600080fd5b506109cd60048036038101906109c8919061404c565b6121d9565b005b3480156109db57600080fd5b506109f660048036038101906109f19190614176565b612272565b604051610a03919061488b565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e9190613eb6565b612292565b604051610a40919061488b565b60405180910390f35b348015610a5557600080fd5b50610a706004803603810190610a6b919061412d565b6123ac565b005b348015610a7e57600080fd5b50610a996004803603810190610a949190613e89565b612442565b005b348015610aa757600080fd5b50610ab061253a565b604051610abd9190614c43565b60405180910390f35b348015610ad257600080fd5b50610adb612546565b005b348015610ae957600080fd5b50610b046004803603810190610aff9190614176565b6125ee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bd157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c3957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c495750610c4882612674565b5b9050919050565b601960019054906101000a900460ff1681565b606060018054610c7290614fef565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9e90614fef565b8015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b5050505050905090565b6000610d00826126de565b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690614c03565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d85826116e2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90614ae3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e156126eb565b73ffffffffffffffffffffffffffffffffffffffff161480610e445750610e4381610e3e6126eb565b612292565b5b610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a906149e3565b60405180910390fd5b610e8e8383836126f3565b505050565b6000610e9d6127a5565b905090565b60008054905090565b6000610eb56127db565b610ebe33611771565b1115610ecd5760009050610eeb565b610ed633611771565b610ede6127db565b610ee89190614ea3565b90505b90565b601960009054906101000a900460ff1681565b610f0c838383612899565b505050565b610f196126eb565b73ffffffffffffffffffffffffffffffffffffffff16610f37611968565b73ffffffffffffffffffffffffffffffffffffffff1614610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490614a63565b60405180910390fd5b80601960006101000a81548160ff02191690831515021790555050565b60185481565b6000610fbb83611771565b8210610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff3906148e3565b60405180910390fd5b6000611006610ea2565b905060008060005b8381101561116c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461110057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561115857868414156111495781955050505050506111a8565b838061115490615052565b9450505b50808061116490615052565b91505061100e565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90614b83565b60405180910390fd5b92915050565b6111b66126eb565b73ffffffffffffffffffffffffffffffffffffffff166111d4611968565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614a63565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600a476112749190614e15565b61127e9190614de4565b60405161128a906147e6565b60006040518083038185875af1925050503d80600081146112c7576040519150601f19603f3d011682016040523d82523d6000602084013e6112cc565b606091505b50509050806112da57600080fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646025476113249190614e15565b61132e9190614de4565b60405161133a906147e6565b60006040518083038185875af1925050503d8060008114611377576040519150601f19603f3d011682016040523d82523d6000602084013e61137c565b606091505b505090508061138a57600080fd5b6000611394611968565b73ffffffffffffffffffffffffffffffffffffffff16476040516113b7906147e6565b60006040518083038185875af1925050503d80600081146113f4576040519150601f19603f3d011682016040523d82523d6000602084013e6113f9565b606091505b505090508061140757600080fd5b505050565b61142783838360405180602001604052806000815250611cfb565b505050565b60026009541415611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990614bc3565b60405180910390fd5b6002600981905550601960019054906101000a900460ff166114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090614a83565b60405180910390fd5b60006114d36116f8565b905060008111611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90614963565b60405180910390fd5b60005b818110156115745761152c81612e52565b5060016012600061153c84612e52565b815260200190815260200160002060006101000a81548160ff021916908315150217905550808061156c90615052565b91505061151b565b506002816115829190614e15565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115db336002836115d69190614e15565b612f08565b506001600981905550565b60006115f0610ea2565b8210611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890614983565b60405180910390fd5b819050919050565b601960029054906101000a900460ff1681565b6116546126eb565b73ffffffffffffffffffffffffffffffffffffffff16611672611968565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90614a63565b60405180910390fd5b80600b90805190602001906116de929190613bce565b5050565b60006116ed82612f26565b600001519050919050565b6000806000905060005b61170a613129565b81101561176957600015156012600061172284612e52565b815260200190815260200160002060009054906101000a900460ff1615151415611756576001826117539190614d8e565b91505b808061176190615052565b915050611702565b508091505090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614a23565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6118626126eb565b73ffffffffffffffffffffffffffffffffffffffff16611880611968565b73ffffffffffffffffffffffffffffffffffffffff16146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90614a63565b60405180910390fd5b6118e060006131db565b565b6118ea6126eb565b73ffffffffffffffffffffffffffffffffffffffff16611908611968565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590614a63565b60405180910390fd5b8060188190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6060600280546119a790614fef565b80601f01602080910402602001604051908101604052809291908181526020018280546119d390614fef565b8015611a205780601f106119f557610100808354040283529160200191611a20565b820191906000526020600020905b815481529060010190602001808311611a0357829003601f168201915b5050505050905090565b60136020528060005260406000206000915090505481565b611a4a6126eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90614aa3565b60405180910390fd5b8060066000611ac56126eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b726126eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb7919061488b565b60405180910390a35050565b611bcb6126eb565b73ffffffffffffffffffffffffffffffffffffffff16611be9611968565b73ffffffffffffffffffffffffffffffffffffffff1614611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3690614a63565b60405180910390fd5b6001601960026101000a81548160ff021916908315150217905550565b611c646126eb565b73ffffffffffffffffffffffffffffffffffffffff16611c82611968565b73ffffffffffffffffffffffffffffffffffffffff1614611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf90614a63565b60405180910390fd5b80601960016101000a81548160ff02191690831515021790555050565b60165481565b611d06848484612899565b611d12848484846132a1565b611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890614b03565b60405180910390fd5b50505050565b601960019054906101000a900460ff16611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90614a83565b60405180910390fd5b60026009541415611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614bc3565b60405180910390fd5b60026009819055508181601960009054906101000a900460ff16611ec457600033604051602001611e1d919061479c565b604051602081830303815290604052805190602001209050611e83838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060185483613438565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990614a03565b60405180910390fd5b505b84611ecd611968565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f54573481611f096127a5565b611f139190614e15565b14611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90614b63565b60405180910390fd5b5b8560145481611f61610ea2565b611f6b9190614d8e565b1115611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390614ba3565b60405180910390fd5b60008111611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690614903565b60405180910390fd5b611ff93388612f08565b505050506001600981905550505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b67016345785d8a000081565b60175481565b606061204d826126de565b61208c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612083906149c3565b60405180910390fd5b60001515601960029054906101000a900460ff16151514156120da57600c6120b38361344f565b6040516020016120c49291906147b7565b6040516020818303038152906040529050612108565b600b6120e58361344f565b6040516020016120f69291906147b7565b60405160208183030381529060405290505b919050565b60145481565b60075481565b6121216126eb565b73ffffffffffffffffffffffffffffffffffffffff1661213f611968565b73ffffffffffffffffffffffffffffffffffffffff1614612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614a63565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6121e16126eb565b73ffffffffffffffffffffffffffffffffffffffff166121ff611968565b73ffffffffffffffffffffffffffffffffffffffff1614612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614a63565b60405180910390fd5b80600d60146101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915054906101000a900460ff1681565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600d60149054906101000a900460ff16801561238957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161232191906147fb565b60206040518083038186803b15801561233957600080fd5b505afa15801561234d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123719190614100565b73ffffffffffffffffffffffffffffffffffffffff16145b156123985760019150506123a6565b6123a284846135b0565b9150505b92915050565b6123b46126eb565b73ffffffffffffffffffffffffffffffffffffffff166123d2611968565b73ffffffffffffffffffffffffffffffffffffffff1614612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90614a63565b60405180910390fd5b80600c908051906020019061243e929190613bce565b5050565b61244a6126eb565b73ffffffffffffffffffffffffffffffffffffffff16612468611968565b73ffffffffffffffffffffffffffffffffffffffff16146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590614a63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590614923565b60405180910390fd5b612537816131db565b50565b670214e8348c4f000081565b61254e6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661256c611968565b73ffffffffffffffffffffffffffffffffffffffff16146125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990614a63565b60405180910390fd5b6000601754116125d157600080fd5b6125e46125dc611968565b601754612f08565b6000601781905550565b6125f66126eb565b73ffffffffffffffffffffffffffffffffffffffff16612614611968565b73ffffffffffffffffffffffffffffffffffffffff161461266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614a63565b60405180910390fd5b8060178190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000601960009054906101000a900460ff16156127cc57670214e8348c4f000090506127d8565b67016345785d8a000090505b90565b6000601960009054906101000a900460ff161561284657601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460165461283f9190614d8e565b9050612896565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546015546128939190614d8e565b90505b90565b60006128a482612f26565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128cb6126eb565b73ffffffffffffffffffffffffffffffffffffffff16148061292757506128f06126eb565b73ffffffffffffffffffffffffffffffffffffffff1661290f84610cf5565b73ffffffffffffffffffffffffffffffffffffffff16145b806129435750612942826000015161293d6126eb565b612292565b5b905080612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297c90614ac3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee90614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e906149a3565b60405180910390fd5b612a748585856001613644565b612a8460008484600001516126f3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612af29190614e6f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b969190614d48565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612c9c9190614d8e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612de257612d12816126de565b15612de1576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e4a868686600161364a565b505050505050565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5933846040518363ffffffff1660e01b8152600401612eb1929190614862565b60206040518083038186803b158015612ec957600080fd5b505afa158015612edd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f0191906141a3565b9050919050565b612f22828260405180602001604052806000815250613650565b5050565b612f2e613c54565b612f37826126de565b612f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6d90614943565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612fda5760017f000000000000000000000000000000000000000000000000000000000000000084612fcd9190614ea3565b612fd79190614d8e565b90505b60008390505b8181106130e8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130d457809350505050613124565b5080806130e090614fc5565b915050612fe0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311b90614be3565b60405180910390fd5b919050565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161318691906147fb565b60206040518083038186803b15801561319e57600080fd5b505afa1580156131b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131d691906141a3565b905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006132c28473ffffffffffffffffffffffffffffffffffffffff16613b2f565b1561342b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132eb6126eb565b8786866040518563ffffffff1660e01b815260040161330d9493929190614816565b602060405180830381600087803b15801561332757600080fd5b505af192505050801561335857506040513d601f19601f8201168201806040525081019061335591906140d3565b60015b6133db573d8060008114613388576040519150601f19603f3d011682016040523d82523d6000602084013e61338d565b606091505b506000815114156133d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ca90614b03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613430565b600190505b949350505050565b6000826134458584613b42565b1490509392505050565b60606000821415613497576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135ab565b600082905060005b600082146134c95780806134b290615052565b915050600a826134c29190614de4565b915061349f565b60008167ffffffffffffffff8111156134e5576134e46151ac565b5b6040519080825280601f01601f1916602001820160405280156135175781602001600182028036833780820191505090505b5090505b600085146135a4576001826135309190614ea3565b9150600a8561353f91906150bf565b603061354b9190614d8e565b60f81b8183815181106135615761356061517d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561359d9190614de4565b945061351b565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156136c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136bd90614b43565b60405180910390fd5b6136cf816126de565b1561370f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370690614b23565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376990614c23565b60405180910390fd5b61377f6000858386613644565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161387c9190614d48565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138a39190614d48565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613b1257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ab260008884886132a1565b613af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae890614b03565b60405180910390fd5b8180613afc90615052565b9250508080613b0a90615052565b915050613a41565b5080600081905550613b27600087858861364a565b505050505050565b600080823b905060008111915050919050565b60008082905060005b8451811015613bac576000858281518110613b6957613b6861517d565b5b60200260200101519050808311613b8b57613b848382613bb7565b9250613b98565b613b958184613bb7565b92505b508080613ba490615052565b915050613b4b565b508091505092915050565b600082600052816020526040600020905092915050565b828054613bda90614fef565b90600052602060002090601f016020900481019282613bfc5760008555613c43565b82601f10613c1557805160ff1916838001178555613c43565b82800160010185558215613c43579182015b82811115613c42578251825591602001919060010190613c27565b5b509050613c509190613c8e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ca7576000816000905550600101613c8f565b5090565b6000613cbe613cb984614c83565b614c5e565b905082815260208101848484011115613cda57613cd96151ea565b5b613ce5848285614f83565b509392505050565b6000613d00613cfb84614cb4565b614c5e565b905082815260208101848484011115613d1c57613d1b6151ea565b5b613d27848285614f83565b509392505050565b600081359050613d3e816158f6565b92915050565b60008083601f840112613d5a57613d596151e0565b5b8235905067ffffffffffffffff811115613d7757613d766151db565b5b602083019150836020820283011115613d9357613d926151e5565b5b9250929050565b600081359050613da98161590d565b92915050565b600081359050613dbe81615924565b92915050565b600081359050613dd38161593b565b92915050565b600081519050613de88161593b565b92915050565b600082601f830112613e0357613e026151e0565b5b8135613e13848260208601613cab565b91505092915050565b600081519050613e2b81615952565b92915050565b600082601f830112613e4657613e456151e0565b5b8135613e56848260208601613ced565b91505092915050565b600081359050613e6e81615969565b92915050565b600081519050613e8381615969565b92915050565b600060208284031215613e9f57613e9e6151f4565b5b6000613ead84828501613d2f565b91505092915050565b60008060408385031215613ecd57613ecc6151f4565b5b6000613edb85828601613d2f565b9250506020613eec85828601613d2f565b9150509250929050565b600080600060608486031215613f0f57613f0e6151f4565b5b6000613f1d86828701613d2f565b9350506020613f2e86828701613d2f565b9250506040613f3f86828701613e5f565b9150509250925092565b60008060008060808587031215613f6357613f626151f4565b5b6000613f7187828801613d2f565b9450506020613f8287828801613d2f565b9350506040613f9387828801613e5f565b925050606085013567ffffffffffffffff811115613fb457613fb36151ef565b5b613fc087828801613dee565b91505092959194509250565b60008060408385031215613fe357613fe26151f4565b5b6000613ff185828601613d2f565b925050602061400285828601613d9a565b9150509250929050565b60008060408385031215614023576140226151f4565b5b600061403185828601613d2f565b925050602061404285828601613e5f565b9150509250929050565b600060208284031215614062576140616151f4565b5b600061407084828501613d9a565b91505092915050565b60006020828403121561408f5761408e6151f4565b5b600061409d84828501613daf565b91505092915050565b6000602082840312156140bc576140bb6151f4565b5b60006140ca84828501613dc4565b91505092915050565b6000602082840312156140e9576140e86151f4565b5b60006140f784828501613dd9565b91505092915050565b600060208284031215614116576141156151f4565b5b600061412484828501613e1c565b91505092915050565b600060208284031215614143576141426151f4565b5b600082013567ffffffffffffffff811115614161576141606151ef565b5b61416d84828501613e31565b91505092915050565b60006020828403121561418c5761418b6151f4565b5b600061419a84828501613e5f565b91505092915050565b6000602082840312156141b9576141b86151f4565b5b60006141c784828501613e74565b91505092915050565b6000806000604084860312156141e9576141e86151f4565b5b60006141f786828701613e5f565b935050602084013567ffffffffffffffff811115614218576142176151ef565b5b61422486828701613d44565b92509250509250925092565b61423981614ed7565b82525050565b61425061424b82614ed7565b61509b565b82525050565b61425f81614ee9565b82525050565b61426e81614ef5565b82525050565b600061427f82614cfa565b6142898185614d10565b9350614299818560208601614f92565b6142a2816151f9565b840191505092915050565b60006142b882614d05565b6142c28185614d2c565b93506142d2818560208601614f92565b6142db816151f9565b840191505092915050565b60006142f182614d05565b6142fb8185614d3d565b935061430b818560208601614f92565b80840191505092915050565b6000815461432481614fef565b61432e8186614d3d565b94506001821660008114614349576001811461435a5761438d565b60ff1983168652818601935061438d565b61436385614ce5565b60005b8381101561438557815481890152600182019150602081019050614366565b838801955050505b50505092915050565b60006143a3602283614d2c565b91506143ae82615217565b604082019050919050565b60006143c6601f83614d2c565b91506143d182615266565b602082019050919050565b60006143e9602683614d2c565b91506143f48261528f565b604082019050919050565b600061440c602a83614d2c565b9150614417826152de565b604082019050919050565b600061442f601283614d2c565b915061443a8261532d565b602082019050919050565b6000614452602383614d2c565b915061445d82615356565b604082019050919050565b6000614475602583614d2c565b9150614480826153a5565b604082019050919050565b6000614498601183614d2c565b91506144a3826153f4565b602082019050919050565b60006144bb603983614d2c565b91506144c68261541d565b604082019050919050565b60006144de601383614d2c565b91506144e98261546c565b602082019050919050565b6000614501602b83614d2c565b915061450c82615495565b604082019050919050565b6000614524602683614d2c565b915061452f826154e4565b604082019050919050565b6000614547600583614d3d565b915061455282615533565b600582019050919050565b600061456a602083614d2c565b91506145758261555c565b602082019050919050565b600061458d601583614d2c565b915061459882615585565b602082019050919050565b60006145b0601a83614d2c565b91506145bb826155ae565b602082019050919050565b60006145d3603283614d2c565b91506145de826155d7565b604082019050919050565b60006145f6602283614d2c565b915061460182615626565b604082019050919050565b6000614619600083614d21565b915061462482615675565b600082019050919050565b600061463c603383614d2c565b915061464782615678565b604082019050919050565b600061465f601d83614d2c565b915061466a826156c7565b602082019050919050565b6000614682602183614d2c565b915061468d826156f0565b604082019050919050565b60006146a5601883614d2c565b91506146b08261573f565b602082019050919050565b60006146c8602e83614d2c565b91506146d382615768565b604082019050919050565b60006146eb602083614d2c565b91506146f6826157b7565b602082019050919050565b600061470e601f83614d2c565b9150614719826157e0565b602082019050919050565b6000614731602f83614d2c565b915061473c82615809565b604082019050919050565b6000614754602d83614d2c565b915061475f82615858565b604082019050919050565b6000614777602283614d2c565b9150614782826158a7565b604082019050919050565b61479681614f79565b82525050565b60006147a8828461423f565b60148201915081905092915050565b60006147c38285614317565b91506147cf82846142e6565b91506147da8261453a565b91508190509392505050565b60006147f18261460c565b9150819050919050565b60006020820190506148106000830184614230565b92915050565b600060808201905061482b6000830187614230565b6148386020830186614230565b614845604083018561478d565b81810360608301526148578184614274565b905095945050505050565b60006040820190506148776000830185614230565b614884602083018461478d565b9392505050565b60006020820190506148a06000830184614256565b92915050565b60006020820190506148bb6000830184614265565b92915050565b600060208201905081810360008301526148db81846142ad565b905092915050565b600060208201905081810360008301526148fc81614396565b9050919050565b6000602082019050818103600083015261491c816143b9565b9050919050565b6000602082019050818103600083015261493c816143dc565b9050919050565b6000602082019050818103600083015261495c816143ff565b9050919050565b6000602082019050818103600083015261497c81614422565b9050919050565b6000602082019050818103600083015261499c81614445565b9050919050565b600060208201905081810360008301526149bc81614468565b9050919050565b600060208201905081810360008301526149dc8161448b565b9050919050565b600060208201905081810360008301526149fc816144ae565b9050919050565b60006020820190508181036000830152614a1c816144d1565b9050919050565b60006020820190508181036000830152614a3c816144f4565b9050919050565b60006020820190508181036000830152614a5c81614517565b9050919050565b60006020820190508181036000830152614a7c8161455d565b9050919050565b60006020820190508181036000830152614a9c81614580565b9050919050565b60006020820190508181036000830152614abc816145a3565b9050919050565b60006020820190508181036000830152614adc816145c6565b9050919050565b60006020820190508181036000830152614afc816145e9565b9050919050565b60006020820190508181036000830152614b1c8161462f565b9050919050565b60006020820190508181036000830152614b3c81614652565b9050919050565b60006020820190508181036000830152614b5c81614675565b9050919050565b60006020820190508181036000830152614b7c81614698565b9050919050565b60006020820190508181036000830152614b9c816146bb565b9050919050565b60006020820190508181036000830152614bbc816146de565b9050919050565b60006020820190508181036000830152614bdc81614701565b9050919050565b60006020820190508181036000830152614bfc81614724565b9050919050565b60006020820190508181036000830152614c1c81614747565b9050919050565b60006020820190508181036000830152614c3c8161476a565b9050919050565b6000602082019050614c58600083018461478d565b92915050565b6000614c68614c79565b9050614c748282615021565b919050565b6000604051905090565b600067ffffffffffffffff821115614c9e57614c9d6151ac565b5b614ca7826151f9565b9050602081019050919050565b600067ffffffffffffffff821115614ccf57614cce6151ac565b5b614cd8826151f9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d5382614f3d565b9150614d5e83614f3d565b9250826fffffffffffffffffffffffffffffffff03821115614d8357614d826150f0565b5b828201905092915050565b6000614d9982614f79565b9150614da483614f79565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dd957614dd86150f0565b5b828201905092915050565b6000614def82614f79565b9150614dfa83614f79565b925082614e0a57614e0961511f565b5b828204905092915050565b6000614e2082614f79565b9150614e2b83614f79565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e6457614e636150f0565b5b828202905092915050565b6000614e7a82614f3d565b9150614e8583614f3d565b925082821015614e9857614e976150f0565b5b828203905092915050565b6000614eae82614f79565b9150614eb983614f79565b925082821015614ecc57614ecb6150f0565b5b828203905092915050565b6000614ee282614f59565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614f3682614ed7565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fb0578082015181840152602081019050614f95565b83811115614fbf576000848401525b50505050565b6000614fd082614f79565b91506000821415614fe457614fe36150f0565b5b600182039050919050565b6000600282049050600182168061500757607f821691505b6020821081141561501b5761501a61514e565b5b50919050565b61502a826151f9565b810181811067ffffffffffffffff82111715615049576150486151ac565b5b80604052505050565b600061505d82614f79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150905761508f6150f0565b5b600182019050919050565b60006150a6826150ad565b9050919050565b60006150b88261520a565b9050919050565b60006150ca82614f79565b91506150d583614f79565b9250826150e5576150e461511f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e74206d757374206265206d6f7265207468616e203000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f596f752063616e7420636c61696d206e66740000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4e6f7420696e2074686520576966654c69737400000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f546865207265737420726573657276656420666f722061206769766561776179600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6158ff81614ed7565b811461590a57600080fd5b50565b61591681614ee9565b811461592157600080fd5b50565b61592d81614ef5565b811461593857600080fd5b50565b61594481614eff565b811461594f57600080fd5b50565b61595b81614f2b565b811461596657600080fd5b50565b61597281614f79565b811461597d57600080fd5b5056fea264697066735822122041daf6a1bfdb98ab17b8d875eb13c0d5cfc1ecc3d8a061fa0174590368d89fda64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5143336a7248627843716b68767374554b794e6163676552624166526a6f477759764b6d4274737a475a666e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5143336a7248627843716b68767374554b794e6163676552624166526a6f477759764b6d4274737a475a666e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80638da5cb5b11610175578063c289e9f4116100dc578063e5a342a311610095578063f2fde38b1161006f578063f2fde38b14610a72578063f51f96dd14610a9b578063f9850b7214610ac6578063fe5257a414610add576102ae565b8063e5a342a3146109cf578063e985e9c514610a0c578063f2c4ce1e14610a49576102ae565b8063c289e9f4146108bf578063c87b56dd146108ea578063d5abeb0114610927578063d7224ba014610952578063e29a593e1461097d578063e43082f7146109a6576102ae565b8063acec338a1161012e578063acec338a146107d0578063b1fdf798146107f9578063b88d4fde14610824578063ba41b0c61461084d578063bb8435ec14610869578063c117325014610894576102ae565b80638da5cb5b146106d2578063917b7e0f146106fd57806395d89b41146107285780639886c2a514610753578063a22cb46514610790578063a475b5dd146107b9576102ae565b80632f745c591161021957806355f804b3116101d257806355f804b3146105c45780636352211e146105ed5780636dc7a6271461062a57806370a0823114610655578063715018a6146106925780637cb64759146106a9576102ae565b80632f745c59146104d55780633ccfd60b1461051257806342842e0e1461051c5780634e71d92d146105455780634f6ccce71461055c5780635183022714610599576102ae565b806318160ddd1161026b57806318160ddd146103d75780631a25376b146104025780631e84c4131461042d57806323b872dd1461045857806328cad13d146104815780632eb4a7ab146104aa576102ae565b806301ffc9a7146102b357806302fb0c5e146102f057806306fdde031461031b578063081812fc14610346578063095ea7b31461038357806313faede6146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906140a6565b610b06565b6040516102e7919061488b565b60405180910390f35b3480156102fc57600080fd5b50610305610c50565b604051610312919061488b565b60405180910390f35b34801561032757600080fd5b50610330610c63565b60405161033d91906148c1565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190614176565b610cf5565b60405161037a91906147fb565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061400c565b610d7a565b005b3480156103b857600080fd5b506103c1610e93565b6040516103ce9190614c43565b60405180910390f35b3480156103e357600080fd5b506103ec610ea2565b6040516103f99190614c43565b60405180910390f35b34801561040e57600080fd5b50610417610eab565b6040516104249190614c43565b60405180910390f35b34801561043957600080fd5b50610442610eee565b60405161044f919061488b565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190613ef6565b610f01565b005b34801561048d57600080fd5b506104a860048036038101906104a3919061404c565b610f11565b005b3480156104b657600080fd5b506104bf610faa565b6040516104cc91906148a6565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f7919061400c565b610fb0565b6040516105099190614c43565b60405180910390f35b61051a6111ae565b005b34801561052857600080fd5b50610543600480360381019061053e9190613ef6565b61140c565b005b34801561055157600080fd5b5061055a61142c565b005b34801561056857600080fd5b50610583600480360381019061057e9190614176565b6115e6565b6040516105909190614c43565b60405180910390f35b3480156105a557600080fd5b506105ae611639565b6040516105bb919061488b565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e6919061412d565b61164c565b005b3480156105f957600080fd5b50610614600480360381019061060f9190614176565b6116e2565b60405161062191906147fb565b60405180910390f35b34801561063657600080fd5b5061063f6116f8565b60405161064c9190614c43565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613e89565b611771565b6040516106899190614c43565b60405180910390f35b34801561069e57600080fd5b506106a761185a565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190614079565b6118e2565b005b3480156106de57600080fd5b506106e7611968565b6040516106f491906147fb565b60405180910390f35b34801561070957600080fd5b50610712611992565b60405161071f9190614c43565b60405180910390f35b34801561073457600080fd5b5061073d611998565b60405161074a91906148c1565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190613e89565b611a2a565b6040516107879190614c43565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190613fcc565b611a42565b005b3480156107c557600080fd5b506107ce611bc3565b005b3480156107dc57600080fd5b506107f760048036038101906107f2919061404c565b611c5c565b005b34801561080557600080fd5b5061080e611cf5565b60405161081b9190614c43565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613f49565b611cfb565b005b610867600480360381019061086291906141d0565b611d57565b005b34801561087557600080fd5b5061087e61200a565b60405161088b91906147fb565b60405180910390f35b3480156108a057600080fd5b506108a9612030565b6040516108b69190614c43565b60405180910390f35b3480156108cb57600080fd5b506108d461203c565b6040516108e19190614c43565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c9190614176565b612042565b60405161091e91906148c1565b60405180910390f35b34801561093357600080fd5b5061093c61210d565b6040516109499190614c43565b60405180910390f35b34801561095e57600080fd5b50610967612113565b6040516109749190614c43565b60405180910390f35b34801561098957600080fd5b506109a4600480360381019061099f9190613e89565b612119565b005b3480156109b257600080fd5b506109cd60048036038101906109c8919061404c565b6121d9565b005b3480156109db57600080fd5b506109f660048036038101906109f19190614176565b612272565b604051610a03919061488b565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e9190613eb6565b612292565b604051610a40919061488b565b60405180910390f35b348015610a5557600080fd5b50610a706004803603810190610a6b919061412d565b6123ac565b005b348015610a7e57600080fd5b50610a996004803603810190610a949190613e89565b612442565b005b348015610aa757600080fd5b50610ab061253a565b604051610abd9190614c43565b60405180910390f35b348015610ad257600080fd5b50610adb612546565b005b348015610ae957600080fd5b50610b046004803603810190610aff9190614176565b6125ee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bd157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c3957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c495750610c4882612674565b5b9050919050565b601960019054906101000a900460ff1681565b606060018054610c7290614fef565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9e90614fef565b8015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b5050505050905090565b6000610d00826126de565b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690614c03565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d85826116e2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90614ae3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e156126eb565b73ffffffffffffffffffffffffffffffffffffffff161480610e445750610e4381610e3e6126eb565b612292565b5b610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a906149e3565b60405180910390fd5b610e8e8383836126f3565b505050565b6000610e9d6127a5565b905090565b60008054905090565b6000610eb56127db565b610ebe33611771565b1115610ecd5760009050610eeb565b610ed633611771565b610ede6127db565b610ee89190614ea3565b90505b90565b601960009054906101000a900460ff1681565b610f0c838383612899565b505050565b610f196126eb565b73ffffffffffffffffffffffffffffffffffffffff16610f37611968565b73ffffffffffffffffffffffffffffffffffffffff1614610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490614a63565b60405180910390fd5b80601960006101000a81548160ff02191690831515021790555050565b60185481565b6000610fbb83611771565b8210610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff3906148e3565b60405180910390fd5b6000611006610ea2565b905060008060005b8381101561116c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461110057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561115857868414156111495781955050505050506111a8565b838061115490615052565b9450505b50808061116490615052565b91505061100e565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90614b83565b60405180910390fd5b92915050565b6111b66126eb565b73ffffffffffffffffffffffffffffffffffffffff166111d4611968565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614a63565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600a476112749190614e15565b61127e9190614de4565b60405161128a906147e6565b60006040518083038185875af1925050503d80600081146112c7576040519150601f19603f3d011682016040523d82523d6000602084013e6112cc565b606091505b50509050806112da57600080fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646025476113249190614e15565b61132e9190614de4565b60405161133a906147e6565b60006040518083038185875af1925050503d8060008114611377576040519150601f19603f3d011682016040523d82523d6000602084013e61137c565b606091505b505090508061138a57600080fd5b6000611394611968565b73ffffffffffffffffffffffffffffffffffffffff16476040516113b7906147e6565b60006040518083038185875af1925050503d80600081146113f4576040519150601f19603f3d011682016040523d82523d6000602084013e6113f9565b606091505b505090508061140757600080fd5b505050565b61142783838360405180602001604052806000815250611cfb565b505050565b60026009541415611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990614bc3565b60405180910390fd5b6002600981905550601960019054906101000a900460ff166114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090614a83565b60405180910390fd5b60006114d36116f8565b905060008111611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90614963565b60405180910390fd5b60005b818110156115745761152c81612e52565b5060016012600061153c84612e52565b815260200190815260200160002060006101000a81548160ff021916908315150217905550808061156c90615052565b91505061151b565b506002816115829190614e15565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115db336002836115d69190614e15565b612f08565b506001600981905550565b60006115f0610ea2565b8210611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890614983565b60405180910390fd5b819050919050565b601960029054906101000a900460ff1681565b6116546126eb565b73ffffffffffffffffffffffffffffffffffffffff16611672611968565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90614a63565b60405180910390fd5b80600b90805190602001906116de929190613bce565b5050565b60006116ed82612f26565b600001519050919050565b6000806000905060005b61170a613129565b81101561176957600015156012600061172284612e52565b815260200190815260200160002060009054906101000a900460ff1615151415611756576001826117539190614d8e565b91505b808061176190615052565b915050611702565b508091505090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614a23565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6118626126eb565b73ffffffffffffffffffffffffffffffffffffffff16611880611968565b73ffffffffffffffffffffffffffffffffffffffff16146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90614a63565b60405180910390fd5b6118e060006131db565b565b6118ea6126eb565b73ffffffffffffffffffffffffffffffffffffffff16611908611968565b73ffffffffffffffffffffffffffffffffffffffff161461195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590614a63565b60405180910390fd5b8060188190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6060600280546119a790614fef565b80601f01602080910402602001604051908101604052809291908181526020018280546119d390614fef565b8015611a205780601f106119f557610100808354040283529160200191611a20565b820191906000526020600020905b815481529060010190602001808311611a0357829003601f168201915b5050505050905090565b60136020528060005260406000206000915090505481565b611a4a6126eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90614aa3565b60405180910390fd5b8060066000611ac56126eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b726126eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb7919061488b565b60405180910390a35050565b611bcb6126eb565b73ffffffffffffffffffffffffffffffffffffffff16611be9611968565b73ffffffffffffffffffffffffffffffffffffffff1614611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3690614a63565b60405180910390fd5b6001601960026101000a81548160ff021916908315150217905550565b611c646126eb565b73ffffffffffffffffffffffffffffffffffffffff16611c82611968565b73ffffffffffffffffffffffffffffffffffffffff1614611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf90614a63565b60405180910390fd5b80601960016101000a81548160ff02191690831515021790555050565b60165481565b611d06848484612899565b611d12848484846132a1565b611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890614b03565b60405180910390fd5b50505050565b601960019054906101000a900460ff16611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90614a83565b60405180910390fd5b60026009541415611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614bc3565b60405180910390fd5b60026009819055508181601960009054906101000a900460ff16611ec457600033604051602001611e1d919061479c565b604051602081830303815290604052805190602001209050611e83838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060185483613438565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990614a03565b60405180910390fd5b505b84611ecd611968565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f54573481611f096127a5565b611f139190614e15565b14611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90614b63565b60405180910390fd5b5b8560145481611f61610ea2565b611f6b9190614d8e565b1115611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390614ba3565b60405180910390fd5b60008111611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690614903565b60405180910390fd5b611ff93388612f08565b505050506001600981905550505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b67016345785d8a000081565b60175481565b606061204d826126de565b61208c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612083906149c3565b60405180910390fd5b60001515601960029054906101000a900460ff16151514156120da57600c6120b38361344f565b6040516020016120c49291906147b7565b6040516020818303038152906040529050612108565b600b6120e58361344f565b6040516020016120f69291906147b7565b60405160208183030381529060405290505b919050565b60145481565b60075481565b6121216126eb565b73ffffffffffffffffffffffffffffffffffffffff1661213f611968565b73ffffffffffffffffffffffffffffffffffffffff1614612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614a63565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6121e16126eb565b73ffffffffffffffffffffffffffffffffffffffff166121ff611968565b73ffffffffffffffffffffffffffffffffffffffff1614612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614a63565b60405180910390fd5b80600d60146101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915054906101000a900460ff1681565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600d60149054906101000a900460ff16801561238957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161232191906147fb565b60206040518083038186803b15801561233957600080fd5b505afa15801561234d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123719190614100565b73ffffffffffffffffffffffffffffffffffffffff16145b156123985760019150506123a6565b6123a284846135b0565b9150505b92915050565b6123b46126eb565b73ffffffffffffffffffffffffffffffffffffffff166123d2611968565b73ffffffffffffffffffffffffffffffffffffffff1614612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90614a63565b60405180910390fd5b80600c908051906020019061243e929190613bce565b5050565b61244a6126eb565b73ffffffffffffffffffffffffffffffffffffffff16612468611968565b73ffffffffffffffffffffffffffffffffffffffff16146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590614a63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590614923565b60405180910390fd5b612537816131db565b50565b670214e8348c4f000081565b61254e6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661256c611968565b73ffffffffffffffffffffffffffffffffffffffff16146125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990614a63565b60405180910390fd5b6000601754116125d157600080fd5b6125e46125dc611968565b601754612f08565b6000601781905550565b6125f66126eb565b73ffffffffffffffffffffffffffffffffffffffff16612614611968565b73ffffffffffffffffffffffffffffffffffffffff161461266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614a63565b60405180910390fd5b8060178190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000601960009054906101000a900460ff16156127cc57670214e8348c4f000090506127d8565b67016345785d8a000090505b90565b6000601960009054906101000a900460ff161561284657601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460165461283f9190614d8e565b9050612896565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546015546128939190614d8e565b90505b90565b60006128a482612f26565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128cb6126eb565b73ffffffffffffffffffffffffffffffffffffffff16148061292757506128f06126eb565b73ffffffffffffffffffffffffffffffffffffffff1661290f84610cf5565b73ffffffffffffffffffffffffffffffffffffffff16145b806129435750612942826000015161293d6126eb565b612292565b5b905080612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297c90614ac3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee90614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e906149a3565b60405180910390fd5b612a748585856001613644565b612a8460008484600001516126f3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612af29190614e6f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b969190614d48565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612c9c9190614d8e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612de257612d12816126de565b15612de1576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e4a868686600161364a565b505050505050565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5933846040518363ffffffff1660e01b8152600401612eb1929190614862565b60206040518083038186803b158015612ec957600080fd5b505afa158015612edd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f0191906141a3565b9050919050565b612f22828260405180602001604052806000815250613650565b5050565b612f2e613c54565b612f37826126de565b612f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6d90614943565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000003788310612fda5760017f000000000000000000000000000000000000000000000000000000000000037884612fcd9190614ea3565b612fd79190614d8e565b90505b60008390505b8181106130e8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130d457809350505050613124565b5080806130e090614fc5565b915050612fe0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311b90614be3565b60405180910390fd5b919050565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161318691906147fb565b60206040518083038186803b15801561319e57600080fd5b505afa1580156131b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131d691906141a3565b905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006132c28473ffffffffffffffffffffffffffffffffffffffff16613b2f565b1561342b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132eb6126eb565b8786866040518563ffffffff1660e01b815260040161330d9493929190614816565b602060405180830381600087803b15801561332757600080fd5b505af192505050801561335857506040513d601f19601f8201168201806040525081019061335591906140d3565b60015b6133db573d8060008114613388576040519150601f19603f3d011682016040523d82523d6000602084013e61338d565b606091505b506000815114156133d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ca90614b03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613430565b600190505b949350505050565b6000826134458584613b42565b1490509392505050565b60606000821415613497576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135ab565b600082905060005b600082146134c95780806134b290615052565b915050600a826134c29190614de4565b915061349f565b60008167ffffffffffffffff8111156134e5576134e46151ac565b5b6040519080825280601f01601f1916602001820160405280156135175781602001600182028036833780820191505090505b5090505b600085146135a4576001826135309190614ea3565b9150600a8561353f91906150bf565b603061354b9190614d8e565b60f81b8183815181106135615761356061517d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561359d9190614de4565b945061351b565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156136c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136bd90614b43565b60405180910390fd5b6136cf816126de565b1561370f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370690614b23565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000378831115613772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376990614c23565b60405180910390fd5b61377f6000858386613644565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161387c9190614d48565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138a39190614d48565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613b1257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ab260008884886132a1565b613af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae890614b03565b60405180910390fd5b8180613afc90615052565b9250508080613b0a90615052565b915050613a41565b5080600081905550613b27600087858861364a565b505050505050565b600080823b905060008111915050919050565b60008082905060005b8451811015613bac576000858281518110613b6957613b6861517d565b5b60200260200101519050808311613b8b57613b848382613bb7565b9250613b98565b613b958184613bb7565b92505b508080613ba490615052565b915050613b4b565b508091505092915050565b600082600052816020526040600020905092915050565b828054613bda90614fef565b90600052602060002090601f016020900481019282613bfc5760008555613c43565b82601f10613c1557805160ff1916838001178555613c43565b82800160010185558215613c43579182015b82811115613c42578251825591602001919060010190613c27565b5b509050613c509190613c8e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ca7576000816000905550600101613c8f565b5090565b6000613cbe613cb984614c83565b614c5e565b905082815260208101848484011115613cda57613cd96151ea565b5b613ce5848285614f83565b509392505050565b6000613d00613cfb84614cb4565b614c5e565b905082815260208101848484011115613d1c57613d1b6151ea565b5b613d27848285614f83565b509392505050565b600081359050613d3e816158f6565b92915050565b60008083601f840112613d5a57613d596151e0565b5b8235905067ffffffffffffffff811115613d7757613d766151db565b5b602083019150836020820283011115613d9357613d926151e5565b5b9250929050565b600081359050613da98161590d565b92915050565b600081359050613dbe81615924565b92915050565b600081359050613dd38161593b565b92915050565b600081519050613de88161593b565b92915050565b600082601f830112613e0357613e026151e0565b5b8135613e13848260208601613cab565b91505092915050565b600081519050613e2b81615952565b92915050565b600082601f830112613e4657613e456151e0565b5b8135613e56848260208601613ced565b91505092915050565b600081359050613e6e81615969565b92915050565b600081519050613e8381615969565b92915050565b600060208284031215613e9f57613e9e6151f4565b5b6000613ead84828501613d2f565b91505092915050565b60008060408385031215613ecd57613ecc6151f4565b5b6000613edb85828601613d2f565b9250506020613eec85828601613d2f565b9150509250929050565b600080600060608486031215613f0f57613f0e6151f4565b5b6000613f1d86828701613d2f565b9350506020613f2e86828701613d2f565b9250506040613f3f86828701613e5f565b9150509250925092565b60008060008060808587031215613f6357613f626151f4565b5b6000613f7187828801613d2f565b9450506020613f8287828801613d2f565b9350506040613f9387828801613e5f565b925050606085013567ffffffffffffffff811115613fb457613fb36151ef565b5b613fc087828801613dee565b91505092959194509250565b60008060408385031215613fe357613fe26151f4565b5b6000613ff185828601613d2f565b925050602061400285828601613d9a565b9150509250929050565b60008060408385031215614023576140226151f4565b5b600061403185828601613d2f565b925050602061404285828601613e5f565b9150509250929050565b600060208284031215614062576140616151f4565b5b600061407084828501613d9a565b91505092915050565b60006020828403121561408f5761408e6151f4565b5b600061409d84828501613daf565b91505092915050565b6000602082840312156140bc576140bb6151f4565b5b60006140ca84828501613dc4565b91505092915050565b6000602082840312156140e9576140e86151f4565b5b60006140f784828501613dd9565b91505092915050565b600060208284031215614116576141156151f4565b5b600061412484828501613e1c565b91505092915050565b600060208284031215614143576141426151f4565b5b600082013567ffffffffffffffff811115614161576141606151ef565b5b61416d84828501613e31565b91505092915050565b60006020828403121561418c5761418b6151f4565b5b600061419a84828501613e5f565b91505092915050565b6000602082840312156141b9576141b86151f4565b5b60006141c784828501613e74565b91505092915050565b6000806000604084860312156141e9576141e86151f4565b5b60006141f786828701613e5f565b935050602084013567ffffffffffffffff811115614218576142176151ef565b5b61422486828701613d44565b92509250509250925092565b61423981614ed7565b82525050565b61425061424b82614ed7565b61509b565b82525050565b61425f81614ee9565b82525050565b61426e81614ef5565b82525050565b600061427f82614cfa565b6142898185614d10565b9350614299818560208601614f92565b6142a2816151f9565b840191505092915050565b60006142b882614d05565b6142c28185614d2c565b93506142d2818560208601614f92565b6142db816151f9565b840191505092915050565b60006142f182614d05565b6142fb8185614d3d565b935061430b818560208601614f92565b80840191505092915050565b6000815461432481614fef565b61432e8186614d3d565b94506001821660008114614349576001811461435a5761438d565b60ff1983168652818601935061438d565b61436385614ce5565b60005b8381101561438557815481890152600182019150602081019050614366565b838801955050505b50505092915050565b60006143a3602283614d2c565b91506143ae82615217565b604082019050919050565b60006143c6601f83614d2c565b91506143d182615266565b602082019050919050565b60006143e9602683614d2c565b91506143f48261528f565b604082019050919050565b600061440c602a83614d2c565b9150614417826152de565b604082019050919050565b600061442f601283614d2c565b915061443a8261532d565b602082019050919050565b6000614452602383614d2c565b915061445d82615356565b604082019050919050565b6000614475602583614d2c565b9150614480826153a5565b604082019050919050565b6000614498601183614d2c565b91506144a3826153f4565b602082019050919050565b60006144bb603983614d2c565b91506144c68261541d565b604082019050919050565b60006144de601383614d2c565b91506144e98261546c565b602082019050919050565b6000614501602b83614d2c565b915061450c82615495565b604082019050919050565b6000614524602683614d2c565b915061452f826154e4565b604082019050919050565b6000614547600583614d3d565b915061455282615533565b600582019050919050565b600061456a602083614d2c565b91506145758261555c565b602082019050919050565b600061458d601583614d2c565b915061459882615585565b602082019050919050565b60006145b0601a83614d2c565b91506145bb826155ae565b602082019050919050565b60006145d3603283614d2c565b91506145de826155d7565b604082019050919050565b60006145f6602283614d2c565b915061460182615626565b604082019050919050565b6000614619600083614d21565b915061462482615675565b600082019050919050565b600061463c603383614d2c565b915061464782615678565b604082019050919050565b600061465f601d83614d2c565b915061466a826156c7565b602082019050919050565b6000614682602183614d2c565b915061468d826156f0565b604082019050919050565b60006146a5601883614d2c565b91506146b08261573f565b602082019050919050565b60006146c8602e83614d2c565b91506146d382615768565b604082019050919050565b60006146eb602083614d2c565b91506146f6826157b7565b602082019050919050565b600061470e601f83614d2c565b9150614719826157e0565b602082019050919050565b6000614731602f83614d2c565b915061473c82615809565b604082019050919050565b6000614754602d83614d2c565b915061475f82615858565b604082019050919050565b6000614777602283614d2c565b9150614782826158a7565b604082019050919050565b61479681614f79565b82525050565b60006147a8828461423f565b60148201915081905092915050565b60006147c38285614317565b91506147cf82846142e6565b91506147da8261453a565b91508190509392505050565b60006147f18261460c565b9150819050919050565b60006020820190506148106000830184614230565b92915050565b600060808201905061482b6000830187614230565b6148386020830186614230565b614845604083018561478d565b81810360608301526148578184614274565b905095945050505050565b60006040820190506148776000830185614230565b614884602083018461478d565b9392505050565b60006020820190506148a06000830184614256565b92915050565b60006020820190506148bb6000830184614265565b92915050565b600060208201905081810360008301526148db81846142ad565b905092915050565b600060208201905081810360008301526148fc81614396565b9050919050565b6000602082019050818103600083015261491c816143b9565b9050919050565b6000602082019050818103600083015261493c816143dc565b9050919050565b6000602082019050818103600083015261495c816143ff565b9050919050565b6000602082019050818103600083015261497c81614422565b9050919050565b6000602082019050818103600083015261499c81614445565b9050919050565b600060208201905081810360008301526149bc81614468565b9050919050565b600060208201905081810360008301526149dc8161448b565b9050919050565b600060208201905081810360008301526149fc816144ae565b9050919050565b60006020820190508181036000830152614a1c816144d1565b9050919050565b60006020820190508181036000830152614a3c816144f4565b9050919050565b60006020820190508181036000830152614a5c81614517565b9050919050565b60006020820190508181036000830152614a7c8161455d565b9050919050565b60006020820190508181036000830152614a9c81614580565b9050919050565b60006020820190508181036000830152614abc816145a3565b9050919050565b60006020820190508181036000830152614adc816145c6565b9050919050565b60006020820190508181036000830152614afc816145e9565b9050919050565b60006020820190508181036000830152614b1c8161462f565b9050919050565b60006020820190508181036000830152614b3c81614652565b9050919050565b60006020820190508181036000830152614b5c81614675565b9050919050565b60006020820190508181036000830152614b7c81614698565b9050919050565b60006020820190508181036000830152614b9c816146bb565b9050919050565b60006020820190508181036000830152614bbc816146de565b9050919050565b60006020820190508181036000830152614bdc81614701565b9050919050565b60006020820190508181036000830152614bfc81614724565b9050919050565b60006020820190508181036000830152614c1c81614747565b9050919050565b60006020820190508181036000830152614c3c8161476a565b9050919050565b6000602082019050614c58600083018461478d565b92915050565b6000614c68614c79565b9050614c748282615021565b919050565b6000604051905090565b600067ffffffffffffffff821115614c9e57614c9d6151ac565b5b614ca7826151f9565b9050602081019050919050565b600067ffffffffffffffff821115614ccf57614cce6151ac565b5b614cd8826151f9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d5382614f3d565b9150614d5e83614f3d565b9250826fffffffffffffffffffffffffffffffff03821115614d8357614d826150f0565b5b828201905092915050565b6000614d9982614f79565b9150614da483614f79565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dd957614dd86150f0565b5b828201905092915050565b6000614def82614f79565b9150614dfa83614f79565b925082614e0a57614e0961511f565b5b828204905092915050565b6000614e2082614f79565b9150614e2b83614f79565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e6457614e636150f0565b5b828202905092915050565b6000614e7a82614f3d565b9150614e8583614f3d565b925082821015614e9857614e976150f0565b5b828203905092915050565b6000614eae82614f79565b9150614eb983614f79565b925082821015614ecc57614ecb6150f0565b5b828203905092915050565b6000614ee282614f59565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614f3682614ed7565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fb0578082015181840152602081019050614f95565b83811115614fbf576000848401525b50505050565b6000614fd082614f79565b91506000821415614fe457614fe36150f0565b5b600182039050919050565b6000600282049050600182168061500757607f821691505b6020821081141561501b5761501a61514e565b5b50919050565b61502a826151f9565b810181811067ffffffffffffffff82111715615049576150486151ac565b5b80604052505050565b600061505d82614f79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150905761508f6150f0565b5b600182019050919050565b60006150a6826150ad565b9050919050565b60006150b88261520a565b9050919050565b60006150ca82614f79565b91506150d583614f79565b9250826150e5576150e461511f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e74206d757374206265206d6f7265207468616e203000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f596f752063616e7420636c61696d206e66740000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4e6f7420696e2074686520576966654c69737400000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f546865207265737420726573657276656420666f722061206769766561776179600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6158ff81614ed7565b811461590a57600080fd5b50565b61591681614ee9565b811461592157600080fd5b50565b61592d81614ef5565b811461593857600080fd5b50565b61594481614eff565b811461594f57600080fd5b50565b61595b81614f2b565b811461596657600080fd5b50565b61597281614f79565b811461597d57600080fd5b5056fea264697066735822122041daf6a1bfdb98ab17b8d875eb13c0d5cfc1ecc3d8a061fa0174590368d89fda64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5143336a7248627843716b68767374554b794e6163676552624166526a6f477759764b6d4274737a475a666e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5143336a7248627843716b68767374554b794e6163676552624166526a6f477759764b6d4274737a475a666e2f00000000000000000000

-----Decoded View---------------
Arg [0] : _NotRevealedURI (string): ipfs://QmQC3jrHbxCqkhvstUKyNacgeRbAfRjoGwYvKmBtszGZfn/
Arg [1] : _initBaseURI (string): ipfs://QmQC3jrHbxCqkhvstUKyNacgeRbAfRjoGwYvKmBtszGZfn/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5143336a7248627843716b68767374554b794e61636765
Arg [4] : 52624166526a6f477759764b6d4274737a475a666e2f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d5143336a7248627843716b68767374554b794e61636765
Arg [7] : 52624166526a6f477759764b6d4274737a475a666e2f00000000000000000000


Deployed Bytecode Sourcemap

53238:8135:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39123:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54486:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40849:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42374:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41937:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55906:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37687:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58642:234;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54441:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43224:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59058:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54224:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38315:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59544:406;;;:::i;:::-;;43429:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57349:401;;;;;;;;;;;;;:::i;:::-;;37850:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54519:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56565:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40672:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58062:290;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39549:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16020:103;;;;;;;;;;;;;:::i;:::-;;59432:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15369:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54083:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41004:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53986:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42642:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58394:69;;;;;;;;;;;;;:::i;:::-;;59201:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54136:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43649:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57047:294;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53788:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54380:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54180:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60946:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54045:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47980:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59318:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58884:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53933:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60260:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56672:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16278:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54327:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58471:163;;;;;;;;;;;;;:::i;:::-;;56807:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;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;54486:26::-;;;;;;;;;;;;;:::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;55906:80::-;55942:7;55967:11;:9;:11::i;:::-;55960:18;;55906:80;:::o;37687:94::-;37740:7;37763:12;;37756:19;;37687:94;:::o;58642:234::-;58688:7;58734:23;:21;:23::i;:::-;58710:21;58720:10;58710:9;:21::i;:::-;:47;58706:163;;;58777:1;58770:8;;;;58706:163;58838:21;58848:10;58838:9;:21::i;:::-;58812:23;:21;:23::i;:::-;:47;;;;:::i;:::-;58805:54;;58642:234;;:::o;54441:38::-;;;;;;;;;;;;;:::o;43224:142::-;43332:28;43342:4;43348:2;43352:7;43332:9;:28::i;:::-;43224:142;;;:::o;59058:135::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59166:19:::1;59145:18;;:40;;;;;;;;;;;;;;;;;;59058:135:::0;:::o;54224: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;59544:406::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59615:8:::1;59637:10;;;;;;;;;;;59629:24;;59690:3;59685:2;59661:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;59629:69;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59614:84;;;59713:3;59705:12;;;::::0;::::1;;59746:8;59768:10;;;;;;;;;;;59760:24;;59821:3;59816:2;59792:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;59760:69;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59745:84;;;59844:3;59836:12;;;::::0;::::1;;59858:7;59879;:5;:7::i;:::-;59871:21;;59900;59871:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59857:69;;;59941:2;59933:11;;;::::0;::::1;;59589:361;;;59544:406::o:0;43429:157::-;43541:39;43558:4;43564:2;43568:7;43541:39;;;;;;;;;;;;:16;:39::i;:::-;43429:157;;;:::o;57349:401::-;10275:1;10873:7;;:19;;10865:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10275:1;11006:7;:18;;;;55120:6:::1;;;;;;;;;;;55112:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;57408:19:::2;57430:10;:8;:10::i;:::-;57408:32;;57473:1;57459:11;:15;57451:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57515:9;57510:129;57535:11;57531:1;:15;57510:129;;;57566:13;57577:1;57566:10;:13::i;:::-;;57623:4;57592:13;:28;57606:13;57617:1;57606:10;:13::i;:::-;57592:28;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;57548:3;;;;;:::i;:::-;;;;57510:129;;;;57692:1;57678:11;:15;;;;:::i;:::-;57649:14;:26;57664:10;57649:26;;;;;;;;;;;;;;;:44;;;;57704:38;57714:10;57740:1;57726:11;:15;;;;:::i;:::-;57704:9;:38::i;:::-;57397:353;10231:1:::0;11185:7;:22;;;;57349:401::o;37850:177::-;37917:7;37949:13;:11;:13::i;:::-;37941:5;:21;37933:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;38016:5;38009:12;;37850:177;;;:::o;54519:28::-;;;;;;;;;;;;;:::o;56565:99::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56648:8:::1;56638:7;:18;;;;;;;;;;;;:::i;:::-;;56565:99:::0;:::o;40672:118::-;40736:7;40759:20;40771:7;40759:11;:20::i;:::-;:25;;;40752:32;;40672:118;;;:::o;58062:290::-;58103:7;58121:25;58149:1;58121:29;;58164:9;58159:153;58184:11;:9;:11::i;:::-;58180:1;:15;58159:153;;;58249:5;58217:37;;:13;:28;58231:13;58242:1;58231:10;:13::i;:::-;58217:28;;;;;;;;;;;;;;;;;;;;;:37;;;58213:90;;;58290:1;58269:22;;;;;:::i;:::-;;;58213:90;58197:3;;;;;:::i;:::-;;;;58159:153;;;;58327:17;58320:24;;;58062:290;:::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;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;59432:106::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59519:11:::1;59506:10;:24;;;;59432:106:::0;:::o;15369:87::-;15415:7;15442:6;;;;;;;;;;;15435:13;;15369:87;:::o;54083:46::-;;;;:::o;41004:98::-;41060:13;41089:7;41082:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41004:98;:::o;53986:50::-;;;;;;;;;;;;;;;;;:::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;58394:69::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58451:4:::1;58440:8;;:15;;;;;;;;;;;;;;;;;;58394:69::o:0;59201:87::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59273:7:::1;59264:6;;:16;;;;;;;;;;;;;;;;;;59201:87:::0;:::o;54136: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;57047:294::-;55120:6;;;;;;;;;;;55112:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;10275:1:::1;10873:7;;:19;;10865:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10275:1;11006:7;:18;;;;57187:12:::2;;55472:18;;;;;;;;;;;55467:203;;55507:12;55549:10;55532:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;55522:39;;;;;;55507:54;;55584:50;55603:12;;55584:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55617:10;;55629:4;55584:18;:50::i;:::-;55576:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;55492:178;55467:203;57227:14:::3;55259:7;:5;:7::i;:::-;55245:21;;:10;:21;;;55241:134;;55325:9;55306:14;55292:11;:9;:11::i;:::-;:28;;;;:::i;:::-;55291:43;55283:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;55241:134;57264:14:::4;54934:9;;54916:14;54900:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;54892:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;55016:1;54999:14;:18;54991:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57296:37:::5;57306:10;57318:14;57296:9;:37::i;:::-;55385:1:::4;55680::::3;11037::::2;;10231::::1;11185:7;:22;;;;57047:294:::0;;;:::o;53788:70::-;;;;;;;;;;;;;:::o;54380:54::-;54425:9;54380:54;:::o;54180:37::-;;;;:::o;60946:422::-;61064:13;61103:16;61111:7;61103;:16::i;:::-;61095:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;61167:5;61155:17;;:8;;;;;;;;;;;:17;;;61152:127;;;61220:14;61236:20;61237:7;61236:18;:20::i;:::-;61203:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61189:78;;;;61152:127;61320:7;61329:20;61330:7;61329:18;:20::i;:::-;61303:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61289:71;;60946:422;;;;:::o;54045:31::-;;;;:::o;47980:43::-;;;;:::o;59318:106::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59405:11:::1;59392:10;;:24;;;;;;;;;;;;;;;;;;59318:106:::0;:::o;58884:166::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59021:21:::1;58998:20;;:44;;;;;;;;;;;;;;;;;;58884:166:::0;:::o;53933:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;60260:617::-;60385:4;60550:27;60608;;;;;;;;;;;60550:96;;60675:20;;;;;;;;;;;:86;;;;;60753:8;60712:49;;60720:13;:21;;;60742:5;60720:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60712:49;;;60675:86;60657:154;;;60795:4;60788:11;;;;;60657:154;60830:39;60853:5;60860:8;60830:22;:39::i;:::-;60823:46;;;60260:617;;;;;:::o;56672:127::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56776:15:::1;56759:14;:32;;;;;;;;;;;;:::i;:::-;;56672: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;54327:46::-;54363:10;54327:46;:::o;58471:163::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58546:1:::1;58527:16;;:20;58519:29;;;::::0;::::1;;58559:36;58569:7;:5;:7::i;:::-;58578:16;;58559:9;:36::i;:::-;58625:1;58606:16;:20;;;;58471:163::o:0;56807:205::-;15600:12;:10;:12::i;:::-;15589:23;;:7;:5;:7::i;:::-;:23;;;15581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56987:17:::1;56968:16;:36;;;;56807:205:::0;:::o;28769:157::-;28854:4;28893:25;28878:40;;;:11;:40;;;;28871:47;;28769:157;;;:::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;55697:203::-;55741:7;55763:18;;;;;;;;;;;55760:133;;;54363:10;55798:16;;;;55760:133;54425:9;55856:25;;55697:203;;:::o;55994:292::-;56050:7;56073:18;;;;;;;;;;;56070:209;;;56136:14;:26;56151:10;56136:26;;;;;;;;;;;;;;;;56115:18;;:47;;;;:::i;:::-;56108:54;;;;56070:209;56241:14;:26;56256:10;56241:26;;;;;;;;;;;;;;;;56211:27;;:56;;;;:::i;:::-;56204:63;;55994:292;;:::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;57793:143::-;57852:7;57877:11;;;;;;;;;;;:31;;;57909:10;57921:6;57877:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57870:58;;57793:143;;;:::o;44310:98::-;44375:27;44385:2;44389:8;44375:27;;;;;;;;;;;;:9;:27::i;:::-;44310: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;57944:110::-;57988:7;58013:11;;;;;;;;;;;:21;;;58035:10;58013:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58006:40;;57944:110;:::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;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;50665:141::-;;;;;:::o;51192:140::-;;;;;:::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;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;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:143::-;3277:5;3308:6;3302:13;3293:22;;3324:33;3351:5;3324:33;:::i;:::-;3220:143;;;;:::o;3369:329::-;3428:6;3477:2;3465:9;3456:7;3452:23;3448:32;3445:119;;;3483:79;;:::i;:::-;3445:119;3603:1;3628:53;3673:7;3664:6;3653:9;3649:22;3628:53;:::i;:::-;3618:63;;3574:117;3369:329;;;;:::o;3704:474::-;3772:6;3780;3829:2;3817:9;3808:7;3804:23;3800:32;3797:119;;;3835:79;;:::i;:::-;3797:119;3955:1;3980:53;4025:7;4016:6;4005:9;4001:22;3980:53;:::i;:::-;3970:63;;3926:117;4082:2;4108:53;4153:7;4144:6;4133:9;4129:22;4108:53;:::i;:::-;4098:63;;4053:118;3704:474;;;;;:::o;4184:619::-;4261:6;4269;4277;4326:2;4314:9;4305:7;4301:23;4297:32;4294:119;;;4332:79;;:::i;:::-;4294:119;4452:1;4477:53;4522:7;4513:6;4502:9;4498:22;4477:53;:::i;:::-;4467:63;;4423:117;4579:2;4605:53;4650:7;4641:6;4630:9;4626:22;4605:53;:::i;:::-;4595:63;;4550:118;4707:2;4733:53;4778:7;4769:6;4758:9;4754:22;4733:53;:::i;:::-;4723:63;;4678:118;4184:619;;;;;:::o;4809:943::-;4904:6;4912;4920;4928;4977:3;4965:9;4956:7;4952:23;4948:33;4945:120;;;4984:79;;:::i;:::-;4945:120;5104:1;5129:53;5174:7;5165:6;5154:9;5150:22;5129:53;:::i;:::-;5119:63;;5075:117;5231:2;5257:53;5302:7;5293:6;5282:9;5278:22;5257:53;:::i;:::-;5247:63;;5202:118;5359:2;5385:53;5430:7;5421:6;5410:9;5406:22;5385:53;:::i;:::-;5375:63;;5330:118;5515:2;5504:9;5500:18;5487:32;5546:18;5538:6;5535:30;5532:117;;;5568:79;;:::i;:::-;5532:117;5673:62;5727:7;5718:6;5707:9;5703:22;5673:62;:::i;:::-;5663:72;;5458:287;4809:943;;;;;;;:::o;5758:468::-;5823:6;5831;5880:2;5868:9;5859:7;5855:23;5851:32;5848:119;;;5886:79;;:::i;:::-;5848:119;6006:1;6031:53;6076:7;6067:6;6056:9;6052:22;6031:53;:::i;:::-;6021:63;;5977:117;6133:2;6159:50;6201:7;6192:6;6181:9;6177:22;6159:50;:::i;:::-;6149:60;;6104:115;5758:468;;;;;:::o;6232:474::-;6300:6;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6232:474;;;;;:::o;6712:323::-;6768:6;6817:2;6805:9;6796:7;6792:23;6788:32;6785:119;;;6823:79;;:::i;:::-;6785:119;6943:1;6968:50;7010:7;7001:6;6990:9;6986:22;6968:50;:::i;:::-;6958:60;;6914:114;6712:323;;;;:::o;7041:329::-;7100:6;7149:2;7137:9;7128:7;7124:23;7120:32;7117:119;;;7155:79;;:::i;:::-;7117:119;7275:1;7300:53;7345:7;7336:6;7325:9;7321:22;7300:53;:::i;:::-;7290:63;;7246:117;7041:329;;;;:::o;7376:327::-;7434:6;7483:2;7471:9;7462:7;7458:23;7454:32;7451:119;;;7489:79;;:::i;:::-;7451:119;7609:1;7634:52;7678:7;7669:6;7658:9;7654:22;7634:52;:::i;:::-;7624:62;;7580:116;7376:327;;;;:::o;7709:349::-;7778:6;7827:2;7815:9;7806:7;7802:23;7798:32;7795:119;;;7833:79;;:::i;:::-;7795:119;7953:1;7978:63;8033:7;8024:6;8013:9;8009:22;7978:63;:::i;:::-;7968:73;;7924:127;7709:349;;;;:::o;8064:409::-;8163:6;8212:2;8200:9;8191:7;8187:23;8183:32;8180:119;;;8218:79;;:::i;:::-;8180:119;8338:1;8363:93;8448:7;8439:6;8428:9;8424:22;8363:93;:::i;:::-;8353:103;;8309:157;8064:409;;;;:::o;8479:509::-;8548:6;8597:2;8585:9;8576:7;8572:23;8568:32;8565:119;;;8603:79;;:::i;:::-;8565:119;8751:1;8740:9;8736:17;8723:31;8781:18;8773:6;8770:30;8767:117;;;8803:79;;:::i;:::-;8767:117;8908:63;8963:7;8954:6;8943:9;8939:22;8908:63;:::i;:::-;8898:73;;8694:287;8479:509;;;;:::o;8994:329::-;9053:6;9102:2;9090:9;9081:7;9077:23;9073:32;9070:119;;;9108:79;;:::i;:::-;9070:119;9228:1;9253:53;9298:7;9289:6;9278:9;9274:22;9253:53;:::i;:::-;9243:63;;9199:117;8994:329;;;;:::o;9329:351::-;9399:6;9448:2;9436:9;9427:7;9423:23;9419:32;9416:119;;;9454:79;;:::i;:::-;9416:119;9574:1;9599:64;9655:7;9646:6;9635:9;9631:22;9599:64;:::i;:::-;9589:74;;9545:128;9329:351;;;;:::o;9686:704::-;9781:6;9789;9797;9846:2;9834:9;9825:7;9821:23;9817:32;9814:119;;;9852:79;;:::i;:::-;9814:119;9972:1;9997:53;10042:7;10033:6;10022:9;10018:22;9997:53;:::i;:::-;9987:63;;9943:117;10127:2;10116:9;10112:18;10099:32;10158:18;10150:6;10147:30;10144:117;;;10180:79;;:::i;:::-;10144:117;10293:80;10365:7;10356:6;10345:9;10341:22;10293:80;:::i;:::-;10275:98;;;;10070:313;9686:704;;;;;:::o;10396:118::-;10483:24;10501:5;10483:24;:::i;:::-;10478:3;10471:37;10396:118;;:::o;10520:157::-;10625:45;10645:24;10663:5;10645:24;:::i;:::-;10625:45;:::i;:::-;10620:3;10613:58;10520:157;;:::o;10683:109::-;10764:21;10779:5;10764:21;:::i;:::-;10759:3;10752:34;10683:109;;:::o;10798:118::-;10885:24;10903:5;10885:24;:::i;:::-;10880:3;10873:37;10798:118;;:::o;10922:360::-;11008:3;11036:38;11068:5;11036:38;:::i;:::-;11090:70;11153:6;11148:3;11090:70;:::i;:::-;11083:77;;11169:52;11214:6;11209:3;11202:4;11195:5;11191:16;11169:52;:::i;:::-;11246:29;11268:6;11246:29;:::i;:::-;11241:3;11237:39;11230:46;;11012:270;10922:360;;;;:::o;11288:364::-;11376:3;11404:39;11437:5;11404:39;:::i;:::-;11459:71;11523:6;11518:3;11459:71;:::i;:::-;11452:78;;11539:52;11584:6;11579:3;11572:4;11565:5;11561:16;11539:52;:::i;:::-;11616:29;11638:6;11616:29;:::i;:::-;11611:3;11607:39;11600:46;;11380:272;11288:364;;;;:::o;11658:377::-;11764:3;11792:39;11825:5;11792:39;:::i;:::-;11847:89;11929:6;11924:3;11847:89;:::i;:::-;11840:96;;11945:52;11990:6;11985:3;11978:4;11971:5;11967:16;11945:52;:::i;:::-;12022:6;12017:3;12013:16;12006:23;;11768:267;11658:377;;;;:::o;12065:845::-;12168:3;12205:5;12199:12;12234:36;12260:9;12234:36;:::i;:::-;12286:89;12368:6;12363:3;12286:89;:::i;:::-;12279:96;;12406:1;12395:9;12391:17;12422:1;12417:137;;;;12568:1;12563:341;;;;12384:520;;12417:137;12501:4;12497:9;12486;12482:25;12477:3;12470:38;12537:6;12532:3;12528:16;12521:23;;12417:137;;12563:341;12630:38;12662:5;12630:38;:::i;:::-;12690:1;12704:154;12718:6;12715:1;12712:13;12704:154;;;12792:7;12786:14;12782:1;12777:3;12773:11;12766:35;12842:1;12833:7;12829:15;12818:26;;12740:4;12737:1;12733:12;12728:17;;12704:154;;;12887:6;12882:3;12878:16;12871:23;;12570:334;;12384:520;;12172:738;;12065:845;;;;:::o;12916:366::-;13058:3;13079:67;13143:2;13138:3;13079:67;:::i;:::-;13072:74;;13155:93;13244:3;13155:93;:::i;:::-;13273:2;13268:3;13264:12;13257:19;;12916:366;;;:::o;13288:::-;13430:3;13451:67;13515:2;13510:3;13451:67;:::i;:::-;13444:74;;13527:93;13616:3;13527:93;:::i;:::-;13645:2;13640:3;13636:12;13629:19;;13288:366;;;:::o;13660:::-;13802:3;13823:67;13887:2;13882:3;13823:67;:::i;:::-;13816:74;;13899:93;13988:3;13899:93;:::i;:::-;14017:2;14012:3;14008:12;14001:19;;13660:366;;;:::o;14032:::-;14174:3;14195:67;14259:2;14254:3;14195:67;:::i;:::-;14188:74;;14271:93;14360:3;14271:93;:::i;:::-;14389:2;14384:3;14380:12;14373:19;;14032:366;;;:::o;14404:::-;14546:3;14567:67;14631:2;14626:3;14567:67;:::i;:::-;14560:74;;14643:93;14732:3;14643:93;:::i;:::-;14761:2;14756:3;14752:12;14745:19;;14404:366;;;:::o;14776:::-;14918:3;14939:67;15003:2;14998:3;14939:67;:::i;:::-;14932:74;;15015:93;15104:3;15015:93;:::i;:::-;15133:2;15128:3;15124:12;15117:19;;14776:366;;;:::o;15148:::-;15290:3;15311:67;15375:2;15370:3;15311:67;:::i;:::-;15304:74;;15387:93;15476:3;15387:93;:::i;:::-;15505:2;15500:3;15496:12;15489:19;;15148:366;;;:::o;15520:::-;15662:3;15683:67;15747:2;15742:3;15683:67;:::i;:::-;15676:74;;15759:93;15848:3;15759:93;:::i;:::-;15877:2;15872:3;15868:12;15861:19;;15520:366;;;:::o;15892:::-;16034:3;16055:67;16119:2;16114:3;16055:67;:::i;:::-;16048:74;;16131:93;16220:3;16131:93;:::i;:::-;16249:2;16244:3;16240:12;16233:19;;15892:366;;;:::o;16264:::-;16406:3;16427:67;16491:2;16486:3;16427:67;:::i;:::-;16420:74;;16503:93;16592:3;16503:93;:::i;:::-;16621:2;16616:3;16612:12;16605:19;;16264:366;;;:::o;16636:::-;16778:3;16799:67;16863:2;16858:3;16799:67;:::i;:::-;16792:74;;16875:93;16964:3;16875:93;:::i;:::-;16993:2;16988:3;16984:12;16977:19;;16636:366;;;:::o;17008:::-;17150:3;17171:67;17235:2;17230:3;17171:67;:::i;:::-;17164:74;;17247:93;17336:3;17247:93;:::i;:::-;17365:2;17360:3;17356:12;17349:19;;17008:366;;;:::o;17380:400::-;17540:3;17561:84;17643:1;17638:3;17561:84;:::i;:::-;17554:91;;17654:93;17743:3;17654:93;:::i;:::-;17772:1;17767:3;17763:11;17756:18;;17380:400;;;:::o;17786:366::-;17928:3;17949:67;18013:2;18008:3;17949:67;:::i;:::-;17942:74;;18025:93;18114:3;18025:93;:::i;:::-;18143:2;18138:3;18134:12;18127:19;;17786:366;;;:::o;18158:::-;18300:3;18321:67;18385:2;18380:3;18321:67;:::i;:::-;18314:74;;18397:93;18486:3;18397:93;:::i;:::-;18515:2;18510:3;18506:12;18499:19;;18158:366;;;:::o;18530:::-;18672:3;18693:67;18757:2;18752:3;18693:67;:::i;:::-;18686:74;;18769:93;18858:3;18769:93;:::i;:::-;18887:2;18882:3;18878:12;18871:19;;18530:366;;;:::o;18902:::-;19044:3;19065:67;19129:2;19124:3;19065:67;:::i;:::-;19058:74;;19141:93;19230:3;19141:93;:::i;:::-;19259:2;19254:3;19250:12;19243:19;;18902:366;;;:::o;19274:::-;19416:3;19437:67;19501:2;19496:3;19437:67;:::i;:::-;19430:74;;19513:93;19602:3;19513:93;:::i;:::-;19631:2;19626:3;19622:12;19615:19;;19274:366;;;:::o;19646:398::-;19805:3;19826:83;19907:1;19902:3;19826:83;:::i;:::-;19819:90;;19918:93;20007:3;19918:93;:::i;:::-;20036:1;20031:3;20027:11;20020:18;;19646:398;;;:::o;20050:366::-;20192:3;20213:67;20277:2;20272:3;20213:67;:::i;:::-;20206:74;;20289:93;20378:3;20289:93;:::i;:::-;20407:2;20402:3;20398:12;20391:19;;20050:366;;;:::o;20422:::-;20564:3;20585:67;20649:2;20644:3;20585:67;:::i;:::-;20578:74;;20661:93;20750:3;20661:93;:::i;:::-;20779:2;20774:3;20770:12;20763:19;;20422:366;;;:::o;20794:::-;20936:3;20957:67;21021:2;21016:3;20957:67;:::i;:::-;20950:74;;21033:93;21122:3;21033:93;:::i;:::-;21151:2;21146:3;21142:12;21135:19;;20794:366;;;:::o;21166:::-;21308:3;21329:67;21393:2;21388:3;21329:67;:::i;:::-;21322:74;;21405:93;21494:3;21405:93;:::i;:::-;21523:2;21518:3;21514:12;21507:19;;21166:366;;;:::o;21538:::-;21680:3;21701:67;21765:2;21760:3;21701:67;:::i;:::-;21694:74;;21777:93;21866:3;21777:93;:::i;:::-;21895:2;21890:3;21886:12;21879:19;;21538:366;;;:::o;21910:::-;22052:3;22073:67;22137:2;22132:3;22073:67;:::i;:::-;22066:74;;22149:93;22238:3;22149:93;:::i;:::-;22267:2;22262:3;22258:12;22251:19;;21910:366;;;:::o;22282:::-;22424:3;22445:67;22509:2;22504:3;22445:67;:::i;:::-;22438:74;;22521:93;22610:3;22521:93;:::i;:::-;22639:2;22634:3;22630:12;22623:19;;22282:366;;;:::o;22654:::-;22796:3;22817:67;22881:2;22876:3;22817:67;:::i;:::-;22810:74;;22893:93;22982:3;22893:93;:::i;:::-;23011:2;23006:3;23002:12;22995:19;;22654:366;;;:::o;23026:::-;23168:3;23189:67;23253:2;23248:3;23189:67;:::i;:::-;23182:74;;23265:93;23354:3;23265:93;:::i;:::-;23383:2;23378:3;23374:12;23367:19;;23026:366;;;:::o;23398:::-;23540:3;23561:67;23625:2;23620:3;23561:67;:::i;:::-;23554:74;;23637:93;23726:3;23637:93;:::i;:::-;23755:2;23750:3;23746:12;23739:19;;23398:366;;;:::o;23770:118::-;23857:24;23875:5;23857:24;:::i;:::-;23852:3;23845:37;23770:118;;:::o;23894:256::-;24006:3;24021:75;24092:3;24083:6;24021:75;:::i;:::-;24121:2;24116:3;24112:12;24105:19;;24141:3;24134:10;;23894:256;;;;:::o;24156:695::-;24434:3;24456:92;24544:3;24535:6;24456:92;:::i;:::-;24449:99;;24565:95;24656:3;24647:6;24565:95;:::i;:::-;24558:102;;24677:148;24821:3;24677:148;:::i;:::-;24670:155;;24842:3;24835:10;;24156:695;;;;;:::o;24857:379::-;25041:3;25063:147;25206:3;25063:147;:::i;:::-;25056:154;;25227:3;25220:10;;24857:379;;;:::o;25242:222::-;25335:4;25373:2;25362:9;25358:18;25350:26;;25386:71;25454:1;25443:9;25439:17;25430:6;25386:71;:::i;:::-;25242:222;;;;:::o;25470:640::-;25665:4;25703:3;25692:9;25688:19;25680:27;;25717:71;25785:1;25774:9;25770:17;25761:6;25717:71;:::i;:::-;25798:72;25866:2;25855:9;25851:18;25842:6;25798:72;:::i;:::-;25880;25948:2;25937:9;25933:18;25924:6;25880:72;:::i;:::-;25999:9;25993:4;25989:20;25984:2;25973:9;25969:18;25962:48;26027:76;26098:4;26089:6;26027:76;:::i;:::-;26019:84;;25470:640;;;;;;;:::o;26116:332::-;26237:4;26275:2;26264:9;26260:18;26252:26;;26288:71;26356:1;26345:9;26341:17;26332:6;26288:71;:::i;:::-;26369:72;26437:2;26426:9;26422:18;26413:6;26369:72;:::i;:::-;26116:332;;;;;:::o;26454:210::-;26541:4;26579:2;26568:9;26564:18;26556:26;;26592:65;26654:1;26643:9;26639:17;26630:6;26592:65;:::i;:::-;26454:210;;;;:::o;26670:222::-;26763:4;26801:2;26790:9;26786:18;26778:26;;26814:71;26882:1;26871:9;26867:17;26858:6;26814:71;:::i;:::-;26670:222;;;;:::o;26898:313::-;27011:4;27049:2;27038:9;27034:18;27026:26;;27098:9;27092:4;27088:20;27084:1;27073:9;27069:17;27062:47;27126:78;27199:4;27190:6;27126:78;:::i;:::-;27118:86;;26898:313;;;;:::o;27217:419::-;27383:4;27421:2;27410:9;27406:18;27398:26;;27470:9;27464:4;27460:20;27456:1;27445:9;27441:17;27434:47;27498:131;27624:4;27498:131;:::i;:::-;27490:139;;27217:419;;;:::o;27642:::-;27808:4;27846:2;27835:9;27831:18;27823:26;;27895:9;27889:4;27885:20;27881:1;27870:9;27866:17;27859:47;27923:131;28049:4;27923:131;:::i;:::-;27915:139;;27642:419;;;:::o;28067:::-;28233:4;28271:2;28260:9;28256:18;28248:26;;28320:9;28314:4;28310:20;28306:1;28295:9;28291:17;28284:47;28348:131;28474:4;28348:131;:::i;:::-;28340:139;;28067:419;;;:::o;28492:::-;28658:4;28696:2;28685:9;28681:18;28673:26;;28745:9;28739:4;28735:20;28731:1;28720:9;28716:17;28709:47;28773:131;28899:4;28773:131;:::i;:::-;28765:139;;28492:419;;;:::o;28917:::-;29083:4;29121:2;29110:9;29106:18;29098:26;;29170:9;29164:4;29160:20;29156:1;29145:9;29141:17;29134:47;29198:131;29324:4;29198:131;:::i;:::-;29190:139;;28917:419;;;:::o;29342:::-;29508:4;29546:2;29535:9;29531:18;29523:26;;29595:9;29589:4;29585:20;29581:1;29570:9;29566:17;29559:47;29623:131;29749:4;29623:131;:::i;:::-;29615:139;;29342:419;;;:::o;29767:::-;29933:4;29971:2;29960:9;29956:18;29948:26;;30020:9;30014:4;30010:20;30006:1;29995:9;29991:17;29984:47;30048:131;30174:4;30048:131;:::i;:::-;30040:139;;29767:419;;;:::o;30192:::-;30358:4;30396:2;30385:9;30381:18;30373:26;;30445:9;30439:4;30435:20;30431:1;30420:9;30416:17;30409:47;30473:131;30599:4;30473:131;:::i;:::-;30465:139;;30192:419;;;:::o;30617:::-;30783:4;30821:2;30810:9;30806:18;30798:26;;30870:9;30864:4;30860:20;30856:1;30845:9;30841:17;30834:47;30898:131;31024:4;30898:131;:::i;:::-;30890:139;;30617:419;;;:::o;31042:::-;31208:4;31246:2;31235:9;31231:18;31223:26;;31295:9;31289:4;31285:20;31281:1;31270:9;31266:17;31259:47;31323:131;31449:4;31323:131;:::i;:::-;31315:139;;31042:419;;;:::o;31467:::-;31633:4;31671:2;31660:9;31656:18;31648:26;;31720:9;31714:4;31710:20;31706:1;31695:9;31691:17;31684:47;31748:131;31874:4;31748:131;:::i;:::-;31740:139;;31467:419;;;:::o;31892:::-;32058:4;32096:2;32085:9;32081:18;32073:26;;32145:9;32139:4;32135:20;32131:1;32120:9;32116:17;32109:47;32173:131;32299:4;32173:131;:::i;:::-;32165:139;;31892:419;;;:::o;32317:::-;32483:4;32521:2;32510:9;32506:18;32498:26;;32570:9;32564:4;32560:20;32556:1;32545:9;32541:17;32534:47;32598:131;32724:4;32598:131;:::i;:::-;32590:139;;32317:419;;;:::o;32742:::-;32908:4;32946:2;32935:9;32931:18;32923:26;;32995:9;32989:4;32985:20;32981:1;32970:9;32966:17;32959:47;33023:131;33149:4;33023:131;:::i;:::-;33015:139;;32742:419;;;:::o;33167:::-;33333:4;33371:2;33360:9;33356:18;33348:26;;33420:9;33414:4;33410:20;33406:1;33395:9;33391:17;33384:47;33448:131;33574:4;33448:131;:::i;:::-;33440:139;;33167:419;;;:::o;33592:::-;33758:4;33796:2;33785:9;33781:18;33773:26;;33845:9;33839:4;33835:20;33831:1;33820:9;33816:17;33809:47;33873:131;33999:4;33873:131;:::i;:::-;33865:139;;33592:419;;;:::o;34017:::-;34183:4;34221:2;34210:9;34206:18;34198:26;;34270:9;34264:4;34260:20;34256:1;34245:9;34241:17;34234:47;34298:131;34424:4;34298:131;:::i;:::-;34290:139;;34017:419;;;:::o;34442:::-;34608:4;34646:2;34635:9;34631:18;34623:26;;34695:9;34689:4;34685:20;34681:1;34670:9;34666:17;34659:47;34723:131;34849:4;34723:131;:::i;:::-;34715:139;;34442:419;;;:::o;34867:::-;35033:4;35071:2;35060:9;35056:18;35048:26;;35120:9;35114:4;35110:20;35106:1;35095:9;35091:17;35084:47;35148:131;35274:4;35148:131;:::i;:::-;35140:139;;34867:419;;;:::o;35292:::-;35458:4;35496:2;35485:9;35481:18;35473:26;;35545:9;35539:4;35535:20;35531:1;35520:9;35516:17;35509:47;35573:131;35699:4;35573:131;:::i;:::-;35565:139;;35292:419;;;:::o;35717:::-;35883:4;35921:2;35910:9;35906:18;35898:26;;35970:9;35964:4;35960:20;35956:1;35945:9;35941:17;35934:47;35998:131;36124:4;35998:131;:::i;:::-;35990:139;;35717:419;;;:::o;36142:::-;36308:4;36346:2;36335:9;36331:18;36323:26;;36395:9;36389:4;36385:20;36381:1;36370:9;36366:17;36359:47;36423:131;36549:4;36423:131;:::i;:::-;36415:139;;36142:419;;;:::o;36567:::-;36733:4;36771:2;36760:9;36756:18;36748:26;;36820:9;36814:4;36810:20;36806:1;36795:9;36791:17;36784:47;36848:131;36974:4;36848:131;:::i;:::-;36840:139;;36567:419;;;:::o;36992:::-;37158:4;37196:2;37185:9;37181:18;37173:26;;37245:9;37239:4;37235:20;37231:1;37220:9;37216:17;37209:47;37273:131;37399:4;37273:131;:::i;:::-;37265:139;;36992:419;;;:::o;37417:::-;37583:4;37621:2;37610:9;37606:18;37598:26;;37670:9;37664:4;37660:20;37656:1;37645:9;37641:17;37634:47;37698:131;37824:4;37698:131;:::i;:::-;37690:139;;37417:419;;;:::o;37842:::-;38008:4;38046:2;38035:9;38031:18;38023:26;;38095:9;38089:4;38085:20;38081:1;38070:9;38066:17;38059:47;38123:131;38249:4;38123:131;:::i;:::-;38115:139;;37842:419;;;:::o;38267:::-;38433:4;38471:2;38460:9;38456:18;38448:26;;38520:9;38514:4;38510:20;38506:1;38495:9;38491:17;38484:47;38548:131;38674:4;38548:131;:::i;:::-;38540:139;;38267:419;;;:::o;38692:222::-;38785:4;38823:2;38812:9;38808:18;38800:26;;38836:71;38904:1;38893:9;38889:17;38880:6;38836:71;:::i;:::-;38692:222;;;;:::o;38920:129::-;38954:6;38981:20;;:::i;:::-;38971:30;;39010:33;39038:4;39030:6;39010:33;:::i;:::-;38920:129;;;:::o;39055:75::-;39088:6;39121:2;39115:9;39105:19;;39055:75;:::o;39136:307::-;39197:4;39287:18;39279:6;39276:30;39273:56;;;39309:18;;:::i;:::-;39273:56;39347:29;39369:6;39347:29;:::i;:::-;39339:37;;39431:4;39425;39421:15;39413:23;;39136:307;;;:::o;39449:308::-;39511:4;39601:18;39593:6;39590:30;39587:56;;;39623:18;;:::i;:::-;39587:56;39661:29;39683:6;39661:29;:::i;:::-;39653:37;;39745:4;39739;39735:15;39727:23;;39449:308;;;:::o;39763:141::-;39812:4;39835:3;39827:11;;39858:3;39855:1;39848:14;39892:4;39889:1;39879:18;39871:26;;39763:141;;;:::o;39910:98::-;39961:6;39995:5;39989:12;39979:22;;39910:98;;;:::o;40014:99::-;40066:6;40100:5;40094:12;40084:22;;40014:99;;;:::o;40119:168::-;40202:11;40236:6;40231:3;40224:19;40276:4;40271:3;40267:14;40252:29;;40119:168;;;;:::o;40293:147::-;40394:11;40431:3;40416:18;;40293:147;;;;:::o;40446:169::-;40530:11;40564:6;40559:3;40552:19;40604:4;40599:3;40595:14;40580:29;;40446:169;;;;:::o;40621:148::-;40723:11;40760:3;40745:18;;40621:148;;;;:::o;40775:273::-;40815:3;40834:20;40852:1;40834:20;:::i;:::-;40829:25;;40868:20;40886:1;40868:20;:::i;:::-;40863:25;;40990:1;40954:34;40950:42;40947:1;40944:49;40941:75;;;40996:18;;:::i;:::-;40941:75;41040:1;41037;41033:9;41026:16;;40775:273;;;;:::o;41054:305::-;41094:3;41113:20;41131:1;41113:20;:::i;:::-;41108:25;;41147:20;41165:1;41147:20;:::i;:::-;41142:25;;41301:1;41233:66;41229:74;41226:1;41223:81;41220:107;;;41307:18;;:::i;:::-;41220:107;41351:1;41348;41344:9;41337:16;;41054:305;;;;:::o;41365:185::-;41405:1;41422:20;41440:1;41422:20;:::i;:::-;41417:25;;41456:20;41474:1;41456:20;:::i;:::-;41451:25;;41495:1;41485:35;;41500:18;;:::i;:::-;41485:35;41542:1;41539;41535:9;41530:14;;41365:185;;;;:::o;41556:348::-;41596:7;41619:20;41637:1;41619:20;:::i;:::-;41614:25;;41653:20;41671:1;41653:20;:::i;:::-;41648:25;;41841:1;41773:66;41769:74;41766:1;41763:81;41758:1;41751:9;41744:17;41740:105;41737:131;;;41848:18;;:::i;:::-;41737:131;41896:1;41893;41889:9;41878:20;;41556:348;;;;:::o;41910:191::-;41950:4;41970:20;41988:1;41970:20;:::i;:::-;41965:25;;42004:20;42022:1;42004:20;:::i;:::-;41999:25;;42043:1;42040;42037:8;42034:34;;;42048:18;;:::i;:::-;42034:34;42093:1;42090;42086:9;42078:17;;41910:191;;;;:::o;42107:::-;42147:4;42167:20;42185:1;42167:20;:::i;:::-;42162:25;;42201:20;42219:1;42201:20;:::i;:::-;42196:25;;42240:1;42237;42234:8;42231:34;;;42245:18;;:::i;:::-;42231:34;42290:1;42287;42283:9;42275:17;;42107:191;;;;:::o;42304:96::-;42341:7;42370:24;42388:5;42370:24;:::i;:::-;42359:35;;42304:96;;;:::o;42406:90::-;42440:7;42483:5;42476:13;42469:21;42458:32;;42406:90;;;:::o;42502:77::-;42539:7;42568:5;42557:16;;42502:77;;;:::o;42585:149::-;42621:7;42661:66;42654:5;42650:78;42639:89;;42585:149;;;:::o;42740:125::-;42806:7;42835:24;42853:5;42835:24;:::i;:::-;42824:35;;42740:125;;;:::o;42871:118::-;42908:7;42948:34;42941:5;42937:46;42926:57;;42871:118;;;:::o;42995:126::-;43032:7;43072:42;43065:5;43061:54;43050:65;;42995:126;;;:::o;43127:77::-;43164:7;43193:5;43182:16;;43127:77;;;:::o;43210:154::-;43294:6;43289:3;43284;43271:30;43356:1;43347:6;43342:3;43338:16;43331:27;43210:154;;;:::o;43370:307::-;43438:1;43448:113;43462:6;43459:1;43456:13;43448:113;;;43547:1;43542:3;43538:11;43532:18;43528:1;43523:3;43519:11;43512:39;43484:2;43481:1;43477:10;43472:15;;43448:113;;;43579:6;43576:1;43573:13;43570:101;;;43659:1;43650:6;43645:3;43641:16;43634:27;43570:101;43419:258;43370:307;;;:::o;43683:171::-;43722:3;43745:24;43763:5;43745:24;:::i;:::-;43736:33;;43791:4;43784:5;43781:15;43778:41;;;43799:18;;:::i;:::-;43778:41;43846:1;43839:5;43835:13;43828:20;;43683:171;;;:::o;43860:320::-;43904:6;43941:1;43935:4;43931:12;43921:22;;43988:1;43982:4;43978:12;44009:18;43999:81;;44065:4;44057:6;44053:17;44043:27;;43999:81;44127:2;44119:6;44116:14;44096:18;44093:38;44090:84;;;44146:18;;:::i;:::-;44090:84;43911:269;43860:320;;;:::o;44186:281::-;44269:27;44291:4;44269:27;:::i;:::-;44261:6;44257:40;44399:6;44387:10;44384:22;44363:18;44351:10;44348:34;44345:62;44342:88;;;44410:18;;:::i;:::-;44342:88;44450:10;44446:2;44439:22;44229:238;44186:281;;:::o;44473:233::-;44512:3;44535:24;44553:5;44535:24;:::i;:::-;44526:33;;44581:66;44574:5;44571:77;44568:103;;;44651:18;;:::i;:::-;44568:103;44698:1;44691:5;44687:13;44680:20;;44473:233;;;:::o;44712:100::-;44751:7;44780:26;44800:5;44780:26;:::i;:::-;44769:37;;44712:100;;;:::o;44818:94::-;44857:7;44886:20;44900:5;44886:20;:::i;:::-;44875:31;;44818:94;;;:::o;44918:176::-;44950:1;44967:20;44985:1;44967:20;:::i;:::-;44962:25;;45001:20;45019:1;45001:20;:::i;:::-;44996:25;;45040:1;45030:35;;45045:18;;:::i;:::-;45030:35;45086:1;45083;45079:9;45074:14;;44918:176;;;;:::o;45100:180::-;45148:77;45145:1;45138:88;45245:4;45242:1;45235:15;45269:4;45266:1;45259:15;45286:180;45334:77;45331:1;45324:88;45431:4;45428:1;45421:15;45455:4;45452:1;45445:15;45472:180;45520:77;45517:1;45510:88;45617:4;45614:1;45607:15;45641:4;45638:1;45631:15;45658:180;45706:77;45703:1;45696:88;45803:4;45800:1;45793:15;45827:4;45824:1;45817:15;45844:180;45892:77;45889:1;45882:88;45989:4;45986:1;45979:15;46013:4;46010:1;46003:15;46030:117;46139:1;46136;46129:12;46153:117;46262:1;46259;46252:12;46276:117;46385:1;46382;46375:12;46399:117;46508:1;46505;46498:12;46522:117;46631:1;46628;46621:12;46645:117;46754:1;46751;46744:12;46768:102;46809:6;46860:2;46856:7;46851:2;46844:5;46840:14;46836:28;46826:38;;46768:102;;;:::o;46876:94::-;46909:8;46957:5;46953:2;46949:14;46928:35;;46876:94;;;:::o;46976:221::-;47116:34;47112:1;47104:6;47100:14;47093:58;47185:4;47180:2;47172:6;47168:15;47161:29;46976:221;:::o;47203:181::-;47343:33;47339:1;47331:6;47327:14;47320:57;47203:181;:::o;47390:225::-;47530:34;47526:1;47518:6;47514:14;47507:58;47599:8;47594:2;47586:6;47582:15;47575:33;47390:225;:::o;47621:229::-;47761:34;47757:1;47749:6;47745:14;47738:58;47830:12;47825:2;47817:6;47813:15;47806:37;47621:229;:::o;47856:168::-;47996:20;47992:1;47984:6;47980:14;47973:44;47856:168;:::o;48030:222::-;48170:34;48166:1;48158:6;48154:14;48147:58;48239:5;48234:2;48226:6;48222:15;48215:30;48030:222;:::o;48258:224::-;48398:34;48394:1;48386:6;48382:14;48375:58;48467:7;48462:2;48454:6;48450:15;48443:32;48258:224;:::o;48488:167::-;48628:19;48624:1;48616:6;48612:14;48605:43;48488:167;:::o;48661:244::-;48801:34;48797:1;48789:6;48785:14;48778:58;48870:27;48865:2;48857:6;48853:15;48846:52;48661:244;:::o;48911:169::-;49051:21;49047:1;49039:6;49035:14;49028:45;48911:169;:::o;49086:230::-;49226:34;49222:1;49214:6;49210:14;49203:58;49295:13;49290:2;49282:6;49278:15;49271:38;49086:230;:::o;49322:225::-;49462:34;49458:1;49450:6;49446:14;49439:58;49531:8;49526:2;49518:6;49514:15;49507:33;49322:225;:::o;49553:155::-;49693:7;49689:1;49681:6;49677:14;49670:31;49553:155;:::o;49714:182::-;49854:34;49850:1;49842:6;49838:14;49831:58;49714:182;:::o;49902:171::-;50042:23;50038:1;50030:6;50026:14;50019:47;49902:171;:::o;50079:176::-;50219:28;50215:1;50207:6;50203:14;50196:52;50079:176;:::o;50261:237::-;50401:34;50397:1;50389:6;50385:14;50378:58;50470:20;50465:2;50457:6;50453:15;50446:45;50261:237;:::o;50504:221::-;50644:34;50640:1;50632:6;50628:14;50621:58;50713:4;50708:2;50700:6;50696:15;50689:29;50504:221;:::o;50731:114::-;;:::o;50851:238::-;50991:34;50987:1;50979:6;50975:14;50968:58;51060:21;51055:2;51047:6;51043:15;51036:46;50851:238;:::o;51095:179::-;51235:31;51231:1;51223:6;51219:14;51212:55;51095:179;:::o;51280:220::-;51420:34;51416:1;51408:6;51404:14;51397:58;51489:3;51484:2;51476:6;51472:15;51465:28;51280:220;:::o;51506:174::-;51646:26;51642:1;51634:6;51630:14;51623:50;51506:174;:::o;51686:233::-;51826:34;51822:1;51814:6;51810:14;51803:58;51895:16;51890:2;51882:6;51878:15;51871:41;51686:233;:::o;51925:182::-;52065:34;52061:1;52053:6;52049:14;52042:58;51925:182;:::o;52113:181::-;52253:33;52249:1;52241:6;52237:14;52230:57;52113:181;:::o;52300:234::-;52440:34;52436:1;52428:6;52424:14;52417:58;52509:17;52504:2;52496:6;52492:15;52485:42;52300:234;:::o;52540:232::-;52680:34;52676:1;52668:6;52664:14;52657:58;52749:15;52744:2;52736:6;52732:15;52725:40;52540:232;:::o;52778:221::-;52918:34;52914:1;52906:6;52902:14;52895:58;52987:4;52982:2;52974:6;52970:15;52963:29;52778:221;:::o;53005:122::-;53078:24;53096:5;53078:24;:::i;:::-;53071:5;53068:35;53058:63;;53117:1;53114;53107:12;53058:63;53005:122;:::o;53133:116::-;53203:21;53218:5;53203:21;:::i;:::-;53196:5;53193:32;53183:60;;53239:1;53236;53229:12;53183:60;53133:116;:::o;53255:122::-;53328:24;53346:5;53328:24;:::i;:::-;53321:5;53318:35;53308:63;;53367:1;53364;53357:12;53308:63;53255:122;:::o;53383:120::-;53455:23;53472:5;53455:23;:::i;:::-;53448:5;53445:34;53435:62;;53493:1;53490;53483:12;53435:62;53383:120;:::o;53509:180::-;53611:53;53658:5;53611:53;:::i;:::-;53604:5;53601:64;53591:92;;53679:1;53676;53669:12;53591:92;53509:180;:::o;53695:122::-;53768:24;53786:5;53768:24;:::i;:::-;53761:5;53758:35;53748:63;;53807:1;53804;53797:12;53748:63;53695:122;:::o

Swarm Source

ipfs://41daf6a1bfdb98ab17b8d875eb13c0d5cfc1ecc3d8a061fa0174590368d89fda
Loading...
Loading
Loading...
Loading
[ 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.